﻿
/* ══════════ ROOT ══════════ */
:root {
    /* Rose Gold */
    --rg: #C4866E;
    --rg-lt: #E8B4A0;
    --rg-dk: #8A5240;
    /* Gold */
    --gd: #C9A84C;
    --gd-lt: #E2C97E;
    --gd-dk: #8B6914;
    /* Light theme surfaces */
    --bg-l: #FBF3EC;
    --bg-l2: #F6E9DE;
    --card-bg: #FFFFFF;
    --bdr: rgba(138,82,64,.14);
    --shadow: 0 10px 30px -12px rgba(138,82,64,.22);
    --tx-l: #1E140E;
    --mt-l: #7A6A5E;
    --font-display: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;
    --font-hi: 'Hind', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-l);
    color: var(--tx-l);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--rg-lt);
    color: var(--rg-dk);
}

/* ══════════ TEXTURE / DECOR ══════════ */
.grain-bg {
    background-image: radial-gradient(circle at 15% 10%, rgba(196,134,110,.10), transparent 40%), radial-gradient(circle at 85% 0%, rgba(201,168,76,.12), transparent 45%);
}

/* ══════════ BREADCRUMB  pure white band ══════════ */
.breadcrumb-bar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--bdr);
    padding: 12px 0;
}

.crumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
}

    .crumb-list a {
        color: var(--mt-l);
        text-decoration: none;
        transition: color .2s ease;
    }

        .crumb-list a:hover {
            color: var(--rg-dk);
            text-decoration: none;
        }

.crumb-sep {
    font-size: 9px;
    color: var(--rg-lt);
}

.crumb-list .active {
    color: var(--rg-dk);
    font-weight: 600;
}

/* ══════════ HERO / OVERLAY BANNER ══════════ */
.hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 22px 0 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30,20,14,.55) 0%, rgba(30,20,14,.72) 55%, rgba(30,20,14,.88) 100%), url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(196,134,110,.28), rgba(201,168,76,.18));
        mix-blend-mode: multiply;
    }

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gd-lt);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .hero-eyebrow i {
        color: var(--rg-lt);
    }

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 44px;
    color: #FFF7F0;
    margin: 10px 0 6px;
    line-height: 1.08;
}

    .hero-title .hi {
        font-family: var(--font-hi);
        font-weight: 600;
    }

.hero-sub {
    color: #E8D9CD;
    font-size: 15px;
    max-width: 520px;
    margin-bottom: 0;
}

/* ══════════ BACK BUTTON ══════════ */
.back-bar {
    background: var(--bg-l2);
    border-bottom: 1px solid var(--bdr);
    padding: 16px 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px 11px 16px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    color: #FFF9F4;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--rg );
    box-shadow: 0 6px 18px -6px rgba(138,82,64,.55), 0 0 0 1px rgba(255,255,255,.08) inset;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    position: relative;
}

    .btn-back .icon-circle {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(255,255,255,.22);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: transform .22s ease;
    }

    .btn-back:hover, .btn-back:focus {
        color: #FFF9F4;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 10px 26px -6px rgba(138,82,64,.7), 0 0 0 3px rgba(201,168,76,.28);
        filter: brightness(1.05);
        outline: none;
    }

        .btn-back:hover .icon-circle {
            transform: translateX(-3px);
        }

    .btn-back:active {
        transform: translateY(0);
    }

.vcm-modal .btn-back {
    background: linear-gradient(100deg, var(--rg-dk), var(--rg) 55%, var(--gd) 130%);
}

.back-note {
    color: var(--mt-l);
    font-size: 13px;
    margin: 0 0 0 2px;
}

/* ══════════ SECTION HEADERS (old category grid) ══════════ */
.lang-section {
    padding: 15px 0 0px;
}

    .lang-section.hindi-section {
        padding-top: 14px;
    }

.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.section-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -6px rgba(138,82,64,.5);
}

    .section-icon.en-icon {
        background: linear-gradient(135deg, var(--rg-dk), var(--rg));
    }

    .section-icon.hi-icon {
        background: linear-gradient(135deg, var(--gd-dk), var(--gd));
    }

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    margin: 0;
    color: var(--tx-l);
    line-height: 1.2;
}

    .section-title .hi-text {
        font-family: var(--font-hi);
    }

