:root {
    --gold: #e3ba1a;
    --gold-light: #f1ca2e;
    --gold-dim: #9e8212;
    --ink: #0D0D0D;
    --surface: #111010;
    --surface-2: #181818;
    --muted: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Google Sans", sans-serif;
    background: var(--ink);
    color: #fff;
    overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

/* ─── AURORA GLOW ─── */
.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: drift 10s ease-in-out infinite alternate;
}

@keyframes drift {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-20px) scale(1.08);
    }
}

/* ─── TOP BAR ─── */
#top-bar {
    background: linear-gradient(90deg, #0a0a0a 0%, #161410 100%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    font-size: 0.73rem;
    letter-spacing: 0.06em;
    color: #999;
}

#top-bar a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color .2s;
}

#top-bar a:hover {
    color: #fff;
}

/* ─── MAIN HEADER ─── */
#main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    transition: box-shadow .3s;
}

#main-header.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.logo-text {
    font-family: "Google Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #a07828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold) 0%, #8a5e1a 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Google Sans', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0d0d0d;
    flex-shrink: 0;
}

/* ─── NAV LINKS ─── */
.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #aaa;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color .2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ─── MEGA MENU ─── */
.mega-wrap {
    position: relative;
}

/* Invisible bridge that fills the gap between the nav-link and the dropdown,
   so moving the mouse downward doesn't break the hover chain */
.mega-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #141414;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 12px;
    padding: 28px;
    width: 520px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    /* Small delay before hiding so brief hover gaps don't close the menu */
    transition-delay: 0.08s;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.mega-wrap:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #141414;
    border-left: 1px solid rgba(201, 168, 76, 0.18);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.mega-col-title {
    font-family: 'Google Sans', serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.mega-link {
    display: block;
    font-size: 0.83rem;
    color: #999;
    text-decoration: none;
    padding: 4px 0;
    transition: color .2s, padding-left .2s;
}

.mega-link:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

/* ─── CTA BUTTON ─── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
    color: #0d0d0d;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .2s;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.cta-btn:hover::before {
    opacity: 1;
}

/* ─── SEARCH ─── */
.search-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #fff;
    font-size: 0.82rem;
    padding: 7px 12px;
    outline: none;
    transition: border-color .3s, background .3s;
    width: 160px;
}

.search-input::placeholder {
    color: #555;
}

.search-input:focus {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.04);
    width: 210px;
}

/* ─── DEMO PAGE BODY ─── */
.demo-body {
    min-height: 40vh;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ─── FEATURED CATEGORIES ─── */
.categories-section {
    background: var(--ink);
    padding: 80px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.categories-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.categories-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
    background: rgba(201, 168, 76, 0.06);
}

.section-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
}

.gold-text {
    background: linear-gradient(135deg, #E8C97A, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 0.9rem;
    color: #555;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.cat-card {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(201, 168, 76, 0.25);
}

/* Image */
.cat-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.cat-card:hover .cat-card-img {
    transform: scale(1.07);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13, 13, 13, 0.85) 100%);
    transition: opacity .3s;
}

/* Body */
.cat-card-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.cat-card-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.cat-card-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
    flex: 1;
}

.cat-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    width: fit-content;
    transition: gap .25s, border-color .25s, color .25s;
}

.cat-card-btn:hover {
    gap: 12px;
    border-color: var(--gold);
    color: var(--gold-light);
}

.cat-card-btn i {
    font-size: 0.7rem;
    transition: transform .25s ease;
}

.cat-card-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-section {
        padding: 56px 0;
    }
}

/* ─── BEST SELLERS ─── */
.products-section {
    padding: 80px 0 100px;
    background: var(--surface);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.products-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s, border-color .3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.2);
}

.prod-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #181818;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.prod-hover-actions {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.product-card:hover .prod-hover-actions {
    opacity: 1;
}

