/* ===========================================================
DEXON-STYLE RESKIN    dark olive-black + lime green + yellow
(matched to the official Dexon cover). Space Grotesk display,
Kumbh Sans body. Bright product panel on a dark page.
Original markup & content preserved.
=========================================================== */
:root {
    --bg: #0d130f;
    --bg-soft: #16201a;
    --surface: #151e18;
    --ink: #ffffff;
    --ink-soft: #aebbb0;
    --muted: #76847b;
    --brand: #a3e635;
    --brand-2: #c7f24d;
    --brand-deep: #8ed01c;
    --brand-soft: rgba(163, 230, 53, 0.13);
    --accent: #ffd23f;
    --line: rgba(255, 255, 255, 0.09);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.45);
    --glow: 0 12px 34px rgba(163, 230, 53, 0.30);
    --radius: 28px;
    --radius-sm: 18px;
    --maxw: 1280px;
    --c-member: #a3e635;
    --c-export: #56c2ff;
    --c-srp: #ffd23f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}

body {
    font-family: 'Kumbh Sans', sans-serif;
    background: var(--bg);
    color: var(--ink-soft);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---------- Atmospheric glows ---------- */
.bg-decoration {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: float 16s ease-in-out infinite;
}

.bg-blob.b1 {
    width: 560px;
    height: 560px;
    background: #4d7a16;
    top: -200px;
    right: -140px;
    opacity: 0.45;
}

.bg-blob.b2 {
    width: 420px;
    height: 420px;
    background: #6a5d12;
    bottom: 160px;
    left: -160px;
    opacity: 0.30;
    animation-delay: -5s;
}

.bg-blob.b3 {
    width: 380px;
    height: 380px;
    background: #3f6a18;
    top: 50%;
    right: -90px;
    opacity: 0.35;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-26px) translateX(14px);
    }
}

/* ================== Swal Alerts ======================= */
.sweet-alert {
    background: #141914 !important;
    border: 1px solid rgba(157, 255, 77, .15) !important;
    border-radius: 24px !important;
}

.sweet-alert h2 {
    color: #fff !important;
}

.sweet-alert p {
    color: #aab2aa !important;
}

.sweet-alert button.confirm {
    background: #9dff4d !important;
    color: #111 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
}

.sweet-alert button.cancel {
    background: #2a322a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
}

.sa-icon.sa-success .sa-placeholder {
    border-color: #9dff4d !important;
}

.sa-icon.sa-success .sa-line {
    background: #9dff4d !important;
}

.sa-icon.sa-warning {
    border-color: #e7b022 !important;
}

.sa-icon.sa-error {
    border-color: #ff5757 !important;
}

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 19, 15, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 23px;
    color: #fff;
    letter-spacing: -0.03em;
}

.brand span {
    color: var(--brand);
    font-style: normal;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--brand);
}

.cart-btn {
    background: var(--brand);
    color: #0d130f;
    border: none;
    padding: 11px 20px;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.cart-btn:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.register-btn,
.login-btn {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
    padding: 11px 20px;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.register-btn:hover,
.login-btn:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Offcanvas */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--line);
    z-index: 1000;
    transition: right .3s ease;
    padding: 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-menu-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-menu-links a:hover {
    color: var(--brand);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width:900px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-desktop {
        display: none;
    }

    .btn-mobile {
        justify-content: center;
    }
}

.password-wrapper {
    position: relative;
}

.password-wrapper .fl-input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #b7d334;
    font-size: 18px;
}

.password-toggle:hover {
    color: #f4c542;
}

.fl-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.fl-modal-content {
    width: 90%;
    max-width: 500px;
    background: #181818;
    border: 1px solid rgba(183, 211, 52, .25);
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    position: relative;
}

.register-modal {
    max-height: 85vh;
    overflow-y: auto;
}

.fl-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.fl-btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.fl-btn-primary,
.fl-btn-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.fl-btn-primary {
    background: #b7d334;
    color: #111;
}

.fl-btn-secondary {
    background: #f4c542;
    color: #111;
}

.fl-form-group {
    margin-bottom: 15px;
}

.fl-form-group label {
    display: block;
    margin-bottom: 6px;
}

.fl-input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
}

.fl-full {
    width: 100%;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--brand);
    color: #111;
    font-size: 22px;
}

.profile-menu {
    position: absolute;
    top: 65px;
    right: -10px;
    width: 260px;
    background: #181818;
    border: 1px solid rgba(183, 211, 52, .25);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    z-index: 9999;
}

.profile-menu.active {
    display: block;
}

.profile-user-info {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.profile-user-info strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.profile-user-info span {
    color: #aaa;
    font-size: 13px;
}

.profile-menu a {
    display: block;
    padding: 14px 15px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.profile-menu a:hover {
    background: rgba(183, 211, 52, .15);
}

.profile-menu a i {
    width: 20px;
    margin-right: 8px;
    color: #b7d334;
}

@media (max-width:900px) {
    .profile-menu {
        right: -65px !important;
    }
}

/* ---------- Layout ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 28px 100px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--brand);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ---------- Gallery (bright panel so the bottle reads on dark) ---------- */
.gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: linear-gradient(160deg, #f3f6ea 0%, #e9f0d6 55%, #dce9c2 100%);
    border-radius: var(--radius);
    aspect-ratio: 1 / 1.15;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(163, 230, 53, 0.35);
}

.main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 15%, rgba(163, 230, 53, 0.35), transparent 45%), radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.6), transparent 55%);
    pointer-events: none;
}