.section-sub {
    font-size: 13px;
    color: var(--mt-l);
    margin: 2px 0 0;
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--bdr), transparent);
    margin: 18px 0 0;
}

/* ══════════ VIDEO GRID (old category grid) ══════════ */
.grid-section {
    padding-bottom: 8px;
    padding: 15px 0 !important
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px -8px rgba(138,82,64,.18);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: rgba(196,134,110,.4);
    }

.thumb-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ECD9CC;
}

    .thumb-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.video-card:hover .thumb-wrap img {
    transform: scale(1.08);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,20,14,0) 55%, rgba(30,20,14,.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rg-dk);
    font-size: 18px;
    box-shadow: 0 8px 22px -6px rgba(0,0,0,.4);
    transform: scale(.85);
    opacity: 0;
    transition: all .3s ease;
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: scale(1);
}

.badge-lang {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

    .badge-lang.en {
        background: linear-gradient(100deg, var(--rg-dk), var(--rg));
    }

    .badge-lang.hi {
        background: linear-gradient(100deg, var(--gd-dk), var(--gd));
    }

.badge-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 5px;
}

.video-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--tx-l);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .video-title.hi {
        font-family: var(--font-hi);
        font-size: 15px;
    }

.video-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--mt-l);
}

.channel-chip {
    display: flex;
    align-items: center;
    gap: 6px;
}

.channel-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rg-lt), var(--gd-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

/* ══════════ BIG VIDEO PLAYER MODAL ══════════ */
.vcm-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
}

    .vcm-modal.vcm-open {
        display: block;
    }

.vcm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20,12,8,.6);
    opacity: 0;
    transition: opacity .22s ease;
}

.vcm-modal.vcm-open .vcm-backdrop {
    opacity: 1;
}

.vcm-dialog {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 92%;
    margin: 2.2rem auto;
    opacity: 0;
    transform: translateY(-24px);
    transition: opacity .25s ease, transform .25s ease;
}

.vcm-modal.vcm-open .vcm-dialog {
    opacity: 1;
    transform: translateY(0);
}

body.vcm-lock-scroll {
    overflow: hidden;
}

.vcm-content {
    background: var(--card-bg);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px -18px rgba(30,20,14,.5);
}

.vcm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bdr);
    padding: 14px 18px;
}

.vcm-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--tx-l);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding-right: 10px;
}

    .vcm-title .badge-lang {
        position: static;
    }

.vcm-close-btn {
    background: none;
    border: none;
    color: var(--rg-dk);
    font-size: 26px;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
    transition: color .2s ease;
}

    .vcm-close-btn:hover {
        color: var(--gd-dk);
    }

.player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

    .player-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.vcm-footer {
    border-top: 1px solid var(--bdr);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 12.5px;
    color: var(--mt-l);
}

.modal-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-back-modal {
    font-size: 13.5px;
    padding: 10px 20px 10px 14px;
    cursor: pointer;
}

.btn-buy-modal {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--gd-dk);
    text-decoration: none;
    background: #FFFFFF;
    border: 1.5px solid var(--gd);
    box-shadow: 0 4px 14px -6px rgba(201,168,76,.4);
    transition: all .22s ease;
}

    .btn-buy-modal:hover {
        color: #FFF9F4;
        text-decoration: none;
        background: linear-gradient(100deg, var(--gd-dk), var(--gd));
        border-color: var(--gd-dk);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px -6px rgba(201,168,76,.55);
    }

.video-col {
    transition: opacity .25s ease, transform .25s ease;
}

.foot-note {
    text-align: center;
    padding: 26px 0 44px;
    color: var(--mt-l);
    font-size: 12.5px;
}

    .foot-note i {
        color: var(--rg);
    }

/* ══════════ PAGINATION ══════════ */
.vpg-pagination {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 6px 0 30px;
    padding: 0;
}

    .vpg-pagination li {
        display: flex;
    }

    .vpg-pagination button {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border-radius: 12px;
        border: 1.5px solid var(--bdr);
        background: var(--card-bg);
        color: var(--mt-l);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all .2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

        .vpg-pagination button:hover:not(:disabled) {
            border-color: var(--rg-lt);
            color: var(--rg-dk);
        }

        .vpg-pagination button.vpg-active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(100deg, var(--rg-dk), var(--rg) 60%, var(--gd) 140%);
            box-shadow: 0 6px 14px -6px rgba(138,82,64,.5);
        }

        .vpg-pagination button:disabled {
            opacity: .4;
            cursor: not-allowed;
        }

    .vpg-pagination .vpg-arrow {
        font-size: 12px;
    }

