:root {
    --gold: #b8860b;
    --gl: #d4a017;
    --gb: #f0c040;
    --gp: #fdf3dc;
    --gb2: rgba(184, 134, 11, 0.18);
    --cream: #fefaf3;
    --white: #fff;
    --dark: #1a1208;
    --dark2: #2d2010;
    --dark3: #3a2a12;
    --mid: #5a4a2a;
    --muted: #9a8060;
    --border: rgba(184, 134, 11, 0.2);
    --red: #e05a4e;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

.mobile-icons {
    display: none;
}


/* ═══════════ TOPBAR ═══════════ */

.topbar {
    background: linear-gradient( 90deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.7rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(245, 217, 126, 0.75);
}

.topbar-left i {
    width: 12px;
    height: 12px;
    color: var(--gb);
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
    max-width: 420px;
}

.ticker {
    display: flex;
    gap: 0;
    animation: ticker 20s linear infinite;
}

.ticker span {
    white-space: nowrap;
    padding-right: 60px;
    color: rgba(245, 217, 126, 0.7);
    font-size: 0.68rem;
}

.ticker span strong {
    color: var(--gb);
}

.topbar-right {
    display: flex;
    gap: 18px;
    align-items: center;
}

.topbar-right a {
    color: rgba(245, 217, 126, 0.65);
    text-decoration: none;
    font-size: 0.68rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-right a:hover {
    color: var(--gb);
}

.topbar-right i {
    width: 11px;
    height: 11px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ═══════════ NAVBAR ═══════════ */

.main-nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s;
}

.main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(184, 134, 11, 0.12);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}


/* Logo */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--border);
    box-shadow: 0 2px 12px rgba(184, 134, 11, 0.18);
    overflow: hidden;
    background: var(--gp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
}

.nav-logo-tag {
    font-size: 0.54rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}


/* Desktop links */

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--mid);
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: var(--gp);
}

.nav-link i {
    width: 14px;
    height: 14px;
}

.nav-link .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e05a4e;
    position: absolute;
    top: 6px;
    right: 6px;
}


/* Dropdown */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.14);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.22s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.77rem;
    color: var(--mid);
    transition: all 0.2s;
}

.dd-item:hover {
    background: var(--gp);
    color: var(--gold);
}

.dd-item i {
    width: 14px;
    height: 14px;
    color: var(--gold);
}


/* Nav right */

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--mid);
    text-decoration: none;
    position: relative;
}

.nav-icon-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gp);
}

.nav-icon-btn i {
    width: 17px;
    height: 17px;
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #e05a4e;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.btn-nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #9a6f00, var(--gl), var(--gb));
    background-size: 200% auto;
    border: none;
    border-radius: 9px;
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: background-position 0.4s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background-position: right center;
    box-shadow: 0 4px 18px rgba(184, 134, 11, 0.3);
}

.btn-nav-cta i {
    width: 14px;
    height: 14px;
}


/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.hamburger:hover {
    border-color: var(--gold);
    background: var(--gp);
}

.ham-line {
    width: 18px;
    height: 2px;
    background: var(--mid);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════ OFFCANVAS ═══════════ */

.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 8, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.offcanvas-overlay.show {
    opacity: 1;
    visibility: visible;
}

.offcanvas-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.offcanvas-nav.open {
    right: 0;
}


/* Offcanvas header */

.oc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    flex-shrink: 0;
}

.oc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oc-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(240, 192, 64, 0.3);
    overflow: hidden;
}

.oc-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oc-logo-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gb);
    line-height: 1;
}

.oc-logo-text small {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.16em;
    color: rgba(245, 217, 126, 0.5);
    text-transform: uppercase;
}

.oc-close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gb);
}

.oc-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.oc-close i {
    width: 18px;
    height: 18px;
}


/* Offcanvas user strip */

.oc-user-strip {
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8e8, var(--gp));
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.oc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.oc-user-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}

.oc-user-id {
    font-size: 0.67rem;
    color: var(--muted);
}

.oc-user-rank {
    font-size: 0.6rem;
    background: var(--dark);
    color: var(--gb);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    margin-top: 3px;
}

