/* Banner */
.nh-video-banner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.nh-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nh-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.nh-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    color: #fff;
}

.nh-banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.nh-banner-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 991px) {
    .nh-video-banner {
        height: 80vh;
    }

    .nh-banner-content h1 {
        font-size: 2.2rem;
    }

    .nh-banner-content p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nh-video-banner {
        height: 65vh;
    }

    .nh-banner-content h1 {
        font-size: 1.7rem;
    }

    .nh-banner-content p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

/* COUNTER SECTION */
.counter-section {
    position: relative;
    padding: 130px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #dc35456b 0%, #ffc1075e 100%);
}

/* Luxury floating glow blobs */
.counter-section::before,
.counter-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.45;
    animation: ambientFloat 10s ease-in-out infinite;
}

.counter-section::before {
    top: -220px;
    left: -180px;
    background: rgba(255, 122, 66, 0.32);
}

.counter-section::after {
    bottom: -220px;
    right: -180px;
    background: rgba(255, 192, 110, 0.28);
    animation-delay: 4s;
}

/* Extra ambient layer */
.counter-section .ambient-light {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(90px);
    border-radius: 50%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseAmbient 6s infinite ease-in-out;
}

@keyframes ambientFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(35px) scale(1.08);
    }
}

@keyframes pulseAmbient {
    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.counter-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    position: relative;
    z-index: 2;
}

/* Ultra glassmorphism */
.counter-box {
    position: relative;
    padding: 48px 30px;
    border-radius: 30px;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.75),
        rgba(255, 255, 255, 0.55)
    );
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.07),
        0 10px 25px rgba(255, 140, 70, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow: hidden;
}

/* Gradient border masking */
.counter-box::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.2px;
    border-radius: inherit;
    background: linear-gradient(
        140deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 180, 90, 0.35),
        rgba(255, 255, 255, 0.15)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* Reflective shine */
.counter-box::before {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 240%;
    height: 240%;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.55) 45%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 80%
    );
    transform: rotate(22deg);
    transition: 1.2s ease;
}

.counter-box:hover::before {
    left: 140%;
}

/* Better hover realism */
.counter-box:hover {
    transform: translateY(-16px) scale(1.04);
    box-shadow:
        0 35px 90px rgba(255, 130, 65, 0.16),
        0 18px 35px rgba(0, 0, 0, 0.08);
}

/* Counter number */
.counter {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ff6500 0%, #ff944d 40%, #ffc27d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium typography spacing */
.counter-box h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.7;
    letter-spacing: 0.6px;
}

/* Floating ambient particles */
.counter-box .particle {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 180, 90, 0.28);
    animation: particleFloat 5s infinite ease-in-out;
}

.counter-box .particle:nth-child(1) {
    top: 20%;
    right: 18%;
}

.counter-box .particle:nth-child(2) {
    bottom: 18%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-14px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .counter {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 90px 15px;
    }

    .counter-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .counter-box {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .counter {
        font-size: 42px;
    }

    .counter-box h3 {
        font-size: 15px;
    }
}

/* Image */
.nhDivineFull {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.nhDivineFull img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Optional: fixed height for better banner look */
@media (max-width: 768px) {
    .nhDivineFull img {
        width: 100%;
        height: auto;
    }
}

/* FAQ Section */
.nhFaqSection {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff8f2, #fffdf9);
}

.nhFaqSection h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 50px;
}

.nhFaqContainer {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nhFaqCard {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 180, 120, 0.25);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    position: relative;
}

.nhFaqCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(255, 140, 60, 0.15);
}

.nhFaqQuestion {
    padding: 24px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    position: relative;
}

.nhFaqQuestion::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #ff7b2c;
    transition: 0.3s ease;
}

.nhFaqAnswer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    transition: 0.45s ease;
}

.nhFaqCard.active .nhFaqAnswer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.nhFaqCard.active .nhFaqQuestion::after {
    content: "−";
}

