/* ===== Nithara — Premium Gold Theme (Matching nithara-stores) ===== */

/* PWA safe-area support — respects iOS notch / home indicator when
   the app runs in standalone mode, so content doesn't hide behind them. */
@supports (padding: env(safe-area-inset-top)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

:root {
    --gold: #d4af37;
    --gold-soft: #f5e1a4;
    --gold-dark: #b5932d;
    --dark: #141414;
    --dark-light: #1a1a1a;
    --body-bg: #fffaf3;
    --bg-warm: radial-gradient(circle at top, #fffdf7 0%, #f9f4e8 40%, #f7f2e9 100%);
    --border-soft: rgba(212, 175, 55, 0.26);
    --text-primary: #141414;
    --text-muted: #777;
    --radius-xl: 24px;
    --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.25s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-warm);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a { text-decoration: none; transition: all var(--transition-fast); }

/* ===== Top Bar ===== */
.top-bar {
    width: 100%;
    padding: 6px 0;
    font-size: 0.7rem;
    background: #111;
    color: var(--gold-soft);
    letter-spacing: 0.5px;
}
.top-bar i { color: var(--gold); margin-right: 4px; }

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.nav-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
/* Inner circle with border */
.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    position: relative;
    z-index: 3;
    background: #fff;
}
/* Rotating gold sparkle ring */
.nav-logo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(212, 175, 55, 0.0) 10%,
        rgba(255, 215, 80, 0.9) 20%,
        rgba(255, 235, 150, 1) 25%,
        rgba(212, 175, 55, 0.9) 30%,
        transparent 40%,
        transparent 50%,
        rgba(212, 175, 55, 0.0) 60%,
        rgba(255, 215, 80, 0.8) 70%,
        rgba(255, 235, 150, 1) 75%,
        rgba(212, 175, 55, 0.8) 80%,
        transparent 90%,
        transparent 100%
    );
    z-index: 2;
    animation: logoFireSpin 3s linear infinite;
    filter: blur(1px) drop-shadow(0 0 4px rgba(255, 200, 50, 0.6));
}
/* Outer glow pulse */
.nav-logo::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 40%, transparent 70%);
    z-index: 1;
    animation: logoGlowPulse 2s ease-in-out infinite;
}
@keyframes logoFireSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.08); }
}
.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;
}
.navbar-brand .brand-sub {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.navbar .nav-link {
    color: var(--dark) !important;
    font-weight: 400;
    padding: 8px 16px !important;
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
}
.navbar .dropdown-menu {
    background: #fffdf7;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.navbar .dropdown-item {
    color: var(--dark);
    padding: 8px 20px;
    font-size: 0.85rem;
}
.navbar .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* ===== Buttons ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f7d778);
    color: var(--dark);
    border: none;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 10px 28px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-soft);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    color: var(--dark);
}
.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 500;
    padding: 9px 28px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}
.bg-gold { background-color: var(--gold) !important; }

/* ===== IMAGE SLIDER ===== */
.slider-section {
    padding: 0 6vw;
    margin-top: 8px;
}
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    height: clamp(260px, 48vw, 480px);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background image element — only THIS zooms */
.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.08) contrast(1.08) saturate(1.12);
    image-rendering: -webkit-optimize-contrast;
    z-index: 0;
    transform: scale(1.0);
}
.hero-slide.active .slide-bg {
    animation: kenBurns 10s ease-in-out infinite alternate;
}
.hero-slide:nth-child(even).active .slide-bg {
    animation: kenBurnsAlt 10s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1.5%, -1%); }
}
@keyframes kenBurnsAlt {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(1.5%, -0.5%); }
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15), rgba(0,0,0,0.0));
    z-index: 5;
}
.slide-content {
    position: relative;
    z-index: 30;
    padding: 24px 30px;
    max-width: 60%;
    color: #fff;
}
.slide-pre {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-soft);
    margin-bottom: 4px;
}
.slide-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 6px;
    line-height: 1.2;
}
.slide-content p {
    font-size: 0.8rem;
    color: #e5e5e5;
    margin-bottom: 0;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 50;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.25s ease;
}
.slider-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 22px;
}