.main-image::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 15%;
    right: 15%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(28, 48, 25, 0.25), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.product-img {
    max-width: 75%;
    max-height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(28, 48, 25, 0.3)) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
    position: relative;
    z-index: 1;
    transition: transform .4s ease;
}

.main-image:hover .product-img {
    transform: scale(1.02) translateY(-4px);
}

.best-seller {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--brand);
    color: #0d130f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: var(--glow);
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb.active {
    border-color: var(--brand);
}

.thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(163, 230, 53, 0.4);
}

.thumb.active {
    border-color: var(--brand);
    color: var(--brand);
}

/* ---------- Details ---------- */
.details {
    padding-top: 8px;
}

.tag-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
}

.tag-line::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}

h1 em {
    font-style: normal;
    font-weight: 700;
    color: var(--brand);
}

.reviews-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 16px;
}

.review-count {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
}

.review-count a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--line);
    text-underline-offset: 3px;
}

.lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 52ch;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}

.price-note {
    font-size: 13px;
    color: var(--muted);
}

/* Quantity + CTA */
.purchase-row {
    display: flex;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 20px;
}

.qty {
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 4px;
}

.qty button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: background .15s, color .15s;
}

.qty button:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.qty span {
    min-width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.add-to-cart,
.remove-cart-btn,
.how-to-use {
    flex: 1;
    background: var(--brand);
    color: #0d130f;
    border: none;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    padding: 0 32px;
    transition: transform .15s, box-shadow .2s, background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart:hover,
.remove-cart-btn:hover,
.how-to-use:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 36px;
    padding: 18px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.35;
}

.trust-item svg {
    color: var(--brand);
}

/* ---------- Section cards ---------- */
.section-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 28px 30px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.section-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-card h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 20px;
    background: var(--brand);
    border-radius: 3px;
    flex-shrink: 0;
}

.important h3::before {
    display: none;
}

.section-card p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(163, 230, 53, 0.22);
    transition: background .15s, transform .15s;
    cursor: default;
}

.pill:hover {
    background: rgba(163, 230, 53, 0.2);
    transform: translateY(-1px);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-soft);
    padding: 13px 15px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border: 1px solid var(--line);
}

.highlight-icon {
    width: 26px;
    height: 26px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d130f;
    font-size: 12px;
    flex-shrink: 0;
}

.dosage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dosage-list li {
    display: flex;
    gap: 14px;
    color: var(--ink-soft);
    font-size: 14.5px;
    align-items: flex-start;
}

.dosage-list li strong {
    color: #fff;
    font-weight: 700;
}

.step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--brand);
    color: #0d130f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.important {
    background: var(--brand-soft);
    border: 1px solid rgba(163, 230, 53, 0.25);
    border-left: 4px solid var(--brand);
    box-shadow: none;
}

.important h3 {
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 8px;
}

.important p {
    color: var(--ink-soft);
}

/* ---------- Below-fold sections ---------- */
.divider-section {
    max-width: 1280px;
    margin: 88px auto 0;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #fff;
}

.section-title em {
    font-style: normal;
    color: var(--brand);
}

.section-sub {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 44px;
    max-width: 56ch;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.benefit {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 30px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.benefit:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(163, 230, 53, 0.35);
}

.benefit:hover::after {
    transform: scaleX(1);
}

.benefit-num {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--brand);
}

.benefit h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.benefit p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Footer disclaimer ---------- */
.footer-disclaimer {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 30px 28px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 32px 20px 80px;
    }

    .divider-section {
        padding: 0 20px;
    }

    .trust-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-item {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .purchase-row {
        flex-direction: column;
    }

    .add-to-cart {
        padding: 16px;
    }
}

/* ---- site additions ---- */

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo img {
    height: 46px;
    width: auto;
    display: block;
}

@media (max-width:900px) {
    .brand-logo img {
        height: 38px;
    }
}

.nav-links a.active {
    color: var(--brand);
}

.btn-secondary {
    flex: 1;
    background: transparent;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 32px;
    transition: border-color .2s, color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.page-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 74px 28px 6px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
}

.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5vw, 52px);
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.06;
}

.page-hero p {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 60ch;
    margin: 0 auto;
}

.legal {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px 28px 40px;
    position: relative;
    z-index: 1;
}

.legal-note {
    background: var(--brand-soft);
    border: 1px solid rgba(163, 230, 53, .25);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 34px;
}

.legal h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    letter-spacing: -.02em;
    margin: 32px 0 12px;
}

.legal h2:first-of-type {
    margin-top: 0;
}

.legal p,
.legal li {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}

.legal p {
    margin-bottom: 14px;
}

.legal ul {
    margin: 0 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal a {
    color: var(--brand);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

.legal strong {
    color: #fff;
}

.events-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 28px 40px;
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.event-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 18px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 230, 53, .35);
    box-shadow: var(--shadow-md);
}

.event-date {
    flex-shrink: 0;
    width: 66px;
    text-align: center;
    background: var(--brand-soft);
    border: 1px solid rgba(163, 230, 53, .25);
    border-radius: 14px;
    padding: 11px 0;
    align-self: flex-start;
}