.oc-wallet {
    margin-left: auto;
    text-align: right;
}

.oc-wallet-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.oc-wallet-key {
    font-size: 0.6rem;
    color: var(--muted);
}


/* Offcanvas links */

.oc-section-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 16px 20px 6px;
}

.oc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--mid);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    position: relative;
}

.oc-link:hover,
.oc-link.active {
    background: var(--gp);
    color: var(--gold);
    border-left-color: var(--gold);
}

.oc-link i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.oc-link-badge {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 700;
    background: #e05a4e;
    color: #fff;
    padding: 2px 7px;
    border-radius: 100px;
}

.oc-link-count {
    margin-left: auto;
    font-size: 0.62rem;
    color: var(--muted);
}

.oc-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}


/* Offcanvas footer */

.oc-footer {
    margin-top: auto;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.btn-oc-cta {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #9a6f00, var(--gl), var(--gb));
    background-size: 200% auto;
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 10px;
    transition: background-position 0.4s;
}

.btn-oc-cta:hover {
    background-position: right center;
}

.btn-oc-cta i {
    width: 15px;
    height: 15px;
}

.btn-oc-outline {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.2s;
}

.btn-oc-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-oc-outline i {
    width: 14px;
    height: 14px;
}

.oc-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.oc-soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
}

.oc-soc-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gp);
}

.oc-soc-btn i {
    width: 14px;
    height: 14px;
}


/* ── Mobile Bottom Bar ── */


/* ── demo topbar ── */

.demo-bar {
    background: linear-gradient(135deg, #1a1208, #2d2010);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.demo-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: var(--gold-bright);
}

.demo-logo small {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.46rem;
    letter-spacing: 0.18em;
    color: rgba(253, 243, 220, 0.5);
    text-transform: uppercase;
}

.demo-note {
    font-size: 0.65rem;
    color: rgba(253, 243, 220, 0.5);
}


/* demo content */

.demo-content {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 16px;
    text-align: center;
}

.demo-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.demo-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ════════════════════════════════════════════
   ★  MOBILE BOTTOM BAR  ★
════════════════════════════════════════════ */

.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    /* glass effect */
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid var(--gold-border);
    box-shadow: 0 -1px 0 rgba(184, 134, 11, 0.08), 0 -8px 32px rgba(184, 134, 11, 0.1), 0 -2px 12px rgba(0, 0, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    display: none;
}

.mobile-bottom-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 64px;
    padding: 0 6px;
    max-width: 520px;
    margin: 0 auto;
}


/* ── Each nav item ── */

.mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 8px 2px 10px;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.22s;
}


/* active gold top bar */

.mobile-bottom-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-bottom-item.active::after {
    width: 26px;
}

.mobile-bottom-item.active {
    color: var(--gold);
}


/* icon bounce on active */

.mobile-bottom-item svg,
.mobile-bottom-item .mob-avatar {
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-bottom-item.active svg,
.mobile-bottom-item.active .mob-avatar {
    transform: translateY(-2px);
}

.mobile-bottom-item:active svg,
.mobile-bottom-item:active .mob-avatar {
    transform: scale(0.85);
}


/* active icon glow */

.mobile-bottom-item.active svg {
    filter: drop-shadow(0 2px 5px rgba(184, 134, 11, 0.4));
}


/* label */

.mobile-bottom-item span:not(.mob-badge) {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1;
    transition: font-weight 0.2s;
}

.mobile-bottom-item.active span:not(.mob-badge) {
    font-weight: 700;
}


/* ── Cart badge ── */

.mob-badge {
    position: absolute;
    top: 5px;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    padding: 0 3px;
    box-shadow: 0 2px 6px rgba(224, 90, 78, 0.4);
    animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}


/* ── Profile avatar in nav ── */

.mob-profile-trigger {
    cursor: pointer;
}

.mob-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-bottom-item.active .mob-avatar {
    box-shadow: 0 0 0 2.5px var(--gold-bright), 0 4px 12px rgba(184, 134, 11, 0.35);
    border-color: #fff;
}


/* ════════════════════════════════════════════
   ★  PROFILE SLIDE-UP PANEL  ★
════════════════════════════════════════════ */


/* Overlay */

.mob-profile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 8, 0.5);
    z-index: 1000;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mob-profile-overlay.open {
    display: block;
    opacity: 1;
}