/* ══════════ STICKY QUICK NAV ══════════ */
.quick-nav {
    position: sticky;
    top: 80px;
    z-index: 900;
    background: #FFFFFF;
    border-bottom: 1px solid var(--bdr);
    box-shadow: 0 4px 16px -10px rgba(138,82,64,.25);
}

.quick-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    flex-wrap: nowrap;
}

.quick-nav-tabs {
    display: flex;
    gap: 26px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 2px 4px;
}

    .quick-nav-tabs::-webkit-scrollbar {
        display: none;
    }

.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--mt-l);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 2px 9px;
    cursor: pointer;
    transition: all .22s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

    .quick-nav-btn .qn-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-l2);
        color: var(--rg-dk);
        font-size: 12.5px;
        transition: all .22s ease;
    }

    .quick-nav-btn:hover {
        color: var(--rg-dk);
    }

        .quick-nav-btn:hover .qn-icon {
            background: var(--rg-lt);
            color: #fff;
        }

    .quick-nav-btn.active {
        color: var(--rg-dk) !important;
        border-bottom-color: var(--rg);
    }

        .quick-nav-btn.active .qn-icon {
            background: linear-gradient(100deg, var(--rg-dk), var(--rg) 60%, var(--gd) 140%);
            color: #fff;
            box-shadow: 0 4px 12px -4px rgba(138,82,64,.5);
        }

@media (max-width: 767px) {
    .quick-nav-tabs {
        gap: 16px;
    }

    .quick-nav-btn {
        font-size: 12.5px;
    }

        .quick-nav-btn .qn-icon {
            width: 26px;
            height: 26px;
            font-size: 11px;
        }
}

/* ══════════ ORDER CTA ══════════ */
.order-cta {
    position: relative;
    display: inline-block;
    padding: 2px;
    border-radius: 999px;
    text-decoration: none;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--gd-lt);
}

    .order-cta::before {
        content: "";
        position: absolute;
        inset: -3px;
        border-radius: inherit;
        background: conic-gradient(from 0deg, var(--gd), var(--rg), var(--gd-lt), var(--rg-lt), var(--gd));
        animation: order-cta-spin 3.2s linear infinite;
        z-index: 0;
    }

.order-cta-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #FFFFFF;
    color: var(--rg-dk);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 999px;
    white-space: nowrap;
    transition: color .2s ease, transform .2s ease;
}

.order-cta:hover .order-cta-inner {
    color: var(--gd-dk);
    transform: scale(1.03);
}

.order-cta i {
    font-size: 11px;
    transition: transform .2s ease;
}

.order-cta:hover i {
    transform: translateX(3px);
}

.order-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E24C4C;
    box-shadow: 0 0 0 0 rgba(226,76,76,.6);
    animation: order-cta-pulse 1.6s ease-out infinite;
    flex-shrink: 0;
}

@keyframes order-cta-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes order-cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226,76,76,.55);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(226,76,76,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(226,76,76,0);
    }
}

@media (max-width: 767px) {
    .quick-nav-tabs {
        gap: 20px;
    }

    .quick-nav-btn {
        font-size: 12.5px;
    }

        .quick-nav-btn .qn-icon {
            width: 26px;
            height: 26px;
            font-size: 11px;
        }
}

@media (max-width: 575px) {
    .quick-nav-inner {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
    }

    .quick-nav-tabs {
        justify-content: flex-start;
    }

    .order-cta {
        width: 100%;
    }

    .order-cta-inner {
        justify-content: center;
        width: 100%;
    }
}

#englishSection, #hindiSection, #aboutSection, #createSection, #editSection, #featureSection, #moreVideosSection, #instaSection, #privacySection {
    scroll-margin-top: 120px !important;
}