/* Sparkle overlay on slider */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 25;
    background-image:
        radial-gradient(circle, rgba(255,220,150,.95) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,220,150,.75) 0 1.5px, transparent 3px),
        radial-gradient(circle, rgba(255,220,150,.55) 0 1px, transparent 2px);
    background-size: 220px 160px, 320px 220px, 460px 320px;
    background-position: 0 0, 90px 40px, 140px 90px;
    opacity: .75;
    filter: drop-shadow(0 0 6px rgba(255,215,130,.55));
    mix-blend-mode: screen;
    animation: sparkleDrift 7s ease-in-out infinite;
}

/* Gold shimmer sweep on active slide */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: -40%;
    z-index: 13;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 35%, rgba(255,215,140,.35) 45%, rgba(255,215,140,.75) 50%, rgba(255,215,140,.35) 55%, transparent 65%);
    opacity: 0;
    transform: translateX(-35%) translateY(10%);
}
.hero-slide.active::after {
    opacity: .9;
    animation: shimmerSweep 1.4s ease-out forwards;
}

/* Tile grid on active slide */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: -30%;
    z-index: 12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0;
}
.hero-slide.active::before {
    opacity: .5;
    animation: tileGridMove 1.2s ease-out forwards;
}

/* Sparkle layer (JS-generated twinkle stars) */
.sparkle-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 35;
}
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    border-radius: 50%;
    animation: twinkle 2s ease-out forwards;
    pointer-events: none;
}

@keyframes sparkleDrift {
    0%   { transform: translate(0,0) scale(1); opacity: .5; }
    50%  { transform: translate(-18px,10px) scale(1.02); opacity: .85; }
    100% { transform: translate(0,0) scale(1); opacity: .5; }
}
@keyframes shimmerSweep {
    0%   { transform: translateX(-45%) translateY(15%); opacity: 0; }
    35%  { opacity: .95; }
    100% { transform: translateX(45%) translateY(-15%); opacity: 0; }
}
@keyframes tileGridMove {
    0%   { transform: translate(0,0) scale(1.02); opacity: 0; }
    30%  { opacity: .55; }
    100% { transform: translate(30px,-20px) scale(1); opacity: 0; }
}
@keyframes twinkle {
    0%   { transform: scale(0); opacity: 0; }
    50%  { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}


/* ===== SHOWCASE SECTION ===== */
.showcase-section { padding: 24px 0 0; }

/* Row 1: Headline + Highlight */
.sc-row-1 {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 20px;
}
.sc-left {
    display: flex;
    flex-direction: column;
}
.sc-pre {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.sc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.sc-h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    color: var(--dark);
    line-height: 1.15;
    margin: 0 0 8px;
}
.sc-h1 span { color: var(--gold); }
.sc-desc {
    font-size: 0.85rem;
    color: #666;
    max-width: 520px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.sc-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
.sc-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
    transition: all var(--transition-fast);
}
.sc-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); color: #fff; }
.sc-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--border-soft);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.sc-why-btn:hover { background: rgba(212,175,55,0.08); border-color: var(--gold); }