@media (max-width: 768px) {
    .nhFaqSection {
        padding: 60px 15px;
    }

    .nhFaqSection h2 {
        font-size: 30px;
    }

    .nhFaqQuestion {
        font-size: 18px;
        padding: 20px;
    }

    .nhFaqAnswer {
        font-size: 15px;
        padding: 0 20px;
    }

    .nhFaqCard.active .nhFaqAnswer {
        padding: 0 20px 20px;
    }
}

/* Buy Authentic Pooja Samagri Online with NH Divine */
.nhd-devotional-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #dc35456b 0%, #ffc1075e 100%);
    position: relative;
    overflow: hidden;
}

.nhd-devotional-container {
    max-width: 1300px;
    margin: auto;
}

.nhd-devotional-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.nhd-devotional-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #8a4b08;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nhd-devotional-heading p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
}

.nhd-devotional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nhd-devotional-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 35px;
    border: 1px solid rgba(255, 170, 70, 0.15);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nhd-devotional-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 153, 51, 0.06),
        rgba(255, 204, 0, 0.03)
    );
    opacity: 0;
    transition: 0.4s;
}

.nhd-devotional-card:hover::before {
    opacity: 1;
}

.nhd-devotional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(255, 153, 51, 0.18);
}

.nhd-devotional-card h3 {
    font-size: 24px;
    color: #b55d00;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.nhd-devotional-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    position: relative;
    z-index: 2;
}

