@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    /* ── Premium Dark Gold Palette ── */
    --primary: #C89B2D;           /* Rich gold */
    --primary-light: #F4C430;     /* Bright gold */
    --secondary: #800020;         /* Deep maroon for accents */
    --accent: #FF8C42;            /* Orange accent */
    --accent-light: #ffaa70;
    --background: #0D0D0D;        /* Deep black */
    --background-2: #1A1A1A;      /* Dark grey */
    --surface: #1A1A1A;           /* Card/surface dark grey */
    --surface-2: #222222;         /* Slightly lighter dark */
    --text-main: #FFFFFF;         /* White text */
    --text-muted: #BFBFBF;        /* Light grey muted text */
    --border-color: #2a2a2a;      /* Dark border */
    --border-gold: rgba(200,155,45,0.3); /* Gold border subtle */
    --success: #22c55e;
    --danger: #ef4444;
    --font-heading: 'Playfair Display', serif;  /* Elegant serif for luxury */
    --font-body: 'Inter', sans-serif;
    --font-ui: 'Outfit', sans-serif;
    --transition: all 0.25s ease;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.6);
    --shadow-gold: 0 4px 20px rgba(200,155,45,0.25);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --perspective: 1000px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: clip !important;
    width: 100vw;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: clip !important;
    width: 100vw;
    max-width: 100%;
}

/* Scrollbar dark theme */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #C89B2D; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #F4C430; }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Hide Number Input Arrows globally */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}

.vanilla-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.btn-primary {
    background: linear-gradient(135deg, #C89B2D 0%, #F4C430 100%);
    color: #0D0D0D;
    box-shadow: 0 6px 20px rgba(200,155,45,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: var(--font-ui);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a07520 0%, #C89B2D 60%, #e8b838 100%);
    color: #0D0D0D;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(200,155,45,0.55);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #0D0D0D;
}

.btn-accent {
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(128,0,32,0.3);
    border: none;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #C89B2D 0%, #F4C430 100%);
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200,155,45,0.4);
}

.btn-success {
    background: linear-gradient(135deg, #2A8B46 0%, #1e6e35 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(42, 139, 70, 0.25);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-success:hover {
    background: linear-gradient(135deg, #1e6e35 0%, #2A8B46 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 139, 70, 0.35);
}

/* ═══════════════════════════════════════════════════
   ANNOUNCEMENT BAR — Premium Redesign
═══════════════════════════════════════════════════ */
.announce-bar {
    background: linear-gradient(90deg, #0f0f0f 0%, #1c1505 50%, #0f0f0f 100%);
    border-bottom: 1px solid rgba(200, 155, 45, 0.4);
    box-shadow: 0 0 15px rgba(200, 155, 45, 0.15);
    color: #F4C430;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    font-family: var(--font-ui, 'Outfit', sans-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announce-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    min-width: 0;
    width: 100%;
}

/* Fade edges */
.announce-track-wrap::before,
.announce-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.announce-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0f0f0f, transparent);
}

.announce-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0f0f0f, transparent);
}

.announce-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: announceTicker 25s linear infinite;
    gap: 0;
    width: max-content;
    max-width: none;
    flex-shrink: 0;
}

.announce-track:hover {
    animation-play-state: paused;
}

@keyframes announceTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announce-item {
    padding: 0 35px;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 8px rgba(244, 196, 48, 0.4);
}

.announce-item i {
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.announce-dot {
    color: rgba(200, 155, 45, 0.8);
    font-size: 0.5rem;
    text-shadow: 0 0 10px rgba(200,155,45,0.8);
}
@media (max-width: 768px) {
    .announce-track-wrap::before, .announce-track-wrap::after { display: none; }
    .announce-track {
        animation: none !important;
        width: 100%;
        justify-content: flex-start;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }
    .announce-item {
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0 10px;
    }
    .announce-dot {
        display: none !important;
    }
    .announce-bar {
        font-size: 0.72rem;
        height: 38px;
    }
}


.announce-admin-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0 14px;
    height: 100%;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.announce-admin-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #D4AF37;
}

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
header {
    background: #0D0D0D;
    border-radius: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 12px 0 14px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(200,155,45,0.5);
    transition: box-shadow 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    overflow: visible;               /* allow dropdown to show below header */
    box-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 0 rgba(200,155,45,0.3);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
    height: 56px;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(10px);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.logo-img-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid #D4AF37;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(128, 0, 32, 0.20), 0 0 0 3px rgba(212, 175, 55, 0.12);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

.site-logo:hover .logo-img-wrap {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(128, 0, 32, 0.28);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo-name-2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-top: 1px;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
    gap: 4px;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-main);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.nav-active {
    color: var(--primary);
    background: rgba(200, 155, 45, 0.1);
}

.desktop-nav a.nav-active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.header-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
    color: #BFBFBF;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.header-icon:hover {
    background: rgba(200, 155, 45, 0.12);
    color: var(--primary);
}