/* Panel */

.mob-profile-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 0 0 calc(20px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.18);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.34, 1.15, 0.64, 1);
    max-height: 88vh;
    overflow-y: auto;
    /* hide scrollbar */
    scrollbar-width: none;
}

.mob-profile-panel::-webkit-scrollbar {
    display: none;
}

.mob-profile-panel.open {
    transform: translateY(0);
}


/* drag handle */

.mob-profile-handle {
    width: 36px;
    height: 4px;
    background: #e8dcc8;
    border-radius: 2px;
    margin: 14px auto 0;
}


/* ── Panel header (dark hero) ── */

.mob-profile-header {
    margin: 16px 16px 0;
    padding: 20px;
    background: linear-gradient(145deg, #1a1208, #2d2010);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.mob-profile-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 80% 20%, rgba(240, 192, 64, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.mob-profile-avatar-lg {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-bright), var(--gold));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.4);
    position: relative;
    z-index: 1;
}

.mob-profile-info {
    position: relative;
    z-index: 1;
}

.mob-profile-name {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.mob-profile-email {
    font-size: 0.68rem;
    color: rgba(253, 243, 220, 0.55);
    margin-top: 3px;
}

.mob-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 7px;
    padding: 4px 10px;
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid rgba(240, 192, 64, 0.25);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gold-bright);
    letter-spacing: 0.06em;
}


/* ── Quick stats strip ── */

.mob-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 16px 0;
}

.mob-stat {
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
}

.mob-stat-val {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.mob-stat-label {
    font-size: 0.58rem;
    color: var(--text-muted);
    margin-top: 1px;
}


/* ── Menu ── */

.mob-profile-menu {
    padding: 14px 16px 0;
}

.mob-menu-section-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 4px;
    margin-bottom: 6px;
    margin-top: 14px;
}

.mob-menu-list {
    background: #fff;
    border: 1px solid #f0e8d0;
    border-radius: 16px;
    overflow: hidden;
}

.mob-profile-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(184, 134, 11, 0.07);
    transition: background 0.16s, color 0.16s;
    -webkit-tap-highlight-color: transparent;
}

.mob-profile-link:last-child {
    border-bottom: none;
}

.mob-profile-link:hover,
.mob-profile-link:active {
    background: var(--gold-pale);
    color: var(--gold);
}


/* icon box */