#appExploreSection {
    scroll-margin-top: 180px !important;
}
/* ══════════ NEW: BIG INFO+VIDEO SECTIONS ══════════ */
.info-section {
    padding: 56px 0;
}

    .info-section.bg-rose {
        background: var(--bg-l2);
    }

    .info-section.bg-white {
        background: #FFFFFF;
    }

.info-flex {
    display: flex;
    align-items: center;
    gap: 46px;
}

    .info-flex.reverse {
        flex-direction: row-reverse;
    }

.info-text {
    flex: 0 0 34%;
    max-width: 34%;
}

.info-video-col {
    flex: 1;
    min-width: 0;
}

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rg-dk);
    margin-bottom: 10px;
}

    .info-eyebrow i {
        color: var(--gd-dk);
    }

.info-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 38px;
    color: var(--tx-l);
    line-height: 1.16;
    margin: 0 0 16px;
}

    .info-heading span {
        background: linear-gradient(90deg, var(--rg-dk), var(--gd-dk));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.info-para {
    color: var(--mt-l);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 26px;
}

.info-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(100deg, var(--rg-dk), var(--rg) 60%, var(--gd) 140%);
    box-shadow: 0 8px 20px -8px rgba(138,82,64,.55);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .info-cta:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 12px 26px -8px rgba(138,82,64,.65);
    }

.info-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #16100C;
    box-shadow: 0 20px 50px -18px rgba(138,82,64,.4);
    border: 1px solid var(--bdr);
}

    .info-video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.info-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
}

.info-video-wrap.is-playing .info-video-poster {
    opacity: 0;
    pointer-events: none;
}

/* Edit Profile tabs  clear segmented cards, not plain buttons */
.edit-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.edit-tab-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    text-align: left;
    border: 2px solid var(--bdr);
    background: #FFFFFF;
    color: var(--mt-l);
    font-family: var(--font-body);
    padding: 13px 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: all .22s ease;
    flex: 1 1 220px;
    position: relative;
}

    .edit-tab-btn .eti-icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-l2);
        color: var(--rg-dk);
        font-size: 16px;
        flex-shrink: 0;
        transition: all .22s ease;
    }

    .edit-tab-btn .eti-copy {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .edit-tab-btn .eti-label {
        font-weight: 700;
        font-size: 14.5px;
        color: var(--tx-l);
        line-height: 1.3;
    }

    .edit-tab-btn .eti-sub {
        font-size: 11.5px;
        color: var(--mt-l);
        font-weight: 500;
    }

    .edit-tab-btn .eti-check {
        margin-left: auto;
        color: var(--rg-dk);
        font-size: 17px;
        opacity: 0;
        transform: scale(.6);
        transition: all .22s ease;
    }

    .edit-tab-btn:hover {
        border-color: var(--rg-lt);
    }

    .edit-tab-btn.active {
        border-color: var(--rg);
        background: linear-gradient(135deg, rgba(196,134,110,.09), rgba(201,168,76,.07));
        box-shadow: 0 8px 20px -10px rgba(138,82,64,.4);
    }

        .edit-tab-btn.active .eti-icon {
            background: linear-gradient(100deg, var(--rg-dk), var(--rg) 60%, var(--gd) 140%);
            color: #fff;
        }

        .edit-tab-btn.active .eti-label {
            color: var(--rg-dk);
        }

        .edit-tab-btn.active .eti-check {
            opacity: 1;
            transform: scale(1);
        }

/* ══════════ SECTION EXTRAS  makes each section visually distinct ══════════ */
.section-extra {
    margin-top: 44px;
}

/* About NFC  icon + title + text cards with underline link */
.pill-row {
    margin: 0 -12px;
}

.pill-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1.5px solid var(--bdr);
    border-radius: 16px;
    padding: 20px 20px 18px;
    height: 100%;
    box-shadow: 0 4px 14px -9px rgba(138,82,64,.25);
    transition: all .25s ease;
}

    .pill-item:hover {
        transform: translateY(-4px);
        border-color: var(--rg-lt);
        box-shadow: 0 12px 26px -12px rgba(138,82,64,.35);
    }

    .pill-item .pill-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--rg-dk), var(--rg));
        color: #fff;
        font-size: 16px;
        flex-shrink: 0;
        margin-bottom: 4px;
    }

    .pill-item .pill-title {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 14.5px;
        color: var(--tx-l);
        margin: 0 0 6px;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .pill-item .pill-text {
        font-size: 12.5px;
        color: var(--mt-l);
        line-height: 1.65;
        margin: 0 0 14px;
    }

    .pill-item .pill-link {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--rg-dk);
        text-decoration: underline;
        text-underline-offset: 3px;
        margin-top: auto;
        transition: color .2s ease;
        display: none;
    }

        .pill-item .pill-link:hover {
            color: var(--gd-dk);
            text-decoration: underline;
        }