.event-date .d {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

.event-date .m {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 4px;
}

.event-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.event-meta {
    font-size: 12.5px;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-info p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer {
    background: #0a0f0b;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
    margin-top: 96px;
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 28px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

.footer-about p {
    margin-bottom: 18px;
    max-width: 36ch;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: border-color .2s, color .2s;
}

.footer-social a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--brand);
}

.contact-line,
.hours-line {
    margin-bottom: 9px;
}

.contact-line strong,
.hours-line strong {
    color: var(--brand);
    font-weight: 700;
}

.payments {
    border-top: 1px solid var(--line);
}

.payments-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.pay-badge {
    background: #fff;
    border-radius: 6px;
    padding: 7px 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .01em;
}

.footer-bottom {
    border-top: 1px solid var(--line);
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 28px;
    text-align: center;
}

.footer-reg {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 auto 10px;
    max-width: 90ch;
}

.copyright {
    font-size: 13px;
    color: var(--ink-soft);
}

.copyright strong {
    color: var(--brand);
    font-weight: 700;
}

@media (max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width:560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ---- Chat to us (WhatsApp) float ---- */
.wa-float {
    position: fixed;
    right: 86px;
    bottom: 20px;
    z-index: 300;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 20px 13px 15px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
    transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .55);
}

.wa-float svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width:560px) {
    .wa-float .wa-label {
        display: none;
    }

    .wa-float {
        padding: 15px;
        right: 16px;
        bottom: 16px;
    }
}

/* ---- Home page ---- */
.home-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 28px 24px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
}

.home-hero .eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    display: inline-block;
}

.home-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.04;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 18px;
}

.home-hero h1 em {
    color: var(--brand);
    font-style: normal;
}

.home-hero p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    max-width: 52ch;
    margin-bottom: 28px;
}

.home-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand);
    color: #0d130f;
    border: none;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.home-hero-art {
    background: linear-gradient(160deg, #f3f6ea, #e9f0d6 55%, #dce9c2);
    border: 1px solid rgba(163, 230, 53, .35);
    border-radius: var(--radius);
    aspect-ratio: 1/1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    box-shadow: var(--shadow-md);
}

.home-hero-art img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
}

.section-head {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 28px 0;
    position: relative;
    z-index: 1;
}

.section-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #fff;
    letter-spacing: -.02em;
}

.section-head p {
    color: var(--ink-soft);
    margin-top: 8px;
    font-size: 15px;
}

.feature-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 28px 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(163, 230, 53, .4);
    box-shadow: var(--shadow-md);
}

.feature-img {
    aspect-ratio: 1/1;
    background: linear-gradient(160deg, #f3f6ea, #e9f0d6 55%, #dce9c2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.feature-img img {
    max-height: 100%;
    width: auto;
}

.feature-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.feature-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    letter-spacing: -.01em;
}

.feature-body .fprice {
    color: var(--brand);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.feature-body p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.feature-body .btn-primary {
    align-self: flex-start;
    margin-top: 6px;
}

@media (max-width:860px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-hero-art {
        order: -1;
        aspect-ratio: 1/.78;
    }
}

/* ---- Home page motion graphics ---- */
@keyframes fl-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fl-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes fl-line {
    from {
        width: 0;
    }

    to {
        width: 26px;
    }
}

@keyframes fl-pulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: .85;
        transform: scale(1.12);
    }
}

.home-hero .eyebrow {
    animation: fl-fade-up .7s .05s both;
}

.home-hero .eyebrow span {
    width: 0;
    animation: fl-line .8s .35s both;
}

.home-hero h1 {
    animation: fl-fade-up .75s .15s both;
}

.home-hero p {
    animation: fl-fade-up .75s .3s both;
}

.home-hero .home-cta {
    animation: fl-fade-up .75s .45s both;
}

.home-hero-art {
    animation: fl-fade-up .9s .2s both;
    position: relative;
    overflow: hidden;
}

.home-hero-art::after {
    content: "";
    position: absolute;
    inset: -25%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 42%, rgba(163, 230, 53, .30), transparent 62%);
    animation: fl-pulse 5.5s ease-in-out infinite;
}

.home-hero-art img {
    position: relative;
    z-index: 1;
    animation: fl-float 6s ease-in-out 1.1s infinite;
}

.btn-primary svg,
.btn-ghost svg {
    transition: transform .2s;
}

.btn-primary:hover svg,
.btn-ghost:hover svg {
    transform: translateX(3px);
}

.home .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.home .reveal.in {
    opacity: 1;
    transform: none;
}

.home .feature-grid .feature-card:nth-child(2) {
    transition-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {

    .home-hero .eyebrow,
    .home-hero .eyebrow span,
    .home-hero h1,
    .home-hero p,
    .home-hero .home-cta,
    .home-hero-art,
    .home-hero-art img,
    .home-hero-art::after {
        animation: none;
    }

    .home-hero .eyebrow span {
        width: 26px;
    }

    .home .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---- Home redesign: hero slideshow, info bands, community, botanical ---- */
.regions {
    max-width: 1080px;
    margin: 0 auto;
    padding: 54px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.regions .kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}

.regions h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 34px);
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.regions>p {
    color: var(--ink-soft);
    margin-bottom: 22px;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.region {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 10px 18px;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink-soft);
    transition: border-color .2s, color .2s, transform .2s;
}

.region:hover {
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.region .flag {
    width: 22px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
    flex-shrink: 0;
    display: block;
}

.hero-slides {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hs-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: hs-cycle 21s infinite;
    will-change: opacity;
}

.hs-slide:nth-child(1) {
    animation-delay: 0s;
}

.hs-slide:nth-child(2) {
    animation-delay: 7s;
}

.hs-slide:nth-child(3) {
    animation-delay: 14s;
}

.hs-herbal {
    background: radial-gradient(120% 100% at 80% 8%, rgba(163, 230, 53, .22), transparent 55%), linear-gradient(160deg, #0f1a10, #0d130f 60%, #101b12);
}

@keyframes hs-cycle {
    0% {
        opacity: 0
    }

    4% {
        opacity: 1
    }

    28% {
        opacity: 1
    }

    33% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(8, 12, 9, .88) 0%, rgba(8, 12, 9, .6) 48%, rgba(8, 12, 9, .38) 100%), linear-gradient(180deg, rgba(8, 12, 9, .35), rgba(8, 12, 9, .8));
}

.hs-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 28px;
    width: 100%;
}

.hs-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
    animation: fl-fade-up .7s .05s both;
}