.header-icon-track {
    display: none;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 0;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(200, 155, 45, 0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #BFBFBF;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════════ */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #111111;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.7);
    transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 1px solid rgba(200,155,45,0.2);
}

.mobile-drawer.open {
    left: 0;
}

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-drawer-header {
    display: block;
    padding: 0;
    border-bottom: none;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.drawer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #D4AF37;
    background: white;
}

.drawer-brand-text {
    display: flex;
    flex-direction: column;
}

.drawer-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.drawer-brand-tag {
    font-size: 0.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.drawer-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.drawer-close:hover {
    background: rgba(200,155,45,0.1);
    color: #C89B2D;
}

.mobile-nav-links {
    flex: 1;
    padding: 12px 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #BFBFBF;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-nav-links a i {
    width: 18px;
    color: #C89B2D;
}

.mobile-nav-links a:hover {
    background: rgba(200, 155, 45, 0.1);
    color: #C89B2D;
}

.mobile-drawer-contact {
    padding: 14px 16px;
    border-top: 1px solid rgba(200,155,45,0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #BFBFBF;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 9px;
    background: rgba(200,155,45,0.08);
    border: 1px solid rgba(200,155,45,0.15);
}

.mobile-drawer-contact a:hover {
    background: rgba(200,155,45,0.15);
    color: #C89B2D;
}

.mobile-drawer-contact a i {
    color: #C89B2D;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2999;
    backdrop-filter: blur(2px);
}

.drawer-overlay.show {
    display: block;
}

/* ── Bottom Navigation ── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(60px + env(safe-area-inset-bottom));
    background: #111111;
    border-top: 1px solid rgba(200,155,45,0.2);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
    z-index: 1001;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: border-box;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.65rem;
    font-weight: 600;
    gap: 3px;
    flex: 1;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.15s;
    position: relative;
}

.nav-item i {
    font-size: 1.15rem;
    transition: transform 0.15s;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item.active i {
    transform: scale(1.1);
}

/* Cart badge on bottom nav */
.nav-item .cart-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 22px);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 56vw;
    min-height: 200px;
    max-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #1a0800;
    border-top: 2px solid rgba(200,155,45,0.45);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 5, 0, 0.78) 0%,
        rgba(20, 8, 0, 0.55) 50%,
        rgba(128, 0, 32, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 600px;
    text-align: left !important;
    animation: fadeInUp 0.9s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.1;
    animation: slideInLeft 1.5s ease-out 0.3s both;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInLeft 1.5s ease-out 0.6s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Categories Section */
.section-padding {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C89B2D, #F4C430, #C89B2D);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 18px;
    letter-spacing: 0.01em;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-md);
}

.category-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
    box-shadow: var(--shadow-xl);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.category-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.category-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.03em;
}

.category-card:hover img {
    transform: scale(1.05);
}

/* ── Meesho-style Products Grid ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    max-width: 100%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.product-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
    transform: none;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 8px 10px 10px;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #222;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* Meesho-style discount badge: "↓ 70% off" */
.discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #e53e3e, #c62828);
    color: white;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: var(--border-radius) 0 10px 0;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(229,62,62,0.45);
    z-index: 2;
}