/* Inline Stats */
/* Stats — right after buttons */
.sc-stats {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.sc-stat {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    border-radius: 12px;
    background: radial-gradient(circle at top, #fffdf7, #f5ecd6);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.sc-stat-n {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}
.sc-stat-l {
    font-size: 0.5rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Quick Shop — fills remaining left space */
.sc-quick-shop {
    margin-top: 0;
    padding: 10px;
    border-radius: 14px;
    background: radial-gradient(circle at top, #fffdf7, #f5ecd6);
    border: 1px solid rgba(212,175,55,0.15);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sc-qs-label {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 6px;
}
.sc-qs-label i { color: var(--gold); }
.sc-qs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    flex: 1;
}
.sc-qs-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.18);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.sc-qs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    border-color: rgba(212,175,55,0.4);
}
.sc-qs-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}
.sc-qs-img-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sc-qs-card:hover .sc-qs-img-wrap img { transform: scale(1.06); }
.sc-qs-info {
    padding: 4px 6px 5px;
}
.sc-qs-name {
    display: block;
    font-size: 0.52rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-bottom: 2px;
}
.sc-qs-name:hover { color: var(--gold); }
.sc-qs-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sc-qs-price {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}
.sc-qs-add {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
    background: #fffaf0;
    color: var(--gold);
    font-size: 0.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.sc-qs-add:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Highlight Card — compact, matches left side height */
.sc-highlight {
    border-radius: 18px;
    padding: 12px;
    background: radial-gradient(circle at top, #fffdf7, #fdf7ea, #f5e9d6);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}
.sh-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; }
.sh-title { font-family: var(--font-heading); font-size: 1rem; color: var(--dark); margin: 0; }
.sh-gallery { display: grid; grid-template-columns: 3fr 2fr; gap: 4px; flex: 1; min-height: 0; }
.sh-main { border-radius: 14px; overflow: hidden; border: 1px solid rgba(212,175,55,0.3); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.sh-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sh-main:hover img { transform: scale(1.04); }
.sh-sides { display: flex; flex-direction: column; gap: 5px; }
.sh-sides > div { border-radius: 12px; overflow: hidden; border: 1px solid rgba(212,175,55,0.2); flex: 1; }
.sh-sides img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.sh-sides > div:hover img { transform: scale(1.05); }
.sh-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 5px; }
.sh-chip { padding: 4px 6px; border-radius: 999px; background: rgba(255,255,255,0.95); border: 1px solid rgba(212,175,55,0.2); text-align: center; }
.sh-chip-label { display: block; font-size: 0.48rem; text-transform: uppercase; letter-spacing: 0.1em; color: #aaa; }
.sh-chip-value { display: block; font-size: 0.64rem; font-weight: 600; color: var(--dark); }
.sh-cta {
    display: block; text-align: center; padding: 6px 14px; border-radius: 999px;
    background: var(--gold); color: #17130a; font-size: 0.62rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none;
    margin-top: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all var(--transition-fast);
}
.sh-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); color: #17130a; }

/* Trending Now — Horizontal Scroll */
.sc-trending {
    margin-bottom: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(212,175,55,0.1);
}
.sc-trending-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.sc-trending-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sc-trending-label i { color: #e65100; }
.sc-trending-sub { font-size: 0.65rem; color: #aaa; display: block; }
.sc-trending-all {
    font-size: 0.68rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sc-trending-all:hover { color: var(--gold-dark); }
/* Infinite Marquee */
.marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 6px 0 10px;
}
.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /* Animation controlled by JS (see main.js) for pixel-perfect seamless loop */
}
/* Elegant fade edges */
.marquee-fade-left, .marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--body-bg) 0%, transparent 100%);
}
.marquee-fade-right {
    right: 0;
    background: linear-gradient(270deg, var(--body-bg) 0%, transparent 100%);
}
.sc-trend-card {
    flex: 0 0 180px;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top, #fffdf7, #f5e9d6);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.sc-trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    border-color: rgba(212,175,55,0.45);
}
.sc-trend-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    transition: transform 0.4s ease;
}
.sc-trend-card:hover img { transform: scale(1.06); }
.sc-trend-info {
    padding: 8px 10px;
}
.sc-trend-name {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sc-trend-price {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}
.sc-trend-add {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--gold);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    opacity: 0;
    transition: all 0.3s ease;
}
.sc-trend-card:hover .sc-trend-add { opacity: 1; }
.sc-trend-add:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

/* Promise Bar */
.sc-promise {
    display: flex;
    gap: 4px;
    padding: 10px 0 6px;
    border-top: 1px solid rgba(212,175,55,0.1);
    overflow-x: auto;
}
.sc-promise-item {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(212,175,55,0.08);
    white-space: nowrap;
    font-size: 0.68rem;
}
.sc-promise-item i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.sc-promise-item strong { color: var(--dark); font-size: 0.65rem; }

/* Why NitharA Modal */
.why-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1200;
}
.why-modal-overlay.active { opacity: 1; visibility: visible; }
.why-modal {
    width: min(640px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #fffdf7, #f7f0df);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 1px solid var(--border-soft);
    position: relative;
}
.why-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    cursor: pointer;
    font-size: 18px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.why-modal-close:hover { background: var(--gold); color: #111; }
.why-modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin: 0 0 4px;
}
.why-modal-sub { font-size: 0.78rem; color: #777; margin: 0 0 18px; }
.why-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.wm-card {
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(212,175,55,0.12);
    text-align: center;
    transition: all 0.3s ease;
}
.wm-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); border-color: rgba(212,175,55,0.3); }
.wm-icon {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin: 0 auto 8px;
}
.wm-card h6 { font-family: var(--font-heading); font-size: 0.82rem; color: var(--dark); margin: 0 0 4px; }
.wm-card p { font-size: 0.65rem; color: #888; margin: 0; line-height: 1.4; }
@media(max-width:600px) { .why-modal-grid { grid-template-columns: repeat(2, 1fr); } }

/* Highlight Shimmer Animation */
.highlight-shimmer { position: relative; overflow: hidden; }
.highlight-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,215,140,0.4) 44%, rgba(255,235,180,0.7) 50%, rgba(255,215,140,0.4) 56%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}
.highlight-shimmer:hover::after {
    opacity: 1;
    animation: hlGlitter 0.8s ease-out forwards;
}
@keyframes hlGlitter {
    0% { transform: translateX(-120%) rotate(-5deg); }
    100% { transform: translateX(120%) rotate(-5deg); }
}
.sh-main::after {
    animation: hlAutoGlitter 6s ease-in-out infinite;
    opacity: 0.6;
}
@keyframes hlAutoGlitter {
    0%, 70%, 100% { transform: translateX(-120%) rotate(-5deg); opacity: 0; }
    80% { opacity: 0.7; }
    90% { transform: translateX(120%) rotate(-5deg); opacity: 0; }
}