.hs-content .eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    display: inline-block;
}

.hs-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.02;
    letter-spacing: -.03em;
    color: #fff;
    max-width: 17ch;
    margin-bottom: 18px;
    animation: fl-fade-up .8s .15s both;
}

.hs-content h1 em {
    color: var(--brand);
    font-style: normal;
}

.hs-content>p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.6;
    max-width: 56ch;
    margin-bottom: 28px;
    animation: fl-fade-up .8s .3s both;
}

.hs-content .home-cta {
    animation: fl-fade-up .8s .45s both;
}

.leaf {
    color: var(--brand);
    transform-origin: center;
}

.hero-slides>.leaf {
    position: absolute;
    opacity: .14;
    z-index: 2;
    pointer-events: none;
}

.hero-slides>.leaf.l1 {
    width: 120px;
    top: 9%;
    right: 6%;
    animation: fl-sway 7s ease-in-out infinite;
}

.hero-slides>.leaf.l2 {
    width: 78px;
    bottom: 11%;
    right: 17%;
    opacity: .1;
    animation: fl-sway 9s ease-in-out infinite reverse;
}

.hero-slides>.leaf.l3 {
    width: 60px;
    top: 22%;
    left: 3%;
    opacity: .09;
    animation: fl-sway 8s ease-in-out infinite;
}

@keyframes fl-sway {

    0%,
    100% {
        transform: rotate(-7deg);
    }

    50% {
        transform: rotate(7deg);
    }
}

.info-band {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 74px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 1;
}

.info-band.reverse .info-text {
    order: 2;
}

.info-band .kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.info-band h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 40px);
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.info-band p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.info-photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.info-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-photo.botanical {
    background: radial-gradient(circle at 50% 35%, rgba(163, 230, 53, .16), transparent 60%), linear-gradient(160deg, #13211a, #0f1a13);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-photo.botanical .leaf {
    opacity: .55;
    width: 46%;
    animation: fl-sway 8s ease-in-out infinite;
}

.leaf-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 8px 0 22px;
}

.leaf-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-soft);
    font-size: 15px;
}

.leaf-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    width: 15px;
    height: 15px;
    background: var(--brand-soft);
    border: 1.5px solid var(--brand);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
}

.section-head.center {
    text-align: center;
}

.value-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 28px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 230, 53, .4);
}

.value-card .vicon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.value-card .vicon .leaf {
    width: 22px;
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 7px;
}

.value-card p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

.community {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 28px;
    position: relative;
    z-index: 1;
}

.comm-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 10px 0 26px;
}

.comm-gallery figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    position: relative;
}

.comm-gallery img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.comm-gallery figure:hover img {
    transform: scale(1.05);
}

.comm-gallery figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 18px 14px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(transparent, rgba(8, 12, 9, .86));
}

.cta-band {
    position: relative;
    max-width: 1060px;
    margin: 24px auto 0;
    padding: 58px 28px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.cta-band>.leaf {
    position: absolute;
    width: 130px;
    opacity: .08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-band h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    position: relative;
}

.cta-band p {
    color: var(--ink-soft);
    max-width: 54ch;
    margin: 0 auto 22px;
    position: relative;
}

.cta-band .home-cta {
    position: relative;
}

@media (max-width:860px) {
    .info-band {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .info-band.reverse .info-text {
        order: 0;
    }

    .info-photo.botanical {
        aspect-ratio: 16/9;
    }

    .comm-gallery {
        grid-template-columns: 1fr;
    }

    .hs-content {
        padding: 74px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hs-slide {
        animation: none;
    }

    .hs-slide:nth-child(1) {
        opacity: 1;
    }

    .leaf {
        animation: none !important;
    }

    .hs-content .eyebrow,
    .hs-content h1,
    .hs-content>p,
    .hs-content .home-cta {
        animation: none;
    }
}

#how-to-use {
    scroll-margin-top: 100px;
}

#toast-container.toast-top-right {
    top: 80px !important;
    right: 20px !important;
}

.add-to-cart:disabled,
.remove-cart-btn.processing {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

/* ==========================================================================
    CART PAGE BASE & UTILITIES (ORIGINAL THEME COLORS PRESERVED)
========================================================================== */
.cart-page {
    /* padding: 40px 0 80px; */
}

/* ==========================================================================
    CART TABLE WRAPPER & MOBILE CARDS
========================================================================== */
.cart-table-wrapper {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: var(--bg-soft);
}

.cart-table th {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.cart-table td {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    vertical-align: middle;
    text-align: center;
}

.cart-table tbody tr:hover {
    background: rgba(255, 255, 255, .02);
}

.cart-table img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 14px;
    background: #fff;
    padding: 5px;
}

.cart-table a {
    color: #fff;
    text-decoration: none;
}

.cart-table a:hover {
    color: var(--brand);
}

.btn_remove_cart {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 0, 0, .12);
    color: #ff6b6b !important;
    transition: .25s;
    margin: 0 auto;
}

.btn_remove_cart:hover {
    background: #ff4d4d;
    color: #fff !important;
}

.cart-select {
    width: 80px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    outline: none;
}

.cart-table ins {
    text-decoration: none;
    color: var(--brand);
    font-weight: 700;
}

.cart-table del {
    color: var(--muted);
}

/* ==========================================================================
       OPTIMIZED CART SUMMARY CARD
       ========================================================================== */
.cart-summary-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
}