.mob-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ic-gold {
    background: linear-gradient(135deg, #fef3d0, #fde89a);
    color: var(--gold);
}

.ic-blue {
    background: #e8f0fe;
    color: #4a6cf7;
}

.ic-green {
    background: #e6f7ee;
    color: #2d9e5e;
}

.ic-purple {
    background: #f0eaff;
    color: #7c5cbf;
}

.ic-teal {
    background: #e0f7f4;
    color: #1a9e8f;
}

.ic-red {
    background: #fdecea;
    color: var(--red);
}

.mob-link-text {
    flex: 1;
}

.mob-link-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mob-link-desc {
    font-size: 0.63rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.mob-profile-link:hover .mob-link-title,
.mob-profile-link:active .mob-link-title {
    color: var(--gold);
}

.mob-link-arrow {
    color: #d0c4a8;
    flex-shrink: 0;
}

.mob-link-badge {
    background: var(--red);
    color: #fff;
    font-size: 0.52rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
}


/* divider */

.mob-profile-divider {
    height: 1px;
    background: #f0e8d0;
    margin: 0;
}


/* logout */

.mob-logout .mob-link-title {
    color: var(--red);
}

.mob-logout .mob-link-arrow {
    color: var(--red);
    opacity: 0.4;
}

.mob-logout:hover,
.mob-logout:active {
    background: #fdecea !important;
    color: var(--red) !important;
}


/* ═══════════ HERO ═══════════ */

.hero {
    min-height: 100vh;
    background: linear-gradient( 135deg, var(--cream) 0%, #fff8e0 40%, #fff3cc 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* Decorative blobs */

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(240, 192, 64, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(184, 134, 11, 0.08) 0%, transparent 65%);
    pointer-events: none;
}


/* Animated dots grid */

.dots-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient( circle, rgba(184, 134, 11, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-wrap {
    /* padding: 100px 0 60px; */
    position: relative;
    z-index: 1;
}


/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--dark);
    color: var(--gb);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge i {
    width: 13px;
    height: 13px;
    color: var(--gb);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27ae60;
    animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .accent {
    color: var(--gold);
    font-style: italic;
}

.hero-title .line2 {
    display: block;
}

.hero-sub {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s 0.2s ease both;
}


/* Stats strip */

.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.3s ease both;
}

.h-stat {
    padding-right: 28px;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

.h-stat:last-child {
    border-right: none;
    margin-right: 0;
}

.h-stat-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.h-stat-key {
    font-size: 0.66rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}


/* CTA buttons */

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.4s ease both;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #9a6f00, var(--gl), var(--gb), var(--gl));
    background-size: 200% auto;
    border: none;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: background-position 0.4s, box-shadow 0.2s, transform 0.1s;
}

.btn-hero-primary:hover {
    background-position: right center;
    box-shadow: 0 8px 28px rgba(184, 134, 11, 0.32);
    transform: translateY(-2px);
}

.btn-hero-primary i {
    width: 17px;
    height: 17px;
}

.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--dark);
    border: none;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gb);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-hero-secondary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    width: 17px;
    height: 17px;
}

.btn-hero-ghost {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 22px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-hero-ghost:hover {
    background: var(--gold);
    color: #fff;
}

.btn-hero-ghost i {
    width: 15px;
    height: 15px;
}


/* Trust badges */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp 0.6s 0.5s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--muted);
}

.trust-item i {
    width: 13px;
    height: 13px;
    color: #27ae60;
}


/* Hero right — floating cards */

.hero-visual {
    position: relative;
    height: 540px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-main-card {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: var(--dark);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(26, 18, 8, 0.3);
}

.hmc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hmc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.hmc-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gb);
    line-height: 1;
}

.hmc-rank {
    font-size: 0.62rem;
    color: rgba(245, 217, 126, 0.55);
}

.hmc-live {
    margin-left: auto;
    font-size: 0.6rem;
    color: #2ecc71;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    animation: blink 1.5s ease-in-out infinite;
}

.hmc-earning {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gb);
    line-height: 1;
    margin-bottom: 4px;
}

.hmc-label {
    font-size: 0.65rem;
    color: rgba(245, 217, 126, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hmc-bar-wrap {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 6px;
    margin-bottom: 6px;
    overflow: hidden;
}

.hmc-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--gold), var(--gb));
    animation: barGrow 2s 1s ease both;
}

.hmc-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: rgba(245, 217, 126, 0.4);
}

.hmc-items {
    display: flex;
    gap: 0;
    margin-top: 16px;
}

.hmc-item {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hmc-item:last-child {
    border-right: none;
}

.hmc-item-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gb);
}

.hmc-item-key {
    font-size: 0.58rem;
    color: rgba(245, 217, 126, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* Floating mini cards */

.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.14);
    animation: float 3s ease-in-out infinite;
}

.float-card.card1 {
    top: 20px;
    right: 0;
    width: 170px;
    animation-delay: 0s;
}

.float-card.card2 {
    bottom: 80px;
    left: 0;
    width: 175px;
    animation-delay: 1s;
}

.float-card.card3 {
    bottom: 20px;
    right: 20px;
    width: 160px;
    animation-delay: 0.5s;
}

.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.fc-icon i {
    width: 16px;
    height: 16px;
    color: #fff;
}

.fc-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.fc-key {
    font-size: 0.62rem;
    color: var(--muted);
}