.product-label-badges {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
    pointer-events: none;
}
.product-label-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-trending {
    background: linear-gradient(135deg, #ff6b00, #e53e3e);
    color: #fff;
}
.badge-new {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
}

.product-info h3 {
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-body);
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.new-price {
    font-weight: 800;
    color: var(--text-main);
    font-size: 1.05rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.78rem;
}

.pct-off-badge {
    color: #388e3c;
    font-size: 0.72rem;
    font-weight: 800;
}

/* Free delivery tag below price */
.free-delivery-tag {
    font-size: 0.72rem;
    color: var(--success);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

/* Product card action buttons */
.pc-btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.pc-btn-cart {
    width: 100%;
    padding: 9px 6px;
    border-radius: 8px;
    border: 1.5px solid #C89B2D;
    background: transparent;
    color: #C89B2D;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.01em;
}

.pc-btn-cart:hover {
    background: rgba(200,155,45,0.12);
    color: #e0b040;
}

.pc-btn-buy {
    width: 100%;
    padding: 9px 6px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #C89B2D, #F4C430);
    color: #0D0D0D;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}

.pc-btn-buy:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,155,45,0.4);
}

.add-to-cart-btn {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, #C89B2D, #F4C430);
    color: #0D0D0D;
    font-weight: 800;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #a07520, #C89B2D);
    color: #0D0D0D;
}

/* Colorful Size Selector Pills */
.size-selector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.size-pill {
    position: relative;
    cursor: pointer;
    user-select: none;
    flex-grow: 1;
    text-align: center;
}

.size-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.size-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    background-color: #2a2a2a;
    color: #BFBFBF;
    border: 2px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.size-pill:hover:not(.size-out) .size-label {
    background-color: #333;
    color: #fff;
    transform: translateY(-1px);
}

.size-pill.selected .size-label,
.size-pill input[type="radio"]:checked~.size-label {
    background: linear-gradient(135deg, #a07520, #C89B2D);
    color: white;
    border-color: #fbc02d;
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.3);
    transform: scale(1.05);
}

.size-out {
    cursor: not-allowed;
    opacity: 0.45;
}

.size-out .size-label {
    background-color: #1e1e1e;
    color: #555;
    text-decoration: line-through;
}

/* Banner Section */
.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 30px;
}

.promo-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(128, 0, 32, 0.4));
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 70%;
}

.promo-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 22px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1EBE5D;
}

/* ═══════════════════════════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
    background: #0d1117;
    color: #aaa;
    margin-bottom: 0;
}

/* Brand strip */
.footer-brand-strip {
    background: linear-gradient(135deg, #12070e 0%, #1a0a10 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 32px 0;
}

.footer-brand-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.01em;
}

.footer-brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 3px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 560px;
}

.footer-brand-desc em {
    color: #D4AF37;
    font-style: normal;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-socials a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.footer-socials a.social-wa:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

/* Main grid */
.footer-main {
    padding: 44px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-col-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-title i {
    color: #D4AF37;
    font-size: 0.85rem;
}

.footer-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-col-list a i {
    font-size: 0.6rem;
    color: rgba(212, 175, 55, 0.8);
    transition: color 0.2s;
}

.footer-col-list a:hover {
    color: #D4AF37;
}

.footer-col-list a:hover i {
    color: #D4AF37;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-info-list li i {
    color: #D4AF37;
    width: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.85rem;
}

.footer-info-list a {
    color: #C89B2D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-info-list a:hover {
    color: #F4C430;
    text-decoration: underline;
}

.footer-payments {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pay-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.pay-pill i {
    color: #D4AF37;
}

/* Map */
.footer-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #C89B2D, #F4C430);
    color: #0D0D0D;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    align-self: flex-start;
}

.map-directions-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(200,155,45,0.4);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.25);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: #D4AF37;
}

.footer-bottom-right span {
    opacity: 0.25;
}

/* Modals / Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #111111;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(200,155,45,0.2);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--surface);
    border-radius: 4px;
    padding: 2px 8px;
}

.qty-btn {
    background: none;
    cursor: pointer;
    font-weight: bold;
    color: var(--secondary);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--surface);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #1A1A1A;
    border: 1px solid rgba(200,155,45,0.3);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════ */
/* Very small screens */
@media (max-width: 400px) {
    .logo-tagline { display: none !important; }
    .logo-name    { font-size: 0.85rem !important; }
    .logo-name-2  { font-size: 0.7rem !important; }
    .logo-img-wrap{ width: 30px !important; height: 30px !important; }
}