/* Section Headings */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2rem; color: var(--dark); position: relative; display: inline-block; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 10px auto 0; border-radius: 2px; }
.section-title p { color: var(--text-muted); margin-top: 10px; }

/* Shop by Category */
.categories-section { padding: 50px 0; background: var(--bg-warm); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; max-width: 1000px; margin: 0 auto; }
.cat-card { text-decoration: none; }
.cat-card-inner {
    position: relative; padding: 20px 12px 16px; border-radius: 20px;
    background: radial-gradient(circle at top, #fffdf7, #fdf7ea, #f5e9d6);
    border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    text-align: center; transition: all 0.35s ease; overflow: hidden;
}
.cat-card:hover .cat-card-inner { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(212,175,55,0.18); border-color: rgba(212,175,55,0.5); }
.cat-img-wrap {
    width: 80px; height: 80px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden;
    border: 2px solid rgba(212,175,55,0.3); background: #fff; position: relative;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08); transition: all 0.35s ease;
}
.cat-card:hover .cat-img-wrap { border-color: var(--gold); box-shadow: 0 6px 20px rgba(212,175,55,0.3); transform: scale(1.08); }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.12); }
.cat-fallback-icon { font-size: 2rem; color: var(--gold); display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.cat-shimmer {
    position: absolute; inset: 0; border-radius: 50%;
    background: linear-gradient(115deg, transparent 30%, rgba(255,215,140,0.5) 45%, rgba(255,235,180,0.8) 50%, rgba(255,215,140,0.5) 55%, transparent 70%);
    opacity: 0; transform: translateX(-100%); pointer-events: none;
}
.cat-card:hover .cat-shimmer { opacity: 1; animation: catShimmer 0.8s ease-out forwards; }
@keyframes catShimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.cat-name { font-family: var(--font-heading); font-size: 0.92rem; color: var(--dark); margin: 0 0 2px; font-weight: 600; }
.cat-count { font-size: 0.62rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.12em; }
.cat-arrow {
    position: absolute; bottom: 8px; right: 10px; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(212,175,55,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: all 0.3s ease;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* Showcase Responsive */
@media(max-width:991px) {
    .sc-row-1 { grid-template-columns: 1fr; }
    .sc-highlight { margin-top: 16px; }
}
@media(max-width:768px) {
    .sc-h1 { font-size: 1.4rem; }
    .sc-stats { gap: 3px; }
    .sc-stat { padding: 6px 4px; }
    .sc-stat-n { font-size: 0.8rem; }
    .sc-qs-grid { grid-template-columns: repeat(2, 1fr); }
    .sc-trend-card { flex: 0 0 150px; }
    .sh-chips { grid-template-columns: 1fr; }
    .sc-row-1 { gap: 16px; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media(max-width:480px) {
    .sc-promise { flex-wrap: wrap; }
    .sc-promise-item { flex: 0 0 calc(50% - 2px); }
    .sc-trend-card { flex: 0 0 130px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

    position: relative;
    background: radial-gradient(circle at top, #fffdf7 0%, #fdf7ea 40%, #f5e9d6 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
    height: 100%;
    backdrop-filter: blur(6px);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    border-color: rgba(212, 175, 55, 0.46);
}
.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 18px;
    margin: 8px;
    background: radial-gradient(circle at top, #fff7e3, #f0e0c3);
    border: 1px solid rgba(212, 175, 55, 0.32);
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.06);
}
.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(20, 20, 20, 0.9);
    color: var(--gold-soft);
    font-size: 0.6rem;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.product-card .product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(20, 15, 5, 0.55));
    transition: bottom 0.3s ease;
}
.product-card:hover .product-actions { bottom: 0; }
.product-card .product-actions .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.product-card .product-info {
    padding: 8px 16px 16px;
}
.product-card .product-category {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
}
.product-card .product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin: 4px 0;
    font-weight: 600;
}
.product-card .product-name a { color: inherit; }
.product-card .product-name a:hover { color: var(--gold); }
.product-card .product-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.05rem;
}
.product-card .product-price .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 6px;
}

/* ===== Category Cards (Highlight style) ===== */
.category-card {
    background: radial-gradient(circle at top, #fffdf7 0%, #fdf7ea 40%, #f5e9d6 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    height: 180px;
    transition: all var(--transition-fast);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
}
.category-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.category-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}
/* Fallback when no image */
.category-card .category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--gold);
}
.category-card .category-overlay {
    position: relative;
    padding: 0;
    text-align: center;
}
.category-card .category-overlay h5 {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}
.category-card .category-overlay span {
    color: var(--gold-dark);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}