.fc-badge {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 3px;
    display: inline-block;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes barGrow {
    from {
        width: 0;
    }
    to {
        width: 78%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ═══════════ SECTION SHARED ═══════════ */

section {
    padding: 80px 0;
}

.sec-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.sec-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.sec-title .gold {
    color: var(--gold);
    font-style: italic;
}

.sec-sub {
    font-size: 0.84rem;
    color: var(--mid);
    line-height: 1.75;
    max-width: 520px;
}


/* ═══════════ HOW IT WORKS ═══════════ */

.hiw-section {
    background: #fff;
}

.step-card {
    background: var(--gp);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 24px solid rgba(184, 134, 11, 0.06);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(184, 134, 11, 0.14);
    border-color: var(--gold);
}

.step-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(184, 134, 11, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.step-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.25);
}

.step-icon-box i {
    width: 24px;
    height: 24px;
    color: #fff;
}

.step-title2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-desc2 {
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 1.65;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.1);
}

.step-arrow i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}


/* ═══════════ PRODUCTS ═══════════ */

.products-section {
    background: linear-gradient(135deg, var(--cream) 0%, #fff8e0 100%);
}

.prod-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(184, 134, 11, 0.14);
    border-color: var(--gl);
}

.prod-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.prod-img i {
    width: 52px;
    height: 52px;
    color: rgba(184, 134, 11, 0.35);
}

.prod-img span {
    font-size: 0.7rem;
    color: var(--muted);
}

.prod-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-badge {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.06em;
}

.p-b1 {
    background: var(--dark);
    color: var(--gb);
}

.p-b2 {
    background: #e05a4e;
    color: #fff;
}

.prod-body {
    padding: 16px;
}

.prod-brand {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.prod-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.prod-stars {
    color: var(--gold);
    font-size: 0.72rem;
    margin-bottom: 8px;
}

.prod-stars span {
    color: var(--muted);
    font-size: 0.66rem;
}

.prod-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.prod-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.prod-mrp {
    font-size: 0.72rem;
    color: var(--muted);
    text-decoration: line-through;
}

.prod-off {
    font-size: 0.65rem;
    font-weight: 700;
    color: #27ae60;
    background: #e8f8f0;
    padding: 2px 6px;
    border-radius: 4px;
}

.prod-earn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: var(--gold);
    background: var(--gp);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.prod-earn i {
    width: 12px;
    height: 12px;
}

.btn-prod {
    width: 100%;
    padding: 9px;
    background: linear-gradient(135deg, #9a6f00, var(--gl), var(--gb));
    background-size: 200% auto;
    border: none;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-position 0.3s;
}

.btn-prod:hover {
    background-position: right center;
}

.btn-prod i {
    width: 13px;
    height: 13px;
}


/* ═══════════ EARN SECTION ═══════════ */

.earn-section {
    background: linear-gradient( 135deg, var(--dark) 0%, var(--dark2) 60%, var(--dark3) 100%);
    position: relative;
    overflow: hidden;
}

.earn-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 60px solid rgba(240, 192, 64, 0.05);
}

.earn-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(240, 192, 64, 0.04);
}

.earn-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(240, 192, 64, 0.15);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.earn-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient( 90deg, transparent, var(--gl), var(--gb), transparent);
}

.earn-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(240, 192, 64, 0.35);
}

.earn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.earn-icon i {
    width: 22px;
    height: 22px;
    color: #fff;
}

.earn-pct {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gb);
    line-height: 1;
    margin-bottom: 3px;
}

.earn-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(245, 217, 126, 0.85);
    margin-bottom: 6px;
}

.earn-desc {
    font-size: 0.73rem;
    color: rgba(245, 217, 126, 0.5);
    line-height: 1.6;
}


/* ═══════════ TESTIMONIALS ═══════════ */

.testi-section {
    background: #fff;
}

.testi-card {
    background: var(--gp);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: all 0.25s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(184, 134, 11, 0.12);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 0.8rem;
    color: var(--mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testi-text::before {
    content: '"';
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 0.5;
    display: block;
    margin-bottom: 6px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.testi-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
}

.testi-role {
    font-size: 0.64rem;
    color: var(--muted);
}

.testi-earn {
    margin-left: auto;
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}


/* ═══════════ RANKS ═══════════ */

.ranks-section {
    background: linear-gradient(135deg, var(--cream) 0%, #fff8e0 100%);
}

.rank-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(184, 134, 11, 0.14);
}

.rank-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff8e8, var(--gp));
}