@media (max-width: 768px) {
    header {
        padding: 0 10px;
    }

    .site-logo {
        gap: 6px;
    }

    .header-icon {
        width: 32px;
        height: 32px;
        padding: 0 6px !important;
    }

    .hamburger {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 640px) {
    .footer-brand-inner {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-brand-desc {
        margin-left: 70px;
    }

    .footer-socials {
        margin-left: 70px;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none;
    }

    .hamburger {
        display: none;
    }

    .header-icon-track {
        display: flex;
    }

    .desktop-nav {
        display: flex;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero {
        height: 65vh;
        min-height: 480px;
        max-height: 700px;
        align-items: center;
    }

    .hero-img {
        object-position: center center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-map-col {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-map-col {
        grid-column: auto;
    }

    .footer-brand-inner {
        gap: 30px;
    }

    .footer-brand-desc {
        margin-left: 0;
        flex: 1;
    }

    .footer-socials {
        margin-left: 0;
    }
}

/* Slider Overrides */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: auto;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* --- Trending Video Reels --- */
.reels-wrapper .reel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-nav-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-reel {
    left: -10px;
}

.next-reel {
    right: -10px;
}

@media (max-width: 768px) {
    .reel-nav-btn {
        display: none !important;
    }

    .prev-reel,
    .next-reel {
        display: none !important;
    }
}

.reels-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 15px 10px 5px;
    margin: 0 auto 10px;
    max-width: 1200px;
}

@media(min-width: 1024px) {
    .reels-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Beautiful scrollable indicator */
.reels-container::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.reels-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.reels-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.reel-card {
    flex: 0 0 calc(100vw - 60px);
    max-width: 310px;
    height: 520px;
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92);
    opacity: 0.65;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

.reel-card.active-reel {
    transform: scale(1);
    opacity: 1;
}

.reel-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.reel-product-info {
    margin-bottom: 12px;
}

.reel-product-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.reel-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.reel-stock select {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 8px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.reel-stock select option {
    color: #000;
}


/* --- Premium 3D & Glassmorphism Utilities --- */
.glass {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Scroll Animations — unified: JS adds .animate class */
.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 3D Tilt Utilities */
.vanilla-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.vanilla-tilt-inner {
    transform: translateZ(40px);
}

/* =========================================
   V2 UPGRADE FEATURES STYLES
   ========================================= */

/* Dropdown Mega Menu */
.nav-submenu {
    min-width: 140px;
}

/* Header Search AJAX */
.header-search-box {
    position: relative;
    flex: 1;
    max-width: 320px;
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.header-search-box input {
    width: 100%;
    padding: 10px 16px;
    padding-left: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: var(--background);
    color: #FFFFFF;
    transition: var(--transition);
    font-size: 0.85rem;
    outline: none;
}
.header-search-box input::placeholder {
    color: #888;
}

.header-search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(200,155,45,0.08);
}

.header-search-box .search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 380px;
    width: max-content;
    max-width: 440px;
    background: #1A1A1A;
    border: 1px solid rgba(200,155,45,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    border-radius: 12px;
    margin-top: 10px;
    max-height: 420px;
    overflow-y: auto;
    z-index: 1500;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.2s;
    min-width: 0;
}
.search-result-item:hover {
    background: #222;
}

/* Live search dropdown — section headings, thumbnails, text rows.
   (.search-result-thumb below replaces the old generic ".search-result-item
   img" rule — that descendant selector had higher specificity than a single
   class and would otherwise win over .search-result-thumb's sizing.) */
.search-result-heading { padding: 8px 14px 4px; font-size: 0.7rem; font-weight: 800; color: #C89B2D; letter-spacing: 0.1em; text-transform: uppercase; }
.search-result-divider { height: 1px; background: rgba(200,155,45,0.12); margin: 4px 0; }
.search-result-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(200,155,45,0.12); border: 1px solid rgba(200,155,45,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.search-result-icon i { color: #C89B2D; font-size: 0.85rem; }
.search-result-info { min-width: 0; flex: 1; overflow: hidden; }
.search-result-title { font-size: 0.87rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-parent { color: #888; font-weight: 500; }
.search-result-sub { font-size: 0.72rem; color: #888; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-price { font-size: 0.82rem; font-weight: 800; color: #F4C430; margin-top: 2px; }
.search-result-oldprice { text-decoration: line-through; color: #888; margin-left: 4px; }
.search-result-thumb { width: 42px; height: 52px; object-fit: cover; border-radius: 6px; flex-shrink: 0; margin-right: 0; }
.search-result-viewall { display: block; padding: 10px 14px; text-align: center; font-size: 0.8rem; font-weight: 700; color: #C89B2D; border-top: 1px solid rgba(200,155,45,0.15); text-decoration: none; }
.search-result-viewall i { font-size: 0.7rem; }
.search-result-empty { padding: 18px; text-align: center; color: #888; font-size: 0.85rem; }
.search-result-empty i { margin-right: 6px; color: #555; }

/* Live Cart Drawer */
.live-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #111111;
    z-index: 2100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(200,155,45,0.2);
}

.live-cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(200,155,45,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0D0D0D;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    margin: 0;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(200,155,45,0.2);
    background: #0D0D0D;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(2px);
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cart-drawer-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-drawer-item-details h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cart-drawer-item-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* WhatsApp Floater — see full definition below */

/* Product Zoom & Interactive Changes */
.product-card {
    overflow: hidden;
}

.product-card-inner {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.product-card-inner img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-inner img {
    transform: scale(1.08);
}

/* ── Meesho-style Fast Actions — always visible ── */
.product-fast-actions {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    opacity: 1;
    transition: none;
}

.product-card:hover .product-fast-actions {
    opacity: 1;
}

.btn-fast-action {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.96);
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    transition: background 0.15s, color 0.15s, transform 0.12s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-fast-action:active {
    transform: scale(0.9);
}

.btn-fast-action:hover {
    background: #fff;
    color: var(--primary);
}

@keyframes heartPop {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.45); }
    55%  { transform: scale(0.88); }
    75%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}

.btn-fast-action.liked {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.btn-fast-action.liked i {
    font-weight: 900;
    animation: heartPop 0.42s cubic-bezier(.36,.07,.19,.97) both;
}

.btn-fast-action.liked:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Color swatches on product cards */
.card-color-swatches {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin: 6px 0 4px;
}
.card-color-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, outline-color 0.18s ease, box-shadow 0.18s ease;
    flex-shrink: 0;
    outline: 2px solid transparent;
    outline-offset: 2px;
    vertical-align: middle;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}
.card-color-dot:hover { transform: scale(1.25); }
.card-color-dot:active { transform: scale(0.88); transition: transform 0.08s ease; }
.card-color-dot.active {
    border-color: #fff;
    outline-color: #C89B2D;
    box-shadow: 0 0 0 3px rgba(200,155,45,0.25);
    transform: scale(1.15);
}

/* Disable long-press image context menu on mobile */
.product-card-img,
.product-img-wrap,
.product-card-inner {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.btn-fast-action {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

/* Accordion Info */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    padding: 16px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    color: var(--primary);
}

.accordion-body {
    padding: 0 0 16px 0;
    display: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.accordion-header.active+.accordion-body {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation Accordion */
.mobile-nav-accordion-body {
    display: none;
    overflow: hidden;
}

.mobile-nav-accordion-header.active+.mobile-nav-accordion-body {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-nav-accordion-header.active i.fa-chevron-down {
    transform: rotate(180deg);
}

/* --- WhatsApp Floater Pulse Animation --- */
.whatsapp-floater {
    position: fixed;
    bottom: 30px;
    right: 28px;
    background-color: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: wpPulse 2s infinite;
}

.whatsapp-floater:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.whatsapp-floater .wa-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-floater:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes wpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Recent Buy Notification Popup --- */
.recent-buy-popup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #1A1A1A;
    border: 1px solid rgba(200,155,45,0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    max-width: 320px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--accent);
}

.recent-buy-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.recent-buy-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-buy-info p {
    margin: 0;
    line-height: 1.3;
}

.recent-buy-info .name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.recent-buy-info .product {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* --- Arrivals Tab System --- */
.arrivals-tabs-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.arrivals-tab {
    padding: 9px 22px;
    border-radius: 100px;
    background: transparent;
    border: 1.5px solid var(--border-color);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.arrivals-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.arrivals-tab.active {
    background: var(--primary);
    color: #0D0D0D;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(200,155,45,0.35);
}

.arrivals-grid-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.arrivals-grid-content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 640px) {
    .arrivals-grid-content.active {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (min-width: 1024px) {
    .arrivals-grid-content.active {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* --- Free Delivery Progress Bar --- */
.delivery-progress-wrap {
    background: #1A1A1A;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.delivery-progress-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.delivery-bg-bar {
    background: #2a2a2a;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.delivery-fill-bar {
    background: linear-gradient(90deg, #34d399, #10b981);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
}

/* Circular Logo Fix Details */
.logo-img-wrap img {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Desktop Nav Dropdown Fix */
/* ── Desktop Nav Dropdown / Mega Menu ── */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-chevron {
    font-size: 0.65em;
    margin-left: 4px;
    transition: transform 0.25s ease;
    vertical-align: middle;
}
.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #141414;
    box-shadow: 0 16px 48px rgba(0,0,0,0.7);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1100;
    border: 1px solid rgba(200,155,45,0.18);
    overflow: hidden;
    white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega menu columns wrapper */
.mega-menu-cols {
    display: flex;
    gap: 0;
    padding: 20px 4px 16px;
}

/* Each category column */
.mega-col {
    padding: 0 20px;
    border-right: 1px solid rgba(200,155,45,0.1);
    min-width: 160px;
}
.mega-col:last-child {
    border-right: none;
}

/* Category title link */
.mega-cat-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #C89B2D;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1.5px solid rgba(200,155,45,0.2);
    transition: color 0.15s;
    white-space: nowrap;
}
.mega-cat-title i { font-size: 0.72rem; }
.mega-cat-title:hover { color: #F4C430; }

/* Subcategory list */
.mega-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-sub-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #BFBFBF;
    text-decoration: none;
    transition: background 0.14s, color 0.14s, transform 0.14s;
    white-space: nowrap;
}
.mega-sub-link:hover {
    background: rgba(200,155,45,0.1);
    color: #FFFFFF;
    transform: translateX(4px);
}
.mega-arrow {
    font-size: 0.55rem;
    color: #555;
    flex-shrink: 0;
    transition: color 0.14s;
}
.mega-sub-link:hover .mega-arrow {
    color: #C89B2D;
}

/* Footer "View All" bar */
.mega-footer {
    border-top: 1px solid rgba(200,155,45,0.12);
    padding: 10px 24px;
    background: rgba(200,155,45,0.04);
}
.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #C89B2D;
    text-decoration: none;
    transition: color 0.15s;
}
.mega-view-all:hover { color: #F4C430; }

.nav-submenu-items a {
    transition: color 0.15s, transform 0.15s;
}
.nav-submenu-items a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Mobile Accordion Fix */
.mobile-nav-accordion-body {
    display: none;
    transition: all 0.3s ease;
}

.mobile-nav-accordion-header.active+.mobile-nav-accordion-body {
    display: block;
}

.mobile-nav-accordion-header.active i {
    transform: rotate(180deg);
}

/* Login text — hidden on mobile, shown on desktop via 769px+ rule */
.header-login-text {
    display: none;
}

/* Premium Mobile Fixes & Layout Overrides */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .product-card-inner img {
        transition: transform 0.3s ease-out;
    }

    .product-card-inner:active img,
    .product-card-inner:focus img {
        transform: scale(1.1);
    }

    .product-fast-actions {
        opacity: 1 !important;
    }

    .logo-name {
        font-size: 0.82rem !important;
        white-space: nowrap !important;
    }

    .logo-name-2 {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
    }

    .logo-tagline {
        display: none;
    }

    .logo-img-wrap {
        width: 30px !important;
        height: 30px !important;
    }

    .mobile-drawer {
        z-index: 9999 !important;
    }

    .whatsapp-floater {
        display: none !important;
    }

    .drawer-overlay {
        z-index: 9998 !important;
    }

    .cart-drawer-overlay {
        z-index: 9998 !important;
    }

    .live-cart-drawer {
        z-index: 9999 !important;
    }

    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* ── Mobile header: hide inline search, keep logo + cart + hamburger only ── */
    .header-right-panel > .header-search-box {
        display: none !important;
    }

    /* Hide account + wishlist icons on mobile (they live in bottom nav) */
    #headerUserIcon,
    #headerWishlistIcon {
        display: none !important;
    }

    /* Logo: can shrink so hamburger is always visible */
    .site-logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow: hidden;
        gap: 7px;
    }

    .logo-text {
        display: flex;
        min-width: 0;
        overflow: hidden;
    }

    .logo-name {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
        line-height: 1.1;
        letter-spacing: -0.01em;
    }

    .logo-name-2 {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        line-height: 1.1;
    }

    .logo-tagline {
        display: none;
    }

    .logo-img-wrap {
        width: 34px !important;
        height: 34px !important;
        flex-shrink: 0 !important;
    }

    /* Right panel: NEVER shrinks — hamburger always visible */
    .header-right-panel {
        flex-shrink: 0 !important;
        gap: 2px !important;
    }

    /* Mobile header: clip so hamburger row never overflows horizontally */
    header {
        overflow: hidden !important;
    }

    /* Header right panel compact */
    .header-right-panel {
        gap: 4px !important;
        flex-shrink: 0;
    }

    /* Drawer search */
    .mobile-drawer .header-search-box {
        display: flex !important;
        margin: 0;
        width: 100%;
    }

    .mobile-drawer .search-icon {
        display: block !important;
    }

    .mobile-drawer .live-search-input {
        width: 100%;
        padding-left: 36px;
        border-radius: 999px;
    }

    .mobile-drawer .search-results-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        max-height: 260px;
        overflow-y: auto;
        margin-top: 6px;
        z-index: 9999;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    /* ── Two-row desktop header ── */
    header {
        height: auto !important;
        min-height: 60px;
        flex-wrap: wrap;
        align-items: center;
        padding-bottom: 0;
    }

    header.scrolled {
        height: auto !important;
    }

    .site-logo {
        flex-grow: 1;
        order: 1;
    }

    .header-right-panel {
        order: 2;
        flex-shrink: 0;
    }

    /* Nav becomes its own full-width second row */
    .desktop-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: static !important;
        transform: none !important;
        left: auto !important;
        flex: 0 0 100%;
        order: 3;
        gap: 4px;
        border-top: 1px solid rgba(200,155,45,0.2);
        background: rgba(0,0,0,0.2);
        padding: 2px 20px;
        height: 40px;
        box-sizing: border-box;
    }

    /* "Login" label visible on desktop inside the user button */
    .header-login-text {
        display: inline;
        font-size: 0.8rem;
        font-weight: 800;
        white-space: nowrap;
    }

    /* Search input slightly wider on desktop */
    .live-search-input {
        width: 300px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL LOGO SHAPE - CIRCULAR
═══════════════════════════════════════════════════════════════ */
img[src*="LOGO.webp"],
.logo-img-wrap img,
.drawer-logo-img,
.site-logo img {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
}
.header-right-panel { display: flex; align-items: center; gap: 6px; flex-shrink: 0; padding-right: 4px; }
.header-search-box { position: relative; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; }
.live-search-input { width: 280px; padding: 10px 15px 10px 35px; border-radius: 100px; border: 1px solid rgba(200,155,45,0.2); background: #1A1A1A; color: #FFFFFF; font-size: 0.9rem; transition: all 0.3s; font-family: var(--font-main); }
.live-search-input::placeholder { color: #888; }

.product-main-container { max-width: 1200px; margin-top: 20px; }
.product-detail-grid { display: grid; gap: 50px; align-items: start; grid-template-columns: 1fr 1fr; }
.product-gallery-box { position: relative; background: #1A1A1A; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.product-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 15px; }

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Product grid mobile fix
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card-img,
    .product-card-inner img {
        height: 220px !important;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .announce-track {
        animation-duration: 12s !important;
    }
}

/* ── Mobile index.php layout fixes ── */
@media (max-width: 480px) {
    .section-padding {
        padding: 36px 0;
    }
    .section-header {
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 1.35rem;
    }
    .section-subtitle {
        font-size: 0.85rem;
        margin-top: 14px;
    }
    .arrivals-tabs-wrap {
        gap: 8px;
        margin-top: 16px;
        margin-bottom: 20px;
    }
    .arrivals-tab {
        padding: 7px 13px;
        font-size: 0.78rem;
        letter-spacing: 0.01em;
    }
    .pc-btn-cart,
    .pc-btn-buy {
        padding: 8px 4px;
        font-size: 0.76rem;
        gap: 4px;
    }
    .product-info {
        padding: 7px 8px 8px;
    }
    .product-info h3 {
        font-size: 0.78rem;
    }
    .new-price {
        font-size: 0.95rem;
    }
    .free-delivery-tag {
        font-size: 0.68rem;
    }
    .category-title {
        font-size: 1.2rem;
    }
}


.header-user-btn {
    background: linear-gradient(135deg, #C89B2D, #F4C430);
    color: #0D0D0D !important;
    border: none;
    box-shadow: 0 4px 15px rgba(200,155,45,0.3);
    padding: 0 14px !important;
    border-radius: 20px !important;
    font-weight: 800;
    transition: all 0.2s;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.header-user-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,155,45,0.4);
}