.prod-action-btn {
    background: #fff;
    color: #0d0d0d;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(10px);
    transition: transform .3s ease, background .2s, box-shadow .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card:hover .prod-action-btn {
    transform: translateY(0);
}

.prod-action-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.prod-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.prod-price {
    font-size: 0.85rem;
    color: var(--gold-dim);
    margin-bottom: 18px;
    font-family: monospace;
    letter-spacing: 0.05em;
    flex: 1;
}

.prod-customize-btn {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 0.75rem;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── DEALER PROGRAM HIGHLIGHT ─── */
.dealer-highlight-section {
    padding: 100px 0;
    background: var(--surface-2);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.dealer-highlight-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dealer-content {
    display: flex;
    flex-direction: column;
}

.dealer-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.dealer-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dealer-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dealer-feature-text h4 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.dealer-feature-text p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.dealer-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dealer-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (max-width: 960px) {
    .dealer-highlight-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dealer-img-wrap {
        order: -1;
    }
}

/* ─── APPAREL HIGHLIGHT ─── */
.apparel-highlight-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface) 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.apparel-highlight-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.highlight-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.highlight-img-wrap:hover .highlight-img {
    transform: scale(1.04);
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

@media (max-width: 960px) {
    .apparel-highlight-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ─── CUSTOMIZATION PROCESS ─── */
.process-section {
    padding: 100px 0;
    background: var(--surface-2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.process-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 240px;
}

.process-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--ink);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform .3s, border-color .3s;
}

.process-step:hover .process-icon-wrap {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.process-icon {
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: #0d0d0d;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.process-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.process-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.process-divider {
    color: rgba(201, 168, 76, 0.3);
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .process-step {
        max-width: 400px;
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .process-icon-wrap {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-divider {
        transform: rotate(90deg);
        margin: -10px 0;
    }
}

@media (max-width: 480px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-icon-wrap {
        margin-bottom: 16px;
    }
}


/* ─── WHY CHOOSE US ─── */
.why-choose-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #151410 100%);
    padding: 100px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background .3s, transform .3s, border-color .3s;
}

.feature-item:hover {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-top: 2px;
}

@media (max-width: 960px) {
    .why-choose-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .why-choose-text .section-sub {
        margin: 0 auto !important;
    }
}

@media (max-width: 600px) {
    .why-choose-features {
        grid-template-columns: 1fr;
    }
}


footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-col-title {
    font-family: 'Google Sans', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    padding-bottom: 8px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.footer-link {
    display: block;
    font-size: 0.83rem;
    color: #666;
    text-decoration: none;
    padding: 4px 0;
    transition: color .2s, padding-left .2s;
}

.footer-link:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.bottom-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: #444;
}

.bottom-strip a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.bottom-strip a:hover {
    color: var(--gold);
}

/* ─── DIVIDER LINE ─── */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 30%, var(--gold) 50%, var(--gold-dim) 70%, transparent 100%);
}

/* ─── SPOTLIGHT ─── */
.spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

/* cart badge */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -7px;
    background: var(--gold);
    color: #0d0d0d;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── RESPONSIVE STYLES ─── */
.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    flex-wrap: wrap;
}

.bottom-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-menu-btn {
    display: none !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    /* left: 0; */
    right: 0;
    bottom: 0;
    width: 340px;
    max-width: 90%;
    background: var(--surface);
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}


.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-menu-header .close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #aaa;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
}

.mobile-menu-header .close-btn:hover {
    color: var(--gold);
}

.mobile-menu-content {
    padding: 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    display: block;
    color: #ddd;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: background .2s, color .2s;
    border-radius: 6px;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
}

.mobile-menu-footer {
    padding: 24px;
    background: #0a0a0a;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
    color: #0d0d0d;
    padding: 14px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
    transition: transform .2s, box-shadow .2s;
}

.mobile-primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.mobile-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
}

.contact-card-title {
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.contact-card-item:last-child {
    margin-bottom: 0;
}

.contact-card-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.hover-cart {
    color: #888;
    transition: color .2s;
}

.hover-cart:hover {
    color: #C9A84C;
}

.upload-btn-hover:hover {
    border-color: rgba(201, 168, 76, 0.7) !important;
    color: #C9A84C !important;
}

.hover-contact {
    color: #666;
    transition: color .2s;
}

.hover-contact:hover {
    color: #C9A84C !important;
}

/* Media Queries */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .right-actions .search-input {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .top-bar-inner>div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bottom-strip-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .right-actions .cta-btn {
        display: none;
    }

    .footer-grid>div>div {
        justify-content: center;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}