.rank-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 14px;
    right: -22px;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    color: var(--dark);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 0.08em;
}

.rank-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.rank-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.rank-bv {
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.rank-perk {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.74rem;
    color: var(--mid);
    margin-bottom: 7px;
    text-align: left;
}

.rank-perk i {
    width: 13px;
    height: 13px;
    color: #27ae60;
    flex-shrink: 0;
}

.rank-earn {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 14px;
}

.rank-earn-key {
    font-size: 0.64rem;
    color: var(--muted);
}


/* ═══════════ CTA BANNER ═══════════ */

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(240, 192, 64, 0.06);
}

.cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gb);
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 0.84rem;
    color: rgba(245, 217, 126, 0.65);
    line-height: 1.75;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.cta-feat {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: rgba(245, 217, 126, 0.7);
}

.cta-feat i {
    width: 14px;
    height: 14px;
    color: #27ae60;
}

.cta-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    flex-wrap: wrap;
}

.cta-input {
    flex: 1;
    min-width: 200px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.25);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    color: var(--gb);
    outline: none;
    transition: border-color 0.2s;
}

.cta-input::placeholder {
    color: rgba(245, 217, 126, 0.35);
}

.cta-input:focus {
    border-color: rgba(240, 192, 64, 0.6);
}

.btn-cta-submit {
    padding: 13px 26px;
    background: linear-gradient(135deg, var(--gold), var(--gb));
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-cta-submit:hover {
    opacity: 0.88;
}


/* ═══════════ FOOTER ═══════════ */

footer {
    background: var(--dark);
    padding: 60px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(240, 192, 64, 0.25);
    overflow: hidden;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gb);
}

.footer-logo-tag {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 217, 126, 0.4);
}

.footer-desc {
    font-size: 0.75rem;
    color: rgba(245, 217, 126, 0.5);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.f-soc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(240, 192, 64, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(245, 217, 126, 0.5);
}

.f-soc:hover {
    border-color: var(--gl);
    color: var(--gb);
    background: rgba(240, 192, 64, 0.1);
}

.f-soc i {
    width: 14px;
    height: 14px;
}

.footer-heading {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 0.76rem;
    color: rgba(245, 217, 126, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--gb);
}

.footer-links i {
    width: 11px;
    height: 11px;
}

.footer-bottom {
    border-top: 1px solid rgba(240, 192, 64, 0.1);
    padding: 18px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.68rem;
    color: rgba(245, 217, 126, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    font-size: 0.66rem;
    color: rgba(245, 217, 126, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--gb);
}


/* ═══ RESPONSIVE ═══ */

@media (max-width: 991px) {
    .nav-links-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-visual {
        height: 380px;
        margin-top: 40px;
    }
    .step-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .topbar-right {
        display: none;
    }
    .ticker-wrap {
        max-width: 200px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 0;
        overflow-x: auto;
    }
    .h-stat {
        min-width: 90px;
    }
    .hero-visual {
        height: 320px;
    }
    .hero-main-card {
        width: 250px;
    }
    .float-card.card1,
    .float-card.card3 {
        display: none;
    }
    .mobile-icons {
        display: flex;
    }
}


/* ═══ RESPONSIVE ═══ */

@media (max-width: 768px) {
    /* Bottom bar */
    .mobile-bottom-bar {
        display: block;
    }
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ead7b1;
    padding: 8px 14px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.profile-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a017, #8b5e00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.profile-name {
    color: #2b1d0e;
    font-weight: 600;
    font-size: 14px;
}

.profile-info small {
    color: #8b7355;
    font-size: 12px;
}


/***************************************************************/


/* ── DESKTOP SEARCH BOX ── */

.nav-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-box input {
    width: 210px;
    padding: 8px 38px 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    background: var(--gp);
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, width 0.3s ease;
}

.nav-search-box input::placeholder {
    color: var(--muted);
}

.nav-search-box input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    width: 270px;
}

.nav-search-box .s-icon {
    position: absolute;
    right: 10px;
    color: var(--muted);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.nav-search-box .s-icon i {
    width: 15px;
    height: 15px;
}


/* ════════════════════════════════════
   MOBILE SEARCH BAR (animated slide down)
════════════════════════════════════ */

.mob-search-bar {
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    box-shadow: 0 6px 24px rgba(184, 134, 11, .1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .38s cubic-bezier(.4, 0, .2, 1), opacity .28s ease, padding .3s ease;
    padding: 0 16px;
    position: sticky;
    top: 62px;
    z-index: 999;
    display: none;
    /* shown only mobile */
}

.mob-search-bar.open {
    max-height: 72px;
    opacity: 1;
    padding: 10px 16px;
}

.mob-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gp);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0 12px;
    transition: border-color .2s, box-shadow .2s;
}

.mob-search-inner:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, .1);
}