.cart-summary-card h2 {
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

.summary-list-wrapper {
    margin-bottom: 25px;
}

.cart-summary-row-responsive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    color: var(--ink-soft);
}

.cart-summary-total-responsive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.summary-actions-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.summary-actions-container>div,
.summary-actions-container form {
    flex: 1;
    width: 100%;
}

.cart-checkout-btn {
    width: 100%;
    height: 54px;
    justify-content: center;
}

.empty-cart {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    padding: 80px 30px;
}

.empty-cart h2 {
    color: #fff;
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--ink-soft);
    margin-bottom: 25px;
}

/* ==========================================================================
       MEDIA QUERIES (RESPONSIVE CARDS REPLACING TABLE LAUNCH)
       ========================================================================== */
@media(max-width:767px) {
    .cart-page {
        /* padding: 20px 0 60px; */
    }

    .cart-summary-card {
        padding: 20px;
    }

    .summary-actions-container {
        flex-direction: column;
        gap: 12px;
    }

    /* Transform table layers into mobile blocks */
    .cart-table thead {
        display: none;
        /* Hide standard table headers on mobile */
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        position: relative;
        padding: 15px;
        border-bottom: 1px solid var(--line);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: left;
    }

    .cart-table tr:last-child {
        border-bottom: none;
    }

    .cart-table td {
        display: block;
        padding: 6px 10px;
        border-bottom: none;
        text-align: left;
        box-sizing: border-box;
    }

    /* Target exact columns dynamically using class blocks */
    .cart-table td.product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 0;
        z-index: 5;
    }

    .cart-table td.product-cart-img {
        width: 25%;
        padding-left: 0;
    }

    .cart-table td.product-name {
        width: 75%;
        padding-right: 40px;
        /* Leave space for remove button */
        font-size: 15px;
        font-weight: 600;
    }

    .cart-table td.product-quantity {
        width: 40%;
        margin-top: 10px;
        padding-left: 0;
    }

    .cart-table td.product-price {
        width: 60%;
        margin-top: 10px;
        text-align: right;
    }

    /* Handle conditional Tax blocks nicely on mobile if present */
    .cart-table td:not(.product-remove):not(.product-cart-img):not(.product-name):not(.product-quantity):not(.product-price):not(.product-total-price) {
        width: 50%;
        font-size: 13px;
        color: var(--muted);
        display: inline-flex;
        gap: 5px;
    }

    /* Add inline helpers for data headers */
    .cart-table td:not(.product-remove):not(.product-cart-img):not(.product-name):not(.product-quantity):not(.product-price):not(.product-total-price)::before {
        content: "Tax/GST: ";
        font-weight: bold;
    }

    .cart-table td.product-total-price {
        width: 100%;
        text-align: right;
        border-top: 1px dashed var(--line);
        margin-top: 10px;
        padding-top: 12px;
        font-size: 16px;
    }

    .cart-table td.product-total-price::before {
        content: "Total: ";
        color: var(--ink-soft);
        font-weight: normal;
        float: left;
    }

    .cart-table img {
        width: 60px;
        height: 60px;
    }
}

/* ============================================================
   CHECKOUT PAGE — Dexon Dark Theme
   No Bootstrap. Uses theme CSS variables from style.css.
   ============================================================ */

/* ---------- Layout wrapper ---------- */
.checkout-area {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 28px 100px;
    position: relative;
    z-index: 1;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Section titles ---------- */
.checkout-title h3,
.your-order-title h3,
.payment-title h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-title h3::before,
.your-order-title h3::before,
.payment-title h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 20px;
    background: var(--brand);
    border-radius: 3px;
    flex-shrink: 0;
}

/* ---------- Alert ---------- */
.checkout-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
}

.checkout-alert.success {
    background: rgba(163, 230, 53, 0.13);
    border: 1px solid rgba(163, 230, 53, 0.3);
    color: var(--brand);
}

.checkout-alert.danger {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ff6b6b;
}