/* How to Create  numbered steps */
.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: #fff;
    background: linear-gradient(135deg, var(--rg-dk), var(--rg));
    box-shadow: 0 6px 16px -6px rgba(138,82,64,.5);
}

.step-body h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--tx-l);
    margin: 0 0 5px;
    line-height: 1.2;
}

.step-body p {
    font-size: 13.5px;
    color: var(--mt-l);
    margin: 0;
    line-height: 1.65;
}

/* Edit Profile  quick fact tags */
.check-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -6px 0 24px;
}

.check-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rg-dk);
    background: rgba(196, 134, 110, .09);
    border: 1px solid rgba(196, 134, 110, .22);
    padding: 2px 8px;
    border-radius: 50px;
}

    .check-tag i {
        color: var(--gd-dk);
        font-size: 11px;
    }

/* Features  small icon cards */
.feature-card {
    background: #FFFFFF;
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 22px 18px;
    height: 100%;
    transition: all .25s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: rgba(196,134,110,.4);
    }

    .feature-card .fc-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--gd-dk), var(--gd));
        color: #fff;
        font-size: 17px;
        margin-bottom: 14px;
    }

    .feature-card h4 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 14.5px;
        color: var(--tx-l);
        margin: 0 0 6px;
        line-height: 1.2;
    }

    .feature-card p {
        font-size: 12.5px;
        color: var(--mt-l);
        margin: 0;
        line-height: 1.6;
    }

@media (max-width: 575px) {
    .section-extra {
        margin-top: 30px;
    }

    .pill-item {
        padding: 18px 16px 16px;
    }
}

@media (max-width: 991px) {
    .info-flex, .info-flex.reverse {
        flex-direction: column;
    }

    .info-text {
        flex: 1 1 auto;
        max-width: 100%;
        margin-bottom: 26px;
    }

    .info-heading {
        font-size: 24px;
    }

    .info-section {
        padding: 40px 0;
    }
}

/* ══════════ INSTAGRAM REELS (now last section) ══════════ */
.reels-section {
    padding: 50px 0 30px;
    background-color: #fff;
}

.reels-head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 46px;
}

.reels-head-left {
    max-width: 560px;
}

.reels-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rg-dk);
    margin-bottom: 5px;
}

    .reels-eyebrow i {
        color: var(--gd-dk);
        font-size: 14px;
    }

.reels-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--tx-l);
    margin-bottom: 3px;
    line-height: 1.2;
}

    .reels-heading span {
        background: linear-gradient(90deg, var(--rg-dk), var(--gd-dk));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.reels-para {
    color: var(--mt-l);
    font-size: 15.5px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.reel-card {
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(138,82,64,.08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .reel-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 34px rgba(138,82,64,.16);
        border-color: var(--rg-lt);
    }

.reel-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--bg-l2);
    overflow: hidden;
    cursor: pointer;
}

    .reel-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .reel-media:hover img {
        transform: scale(1.06);
    }

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rg-dk);
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
    transition: transform .3s ease, background .3s ease;
}

.reel-media:hover .reel-play-btn {
    transform: translate(-50%,-50%) scale(1.1);
    background: #fff;
}

.reel-media.is-playing::before, .reel-media.is-playing .reel-play-btn {
    display: none;
}

.reel-media.is-playing {
    aspect-ratio: auto;
    cursor: default;
}

.reel-media .instagram-media {
    margin: 0 !important;
    width: 100% !important;
}

.reel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--bdr);
}

    .reel-footer .handle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--tx-l);
    }

        .reel-footer .handle i {
            color: var(--rg);
            font-size: 15px;
        }

    .reel-footer a.open-link {
        color: var(--gd-dk);
        font-size: 15px;
        transition: color .25s ease, transform .25s ease;
    }

        .reel-footer a.open-link:hover {
            color: var(--rg-dk);
            transform: scale(1.15);
        }