/* ===== Product Detail ===== */
.product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}
.product-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--gold);
}

/* ===== Cart ===== */
.cart-table th {
    background: var(--dark);
    color: var(--gold-soft);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.cart-table td { vertical-align: middle; }
.cart-table .product-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
}
.cart-summary {
    background: radial-gradient(circle at top, #fffdf7 0%, #fdf7ea 40%, #f5e9d6 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

/* ===== Auth Pages ===== */
.auth-container {
    max-width: 480px;
    margin: 40px auto;
    background: radial-gradient(circle at top, #fffdf7, #fdf7ea);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}
.auth-container h2 {
    text-align: center;
    margin-bottom: 8px;
}
.auth-container .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ===== Forms ===== */
.form-control, .form-select {
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.98);
    font-size: 0.9rem;
}
textarea.form-control { border-radius: 16px; }
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}
.form-label { font-weight: 500; font-size: 0.9rem; }

/* ===== Footer (Compact Gold) ===== */
.site-footer {
    background: linear-gradient(180deg, #0c0c0c 0%, #111 100%);
    color: var(--gold-soft);
    position: relative;
    overflow: hidden;
}
/* Subtle sparkle on footer */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(212,175,55,.12) 0 1px, transparent 2px);
    background-size: 200px 140px;
    opacity: .5;
    animation: sparkleDrift 10s ease-in-out infinite;
}
.site-footer .container { position: relative; z-index: 2; }
.footer-brand {
    font-family: var(--font-heading);
    color: var(--gold) !important;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 5px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links.contact-info li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links.contact-info i {
    color: var(--gold);
    margin-right: 6px;
    width: 14px;
}
.footer-divider { border-color: rgba(212, 175, 55, 0.12); }

/* Footer Credit — PR & LP */
.footer-credit {
    position: relative;
    cursor: default;
}
.fc-short {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}
.fc-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--gold);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: all 0.3s ease;
}
.fc-full {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.fc-full strong {
    color: var(--gold);
    font-weight: 600;
}
.fc-full::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-right: 1px solid rgba(212,175,55,0.25);
    border-bottom: 1px solid rgba(212,175,55,0.25);
    transform: rotate(45deg);
}
.footer-credit:hover .fc-short { opacity: 0.6; }
.footer-credit:hover .fc-initials {
    background: var(--gold);
    color: #111;
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
}
.footer-credit:hover .fc-full {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    margin-right: 6px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: all var(--transition-fast);
}
.social-links a:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== Feature Strip ===== */
.feature-strip {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-soft);
    border-top: 1px solid var(--border-soft);
}