.nhd-daily-pooja-box {
    margin-top: 80px;
    padding: 50px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border: 1px solid rgba(255, 153, 51, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.nhd-daily-pooja-box h2 {
    font-size: 36px;
    color: #8a4b08;
    margin-bottom: 20px;
}

.nhd-daily-pooja-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

.nhd-daily-pooja-box ul {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0;
}

.nhd-daily-pooja-box ul li {
    list-style: none;
    background: #d30808;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    font-size: 15px;
    color: #f8f9fa;
    transition: 0.3s;
}

.nhd-daily-pooja-box ul li:hover {
    transform: translateY(-4px);
    /*background: linear-gradient(45deg, #d11578, #ff7a00);*/
}

@media (max-width: 992px) {
    .nhd-devotional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nhd-daily-pooja-box ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nhd-devotional-grid {
        grid-template-columns: 1fr;
    }

    .nhd-daily-pooja-box ul {
        grid-template-columns: 1fr;
    }

    .nhd-devotional-heading h2,
    .nhd-daily-pooja-box h2 {
        font-size: 30px;
    }
}

/* header css */
/* ₹499 SAFE BLINK (always visible) */
.blink-499 {
    font-weight: 800;
    color: #e91e63;
    display: inline-block;
    animation: blink499 1.4s infinite ease-in-out;
}

/* Better visible animation */
@keyframes blink499 {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        opacity: 0.6;
        /* 👈 NOT TOO LOW */
        transform: scale(1.12);
        filter: brightness(1.3);
        /* 👈 keeps it visible */
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

/* Mobile safety */
@media (max-width: 768px) {
    .blink-499 {
        font-size: 13px;
    }
}

/* =========================
   HEADER WRAPPER
========================= */

#siteheader {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #f5f1eb;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #7a351a;
    height: 60px;
    display: flex;
    align-items: center;
}

.top-bar .container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 0 25px;
}

.top-h-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.title-shop {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.slider-container {
    position: relative;
    min-width: 320px;
    text-align: center;
}

.slide-text {
    display: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.slide-text.active {
    display: block;
    animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   MAIN HEADER
========================= */

.top_sec > .container {
    max-width: 1400px;
    margin: auto;
    padding: 8px 2px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f5f1eb;
}

/* =========================
   LOGO
========================= */

.nav_logo {
    flex-shrink: 0;
}

.nav_logo img {
    width: 280px;
    height: auto;
    display: block;
}

/* =========================
   LOCATION
========================= */

.custom-select-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 240px;
}

.custom-select {
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: left;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

.custom-select::after {
    content: "⌄";
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 22px;
}

#satvik-delivery-timeline {
    color: #9a6b2c;
    font-size: 14px;
    margin-top: 4px;
}

/* =========================
   SEARCH
========================= */

.search-box-header {
    flex: 1;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.8px solid #8a4a28;
    border-radius: 60px;
    overflow: hidden;
    height: 64px;
}

.search-form label {
    flex: 1;
    margin: 0;
}

.search-field {
    width: 100%;
    height: 64px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 25px;
    font-size: 18px;
    color: #333;
}

.search-submit {
    border: none;
    background: transparent;
    width: 70px;
    font-size: 0;
    cursor: pointer;
    position: relative;
}

.search-submit::before {
    content: "⌕";
    font-size: 32px;
    color: #000;
}

/* =========================
   ICONS
========================= */

.icon_head {
    flex-shrink: 0;
}

.list_icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 10px;
}

.list_icons li {
    position: relative;
}

.list_icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ccount {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7a351a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   HOVER EFFECTS
========================= */

.custom-select:hover {
    color: #7a351a;
}

.list_icons a {
    transition: 0.3s;
}

.list_icons a:hover {
    transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .top_sec > .container {
        flex-wrap: wrap;
    }

    .search-box-header {
        width: 100%;
        order: 5;
    }

    .nav_logo img {
        width: 220px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .top-bar {
        height: auto;
        padding: 10px 0;
    }

    .top-h-text {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .title-shop {
        font-size: 14px;
    }

    .slide-text {
        font-size: 13px;
    }

    .top_sec > .container {
        padding: 15px;
        gap: 15px;
    }

    .nav_logo {
        width: 100%;
        text-align: center;
    }

    .nav_logo img {
        width: 190px;
        margin: auto;
    }

    .custom-select-wrapper {
        width: 100%;
        text-align: center;
    }

    .custom-select {
        text-align: center;
    }

    .search-form {
        height: 52px;
    }

    .search-field {
        height: 52px;
        font-size: 15px;
        padding: 0 15px;
    }

    .search-submit::before {
        font-size: 24px;
    }

    .icon_head {
        width: 100%;
    }

    .list_icons {
        justify-content: center;
    }
}

.sat-location-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
}

.sat-location-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sat-location-popup {
    width: 90%;
    max-width: 850px;

    background: #f8ece8;

    border-radius: 25px;

    padding: 35px;

    position: relative;
}

.sat-close-btn {
    position: absolute;

    right: 20px;
    top: 10px;

    border: none;
    background: none;

    font-size: 40px;
    cursor: pointer;
}

.sat-location-popup h2 {
    color: #7a351a;
    margin-bottom: 30px;
    font-size: 32px;
}

.sat-location-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.sat-search-location {
    flex: 1;
    position: relative;
}

.sat-search-location input {
    width: 100%;
    height: 62px;

    border: 3px solid #efbc69;

    border-radius: 40px;

    padding: 0 60px 0 20px;

    font-size: 17px;
}

.sat-search-location button {
    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    border: none;
    background: none;

    font-size: 22px;
    cursor: pointer;
}

.sat-or-text {
    font-size: 20px;
}

.sat-detect-btn {
    border: none;

    background: #7a351a;

    color: #fff;

    padding: 16px 30px;

    border-radius: 8px;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
}

.sat-detect-btn:hover {
    background: #5d2711;
}

@media (max-width: 768px) {
    .sat-location-content {
        flex-direction: column;
    }

    .sat-detect-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .search-box-header {
        display: none !important;
    }
}

/* =========================
   MOBILE HEADER FIX
========================= */

@media (max-width: 767px) {
    /* reduce header spacing */
    #siteheader {
        padding-bottom: 5px;
    }

    .top_sec > .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 12px;
    }

    /* ✅ LOGO LEFT */
    .nav_logo {
        order: 1;
        width: auto;
        text-align: left;
    }

    .nav_logo img {
        width: 150px;
        margin: 0;
    }

    /* ❌ HIDE LOCATION */
    .custom-select-wrapper {
        display: none !important;
    }

    /* SEARCH FULL WIDTH BELOW */
    .search-box-header {
        order: 3;
        width: 100%;
        margin-top: 8px;
    }

    .search-form {
        height: 44px;
    }

    .search-field {
        height: 44px;
        font-size: 14px;
    }

    /* ✅ ICONS RIGHT */
    .icon_head {
        order: 2;
        width: auto;
        margin-left: auto;
    }

    .list_icons {
        gap: 15px;
        justify-content: flex-end;
    }

    .list_icons svg {
        width: 24px;
        height: 24px;
    }

    .ccount {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

/* cart overlay */

/* OVERLAY */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDEBAR */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    /* hidden by default */
    width: 400px;
    max-width: 95%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
    right: 0px;
}

/* HEADER */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    margin: 0;
    font-size: 18px;
}

.cart-header button {
    background: #7a351a;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

/* BODY */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-info h4 {
    font-size: 14px;
    margin: 0;
}

.cart-info p {
    font-size: 13px;
    margin: 5px 0;
}

.qty {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty button {
    width: 25px;
    height: 25px;
}

/* FOOTER */
.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.cart-footer .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cart-footer .total {
    font-weight: bold;
}

.btn-dark,
.btn-brown {
    width: 100%;
    padding: 12px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn-dark {
    background: #111;
    color: #fff;
}

.btn-brown {
    background: #7a351a;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
    }
}

/* accessories css code */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f4ee;
}

/* SECTION */
.satDecorSection {
    padding: 60px 15px;
}

.satDecorContainer {
    max-width: 1400px;
    margin: auto;
}

/* WRAPPER */
.satDecorWrapper {
    background: #f4e3bf;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.satDecorLabel {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #6d331a;
    margin-bottom: 15px;
    font-weight: 600;
}

.satDecorLeft h2 {
    font-size: 58px;
    line-height: 1.05;
    color: #4a2616;
    margin-bottom: 25px;
}

.satDecorBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 55px;
    border-radius: 10px;
    text-decoration: none;
    background: #6d331a;
    color: #fff;
    font-weight: 600;
}

/* RIGHT */
.satDecorRight {
    position: relative;
}

/* SLIDER */
.satDecorSlider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 5px;
}

.satDecorSlider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.satDecorCard {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    scroll-snap-align: start;
    min-height: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.satDecorCard img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.satDecorCard h4 {
    font-size: 16px;
    color: #6d331a;
    margin: 15px 0;
}

.satDecorPrice {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.satDecorPrice span {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* BUTTON */
.satDecorCard button {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #f29c24;
    background: #fff;
    cursor: pointer;
}

/* ARROWS */
.satDecorArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
}

.satDecorPrev {
    left: -15px;
}

.satDecorNext {
    right: -15px;
}

/* ===================== */
/* RESPONSIVE DESIGN */
/* ===================== */
/* ===================== */
/* MOBILE FIX (IMPORTANT) */
/* ===================== */
@media (max-width: 767px) {
    .satDecorSection {
        padding: 30px 10px;
        overflow: hidden;
        /* ✅ FIX OVERFLOW */
    }

    .satDecorWrapper {
        padding: 16px;
        border-radius: 16px;
        grid-template-columns: 1fr;
        gap: 20px;
        overflow: hidden;
        /* ✅ FIX */
    }

    .satDecorRight {
        overflow: hidden;
        /* ✅ FIX */
        width: 100%;
    }

    .satDecorSlider {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    /* ✅ MOST IMPORTANT FIX */
    .satDecorCard {
        flex: 0 0 100%;
        /* 👈 ONE CARD FULL WIDTH */
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    .satDecorCard img {
        height: 160px;
    }

    .satDecorArrow {
        display: none;
    }

    .satDecorLeft h2 {
        font-size: 26px;
        line-height: 1.2;
    }
}

/* faq css code */

/* ==========================
   SATVIKLY SEO CONTENT
========================== */

.svxSeoSection {
    padding: 80px 20px;
    background: #fffdf8;
}

.svxSeoContainer {
    max-width: 1200px;
    margin: auto;
}

.svxSeoContent {
    color: #444;
    font-size: 17px;
    line-height: 1.9;
}

.svxSeoContent h2 {
    font-size: 38px;
    line-height: 1.3;
    margin: 45px 0 20px;
    color: #5d2e17;
    font-weight: 700;
}

.svxSeoContent h3 {
    font-size: 22px;
    line-height: 1.4;
    color: #5d2e17;
    margin-bottom: 12px;
}

.svxSeoContent p {
    margin-bottom: 18px;
}

.svxSeoContent ul {
    margin: 15px 0 25px;
    padding-left: 25px;
}

.svxSeoContent ul li {
    margin-bottom: 10px;
}

/* FEATURE BOX */

.svxFeatureBox {
    background: linear-gradient(135deg, #dc35456b 0%, #ffc1075e 100%);
    border-radius: 24px;
    padding: 45px;
    margin: 60px 0;
}

.svxFeatureGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.svxFeatureCard {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.svxFeatureCard:hover {
    transform: translateY(-5px);
}

.svxFeatureCard p {
    margin-bottom: 0;
}

/* FAQ */

.svxFaqWrapper {
    margin-top: 30px;
}

.svxFaqItem {
    border: 1px solid #ececec;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.svxFaqTitle {
    padding: 18px 20px;
    cursor: pointer;
    background: #fafafa;
    font-weight: 600;
    color: #5d2e17;
    position: relative;
}

.svxFaqTitle:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

.svxFaqItem.active .svxFaqTitle:after {
    content: "−";
}

.svxFaqContent {
    display: none;
    padding: 18px 20px;
    background: #fff;
}

.svxFaqItem.active .svxFaqContent {
    display: block;
}

/* TABLET */

@media (max-width: 991px) {
    .svxSeoSection {
        padding: 60px 20px;
    }

    .svxSeoContent h2 {
        font-size: 30px;
    }

    .svxFeatureGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .svxSeoSection {
        padding: 40px 15px;
    }

    .svxSeoContent {
        font-size: 15px;
    }

    .svxSeoContent h2 {
        font-size: 26px;
        margin: 35px 0 15px;
    }

    .svxSeoContent h3 {
        font-size: 18px;
    }

    .svxFeatureBox {
        padding: 25px 20px;
    }

    .svxFeatureGrid {
        grid-template-columns: 1fr;
    }

    .svxFeatureCard {
        padding: 20px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .svxSeoContent h2 {
        font-size: 22px;
    }

    .svxSeoContent {
        font-size: 14px;
    }
}

/* hero section css */

/* ======================================
   RESET
====================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #e7e2db;
    font-family: Arial, Helvetica, sans-serif;
}

/* ======================================
   MAIN SECTION
====================================== */

.satvikly-offers {
    padding: 60px;
    background: linear-gradient(45deg, #ff7a00, #e52455);
}

.satvikly-container {
    max-width: 1280px;
    margin: auto;
}

.satvikly-layout {
    display: flex;
    gap: 28px;
}

/* ======================================
   LEFT GRID
====================================== */

.satvikly-categories {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ======================================
   CATEGORY CARD
====================================== */

.satvikly-category {
    background: #efd7ac;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 208px;
    padding: 18px 12px;
}

/* TITLE */

.satvikly-category h3 {
    color: #6d3313;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 18px;
}

/* SUBTITLE */

.satvikly-subtitle {
    color: #7a604d;
    font-size: 13px;
    min-height: 20px;
}

/* IMAGE */

.satvikly-category img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: 140px;
    max-height: 135px;
    object-fit: contain;
}

/* ======================================
   RIGHT BANNER
====================================== */

.satvikly-banner {
    width: 50%;
}

.satvikly-slider {
    height: 100%;
}

.satvikly-slider .item {
    height: 424px;
}

.satvikly-slider img {
    width: 100%;
    height: 424px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Hide dots & arrows */

.satvikly-slider .owl-nav,
.satvikly-slider .owl-dots {
    display: none !important;
}

/* ==========================
   Devotional Intro Section
========================== */
.devotion-intro-wrap {
    padding: 90px 0;
    background: linear-gradient(135deg, #fffaf5 0%, #fff3e8 100%);
    position: relative;
    overflow: hidden;
}

.devotion-intro-wrap::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.08);
}

.devotion-intro-wrap::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.05);
}

.devotion-intro-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.devotion-intro-content {
    text-align: center;
}

.devotion-intro-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f1f1f;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.devotion-intro-content p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* Tablet */
@media (max-width: 991px) {
    .devotion-intro-wrap {
        padding: 70px 0;
    }

    .devotion-intro-content h1 {
        font-size: 40px;
    }

    .devotion-intro-content p {
        font-size: 17px;
        line-height: 1.8;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .devotion-intro-wrap {
        padding: 55px 0;
    }

    .devotion-intro-content h1 {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .devotion-intro-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .devotion-intro-content h1 {
        font-size: 26px;
    }

    .devotion-intro-content p {
        font-size: 14px;
    }
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 991px) {
    .satvikly-layout {
        flex-direction: column;
    }

    .satvikly-categories,
    .satvikly-banner {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .satvikly-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .satvikly-slider img,
    .satvikly-slider .item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .satvikly-categories {
        grid-template-columns: 1fr;
    }
}

/* how work css code */

/* ==========================
   SATVIKLY WORKFLOW SECTION
========================== */

.svk-workflow-section {
    padding: 80px 20px;
    background: #faf7f2;
}

.svk-workflow-container {
    max-width: 1400px;
    margin: auto;
}

.svk-workflow-header {
    text-align: center;
    margin-bottom: 60px;
}

.svk-workflow-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #a86a2d;
    font-weight: 700;
    margin-bottom: 12px;
}

.svk-workflow-header h2 {
    font-size: 48px;
    color: #4d2715;
    margin-bottom: 15px;
    line-height: 1.2;
}

.svk-workflow-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* GRID */

.svk-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */

.svk-workflow-card {
    position: relative;
    background: #ffc107;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    overflow: hidden;
}

.svk-workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* NUMBER */

.svk-workflow-count {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6d331a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* IMAGE */

.svk-workflow-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svk-workflow-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CONTENT */

.svk-workflow-card h3 {
    font-size: 22px;
    color: #4d2715;
    margin-bottom: 15px;
    line-height: 1.4;
}

.svk-workflow-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* ==========================
   LARGE TABLETS
========================== */

@media (max-width: 1200px) {
    .svk-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================
   TABLETS
========================== */

@media (max-width: 768px) {
    .svk-workflow-section {
        padding: 60px 15px;
    }

    .svk-workflow-header {
        margin-bottom: 40px;
    }

    .svk-workflow-header h2 {
        font-size: 34px;
    }

    .svk-workflow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svk-workflow-card {
        padding: 30px 20px;
    }

    .svk-workflow-image {
        width: 110px;
        height: 110px;
    }

    .svk-workflow-card h3 {
        font-size: 20px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {
    .svk-workflow-section {
        padding: 50px 12px;
    }

    .svk-workflow-header h2 {
        font-size: 28px;
    }

    .svk-workflow-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .svk-workflow-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .svk-workflow-image {
        width: 90px;
        height: 90px;
    }

    .svk-workflow-card h3 {
        font-size: 18px;
    }

    .svk-workflow-card p {
        font-size: 14px;
    }

    .svk-workflow-count {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/* pandit jii service css */

/* ==========================
   SPIRITUAL SERVICE SECTION
========================== */

.spiritual-service-section {
    padding: 90px 0;
    background: #fffaf6;
}

.spiritual-service-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

.spiritual-service-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spiritual-service-content {
    flex: 1;
}

.spiritual-service-image {
    flex: 1;
}

.spiritual-service-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.spiritual-service-tag {
    display: inline-block;
    padding: 10px 18px;
    background: #fff0df;
    color: #ff7a00;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.spiritual-service-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.spiritual-service-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

/* ==========================
   ACCORDION
========================== */

.spiritual-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spiritual-accordion-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.spiritual-accordion-item.active {
    border-left: 4px solid #ff7a00;
}

.spiritual-accordion-header {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spiritual-accordion-header span {
    font-size: 24px;
    color: #ff7a00;
    transition: 0.3s;
}

.spiritual-accordion-item.active .spiritual-accordion-header span {
    transform: rotate(45deg);
}

.spiritual-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.spiritual-accordion-item.active .spiritual-accordion-body {
    max-height: 250px;
}

.spiritual-city-buttons {
    padding: 0 25px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spiritual-city-buttons p {
    text-decoration: none;
    padding: 12px 20px;
    background: #fff5ec;
    border: 1px solid #ffe1bf;
    color: #ff7a00;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.spiritual-city-buttons p:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
    .spiritual-service-grid {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .spiritual-service-title {
        font-size: 34px;
    }

    .spiritual-service-content {
        width: 100%;
    }

    .spiritual-service-image {
        width: 100%;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
    .spiritual-service-section {
        padding: 60px 0;
    }

    .spiritual-service-title {
        font-size: 28px;
    }

    .spiritual-service-desc {
        font-size: 15px;
    }

    .spiritual-accordion-header {
        font-size: 16px;
        padding: 16px 18px;
    }

    .spiritual-city-buttons {
        padding: 0 18px 18px;
    }

    .spiritual-city-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* pooja kit css */

/* ===========================
   POOJA KIT SECTION
=========================== */

.sk-pooja-section {
    padding: 70px 0;
    background: #f7f4ee;
}

.sk-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

/* HEADER */

.sk-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.sk-section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.sk-view-all {
    text-decoration: none;
    color: #7a351a;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
}

.sk-view-all:hover {
    color: #c77725;
}

/* GRID */

.sk-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */

.sk-product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 18px;
    transition: 0.3s;
}

.sk-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.sk-product-image {
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.sk-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.sk-product-card:hover img {
    transform: scale(1.05);
}

/* TITLE */

.sk-product-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #4d220e;
    margin: 18px 0 14px;
    min-height: 50px;
}

/* PRICE */

.sk-price-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.sk-sale-price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.sk-old-price {
    color: #b9b9b9;
    text-decoration: line-through;
    font-size: 16px;
}

/* BUTTON */

.sk-cart-btn {
    width: 100px;
    height: 48px;

    border: 1.5px solid #f4a024;
    background: #fff;

    color: #000;

    border-radius: 8px;

    font-size: 18px;
    cursor: pointer;

    transition: 0.3s;
}

.sk-cart-btn:hover {
    background: #f4a024;
    color: #fff;
}

/* TABLET */

@media (max-width: 1200px) {
    .sk-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .sk-section-header h2 {
        font-size: 34px;
    }

    .sk-view-all {
        font-size: 18px;
    }

    .sk-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sk-product-image {
        height: 180px;
    }

    .sk-product-card {
        padding: 12px;
    }

    .sk-product-card h3 {
        font-size: 16px;
        min-height: auto;
    }

    .sk-cart-btn {
        width: 100%;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .sk-product-grid {
        grid-template-columns: 1fr;
    }
}

/* after Hero */
/* ==========================
   Satvik Hero Section
========================== */
.satvik-hero-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #dc35456b 0%, #ffc1075e 100%);
    position: relative;
    overflow: hidden;
}

.satvik-hero-section::before,
.satvik-hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: transform 8s ease-in-out;
}

.satvik-hero-section::before {
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255, 140, 0, 0.08);
    animation: satvikFloatOne 8s infinite alternate ease-in-out;
}

.satvik-hero-section::after {
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    background: rgba(255, 140, 0, 0.05);
    animation: satvikFloatTwo 10s infinite alternate ease-in-out;
}

.satvik-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.satvik-hero-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
    animation: satvikFadeUp 1s ease forwards;
}

.satvik-hero-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 140, 0, 0.12);
    color: #d46a00;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.satvik-hero-badge:hover {
    transform: scale(1.08);
    background: rgba(255, 140, 0, 0.18);
}

.satvik-hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f1f1f;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    transition: transform 0.4s ease;
}

.satvik-hero-heading:hover {
    transform: translateY(-4px);
}

.satvik-hero-heading strong {
    color: #ff7a00;
}

.satvik-hero-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    transition: all 0.4s ease;
}

.satvik-hero-text:hover {
    transform: translateY(-2px);
}

.satvik-hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.satvik-hero-btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-block;
}

.satvik-hero-btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ff6200);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.25);
}

.satvik-hero-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px rgba(255, 140, 0, 0.35);
}

.satvik-hero-btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.satvik-hero-btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: #f9f9f9;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

/* Floating background animations */
@keyframes satvikFloatOne {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(30px) translateX(-20px);
    }
}

@keyframes satvikFloatTwo {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(-20px) translateX(20px);
    }
}

/* Content entry animation */
@keyframes satvikFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .satvik-hero-section {
        padding: 70px 0;
    }

    .satvik-hero-heading {
        font-size: 40px;
    }

    .satvik-hero-text {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .satvik-hero-section {
        padding: 55px 0;
    }

    .satvik-hero-heading {
        font-size: 30px;
    }

    .satvik-hero-text {
        font-size: 15px;
    }

    .satvik-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .satvik-hero-btn {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .satvik-hero-heading {
        font-size: 26px;
    }

    .satvik-hero-text {
        font-size: 14px;
    }
}

/* Buy Samagri */
.nhdivine-about-section {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 166, 0, 0.08),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255, 94, 0, 0.08),
            transparent 40%
        ),
        #fffdf8;
    overflow: hidden;
}

.nhdivine-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.nhdivine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.nhdivine-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 153, 0, 0.12);
    color: #d97706;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.nhdivine-content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2937;
}

.nhdivine-content h2 span {
    background: linear-gradient(90deg, #ff7b00, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nhdivine-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #f8f9fa;
    margin-bottom: 20px;
}

.nhdivine-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.nhdivine-feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.nhdivine-btn {
    display: inline-block;
    padding: 16px 28px;
    background: linear-gradient(135deg, #ff7b00, #ffb300);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.nhdivine-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 123, 0, 0.25);
}

/* IMAGE SIDE */
.nhdivine-images {
    position: relative;
    height: 600px;
}

.nhdivine-main-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.nhdivine-floating-card {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: float 5s infinite ease-in-out;
}

.nhdivine-floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.card-one {
    top: -30px;
    right: -20px;
}

.card-two {
    bottom: 120px;
    left: -30px;
}

.card-three {
    bottom: -20px;
    right: 50px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .nhdivine-grid {
        grid-template-columns: 1fr;
    }

    .nhdivine-content h2 {
        font-size: 34px;
    }

    .nhdivine-images {
        height: auto;
    }

    .nhdivine-floating-card {
        display: none;
    }
}