.reels-cta-wrap {
    text-align: center;
    margin-top: 10px;
}

.btn-follow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 34px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, var(--rg-dk), var(--rg), var(--gd));
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(196,134,110,.32);
    transition: background-position .5s ease, transform .3s ease, box-shadow .3s ease;
}

    .btn-follow:hover {
        background-position: 100% 0%;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(196,134,110,.42);
    }

@media (max-width: 769px) {
    .reels-heading {
        font-size: 2rem;
    }

    .info-video-col {
        position: relative;
    }

    .info-video-wrap iframe {
        position: relative;
    }
}

section#appExploreSection {
    overflow: visible !important;
}

/*-----------Grid--------------*/
@media (min-width: 768px) {
    .container {
        max-width: 850px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1020px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1570px !important;
    }
}

@media (min-width: 1400px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1320px !important;
    }

    .tpl-img-wrap {
        height: 370px;
    }

    #sliderUltra .tpl-img-wrap {
        height: 470px;
    }
}

@media (min-width: 1600px) {
    .container, .nav-header-container {
        width: 100% !important;
        max-width: 1450px !important;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 21px;
    }

    span#modalTitleText {
        font-size: 12px;
        line-height: 1.2;
    }

    .crumb-list {
        font-size: 10px;
    }

    .quick-nav {
        top: 75px;
    }

    .modal-footer-actions {
        gap: 7px;
    }

    .btn-back-modal {
        font-size: 10.5px;
        padding: 5px 10px 5px 10px;
    }

    .btn-buy-modal {
        font-size: 10.5px;
        align-items: center;
        padding: 4px 10px;
    }

    .btn-back .icon-circle {
        width: 20px;
        height: 20px;
    }

    .vcm-footer {
        border-top: 1px solid var(--bdr);
        padding: 10px 8px;
    }

    .vcm-modal.vcm-open {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



/* ══════════ APP FEATURE EXPLORER ══════════ */
.afe-section {
    padding: 56px 0;
    background: var(--bg-l2);
}

/* ---- video stage ---- */
.afe-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #16100C;
    box-shadow: 0 20px 50px -18px rgba(138,82,64,.4);
    border: 1px solid var(--bdr);
}

    .afe-video-wrap iframe,
    .afe-video-wrap .afe-video-poster {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        object-fit: cover;
    }

    .afe-video-wrap .afe-video-poster {
        transition: opacity .3s ease;
        cursor: pointer;
    }

    .afe-video-wrap.is-playing .afe-video-poster {
        opacity: 0;
        pointer-events: none;
    }

.afe-poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rg-dk);
    font-size: 20px;
    box-shadow: 0 10px 26px -6px rgba(0,0,0,.4);
    transition: transform .25s ease;
}

.afe-video-wrap:hover .afe-poster-play {
    transform: translate(-50%,-50%) scale(1.08);
}

.afe-video-wrap.is-playing .afe-poster-play {
    display: none;
}

.afe-now-playing {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(30,20,14,.55);
    backdrop-filter: blur(6px);
    color: #FFF7F0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .03em;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
}

    .afe-now-playing .afe-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gd-lt);
        box-shadow: 0 0 0 0 rgba(226,196,126,.6);
        animation: afe-live-pulse 1.6s ease-out infinite;
    }

@keyframes afe-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226,196,126,.55);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(226,196,126,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(226,196,126,0);
    }
}

/* ---- "Tap for Full Details" caption, right under the video ---- */
.afe-tap-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.afe-tap-caption-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rg-dk), var(--rg));
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 18px -8px rgba(138,82,64,.55);
}

.afe-tap-caption-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    color: var(--tx-l);
    line-height: 1.3;
}

.app-left-side {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}
/* ---- small tabs strip under the video (up to 5) ---- */
.afe-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 14px;
}