/* ===== WhatsApp Banner (Warm Highlight Style) ===== */
.wa-banner {
    background: radial-gradient(circle at top, #fffdf7 0%, #f9f1dd 30%, #f5e9d6 60%, #efe0c8 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.wa-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(212, 175, 55, .15) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(212, 175, 55, .1) 0 1.5px, transparent 3px);
    background-size: 200px 140px, 300px 200px;
    background-position: 0 0, 80px 50px;
    opacity: .6;
    animation: sparkleDrift 7s ease-in-out infinite;
}
.wa-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.wa-banner .container { position: relative; z-index: 2; }
.wa-banner h2 { color: var(--dark) !important; }
.wa-banner p { color: #666 !important; }

/* ===== CART DRAWER ===== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 998;
}
.cart-drawer-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 90vw);
    height: 100vh;
    background: linear-gradient(180deg, #fffdf8, #f8f1e2);
    box-shadow: -14px 0 36px rgba(0, 0, 0, 0.22);
    padding: 16px 14px 14px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    border-left: 1px solid var(--border-soft);
}
.cart-drawer.active { transform: translateX(0); }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.cart-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
}
.cart-subtitle {
    font-size: 0.68rem;
    color: #777;
}
.cart-close {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    transition: all var(--transition-fast);
}
.cart-close:hover {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(6deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
}
.cart-empty-msg {
    font-size: 0.78rem;
    color: #777;
    padding: 30px 4px;
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.26);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    align-items: center;
}
.cart-item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #fff7e3;
}
.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.76rem;
    line-height: 1.2;
}
.cart-item-meta {
    font-size: 0.62rem;
    color: #999;
    margin-top: 1px;
}
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.cart-item-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}
.qty-btn {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: none;
    background: #fff7e4;
    color: var(--gold);
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-weight: 700;
}
.qty-btn:hover { background: var(--gold); color: var(--dark); }
.qty-val { font-size: 0.72rem; font-weight: 600; min-width: 16px; text-align: center; }
.cart-remove {
    border: none;
    background: transparent;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c07070;
    cursor: pointer;
    transition: color 0.2s;
}
.cart-remove:hover { color: #a03030; }

.cart-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.26);
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.72rem;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.cart-total-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
    font-size: 0.58rem;
}
.cart-total-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}
.cod-badge {
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 0.58rem;
    border: 1px solid var(--gold);
    color: var(--dark);
    background: #fffaf0;
    white-space: nowrap;
}
.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
}
.checkout-btn {
    width: 100%;
    border-radius: 999px;
    padding: 9px 10px;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all var(--transition-fast);
}
.checkout-btn.whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.checkout-btn.whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}
.checkout-btn.email {
    background: #fff;
    color: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.checkout-btn.email:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-1px);
}
.cart-note {
    font-size: 0.58rem;
    color: #888;
    line-height: 1.4;
}

/* ===== OTP AUTH MODAL ===== */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1100;
}
.auth-overlay.active { opacity: 1; visibility: visible; }

.auth-modal {
    width: min(420px, 92vw);
    background: linear-gradient(135deg, #fffdf7, #f7f0df);
    border-radius: var(--radius-xl);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    padding: 28px 24px;
    position: relative;
    border: 1px solid var(--border-soft);
    max-height: 90vh;
    overflow-y: auto;
}
.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    font-size: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.auth-close:hover { background: var(--gold); color: #111; }

.auth-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.auth-subtitle {
    font-size: 0.78rem;
    color: #777;
    margin-bottom: 16px;
}
.auth-error {
    background: #fdeaea;
    color: #c04040;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-bottom: 10px;
    display: none;
}
.auth-error.show { display: block; }

.auth-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.auth-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}
.auth-country-select {
    padding: 8px 6px;
    font-size: 0.8rem;
    color: var(--dark);
    font-weight: 600;
    background: #fffaf3;
    border: none;
    border-right: 1px solid var(--border-soft);
    outline: none;
    cursor: pointer;
    min-width: 90px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23d4af37' d='M0 2l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    padding-right: 18px;
}
.auth-input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 14px;
    font-size: 0.88rem;
    background: transparent;
}
.auth-input {
    width: 100%;
    padding: 9px 14px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 0.85rem;
    outline: none;
    background: #fff;
    margin-bottom: 8px;
}
.auth-input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.15); }

.auth-otp-methods {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.auth-method {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 6px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #fff;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 500;
    color: #777;
    transition: all var(--transition-fast);
    text-align: center;
}
.auth-method input { display: none; }
.auth-method.active,
.auth-method:has(input:checked) {
    border-color: var(--gold);
    background: #fffaf0;
    color: var(--gold-dark);
    box-shadow: 0 2px 8px rgba(212,175,55,0.15);
}

.auth-btn {
    width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--gold), #f7d778);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: all var(--transition-fast);
}
.auth-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.auth-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.auth-btn-link {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.72rem;
    cursor: pointer;
    margin-top: 8px;
    display: block;
    text-align: center;
    text-decoration: underline;
}
.auth-hint {
    font-size: 0.62rem;
    color: #aaa;
    text-align: center;
    margin-top: 8px;
}