.mob-search-inner i {
    width: 16px;
    height: 16px;
    color: var(--muted);
    flex-shrink: 0;
}

.mob-search-inner input {
    flex: 1;
    padding: 11px 0;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    color: var(--dark);
    outline: none;
}

.mob-search-inner input::placeholder {
    color: var(--muted);
}

.mob-search-clear {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: var(--mid);
    transition: background .2s;
}

.mob-search-clear i {
    width: 12px;
    height: 12px;
}

.mob-search-clear:hover {
    background: var(--gold);
    color: #fff;
}

.mob-search-inner input:not(:placeholder-shown)~.mob-search-clear {
    display: flex;
}


/* ── MOBILE SEARCH ICON ── */

.mob-search-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: none;
    /* show only on mobile via media query */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mid);
    transition: all .2s;
    flex-shrink: 0;
}

.mob-search-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gp);
}

.mob-search-btn i {
    width: 17px;
    height: 17px;
}

.mob-search-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gp);
}

@media (max-width: 991px) {
    .nav-links-desktop {
        display: none;
    }
    .nav-search-box {
        display: none;
    }
    .d-none.d-lg-flex {
        display: none !important;
    }
    .nav-search-box {
        display: none;
    }
    .mob-search-bar {
        display: block;
    }
    .mob-search-btn {
        display: flex;
    }
}

@media (max-width: 575px) {
    /* hide cart icon text on tiny screens */
    .d-none.d-sm-flex {
        display: none !important;
    }
}

@media (min-width: 992px) {
    /* make sure mobile bar never shows on desktop */
    .mob-search-bar {
        display: none !important;
    }
}


/********************** ORDER SUCCESS  **********************************/


/* CONFETTI CANVAS */

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}


/* SUCCESS HERO */

.success-wrap {
    padding: 48px 0 60px;
}

.success-hero {
    text-align: center;
    margin-bottom: 40px;
    animation: popIn .5s cubic-bezier(.175, .885, .32, 1.275);
}

.success-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 40px rgba(39, 174, 96, .3);
    animation: pulseGreen 2s ease-in-out infinite;
}

.success-ring i {
    width: 52px;
    height: 52px;
    color: #fff;
}

.success-tag {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-sub {
    font-size: .84rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.6;
}


/* Order ID pill */

.order-id-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1208, #2d2010);
    color: var(--gold-bright);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.order-id-pill i {
    width: 15px;
    height: 15px;
}


/* SECTION CARD */

.section-card {
    background: #fff;
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-heading i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}


/* ORDER DETAILS ROW */

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f5ede0;
    font-size: .79rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
}

.detail-val {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}


/* ITEMS */

.order-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f5ede0;
}

.order-item:last-of-type {
    border-bottom: none;
}

.item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-img i {
    width: 20px;
    height: 20px;
    color: rgba(184, 134, 11, .4);
}

.item-name {
    font-size: .79rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.item-variant {
    font-size: .67rem;
    color: var(--text-muted);
}

.item-qty {
    font-size: .67rem;
    color: var(--text-mid);
    margin-top: 2px;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: auto;
    flex-shrink: 0;
}


/* TOTALS */

.totals-mini {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gold-border);
}