.afe-tab-btn {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    background: #FFFFFF;
    border: 1.5px solid var(--bdr);
    border-radius: 13px;
    padding: 10px 6px 9px;
    cursor: pointer;
    transition: all .22s ease;
}

    .afe-tab-btn .afe-tab-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-l2);
        color: var(--rg-dk);
        font-size: 13.5px;
        transition: all .22s ease;
    }

    .afe-tab-btn .afe-tab-label {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 10.5px;
        line-height: 1.25;
        color: var(--mt-l);
    }

    .afe-tab-btn:hover {
        border-color: var(--rg-lt);
    }

        .afe-tab-btn:hover .afe-tab-icon {
            background: var(--rg-lt);
            color: #fff;
        }

    .afe-tab-btn.active {
        border-color: var(--rg);
        background: linear-gradient(135deg, rgba(196,134,110,.10), rgba(201,168,76,.08));
        box-shadow: 0 8px 18px -10px rgba(138,82,64,.4);
    }

        .afe-tab-btn.active .afe-tab-icon {
            background: linear-gradient(100deg, var(--rg-dk), var(--rg) 60%, var(--gd) 140%);
            color: #fff;
        }

        .afe-tab-btn.active .afe-tab-label {
            color: var(--rg-dk);
        }

/* ---- right side copy ---- */
.afe-lead {
    color: var(--mt-l);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* ---- feature cards (Bootstrap row/col based) ---- */
.afe-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #FFFFFF;
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 14px 14px 14px 13px;
    height: 100%;
    transition: all .22s ease;
}

    .afe-feature-item:hover {
        border-color: var(--rg-lt);
        transform: translateY(-3px);
        box-shadow: 0 12px 24px -14px rgba(138,82,64,.35);
    }

    .afe-feature-item .afe-fi-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--rg-dk), var(--rg));
        color: #fff;
        font-size: 14.5px;
    }

    .afe-feature-item .afe-fi-title {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 13.5px;
        color: var(--tx-l);
        margin: 0 0 3px;
        line-height: 1.3;
    }

    .afe-feature-item .afe-fi-text {
        font-size: 11.5px;
        color: var(--mt-l);
        line-height: 1.55;
        margin: 0;
    }

/* ---- download buttons (right side of the heading/paragraph) ---- */
.afe-download-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12.5px;
    color: var(--tx-l);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .afe-download-label i {
        color: var(--gd-dk);
    }

.afe-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 14px;
    border-radius: 13px;
    text-decoration: none;
    font-family: var(--font-body);
    transition: all .22s ease;
    border: 1px solid transparent;
    width: 100%;
}

    .afe-store-btn + .afe-store-btn {
        margin-top: 10px;
    }

    .afe-store-btn:hover {
        text-decoration: none;
        transform: translateY(-2px);
    }

    .afe-store-btn.afe-apple {
        background: #14100D;
        color: #fff;
        box-shadow: 0 10px 22px -10px rgba(20,16,13,.55);
    }

        .afe-store-btn.afe-apple:hover {
            color: #fff;
            box-shadow: 0 14px 28px -10px rgba(20,16,13,.65);
        }

    .afe-store-btn.afe-google {
        background: #FFFFFF;
        color: var(--tx-l);
        border-color: var(--bdr);
        box-shadow: 0 6px 16px -10px rgba(138,82,64,.3);
    }

        .afe-store-btn.afe-google:hover {
            color: var(--tx-l);
            border-color: var(--rg-lt);
        }

    .afe-store-btn i {
        font-size: 20px;
        flex-shrink: 0;
    }

.afe-store-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

    .afe-store-copy .afe-store-sub {
        font-size: 9.5px;
        letter-spacing: .04em;
        text-transform: uppercase;
        opacity: .75;
    }

    .afe-store-copy .afe-store-main {
        font-size: 14px;
        font-weight: 700;
    }


.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 420px;
}

.hero-right {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

    .hero-video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.unmute-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

    .unmute-btn:hover {
        background: rgba(0,0,0,0.85);
    }

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-video-wrap {
        max-width: 340px;
        margin: 0 auto;
    }
}


/* ---- responsive ---- */
@media (max-width: 991px) {
    .afe-download-col {
        margin-top: 24px;
    }
    .hero-right {
        flex: 0 0 250px;
    }

}

@media (max-width: 575px) {
    .afe-section {
        padding: 40px 0;
    }

    .afe-tabs {
        flex-wrap: wrap;
    }

    .afe-tab-btn {
        flex: 1 1 30%;
    }

    .afe-tab-label {
        font-size: 9.5px;
    }
    .hero-right {
        flex: 0 0 220px;
    }
}