/* ===== Admin Panel ===== */
.admin-sidebar {
    background: #111;
    min-height: 100vh;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.2) transparent;
}
.admin-sidebar::-webkit-scrollbar { width: 3px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.2); border-radius: 3px; }
.admin-main-content {
    margin-left: 200px;
    padding: 20px 24px;
    min-height: 100vh;
}
@media(max-width:991px) {
    .admin-main-content { margin-left: 0; padding: 12px; }
}
.admin-sidebar .sidebar-brand {
    padding: 14px 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    font-size: 0.82rem;
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    border-left-color: var(--gold);
}
.admin-sidebar .nav-link i { width: 24px; margin-right: 8px; }
.admin-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-soft);
}
.stat-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-soft);
    transition: all var(--transition-fast);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* ===== Pagination ===== */
.pagination .page-link {
    color: var(--gold-dark);
    border-color: var(--border-soft);
    border-radius: 999px;
}
.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* ===== Utilities ===== */
.text-gold { color: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }

/* ===== Breadcrumb ===== */
.breadcrumb-section {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}
/* Subtle sparkle on breadcrumb */
.breadcrumb-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 220, 150, .5) 0 1px, transparent 2px);
    background-size: 280px 180px;
    opacity: .3;
    mix-blend-mode: screen;
    animation: sparkleDrift 7s ease-in-out infinite;
}
.breadcrumb-section .container { position: relative; z-index: 2; }
.breadcrumb-section h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}
.breadcrumb-section .breadcrumb-item,
.breadcrumb-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}
.breadcrumb-section .breadcrumb-item.active { color: var(--gold); }