.t-row {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--text-mid);
    margin-bottom: 7px;
}

.t-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.t-row.green span:last-child {
    color: #27ae60;
}

.t-row.bold {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 6px;
    padding-top: 8px;
    border-top: 2px solid var(--gold-border);
}

.t-row.bold span:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}


/* ACTION BUTTONS */

.btn-primary-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 24px;
    background: linear-gradient(135deg, #9a6f00, var(--gold-light), var(--gold-bright), var(--gold-light));
    background-size: 200% auto;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-position .4s, box-shadow .2s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.btn-primary-gold:hover {
    background-position: right center;
    box-shadow: 0 5px 20px rgba(184, 134, 11, .3);
    color: #fff;
}

.btn-primary-gold i {
    width: 15px;
    height: 15px;
}

.btn-outline-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 24px;
    background: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold-bright);
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
}

.btn-outline-dark:hover {
    opacity: .85;
    color: var(--gold-bright);
}

.btn-outline-dark i {
    width: 15px;
    height: 15px;
}

.btn-outline-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 22px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

.btn-outline-gold i {
    width: 14px;
    height: 14px;
}


/* SECTION CARD */

.section-card {
    background: #fff;
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
}

.section-heading {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-heading i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}


/* ORDER DETAILS ROW */

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f5ede0;
    font-size: 0.79rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
}

.detail-val {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}


/* ITEMS */

.order-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f5ede0;
}

.order-item:last-of-type {
    border-bottom: none;
}

.item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-img i {
    width: 20px;
    height: 20px;
    color: rgba(184, 134, 11, 0.4);
}

.item-name {
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.item-variant {
    font-size: 0.67rem;
    color: var(--text-muted);
}

.item-qty {
    font-size: 0.67rem;
    color: var(--text-mid);
    margin-top: 2px;
}

.item-price {
    font-family: "Playfair Display", serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: auto;
    flex-shrink: 0;
}


/* TOTALS */

.totals-mini {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gold-border);
}

.t-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-bottom: 7px;
}

.t-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.t-row.green span:last-child {
    color: #27ae60;
}

.t-row.bold {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 6px;
    padding-top: 8px;
    border-top: 2px solid var(--gold-border);
}

.t-row.bold span:last-child {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
}


/* RATE PRODUCT */

.rate-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 12px 0;
}

.rate-star {
    font-size: 2rem;
    color: #e8dcc8;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.rate-star:hover,
.rate-star.active {
    color: var(--gold-bright);
}


/* ACTION BUTTONS */

.btn-primary-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 24px;
    background: linear-gradient( 135deg, #9a6f00, var(--gold-light), var(--gold-bright), var(--gold-light));
    background-size: 200% auto;
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-position 0.4s, box-shadow 0.2s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-primary-gold:hover {
    background-position: right center;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
    color: #fff;
}

.btn-primary-gold i {
    width: 15px;
    height: 15px;
}

.btn-outline-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 24px;
    background: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-bright);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-outline-dark:hover {
    opacity: 0.85;
    color: var(--gold-bright);
}

.btn-outline-dark i {
    width: 15px;
    height: 15px;
}

.btn-outline-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 22px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

.btn-outline-gold i {
    width: 14px;
    height: 14px;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGreen {
    0%,
    100% {
        box-shadow: 0 8px 40px rgba(39, 174, 96, .3);
    }
    50% {
        box-shadow: 0 8px 60px rgba(39, 174, 96, .5);
    }
}

@keyframes pulseGold {
    0%,
    100% {
        box-shadow: 0 3px 12px rgba(184, 134, 11, .3);
    }
    50% {
        box-shadow: 0 3px 20px rgba(184, 134, 11, .5);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-card {
    animation: fadeUp .5s ease both;
}

.section-card:nth-child(1) {
    animation-delay: .1s;
}

.section-card:nth-child(2) {
    animation-delay: .2s;
}

.section-card:nth-child(3) {
    animation-delay: .3s;
}