/* ---------- Address block ---------- */
.checkout-form-area {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.address_details_block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address_details_item {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color .2s;
    cursor: pointer;
}

.address_details_item:hover {
    border-color: rgba(163, 230, 53, 0.35);
}

/* Radio inside address item */
.address_details_item label.container-add {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.address_radio {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
    cursor: pointer;
    margin: 0;
}

.address_list {
    flex: 1;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.address_list span {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.address_list p {
    margin: 0;
    font-size: 13px;
}

.address_list_edit {
    display: inline-block;
    margin-bottom: 4px;
}

.btn_edit_address {
    background: none;
    border: none;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* Add new address link */
.btn_new_address {
    text-decoration: none;
    display: block;
}

.btn_new_address .address_list {
    color: var(--brand);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Add address form ---------- */
.add_addresss_block {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.co-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.co-form-row.full {
    grid-template-columns: 1fr;
}

.wizard-form-field {
    margin-bottom: 0;
}

.has-float-label {
    position: relative;
    display: block;
}

.has-float-label input,
.has-float-label textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 14px 8px;
    color: #fff;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.has-float-label textarea {
    min-height: 80px;
    resize: vertical;
    padding-top: 22px;
}

.has-float-label input:focus,
.has-float-label textarea:focus {
    border-color: var(--brand);
}

.has-float-label label {
    position: absolute;
    top: 6px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    pointer-events: none;
}

.required {
    color: #ff6b6b;
    margin-left: 2px;
}

/* Country select */
.co-select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2376847b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color .2s;
}

.co-select:focus {
    border-color: var(--brand);
}

.co-select option {
    background: var(--bg);
    color: #fff;
}

/* Address type radio */
.address-type-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.address-type-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 14px;
    cursor: pointer;
}

.address-type-label input[type="radio"] {
    accent-color: var(--brand);
    width: 16px;
    height: 16px;
}

/* Form buttons */
.co-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.co-btn-save {
    background: var(--brand);
    color: #0d130f;
    border: none;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s;
}

.co-btn-save:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.co-btn-cancel {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.co-btn-cancel:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* ---------- Right column wrapper ---------- */
.checkout-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* ---------- Order table ---------- */
.your-order-fields {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.your-order-table {
    width: 100%;
    overflow-x: auto;
}

.your-order-table table {
    width: 100%;
    border-collapse: collapse;
}

.your-order-table thead tr {
    background: var(--bg-soft);
}

.your-order-table th {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.your-order-table td {
    padding: 14px;
    font-size: 14px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.your-order-table tfoot tr th,
.your-order-table tfoot tr td {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}

.your-order-table tfoot .order-total th,
.your-order-table tfoot .order-total td {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    padding-top: 16px;
    border-bottom: none;
}

.your-order-table tfoot .order-total .total-amount {
    color: var(--brand);
}

.your-order-table tfoot .cart-subtotal th,
.your-order-table tfoot .shipping th {
    color: var(--ink-soft);
    font-weight: 600;
}

.your-order-table .product-quantity {
    color: var(--muted);
    font-size: 12px;
    margin-left: 4px;
}

/* Save msg */
.your-order-table .msg_2 {
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
    text-align: right;
    display: block;
    padding: 6px 14px;
}

/* Continue shopping link */
.your-order-table .apply_button td a img {
    height: 36px;
    opacity: 0.7;
    transition: opacity .2s;
}

.your-order-table .apply_button td a img:hover {
    opacity: 1;
}

/* ---------- Payment section ---------- */
.checkout-payment {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.checkout-payment ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Shipping method list item */
.payment_method,
.shipping_method,
.select_country,
.select-store {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    transition: border-color .2s;
}

.payment_method:has(input:checked) {
    border-color: rgba(163, 230, 53, 0.4);
}

.payment_method label,
.shipping_method label,
.select_country label,
.select-store label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.payment_method label img {
    height: 22px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 2px 6px;
}

.payment_method {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    cursor: pointer;
}

.payment_method input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.payment_method label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: auto;
}

.payment_method .pay-box {
    flex: 0 0 100%;
    margin-top: 10px;
}

.input-radio,
.input-rado {
    accent-color: var(--brand);
    width: 17px;
    height: 17px;
    cursor: pointer;
    flex-shrink: 0;
}

.pay-box {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--ink-soft);
}

/* Shipping charges display */
.pay-box p {
    margin: 0 0 6px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

.pay-box p span {
    color: var(--brand);
    font-weight: 700;
}

/* Co-form inputs inside payment */
.pay-box .co-select,
.pay-box select.form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2376847b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color .2s;
    margin-bottom: 10px;
}

.pay-box select.form-control:focus,
.pay-box .co-select:focus {
    border-color: var(--brand);
}

.pay-box select.form-control option {
    background: var(--bg);
    color: #fff;
}

/* OTP / captcha row for COD */
.cod-captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.cod-captcha label {
    font-size: 15px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    cursor: default;
}

.cod-captcha input {
    width: 100px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.cod-captcha input:focus {
    border-color: var(--brand);
}

/* Wallet / points inputs */
.pay-box .form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.pay-box .form-control:focus {
    border-color: var(--brand);
}

.pay-box .form-control[readonly] {
    opacity: 0.65;
    cursor: not-allowed;
}

.wallet-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    align-items: center;
    margin-bottom: 10px;
}

.wallet-row label {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Kumbh Sans', sans-serif;
    cursor: default;
}

/* Office details */
#office-details {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

#office-details b {
    color: var(--brand);
    font-weight: 700;
}

/* ---------- Place order button ---------- */
.order-btn {
    width: 100%;
    background: var(--brand);
    color: #0d130f;
    border: none;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 17px 32px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: transform .15s, box-shadow .2s, background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.order-btn:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.order-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* ---------- Coupon row ---------- */
.coupon_amount td,
.remove_coupon td {
    color: var(--ink-soft);
    font-size: 13px;
}

.remove_coupon a {
    color: #ff6b6b !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

/* ---------- Modal overlay ---------- */
.fl-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.fl-modal.active {
    display: flex;
}

/* Generic modal content */
.co-modal-box {
    width: 90%;
    max-width: 560px;
    background: var(--surface);
    border: 1px solid rgba(163, 230, 53, 0.22);
    border-radius: var(--radius);
    padding: 32px;
    color: #fff;
    position: relative;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
}

.co-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--muted);
    background: none;
    border: none;
    line-height: 1;
    transition: color .2s;
}

.co-modal-close:hover {
    color: #fff;
}

.co-modal-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Coupon table inside modal */
.co-coupon-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.co-coupon-table thead tr {
    background: var(--bg-soft);
}

.co-coupon-table th {
    padding: 12px 14px;
    color: var(--brand);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.co-coupon-table td {
    padding: 12px 14px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}

.co-coupon-table tbody tr:last-child td {
    border-bottom: none;
}

.btn_apply_coupon {
    background: var(--brand);
    color: #0d130f;
    border: none;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn_apply_coupon:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
}

/* Order confirm modal */
.co-confirm-modal {
    text-align: center;
}

.co-confirm-modal img {
    width: 70px;
    margin-bottom: 16px;
}

.co-confirm-modal h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.co-confirm-modal .co-success-msg {
    font-size: 17px;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 6px;
}

.co-confirm-modal .co-sub-msg {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.co-confirm-modal .co-order-num {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.co-confirm-modal .co-order-num strong {
    color: var(--brand);
}

.co-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.co-btn-track {
    background: transparent;
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background .2s;
}

.co-btn-track:hover {
    background: rgba(255, 107, 107, 0.1);
}

.co-btn-orders {
    background: var(--brand);
    color: #0d130f;
    border: none;
    border-radius: 100px;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.co-btn-orders:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
}

/* Payfast modal */
.co-payfast-inner {
    text-align: center;
}

.co-payfast-inner img {
    width: 70px;
    margin-bottom: 14px;
}

/* ---------- Edit address modal ---------- */
.co-edit-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.co-edit-form-row.full {
    grid-template-columns: 1fr;
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-right {
        position: static;
    }

    .co-form-row {
        grid-template-columns: 1fr;
    }

    .co-edit-form-row {
        grid-template-columns: 1fr;
    }

    .wallet-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .checkout-area {
        padding: 24px 18px 80px;
    }

    .co-btn-row {
        flex-direction: column;
    }

    .co-modal-footer {
        flex-direction: column;
    }
}

/* ============================================ 
    My Profile + Sidebar
    =========================================== */

.account-page-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.account-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.account-nav-card {
    background: #141914;
    border: 1px solid rgba(157, 255, 77, .10);
    border-radius: 24px;
    overflow: hidden;
}

.account-nav-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.account-avatar {
    width: 90px;
    height: 90px;
    margin: auto;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9dff4d;
}

.account-user-info h4 {
    color: #fff;
    margin-top: 15px;
    margin-bottom: 5px;
}

.account-user-info span {
    color: #9ca39c;
    font-size: 13px;
}

.account-menu {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.account-menu li {
    margin-bottom: 10px;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: #c6cec6;
    text-decoration: none;
    border-radius: 14px;
    transition: .3s;
}

.account-menu a:hover,
.account-menu a.active {
    background: #9dff4d;
    color: #111;
}

.profile-card {
    background: #141914;
    border: 1px solid rgba(157, 255, 77, .10);
    border-radius: 24px;
    overflow: hidden;
}

.profile-card-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.profile-card-header h2 {
    color: #fff;
    margin: 0;
}

.profile-card-header p {
    color: #9ca39c;
    margin-top: 10px;
}

.profile-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.profile-image-wrapper {
    width: 120px;
    height: 120px;
}

.profile-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #9dff4d;
}

.custom-upload input {
    display: none;
}

.custom-upload span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #9dff4d;
    color: #111;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.remove-photo-btn {
    margin-top: 12px;
    background: #262d26;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
}

.profile-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-group label {
    color: #aab2aa;
    margin-bottom: 10px;
    font-size: 14px;
}

.field-group input {
    height: 55px;
    background: #1f251f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 0 18px;
    color: #fff;
}

.field-group input:focus {
    outline: none;
    border-color: #9dff4d;
}

.full-width {
    grid-column: 1 / -1;
}

.profile-actions {
    padding: 0 30px 30px;
}

.save-profile-btn {
    height: 55px;
    padding: 0 35px;
    border: none;
    border-radius: 14px;
    background: #9dff4d;
    color: #111;
    font-weight: 700;
    cursor: pointer;
}

.account-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
}

.account-nav-card,
.profile-card {
    width: 100%;
}

@media (max-width: 991px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 991px) {
    .profile-image-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 768px) {
    .profile-image-wrapper {
        width: 120px;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .profile-image-wrapper {
        width: 120px;
        height: 100%;
    }
}

@media (max-width: 768px) {

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        width: 100%;
    }

}

/* ==========================================
   Change Password Page
========================================== */

.password-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.password-field {
    position: relative;
}

.password-field input {
    width: 100%;
    height: 55px;
    background: #1f251f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 0 55px 0 18px;
    color: #fff;
    transition: .3s;
}

.password-field input:focus {
    outline: none;
    border-color: #9dff4d;
    box-shadow: 0 0 0 4px rgba(157, 255, 77, .08);
}

.password-field input.error {
    border-color: #ff5c5c;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9dff4d;
    cursor: pointer;
    font-size: 16px;
    transition: .3s;
}

.toggle-password:hover {
    color: #b7ff7f;
}

.field-error {
    display: none;
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 500;
}

.field-error i {
    margin-right: 5px;
}

.password-info-box {
    margin: 30px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(157, 255, 77, .05);
    border: 1px solid rgba(157, 255, 77, .10);
}

.password-info-box h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}

.password-info-box p {
    color: #9ca39c;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.save-profile-btn i {
    margin-right: 8px;
}

.password-field input.error {
    border-color: #ff4d4f !important;
    background: rgba(255, 77, 79, .05);
}

.field-error {
    display: none;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

.field-error i {
    margin-right: 5px;
}

@media(max-width:991px) {

    .password-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .password-grid {
        padding: 20px;
        gap: 20px;
    }

    .password-info-box {
        margin: 20px;
    }

}

/* ==================== Google Translate =================== */
/* ===============================
   Floating Translate Widget
================================== */

.translate-widget {
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 99999;
}

.translate-toggle {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: linear-gradient(135deg, #b9ff3b, #8dc63f);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(185, 255, 59, .35);
    transition: all .3s ease;
}

.translate-toggle:hover {
    transform: translateY(-3px);
}

.translate-toggle svg {
    width: 28px;
    height: 28px;
}

.translate-panel {
    position: absolute;
    right: 0;
    bottom: 75px;
    width: 280px;
    background: #111;
    border: 1px solid rgba(185, 255, 59, .2);
    border-radius: 18px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.translate-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translate-header {
    background: #171717;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.translate-header span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.translate-header button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 22px;
    cursor: pointer;
}

#google_translate_element {
    padding: 16px;
    background: #111;
}

/* Style Google Dropdown */

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-combo {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(185, 255, 59, .25);
    background: #1d1d1d;
    color: #fff;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}

.goog-te-combo option {
    color: var(--brand);
}

/* Hide Google Extras */

.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

@media(max-width:768px) {

    .translate-widget {
        right: 15px;
        bottom: 90px;
    }

    .translate-toggle {
        width: 55px;
        height: 55px;
    }

    .translate-panel {
        width: 260px;
    }
}

/* ======================
 New footer links css
 ===================== */
:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 6px;
}

/* progress bar */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-deep), var(--brand));
    z-index: 200;
}

/* hero */
.hero {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 10px 28px 36px;
}

.eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 7px 14px;
    border-radius: 100px;
    margin: 0 0 20px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.03;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 18px;
}

.hero p {
    max-width: 60ch;
    font-size: 17px;
    color: var(--ink-soft);
    margin: 0 0 26px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    font-size: 13.5px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.meta b {
    color: #fff;
    font-weight: 600;
}

/* layout */
.wrap {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 28px;
}

.grid {
    display: block;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 0 30px;
}

/* toc */
nav.toc {
    position: sticky;
    top: 104px;
}

.toc h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 14px;
    font-weight: 700;
}

.toc ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: t;
}

.toc a {
    display: block;
    padding: 7px 0 7px 30px;
    position: relative;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.35;
    border-left: 1px solid var(--line);
    transition: color .2s, border-color .2s;
}

.toc a:before {
    counter-increment: t;
    content: counter(t, decimal-leading-zero);
    position: absolute;
    left: 8px;
    top: 7px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    color: var(--muted);
}

.toc a:hover {
    color: var(--brand);
    text-decoration: none;
}

.toc a.active {
    color: #fff;
    border-left-color: var(--brand);
}

.toc a.active:before {
    color: var(--brand);
}

.toc-toggle {
    display: none;
}

/* content */
main.content {
    min-width: 0;
}

section.block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 30px 34px;
    margin: 0 0 20px;
    scroll-margin-top: 104px;
}

.sec-num {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--accent);
    text-transform: uppercase;
    margin: 0 0 12px;
}

section.block>h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -.01em;
    margin: 0 0 8px;
}