/* ===== Nav tabs ===== */
.nav-tabs .nav-link {
    border-radius: 999px 999px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.nav-tabs .nav-link.active {
    color: var(--gold-dark);
    border-color: var(--border-soft) var(--border-soft) #fff;
}

/* ===== Share Buttons (default = brand colour, hover = white/gold) ===== */
.share-buttons { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.share-label { font-size:0.72rem; color:#999; font-weight:500; }
.share-btn {
    width:32px; height:32px; border-radius:50%; border:1px solid rgba(212,175,55,0.2);
    display:flex; align-items:center; justify-content:center; font-size:0.82rem;
    color:#fff; cursor:pointer; transition:all 0.2s; text-decoration:none;
}
.share-btn:hover { transform:scale(1.1); }

/* Default state — brand colours */
.share-wa   { background:#25d366; border-color:#25d366; }
.share-fb   { background:#1877f2; border-color:#1877f2; }
.share-tw   { background:#000;    border-color:#000;    }
.share-pin  { background:#e60023; border-color:#e60023; }
.share-tg   { background:#0088cc; border-color:#0088cc; }
.share-copy { background:var(--gold); border-color:var(--gold); color:#111; }

/* Hover state — invert to white background with gold accent */
.share-btn:hover {
    background:#fff;
    border-color:var(--gold);
    box-shadow:0 4px 12px rgba(212,175,55,0.3);
}
.share-wa:hover   { color:#25d366; }
.share-fb:hover   { color:#1877f2; }
.share-tw:hover   { color:#000;    }
.share-pin:hover  { color:#e60023; }
.share-tg:hover   { color:#0088cc; }
.share-copy:hover { color:var(--gold); background:#111; border-color:#111; }

/* ===== Reviews ===== */
.review-stars { display:inline-flex; gap:2px; }
.review-stars i { color:#ddd; font-size:0.9rem; }
.review-stars i.filled { color:#d4af37; }
.review-card {
    padding:16px; border-radius:14px; background:radial-gradient(circle at top,#fffdf7,#f5ecd6);
    border:1px solid rgba(212,175,55,0.15); margin-bottom:12px;
}
.review-card .review-header { display:flex; justify-content:space-between; align-items:start; margin-bottom:8px; }
.review-card .reviewer-name { font-weight:600; font-size:0.85rem; color:var(--dark); }
.review-card .review-date { font-size:0.65rem; color:#999; }
.review-card .review-badge { font-size:0.58rem; padding:2px 8px; border-radius:999px; background:#d4edda; color:#155724; }
.review-card .review-text { font-size:0.82rem; color:#555; line-height:1.6; }
.review-card .admin-reply { margin-top:10px; padding:10px; background:rgba(212,175,55,0.06); border-radius:10px; border-left:3px solid var(--gold); font-size:0.78rem; }
.star-input { display:flex; gap:2px; direction:rtl; }
.star-input input { display:none; }
.star-input label { cursor:pointer; font-size:1.5rem; color:#ddd; transition:color 0.2s; }
.star-input label:hover, .star-input label:hover ~ label,
.star-input input:checked ~ label { color:#d4af37; }

/* ===== Wishlist ===== */
.wishlist-btn {
    width:34px; height:34px; border-radius:50%; border:1px solid rgba(212,175,55,0.25);
    background:#fff; color:#ccc; display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition:all 0.2s; font-size:0.9rem;
}
.wishlist-btn:hover, .wishlist-btn.active { color:#dc3545; border-color:#dc3545; }
.wishlist-btn.active { background:rgba(220,53,69,0.06); }

/* ===== Video Reels — Elegant Grid ===== */
.reel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.reel-card-v2 {
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at top, #fffdf7, #f5e9d6);
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-decoration: none;
    transition: all 0.35s ease;
    display: block;
}
.reel-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.45);
}
.reel-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.reel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.reel-card-v2:hover .reel-img-wrap img { transform: scale(1.06); }
.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212,175,55,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #111;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 3;
}
.reel-card-v2:hover .reel-play-btn { transform: translate(-50%, -50%) scale(1); box-shadow: 0 6px 24px rgba(212,175,55,0.4); }
/* Gold shimmer sweep on video thumbnail */
.reel-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,215,140,0.35) 45%, rgba(255,235,180,0.6) 50%, rgba(255,215,140,0.35) 55%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}
.reel-card-v2:hover .reel-shimmer { opacity: 1; animation: reelShimmer 0.8s ease-out forwards; }
@keyframes reelShimmer { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

.reel-card-info {
    padding: 10px 14px 12px;
}
.reel-card-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 3px;
}
.reel-card-product {
    display: block;
    font-size: 0.62rem;
    color: var(--gold-dark);
}
.reel-card-stats {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    font-size: 0.6rem;
    color: #aaa;
}
.reel-card-stats i { margin-right: 2px; }

@media(max-width:768px) {
    .reel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media(max-width:480px) {
    .reel-grid { grid-template-columns: 1fr; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-content-section { padding: 20px 4vw; }
    .hero-content-section .row { flex-direction: column; }
    .hero-card { max-width: 100%; margin-left: 0; margin-top: 20px; }
    .slider-section { padding: 0 3vw; }
}

@media (max-width: 768px) {
    .hero-slider { height: clamp(200px, 55vw, 320px); border-radius: 18px; }
    .slide-content { max-width: 80%; padding: 16px 20px; }
    .slide-content h2 { font-size: 1.1rem; }
    .slide-content p { font-size: 0.7rem; }
    .hero-content-section h1 { font-size: 1.8rem; }
    .product-card .product-image { height: 220px; }
    .product-detail-image img { height: 350px; }
    .top-bar .d-flex { flex-direction: column; text-align: center; gap: 2px !important; }
    .nav-logo { width: 40px; height: 40px; }
    .navbar-brand .brand-text { font-size: 1.2rem; }
    .hero-ribbon { max-width: 100%; }
    .highlight-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .hero-content-section h1 { font-size: 1.5rem; }
    .section-title h2 { font-size: 1.5rem; }
    .auth-container { margin: 20px 15px; padding: 25px; }
    .product-card .product-image { height: 180px; margin: 6px; }
    .slider-section { padding: 0 2vw; margin-top: 4px; }
    .hero-slider { border-radius: 14px; }
    .hero-card-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Mobile navbar — force hamburger collapse behaviour
   Prevents the nav from rendering expanded before Bootstrap
   JS kicks in (and works even if Bootstrap JS fails to load).
   ========================================================= */
@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    .navbar-expand-lg .navbar-collapse.show,
    .navbar-expand-lg .navbar-collapse.collapsing {
        display: block !important;
    }
    /* Give the collapsed menu breathing room when open */
    .navbar-expand-lg .navbar-collapse.show {
        padding: 10px 0;
        border-top: 1px solid rgba(212,175,55,0.15);
        margin-top: 8px;
    }
    .navbar-expand-lg .navbar-collapse.show .navbar-nav {
        margin: 0 !important;
    }
    .navbar-expand-lg .navbar-collapse.show .nav-link {
        padding: 8px 12px;
    }
    /* Ensure hamburger toggle is always visible on mobile */
    .navbar-expand-lg .navbar-toggler {
        display: inline-block !important;
    }
}