section.block h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 22px 0 6px;
}

section.block p {
    margin: 0 0 14px;
    color: var(--ink-soft);
}

section.block ul {
    margin: 0 0 16px;
    padding-left: 0;
    list-style: none;
}

section.block ul li {
    position: relative;
    padding-left: 24px;
    margin: 0 0 9px;
    color: var(--ink-soft);
}

section.block ul li:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--brand);
    transform: rotate(45deg);
}

section.block ul li b {
    color: #fff;
}

.plain {
    background: var(--brand-soft);
    border: 1px solid rgba(163, 230, 53, .28);
    border-left: 3px solid var(--brand);
    border-radius: 14px;
    padding: 14px 18px;
    margin: 18px 0 2px;
}

.plain span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 5px;
}

.plain p {
    margin: 0;
    font-size: 15px;
    color: #dce9c2;
}

.review-note {
    background: rgba(255, 210, 63, .08);
    border: 1px solid rgba(255, 210, 63, .3);
    border-radius: 14px;
    padding: 14px 18px;
    margin: 18px 0;
    font-size: 14.5px;
    color: #e7d6a0;
}

.review-note b {
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 6px;
}

.cc {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
}

.cc h4 {
    margin-top: 0;
}

.cc p {
    margin: 2px 0;
    font-size: 15px;
}

/* ===================================
Pricing Code 
================================ */
.member-banner {
    background: rgba(255, 210, 63, .08);
    border: 1px solid rgba(255, 210, 63, .3);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin: 8px 0 26px;
    font-size: 14.5px;
    color: #e7d6a0;
}

.member-banner b {
    color: var(--accent);
}

a {
    color: var(--brand);
    text-decoration: none;
}
.independent {
    background: var(--brand-soft);
    border: 1px solid rgba(163, 230, 53, .28);
    border-left: 3px solid var(--brand);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 18px 0 2px;
  }

  .independent span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
  }

  .independent p {
    margin: 0;
    font-size: 15px;
    color: #dce9c2;
  }