@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================================
   Dievon — Design System
   Brand: deep burgundy + elegant gold + soft ivory
   ============================================================ */
:root {
    /* ── Backgrounds ─────────────────────────────────────── */
    --bg-main:             #fdfbf9; /* warm soft ivory */
    --bg-surface:          #ffffff;
    --bg-surface-soft:     #f8f5f0;
    --bg-hero:             #f5eee8;

    /* ── Brand Colors ─────────────────────────────────────── */
    --color-primary:       #511126; /* deep burgundy / plum */
    --color-primary-dark:  #3a0c1b;
    --color-primary-light: #e8d8de; /* soft blush */
    --color-primary-bg:    #f9f6f7;

    --color-secondary:     #C59B4B; /* elegant gold */
    --color-secondary-bg:  #fbf8f3;

    --color-accent:        #D4AF37; /* rich gold */
    --color-accent-bg:     #fcfaf6;

    --color-danger:        #a94442;
    --color-success:       #2e7d32;

    /* ── Text ─────────────────────────────────────────────── */
    --text-primary:   #3a0c1b; /* dark burgundy for text */
    --text-secondary: #511126;
    --text-muted:     #8a765d;
    --text-on-primary: #ffffff;

    /* ── Borders ──────────────────────────────────────────── */
    --border-color:  rgba(81, 17, 38, 0.1);
    --border-strong: rgba(81, 17, 38, 0.25);
    --border-light:  rgba(81, 17, 38, 0.05);

    /* ── Gradients ────────────────────────────────────────── */
    --grad-primary:  linear-gradient(135deg, #511126 0%, #3a0c1b 100%);
    --grad-coral:    linear-gradient(135deg, #78213e 0%, #511126 100%);
    --grad-mint:     linear-gradient(135deg, #C59B4B 0%, #D4AF37 100%);
    --grad-golden:   linear-gradient(135deg, #D4AF37 0%, #e8ca6b 100%);
    --grad-hero:     linear-gradient(135deg, #f5eee8 0%, #ffffff 100%);
    --grad-warm:     linear-gradient(135deg, #f8f5f0 0%, #f5eee8 100%);
    --grad-text:     linear-gradient(135deg, #511126, #C59B4B);

    /* ── Typography ───────────────────────────────────────── */
    --font-heading: 'Marcellus', serif;
    --font-body:    'Montserrat', sans-serif;

    /* ── Shadows ──────────────────────────────────────────── */
    --shadow-xs: 0 1px 2px rgba(81, 17, 38, 0.03);
    --shadow-sm: 0 4px 12px rgba(81, 17, 38, 0.05);
    --shadow-md: 0 8px 24px rgba(81, 17, 38, 0.08);
    --shadow-lg: 0 16px 40px rgba(81, 17, 38, 0.12);

    /* ── Radius ───────────────────────────────────────────── */
    --radius-xs: 0px;
    --radius-sm: 0px;
    --radius-md: 2px;
    --radius-lg: 4px;
    --radius-xl: 4px;

    /* ── Transitions ──────────────────────────────────────── */
    --transition:        all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow:   all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ═══════════════════════════════════════════════════════════
   UNIFORM SITE-WIDE MASTER SECTION SPACING (.section-space)
   ═══════════════════════════════════════════════════════════ */
.section-space { padding: 80px 0 !important; }
.section-mb { margin-bottom: 50px !important; }
.section-mb-sm { margin-bottom: 30px !important; }
.section-mb-lg { margin-bottom: 80px !important; }
.container { max-width: 1240px !important; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);

    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100%;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; border: none; outline: none; background: none; cursor: pointer; transition: var(--transition); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; flex-wrap: wrap; }

.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}




/* Cart button */
.cart-btn {
    position: relative;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}
.cart-btn:hover {
    background: var(--color-primary-bg);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--grad-primary);
    color: white;
    font-size: 10px; font-weight: 700;
    width: 19px; height: 19px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg-main);
    font-family: var(--font-heading);
    transition: var(--transition-bounce);
}
.cart-badge.bump { transform: scale(1.5); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-xl);
    font-size: 14px; font-weight: 700;
    background: var(--grad-primary);
    color: white;
    border: none; cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 77, 109, 0.35);
    transition: var(--transition);
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 77, 109, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-size: 14px; font-weight: 600;
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-xs);
    white-space: nowrap;
}
.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-bg);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-danger {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 15px; border-radius: var(--radius-xs);
    font-size: 12px; font-weight: 600;
    background: #fff5f5; color: var(--color-danger);
    border: 1px solid #fecaca; cursor: pointer; transition: var(--transition);
}
.btn-danger:hover { background: #fee2e2; border-color: var(--color-danger); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 15px; border-radius: var(--radius-xs);
    font-size: 12px; font-weight: 600;
    background: transparent; color: var(--color-secondary);
    border: 1px solid rgba(0,201,167,0.3); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--color-secondary-bg); border-color: var(--color-secondary); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--bg-surface);
}

/* Colourful top band */
.hero-band {
    background: var(--grad-hero);
    padding: 70px 0 120px;
    position: relative;
    overflow: hidden;
}
.hero-band::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--bg-surface);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
/* Decorative circles */
.hero-band::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 16px; border-radius: 30px;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 54px;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-xl);
    font-size: 15px; font-weight: 700;
    background: white; color: var(--color-primary);
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    font-family: var(--font-heading);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: var(--radius-xl);
    font-size: 15px; font-weight: 600;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    color: white; border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-heading);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

/* Hero visual (right side) */
.hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative; height: 340px;
}
.hero-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    width: 290px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    position: relative; z-index: 2;
    animation: floatingCard 5s infinite ease-in-out;
}
.hero-card-emoji { font-size: 72px; margin-bottom: 10px; display: block; }
.hero-card h3 { font-size: 18px; color: var(--text-primary); margin-bottom: 4px; }
.hero-card p  { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.hero-card-footer { display: flex; justify-content: space-between; align-items: center; }
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    animation: floatBubble 6s infinite ease-in-out;
}

/* Stats strip */
.hero-stats {
    display: flex; gap: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}
.hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--border-light);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value { font-size: 26px; font-weight: 800; font-family: var(--font-heading); color: var(--color-primary); }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Section Helpers ───────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--color-primary);
    background: var(--color-primary-bg);
    border: 1px solid rgba(255,77,109,0.2);
    padding: 5px 14px; border-radius: 20px;
    margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-title  { font-size: 36px; margin-bottom: 10px; }
.section-subtitle { font-size: 15px; color: var(--text-secondary); max-width: 460px; margin: 0 auto; line-height: 1.6; }

/* ── Products Section ──────────────────────────────────────── */
.products-section { background: var(--bg-main); }

/* Category Tabs */
.category-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.cat-tab {
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px; font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    cursor: pointer; transition: var(--transition);
    box-shadow: var(--shadow-xs);
}
.cat-tab:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-bg); }
.cat-tab.active {
    background: var(--grad-primary);
    color: white; border-color: transparent;
    box-shadow: 0 4px 14px rgba(255,77,109,0.30);
}

/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* Product Card */
.product-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-light);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--border-color);
}

/* Coloured top accent line */
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-gradient, var(--grad-primary));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Badge */
.product-badge {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 10;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-new        { background: var(--color-secondary-bg); color: var(--color-secondary); border: 1px solid rgba(0,201,167,0.3); }
.badge-hot        { background: var(--color-primary-bg);   color: var(--color-primary);   border: 1px solid rgba(255,77,109,0.3); }
.badge-best-seller { background: var(--color-accent-bg);   color: #d97706;               border: 1px solid rgba(255,183,3,0.3); }

/* Emoji display */
.product-emoji-wrap {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 24px;
}
.product-emoji-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--card-gradient, var(--grad-warm));
    opacity: 0.08;
    transition: var(--transition);
}
.product-card:hover .product-emoji-wrap::before { opacity: 0.14; }

.product-emoji {
    font-size: 80px;
    position: relative; z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
    transition: var(--transition-bounce);
    line-height: 1;
}
.product-card:hover .product-emoji { transform: scale(1.1) translateY(-4px); }

/* Card body */
.product-body { padding: 20px 22px 18px; display: flex; flex-direction: column; flex-grow: 1; border-top: 1px solid var(--border-light); }
.product-cat  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 5px; }
.product-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; color: var(--text-primary); }
.product-card:hover .product-name { color: var(--color-primary); }
.product-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 16px; flex-grow: 1; }

.product-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 1px solid var(--border-light);
}
.product-price { font-size: 22px; font-weight: 800; font-family: var(--font-heading); color: var(--color-primary); }

.btn-add-cart {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-primary-bg);
    border: 1.5px solid rgba(255,77,109,0.2);
    color: var(--color-primary);
    font-size: 16px; cursor: pointer;
    transition: var(--transition-bounce);
}
.btn-add-cart:hover {
    background: var(--grad-primary);
    border-color: transparent; color: white;
    box-shadow: 0 4px 16px rgba(255,77,109,0.4);
    transform: scale(1.12) rotate(5deg);
}

/* ── Cart Sidebar ──────────────────────────────────────────── */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(26, 10, 20, 0.4);
    backdrop-filter: blur(3px);
    z-index: 300;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 400px; max-width: 100vw;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-light);
    z-index: 301;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(26,10,20,0.12);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-main);
}
.cart-header h2 { font-size: 19px; display: flex; align-items: center; gap: 10px; color: var(--text-primary); }

.btn-close-cart {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-surface); border: 1px solid var(--border-light);
    font-size: 16px; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.btn-close-cart:hover { background: #fff5f5; border-color: var(--color-danger); color: var(--color-danger); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; background: var(--bg-surface); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 60px; margin-bottom: 14px; opacity: 0.35; }
.cart-empty p { font-size: 15px; color: var(--text-secondary); }

.cart-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-emoji {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
    background: var(--color-primary-bg);
    border: 1px solid rgba(255,77,109,0.12);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 13px; color: var(--color-primary); font-weight: 700; }

.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg-main); border: 1px solid var(--border-light);
    color: var(--text-secondary); font-size: 14px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--color-primary-bg); border-color: var(--color-primary); color: var(--color-primary); }
.qty-value { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; color: var(--text-primary); }

.btn-remove-item { color: var(--text-muted); font-size: 14px; padding: 4px; cursor: pointer; transition: var(--transition); }
.btn-remove-item:hover { color: var(--color-danger); }

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-main);
}
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label  { font-size: 14px; color: var(--text-secondary); }
.cart-total-amount { font-size: 28px; font-weight: 800; font-family: var(--font-heading); color: var(--color-primary); }
.btn-checkout     { width: 100%; padding: 15px; font-size: 15px; margin-bottom: 10px; justify-content: center; border-radius: var(--radius-md) !important; }
.btn-clear-cart   { width: 100%; padding: 10px; font-size: 13px; font-weight: 600; color: var(--text-muted); background: none; border: none; cursor: pointer; transition: var(--transition); }
.btn-clear-cart:hover { color: var(--color-danger); }

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
    position: fixed; bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: white;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 14px 22px;
    display: flex; align-items: center; gap: 12px;
    min-width: 270px; max-width: 360px;
    z-index: 400;
    opacity: 0;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-icon { font-size: 22px; flex-shrink: 0; }
.toast-text { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.toast-sub  { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; margin-bottom: 20px;
}
.alert i { margin-top: 1px; flex-shrink: 0; }
.alert-danger  { background: #fff5f5; border: 1px solid #fecaca; color: #b91c1c; }
.alert-success { background: var(--color-secondary-bg); border: 1px solid rgba(0,201,167,0.3); color: #059669; }
.alert-info    { background: var(--color-primary-bg); border: 1px solid rgba(255,77,109,0.25); color: var(--color-primary-dark); }

/* ── Form Controls ─────────────────────────────────────────── */
.form-group  { margin-bottom: 20px; }
.form-label  {
    display: block;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-secondary); margin-bottom: 8px;
}
.form-control {
    width: 100%; padding: 13px 16px;
    background: var(--bg-main);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body); font-size: 14px;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255,77,109,0.10);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23b8a0b0' d='M5 8l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 36px; }

/* ── Checkout Page ─────────────────────────────────────────── */
.checkout-page { padding: 56px 0 80px; background: var(--bg-main); }
.checkout-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
.section-card  { padding: 30px; background: var(--bg-surface); border-radius: var(--radius-md); border: 1.5px solid var(--border-light); box-shadow: var(--shadow-sm); }
.section-card h2 { font-size: 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }

.order-summary-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border-light);
}
.order-summary-item:last-of-type { border-bottom: none; }
.osi-emoji  { font-size: 28px; width: 40px; text-align: center; }
.osi-info   { flex: 1; }
.osi-name   { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.osi-qty    { font-size: 12px; color: var(--text-muted); }
.osi-price  { font-size: 15px; font-weight: 700; color: var(--color-primary); }

.summary-divider     { border: none; border-top: 1px solid var(--border-light); margin: 18px 0; }
.summary-total-row   { display: flex; justify-content: space-between; align-items: center; }
.summary-total-label { font-size: 15px; color: var(--text-secondary); }
.summary-total-price { font-size: 28px; font-weight: 800; font-family: var(--font-heading); color: var(--color-primary); }

/* ── Order Confirmation ────────────────────────────────────── */
.confirmation-page      { padding: 80px 0; text-align: center; background: var(--bg-main); }
.confirmation-icon      { font-size: 88px; margin-bottom: 12px; animation: bounceIn 0.8s cubic-bezier(0.34,1.56,0.64,1); }
.confirmation-title     { font-size: 42px; margin-bottom: 12px; }
.confirmation-subtitle  { font-size: 16px; color: var(--text-secondary); margin: 0 auto 32px; max-width: 480px; line-height: 1.6; }

.order-code-box {
    display: inline-block;
    background: var(--color-primary-bg);
    border: 2px dashed rgba(255,77,109,0.35);
    border-radius: var(--radius-md); padding: 16px 36px; margin-bottom: 32px;
}
.order-code-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 6px; }
.order-code-value { font-size: 28px; font-weight: 800; font-family: var(--font-heading); color: var(--color-primary); letter-spacing: 3px; }

.confirmation-details { max-width: 540px; margin: 0 auto 36px; padding: 28px; background: var(--bg-surface); border-radius: var(--radius-md); border: 1.5px solid var(--border-light); box-shadow: var(--shadow-sm); text-align: left; }
.conf-row         { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.conf-row:last-child { border-bottom: none; }
.conf-label       { font-size: 13px; color: var(--text-muted); width: 120px; flex-shrink: 0; padding-top: 2px; }
.conf-value       { font-size: 14px; font-weight: 600; flex: 1; color: var(--text-primary); }

/* ── Status Badges ─────────────────────────────────────────── */
.status-badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 20px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.status-pending    { background: #fef9c3; color: #a16207; border: 1px solid #fde68a; }
.status-processing { background: var(--color-secondary-bg); color: #047857; border: 1px solid rgba(0,201,167,0.3); }
.status-delivered  { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.status-cancelled  { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Admin Styles ──────────────────────────────────────────── */
.admin-wrapper { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg-main); }
.admin-content { flex: 1; padding: 36px 0 60px; }

/* Tabs */
.admin-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border-light); margin-bottom: 28px; }
.admin-tab {
    padding: 11px 22px; font-size: 14px; font-weight: 600; cursor: pointer;
    color: var(--text-secondary); border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: var(--transition); border-radius: var(--radius-xs) var(--radius-xs) 0 0;
    display: flex; align-items: center; gap: 8px;
}
.admin-tab:hover { color: var(--text-primary); background: var(--color-primary-bg); }
.admin-tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); background: var(--color-primary-bg); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card {
    padding: 22px 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-primary);
}
.stat-card-icon { font-size: 26px; margin-bottom: 10px; }
.stat-label     { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 6px; }
.stat-value     { font-size: 30px; font-weight: 800; font-family: var(--font-heading); color: var(--color-primary); }

/* Data Table */
.table-wrapper { overflow-x: auto; }
.data-table    { width: 100%; border-collapse: collapse; }
.data-table th {
    padding: 12px 16px; text-align: left;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted); border-bottom: 1.5px solid var(--border-light);
    background: var(--bg-main); white-space: nowrap;
}
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); font-size: 14px; vertical-align: middle; }
.data-table tr:hover td { background: var(--bg-main); }
.data-table tr:last-child td { border-bottom: none; }

/* Order items pill */
.items-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--color-primary-bg); border: 1px solid rgba(255,77,109,0.15);
    border-radius: 20px; padding: 3px 10px; font-size: 12px; margin: 2px;
    color: var(--text-primary);
}

/* Order detail expand */
.order-detail-row      { display: none; }
.order-detail-row td   { padding: 0; }
.order-detail-inner    { padding: 20px 24px; background: var(--bg-main); margin: 6px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); }
.order-detail-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.order-detail-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.order-detail-field p  { font-size: 14px; font-weight: 600; color: var(--text-primary); }

/* Status select */
.status-select {
    padding: 8px 12px; border-radius: var(--radius-xs);
    background: var(--bg-surface); border: 1.5px solid var(--border-light);
    color: var(--text-primary); font-size: 13px; font-family: var(--font-body); cursor: pointer;
}
.status-select:focus { outline: none; border-color: var(--color-primary); }

/* Action group */
.action-group { display: flex; gap: 8px; align-items: center; }

/* Btn small */
.btn-sm { padding: 7px 14px; font-size: 12px; font-weight: 600; border-radius: var(--radius-xs); cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 5px; }
.btn-sm-primary { background: var(--grad-primary); color: white; border: none; box-shadow: 0 2px 8px rgba(255,77,109,0.25); }
.btn-sm-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,77,109,0.35); }
.footer-enhanced { border-top: 1px solid var(--border-light); font-family: var(--font-body); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 20px; }
.btn-sm-outline { background: transparent; border: 1px solid var(--border-light); color: var(--text-secondary); }
.btn-sm-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-bg); }
.btn-sm-danger  { background: #fff5f5; border: 1px solid #fecaca; color: var(--color-danger); }
.btn-sm-danger:hover  { background: #fee2e2; border-color: var(--color-danger); }

/* Admin page header */
.admin-page-header   { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.admin-page-title    { font-size: 28px; color: var(--text-primary); }
.admin-page-subtitle { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

/* Admin glass panel  */
.glass-panel {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.glass-panel:hover { border-color: var(--border-color); box-shadow: var(--shadow-card); }

/* Form section */
.form-section   { padding: 28px; margin-bottom: 20px; }
.form-section h3 { font-size: 16px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; color: var(--color-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ── Login Page ────────────────────────────────────────────── */
.login-page     { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--bg-main); }
.login-card     { width: 100%; max-width: 420px; padding: 44px; text-align: center; }
.login-icon     { font-size: 52px; margin-bottom: 14px; }
.login-title    { font-size: 28px; margin-bottom: 6px; }
.login-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 30px; }
.login-form     { text-align: left; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--text-primary); padding: 32px 0; margin-top: auto; }
.footer-inner  { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo   { font-size: 20px; font-weight: 800; font-family: var(--font-heading); color: white; }
.footer-logo span { color: var(--color-primary-light); }
.footer-copy   { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-links  { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--color-primary-light); }

/* ── Expand btn (admin) ────────────────────────────────────── */
.expand-btn { cursor: pointer; background: none; border: none; color: var(--color-secondary); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.expand-btn:hover { color: var(--color-primary); }

/* Product form extras */
.emoji-btn {
    font-size: 22px; padding: 8px;
    border-radius: var(--radius-xs);
    background: var(--bg-main); border: 1.5px solid var(--border-light);
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
}
.emoji-btn:hover, .emoji-btn.selected {
    background: var(--color-primary-bg); border-color: var(--color-primary); transform: scale(1.1);
}
.preview-card { padding: 28px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.preview-img-wrap {
    width: 140px; height: 140px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; transition: var(--transition);
    background: var(--bg-main); border: 2px dashed var(--border-strong);
    overflow: hidden;
}
.preview-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Product Image on Cards ──────────────────────────────── */
.product-image-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: var(--bg-surface-soft);
    display: flex; align-items: center; justify-content: center;
}
.product-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.product-card:hover .product-image-wrap img { transform: scale(1.07); }
.product-image-placeholder {
    font-size: 72px; line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.10));
}

/* ── Product Accordions ──────────────────────────────────── */
.product-accordion {
    border-bottom: 1px solid var(--border-light);
}
.product-accordion-header {
    padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}
.product-accordion-header:hover {
    color: var(--color-secondary);
}
.product-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0;
}

/* In-cart counter badge on product cards */
.in-cart-indicator {
    margin-top: 8px;
    font-size: 12px; font-weight: 700;
    color: var(--color-secondary);
    background: var(--color-secondary-bg);
    border: 1px solid rgba(0,201,167,0.3);
    border-radius: 20px;
    padding: 3px 10px;
    display: none;
    align-items: center;
    gap: 4px;
    width: fit-content;
}
.in-cart-indicator.visible { display: inline-flex; }

/* Remove the old emoji wrap ::before gradient hack – product-card::before remains the top accent line */

/* ── "View Cart" navbar button ───────────────────────────── */
.btn-view-cart {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: var(--radius-xl);
    font-size: 13px; font-weight: 700;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-xs);
    position: relative;
}
.btn-view-cart:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-bg);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}
.btn-view-cart .cart-badge {
    position: relative;
    top: auto; right: auto;
    background: var(--grad-primary);
    color: white; font-size: 10px; font-weight: 700;
    min-width: 20px; height: 20px;
    border-radius: 20px; padding: 0 5px;
    display: inline-flex; align-items: center; justify-content: center;
    border: none;
    font-family: var(--font-heading);
    transition: var(--transition-bounce);
}
.btn-view-cart .cart-badge.bump { transform: scale(1.4); }

/* ── Product image upload (admin form) ───────────────────── */
.image-upload-box {
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-main);
    position: relative;
}
.image-upload-box:hover, .image-upload-box.dragover {
    border-color: var(--color-primary);
    background: var(--color-primary-bg);
}
.image-upload-box input[type="file"] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.image-upload-icon { font-size: 36px; margin-bottom: 10px; opacity: 0.5; }
.image-upload-label { font-size: 13px; color: var(--text-secondary); }
.image-upload-label strong { color: var(--color-primary); }
.image-current-thumb {
    width: 100%; max-width: 240px; border-radius: var(--radius-sm);
    margin: 12px auto 0; display: block;
    object-fit: cover; border: 1.5px solid var(--border-light);
}

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-page { padding: 64px 0 80px; background: var(--bg-main); }
.gallery-grid {
    columns: 3;
    column-gap: 18px;
    gap: 18px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: block;
    transition: var(--transition);
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-color); }
.gallery-item img {
    width: 100%; height: auto; display: block;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,10,20,0.65) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s ease;
    display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
    font-size: 13px; font-weight: 600; color: white;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.gallery-empty {
    text-align: center; padding: 80px 20px; color: var(--text-muted);
}
.gallery-empty-icon { font-size: 64px; opacity: 0.25; margin-bottom: 14px; }

/* Lightbox */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(10,0,15,0.92);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    animation: lightboxIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.lightbox-inner img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain; border-radius: var(--radius-sm);
    display: block; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
    text-align: center; color: rgba(255,255,255,0.8);
    font-size: 14px; margin-top: 14px; font-weight: 500;
}
.lightbox-close {
    position: absolute; top: -16px; right: -16px;
    width: 38px; height: 38px; border-radius: 50%;
    background: white; color: var(--text-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--color-primary); color: white; transform: scale(1.1); }
@keyframes lightboxIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Gallery admin grid */
.admin-gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.admin-gallery-item {
    border-radius: var(--radius-sm); overflow: hidden;
    border: 1.5px solid var(--border-light);
    position: relative; background: var(--bg-main);
    box-shadow: var(--shadow-xs);
}
.admin-gallery-item img { width: 100%; height: 130px; object-fit: cover; display: block; }
.admin-gallery-item-meta { padding: 8px 10px; }
.admin-gallery-item-caption { font-size: 12px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-gallery-del {
    position: absolute; top: 6px; right: 6px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(239,68,68,0.9); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; cursor: pointer; border: none;
    opacity: 0; transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.admin-gallery-item:hover .admin-gallery-del { opacity: 1; }

/* ── About / Contact Page ─────────────────────────────────── */
.about-page { padding: 0; background: var(--bg-main); }

.about-hero {
    background: var(--grad-hero);
    padding: 80px 0 100px;
    position: relative; overflow: hidden;
    text-align: center;
}
.about-hero::before {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 60px; background: var(--bg-main);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.about-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 18px; border-radius: 30px;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.95); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.about-hero h1 { color: white; font-size: 50px; margin-bottom: 16px; position: relative; z-index: 1; }
.about-hero p  { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 1; }

.about-story-section { }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--bg-surface-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 100px;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-content .section-label { margin-bottom: 14px; }
.about-story-content h2 { font-size: 36px; margin-bottom: 18px; }
.about-story-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }

/* Contact & Map */
.contact-map-section { background: var(--bg-surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.map-container {
    border-radius: var(--radius-md); overflow: hidden;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 380px;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* Social Buttons */
.social-links-section { background: var(--bg-main); }
.social-buttons-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.social-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 26px; border-radius: var(--radius-xl);
    font-size: 14px; font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none; transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-btn-instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-btn-whatsapp  { background: #25D366; color: white; }
.social-btn-tiktok    { background: #000000; color: white; border-color: #333; }
.social-btn-facebook  { background: #1877F2; color: white; }

/* ── New Home / Landing Page ─────────────────────────────── */
.landing-hero {
    background: var(--grad-hero);
    padding: 90px 0 130px;
    position: relative; overflow: hidden;
    text-align: center;
}
.landing-hero::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 70px; background: var(--bg-main);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.landing-hero-inner { position: relative; z-index: 1; }
.landing-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 18px; border-radius: 30px;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.95); margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 0.08em;
    display: inline-block;
}
.landing-title { font-size: 68px; color: white; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.12); line-height: 1.08; }
.landing-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.landing-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Flavour showcase section */
.flavours-section { background: var(--bg-main); }
.flavour-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.flavour-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.flavour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--border-color); }
.flavour-card-img {
    height: 180px; overflow: hidden;
    background: var(--bg-surface-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}
.flavour-card-img img { width: 100%; height: 100%; object-fit: cover; }
.flavour-card-body { padding: 18px 20px; }
.flavour-card-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.flavour-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* Story section */
.story-section {
    background: var(--bg-surface);
    position: relative; overflow: hidden;
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 440px;
    background: var(--bg-surface-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 120px;
    box-shadow: var(--shadow-lg);
}
.story-img-block img { width: 100%; height: 100%; object-fit: cover; }
.story-content .section-label { margin-bottom: 16px; }
.story-content h2 { font-size: 40px; margin-bottom: 20px; }
.story-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.story-highlights { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.story-highlight {
    display: flex; align-items: center; gap: 10px;
    background: var(--color-primary-bg);
    border: 1px solid rgba(255,77,109,0.15);
    border-radius: var(--radius-sm); padding: 12px 18px;
    flex: 1; min-width: 140px;
}
.story-highlight-icon { font-size: 24px; }
.story-highlight-text { font-size: 13px; font-weight: 600; color: var(--text-primary); }

/* Landing CTA Section */
.landing-cta-section {
    background: var(--grad-primary);
    text-align: center;
    position: relative; overflow: hidden;
}
.landing-cta-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.landing-cta-section h2 { font-size: 38px; color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.landing-cta-section p  { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; position: relative; z-index: 1; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: var(--radius-xl);
    font-size: 16px; font-weight: 700;
    background: white; color: var(--color-primary);
    border: none; cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: var(--transition);
    font-family: var(--font-heading);
    position: relative; z-index: 1;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.20); }

/* ── Enhanced Footer ─────────────────────────────────────── */
.footer-enhanced {
    background: var(--text-primary);
    padding: 48px 0 28px;
    margin-top: auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin-top: 12px; max-width: 240px;
}
.footer-col h4 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--color-primary-light); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); color: white; }
.footer-bottom-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-bar .footer-logo { font-size: 20px; font-weight: 800; font-family: var(--font-heading); color: white; }
.footer-bottom-bar .footer-logo span { color: var(--color-primary-light); }
.footer-copy-text { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── Cart item image ─────────────────────────────────────── */
.cart-item-img {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    object-fit: cover; flex-shrink: 0;
    border: 1px solid var(--border-light);
    background: var(--bg-main);
}
.cart-item-img-placeholder {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; flex-shrink: 0;
    background: var(--color-primary-bg);
    border: 1px solid rgba(255,77,109,0.12);
}

/* ── Admin gallery upload ─────────────────────────────────── */
.gallery-upload-zone {
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius-md);
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-main);
    position: relative;
    margin-bottom: 24px;
}
.gallery-upload-zone:hover { border-color: var(--color-primary); background: var(--color-primary-bg); }
.gallery-upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

/* ── Categories admin list ───────────────────────────────── */
.cat-list-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item:hover { background: var(--bg-main); }
.cat-name { font-size: 15px; font-weight: 600; color: var(--text-primary); }

/* ── Product Variant Picker Modal ────────────────────────── */
.variant-picker-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(26, 10, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease;
}
.variant-picker-overlay.open { opacity: 1; pointer-events: all; }

.variant-picker-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    max-width: 400px; width: 100%;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), opacity 0.28s ease;
    position: relative;
}
.variant-picker-overlay.open .variant-picker-card {
    transform: translateY(0) scale(1);
}

.variant-picker-img {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    border: 2px solid var(--border-light);
}
.variant-picker-emoji {
    font-size: 52px;
    text-align: center;
    margin-bottom: 10px;
    display: block;
}
.variant-picker-title {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 6px;
}
.variant-picker-label {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}
.variant-pills {
    display: flex; flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px;
}
.variant-pill {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    background: var(--bg-main);
    cursor: pointer;
    transition: var(--transition-bounce);
    min-width: 110px;
    gap: 4px;
}
.variant-pill:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.variant-pill.selected {
    border-color: var(--color-primary);
    background: var(--grad-primary);
}
.variant-pill.selected .variant-pill-name,
.variant-pill.selected .variant-pill-price { color: white; }
.variant-pill-name {
    font-size: 15px; font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
}
.variant-pill-price {
    font-size: 17px; font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
}
.variant-pill:hover .variant-pill-price { color: var(--color-primary); }
.variant-pill.selected .variant-pill-price { color: white; }

.variant-picker-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-main); border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--text-muted); cursor: pointer;
    transition: var(--transition);
}
.variant-picker-close:hover { background: #fff5f5; color: var(--color-danger); border-color: var(--color-danger); }

/* Price range display on product card */
.product-price-range {
    font-size: 13px; font-weight: 600; color: var(--text-muted);
    margin-top: 2px;
    font-family: var(--font-heading);
}
.product-price-from {
    font-size: 12px; color: var(--text-muted); font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: 2px;
}

/* ── Nut Allergy Tag ─────────────────────────────────────── */
.allergy-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.allergy-tag i { font-size: 10px; color: #d97706; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes floatingCard {
    0%, 100% { transform: translateY(0)   rotate(1deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
}
@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(8px, -12px); }
}
@keyframes bounceIn {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first, modern standards
   Breakpoints: 1100 | 960 | 768 | 640 | 480 | 380
══════════════════════════════════════════════════════════ */

/* ── Hamburger button (always rendered, hidden on desktop) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px; height: 42px;
    border-radius: var(--radius-xs);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    z-index: 250;
    transition: var(--transition);
    flex-shrink: 0;
}
.nav-hamburger:hover { border-color: var(--color-primary); background: var(--color-primary-bg); }
.nav-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ─────────────────────────────────────── */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 240;
    background: rgba(26,10,20,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-drawer.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav-panel {
    position: absolute;
    top: 0; right: 0;
    width: 280px; max-width: 88vw;
    height: 100%;
    background: var(--bg-surface);
    box-shadow: -8px 0 40px rgba(26,10,20,0.15);
    padding: 80px 28px 40px;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.mobile-drawer.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-links { list-style: none; margin-bottom: 28px; }
.mobile-nav-links li { border-bottom: 1px solid var(--border-light); }
.mobile-nav-links a {
    display: block;
    padding: 15px 4px;
    font-size: 16px; font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--color-primary); padding-left: 8px; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-view-cart { width: 100%; justify-content: center; }
.mobile-drawer-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-main); border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted); cursor: pointer;
    transition: var(--transition);
}
.mobile-drawer-close:hover { background: #fff5f5; color: var(--color-danger); }

/* ═══════════════════════════════════════════════════════════
   SHARED LUXURY UTILITIES  (consolidated from header.php)
   ═══════════════════════════════════════════════════════════ */

.luxury-hero {
    position: relative;
    background: #eae7e1;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
}
.luxury-hero-eyebrow { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 15px; font-weight: 500; }
.luxury-hero h1 { font-size: 48px; font-weight: 400; line-height: 1.2; color: var(--text-primary); margin-bottom: 15px; }
.luxury-hero p { font-size: 16px; max-width: 600px; margin: 0 auto; color: var(--text-secondary); font-family: var(--font-heading); font-style: italic; }
.editorial-section { }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.editorial-img img { width: 100%; height: auto; border: 1px solid var(--border-light); }
.editorial-content { padding-right: 40px; }
.editorial-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; display: block; margin-bottom: 10px; }
.editorial-title { font-family: var(--font-heading); font-size: 36px; font-weight: 400; margin-bottom: 20px; line-height: 1.3; }
.editorial-text { color: var(--text-secondary); margin-bottom: 30px; font-size: 15px; line-height: 1.8; }
.btn-luxury { display: inline-flex; align-items: center; background: var(--color-primary); color: var(--text-on-primary); padding: 12px 30px; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid var(--color-primary); cursor: pointer; transition: var(--transition); }
.btn-luxury:hover { background: transparent; color: var(--color-primary); }
.btn-luxury-outline { display: inline-flex; align-items: center; background: transparent; color: var(--color-primary); padding: 12px 30px; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid var(--color-primary); cursor: pointer; transition: var(--transition); }
.btn-luxury-outline:hover { background: var(--color-primary); color: var(--text-on-primary); }
.page-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.form-luxury-group { margin-bottom: 20px; }
.form-luxury-group label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; font-weight: 600; color: var(--text-primary); }
.form-luxury-input { width: 100%; padding: 12px; border: 1px solid var(--border-strong); background: var(--bg-surface); font-family: inherit; font-size: 14px; color: var(--text-primary); transition: var(--transition); }
.form-luxury-input:focus { border-color: var(--color-primary); outline: none; }
.badge-luxury { position: absolute; top: 15px; left: 15px; background: var(--color-accent); color: var(--text-on-primary); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; font-weight: 600; z-index: 10; }

/* ═══════════════════════════════════════════════════════════
   MEGA MENU  (consolidated from header.php)
   ═══════════════════════════════════════════════════════════ */

.nav-links li { position: relative; }
.mega-menu-trigger { cursor: pointer; }
.mega-menu-dropdown {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 20px);
    width: 850px; max-width: 1400px; background: var(--bg-surface);
    border: 1px solid var(--border-light); box-shadow: var(--shadow-lg); z-index: 100;
    display: grid; grid-template-columns: 3fr 1fr; gap: 40px; padding: 40px;
    opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); text-align: left;
}
.nav-links li:hover .mega-menu-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu-col h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 500; text-transform: none; letter-spacing: 0.05em; color: var(--color-accent); margin-bottom: 20px; border-bottom: 1px solid var(--border-light); padding-bottom: 8px; }
.mega-menu-col ul { list-style: none; padding: 0; margin: 0; }
.mega-menu-col ul li { margin-bottom: 12px; }
.mega-menu-col a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 13px; font-weight: 400; text-transform: none; display: inline-block; }
.mega-menu-col a:hover { color: var(--color-primary); transform: translateX(3px); }
.mega-menu-flat-list { columns: 5; column-gap: 30px; margin: 0; padding: 0; list-style: none; }
.mega-menu-flat-list li { break-inside: avoid; margin-bottom: 12px; }
.mega-menu-flat-list a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 14px; }
.mega-menu-flat-list a:hover { color: var(--color-primary); padding-left: 5px; }
.mega-menu-promo { border: 1px solid var(--border-light); padding: 15px; background: var(--bg-surface-soft); text-align: center; }
.mega-menu-promo img { width: 100%; height: 150px; object-fit: cover; margin-bottom: 15px; }
.mega-menu-promo h5 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 5px; font-weight: 500; }
.mega-menu-promo a { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; color: var(--color-accent); }
.logo span { color: var(--color-accent) !important; }

/* ═══════════════════════════════════════════════════════════
   SEARCH OVERLAY  (consolidated from header.php)
   ═══════════════════════════════════════════════════════════ */

.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255,255,255,0.98); z-index: 9999; display: none; opacity: 0; transition: opacity 0.3s ease; }
.search-overlay.active { display: flex; flex-direction: column; opacity: 1; }
.search-header { padding: 40px; display: flex; justify-content: flex-end; }
.search-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-primary); }
.search-container { max-width: 800px; margin: 0 auto; width: 100%; padding: 0 20px; }
.search-input-wrapper { position: relative; border-bottom: 2px solid var(--border-strong); display: flex; align-items: center; }
.search-input { width: 100%; border: none; background: transparent; font-size: 32px; font-weight: 300; padding: 20px 0; color: var(--text-primary); outline: none; font-family: var(--font-heading); }
.search-input::placeholder { color: var(--text-muted); }
.voice-search-btn { background: none; border: none; font-size: 20px; color: var(--text-muted); cursor: pointer; padding: 10px; transition: color 0.2s; }
.voice-search-btn:hover { color: var(--color-primary); }
.search-results-area { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-top: 40px; }
.search-suggestions h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 15px; }
.search-suggestions ul { list-style: none; padding: 0; margin-bottom: 30px; }
.search-suggestions li { margin-bottom: 10px; }
.search-suggestions a { color: var(--text-secondary); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.search-suggestions a:hover { color: var(--color-primary); }
.instant-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.search-product-card { display: flex; gap: 15px; text-decoration: none; color: var(--text-primary); }
.search-product-card img { width: 80px; height: 100px; object-fit: cover; border: 1px solid var(--border-light); }
.search-product-details { display: flex; flex-direction: column; justify-content: center; }
.search-product-title { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.search-product-price { font-size: 13px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   FOOTER  (consolidated from footer.php)
   ═══════════════════════════════════════════════════════════ */

.footer-newsletter-form { display: flex; gap: 0; width: 100%; }
.footer-newsletter-form input { flex: 1; min-width: 0; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #888888; }

/* ═══════════════════════════════════════════════════════════
   HOME PAGE GRIDS  (consolidated from home.php)
   ═══════════════════════════════════════════════════════════ */

.zoom-box:hover .zoom-img { transform: scale(1.04); }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.newsletter-input-wrap { position: relative; width: 100%; max-width: 400px; margin: 0 auto 30px; }
.animated-input { width: 100%; border: none !important; border-bottom: 2px solid var(--border-strong) !important; background: transparent !important; padding: 12px 0 !important; font-size: 14px !important; outline: none !important; transition: all 0.3s ease !important; text-align: center !important; color: var(--text-primary) !important; }
.animated-label { position: absolute; left: 50%; transform: translateX(-50%) translateY(12px); pointer-events: none; transition: all 0.3s ease; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.animated-input:focus ~ .animated-label,
.animated-input:valid ~ .animated-label { transform: translateX(-50%) translateY(-15px); font-size: 10px; color: var(--color-accent); font-weight: 700; }
.animated-input:focus { border-bottom-color: var(--color-primary) !important; }
.insta-item:hover .insta-overlay { opacity: 1 !important; }
.insta-item:hover img { transform: scale(1.05); }
.home-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.home-best-sellers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.home-insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.home-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.home-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.home-section-header-btns { display: flex; gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE  (consolidated from shop.php)
   ═══════════════════════════════════════════════════════════ */

@keyframes spinner-spin { to { transform: rotate(360deg); } }
.wishlist-btn-active { color: var(--color-danger) !important; }
.products-grid.list-view { display: flex !important; flex-direction: column !important; gap: 20px !important; }
.products-grid.list-view .product-card { flex-direction: row !important; height: 250px; align-items: center; text-align: left; }
.products-grid.list-view .product-card > div:nth-child(3) { width: 200px; height: 100% !important; border-bottom: none !important; border-right: 1px solid var(--border-light); }
.products-grid.list-view .product-card > div:nth-child(4) { padding: 30px !important; text-align: left !important; align-items: flex-start !important; }
.products-grid.list-view .product-card .btn-luxury { width: auto !important; }
.filter-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; display: flex; flex-direction: column; gap: 12px; }
.filter-body.open { max-height: 500px; margin-top: 15px; padding-bottom: 5px; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.shop-sidebar { border-right: 1px solid var(--border-light); padding-right: 20px; }
.filter-accordion { border-bottom: 1px solid var(--border-light); padding: 15px 0; }
.filter-header { font-family: var(--font-heading); font-size: 15px; text-transform: uppercase; font-weight: 500; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--text-primary); letter-spacing: 0.05em; }
.filter-toggle-icon { transition: transform 0.3s ease; font-size: 12px; color: var(--text-muted); }
.filter-header.open .filter-toggle-icon { transform: rotate(180deg); }
.card-img-container:hover .quick-view-btn { display: block !important; }
.quick-view-btn:hover { background: var(--color-primary) !important; color: white !important; }
.quick-view-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; display: none; align-items: center; justify-content: center; }
.quick-view-content { background: var(--bg-main); width: 900px; max-width: 90%; height: 500px; max-height: 90vh; display: flex; position: relative; border-radius: 4px; overflow: hidden; }
.quick-view-img { width: 50%; height: 100%; object-fit: cover; }
.quick-view-details { width: 50%; padding: 40px; overflow-y: auto; }
.quick-view-close { position: absolute; top: 15px; right: 15px; font-size: 24px; color: var(--text-muted); cursor: pointer; border: none; background: transparent; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE  (consolidated from product.php)
   ═══════════════════════════════════════════════════════════ */

.selected-pill { background: var(--color-primary) !important; color: var(--text-on-primary) !important; }
.product-detail-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; box-sizing: border-box; align-items: start; }
.product-image-section { display: flex; gap: 20px; align-items: flex-start; width: 100%; box-sizing: border-box; min-width: 0; }
.gallery-thumbs-col { display: flex; flex-direction: column; gap: 12px; width: 85px; flex-shrink: 0; }
.gallery-thumb { width: 85px; height: 115px; border: 1px solid var(--border-light); cursor: pointer; transition: 0.3s; opacity: 0.7; overflow: hidden; border-radius: 4px; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active-thumb { border-color: var(--color-primary); opacity: 1; }

.product-main-img-wrap { flex: 1; position: relative; border: 1px solid var(--border-light); background: #ffffff; overflow: hidden; border-radius: var(--radius-sm); min-width: 0; }
.product-main-img { width: 100%; height: auto; max-height: 650px; display: block; object-fit: contain; }
.product-details-col { display: flex; flex-direction: column; width: 100%; box-sizing: border-box; min-width: 0; }
.product-breadcrumbs { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 15px; }
.product-breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.product-breadcrumbs span { color: var(--text-primary); }
.product-title-heading { font-family: var(--font-heading); font-size: 32px; font-weight: 400; text-transform: uppercase; line-height: 1.3; color: var(--text-primary); margin-bottom: 12px; word-break: break-word; }
.product-price-heading { font-size: 22px; font-weight: 600; color: var(--color-primary); margin-bottom: 20px; }
.product-description-text { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 25px; word-break: break-word; }


/* ═══════════════════════════════════════════════════════════
   HOME PAGE HERO SLIDER  (consolidated from home.php)
   ═══════════════════════════════════════════════════════════ */

.hero-slider-section { position: relative; overflow: hidden; height: 80vh; background: #000; }
.category-box-height { height: 450px; overflow: hidden; }
.home-new-arrivals-item { flex: 0 0 280px; scroll-snap-align: start; }
.home-best-sellers-img { height: 300px; overflow: hidden; }
.slide-content h2 { font-size: 56px; font-family: var(--font-heading); font-weight: 300; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; color: #ffffff; }

/* ═══════════════════════════════════════════════════════════
   ADMIN SIDEBAR & LAYOUT  (consolidated from admin header)
   ═══════════════════════════════════════════════════════════ */

.expand-btn { cursor: pointer; background: none; border: none; color: var(--color-secondary); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.expand-btn:hover { color: var(--color-primary); }

body.admin-wrapper {
    background-color: #f9fafb;
    display: flex;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 50;
}
.admin-sidebar-logo {
    padding: 24px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-sidebar-nav {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.admin-sidebar-nav a:hover { background: #f3f4f6; color: #111827; }
.admin-sidebar-nav a.active { background: #f3f4f6; color: #111827; font-weight: 600; }
.admin-sidebar-nav a i { font-size: 16px; width: 20px; text-align: center; }
.admin-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-width: 0; }
.admin-topbar {
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 40;
}
.admin-content { padding: 32px; max-width: 1200px; width: 100%; margin: 0 auto; }
body.admin-wrapper .navbar { display: none !important; }
body.admin-wrapper .admin-tabs { display: none !important; }

body.admin-wrapper .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}
body.admin-wrapper .stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.admin-wrapper .stat-card .stat-label { font-size: 13px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 8px; }
body.admin-wrapper .stat-card .stat-value { font-size: 28px; font-weight: 700; color: #111827; }
body.admin-wrapper .stat-card-icon { display: none; }
body.admin-wrapper .admin-page-header { margin-bottom: 32px; border-bottom: 1px solid #e5e7eb; padding-bottom: 24px; }
body.admin-wrapper .admin-page-title { font-size: 24px; font-weight: 700; color: #111827; }

body.admin-wrapper .glass-panel {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    backdrop-filter: none !important;
    border-radius: 12px !important;
    padding: 24px !important;
}
body.admin-wrapper .form-control {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    color: #111827 !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}
body.admin-wrapper .form-control:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2) !important;
    outline: none;
}
body.admin-wrapper .form-label { color: #374151 !important; font-weight: 500 !important; }
body.admin-wrapper .btn-primary {
    background: #111827 !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    font-weight: 500 !important;
}

body.admin-wrapper .product-form-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE GRIDS
   ═══════════════════════════════════════════════════════════ */

.about-narrative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE GRIDS
   ═══════════════════════════════════════════════════════════ */

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER & HOME COMPONENTS
   ═══════════════════════════════════════════════════════════ */

.slider-container { display: flex; width: 300%; height: 100%; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.slide { width: 33.333%; height: 100%; position: relative; background-size: cover; background-position: center; }
.slide-1 { background-image: url('../../uploads/gallery/lookbook_1.png'); }
.slide-2 { background-image: url('../../uploads/gallery/lookbook_2.png'); }
.slide-3 { background-image: url('../../uploads/gallery/lookbook_3.png'); }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); z-index: 1; }
.slide-content { position: absolute; left: 10%; bottom: 15%; z-index: 2; color: #ffffff; max-width: 600px; text-align: left; }
.slide-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--color-accent); font-weight: 600; display: block; margin-bottom: 15px; }
.btn-hero-explore { background: #ffffff !important; color: #111111 !important; border-color: #ffffff !important; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2); color: white; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; z-index: 10; cursor: pointer; transition: 0.3s; }
.hero-arrow:hover { background: rgba(0,0,0,0.6); }
.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }
.hero-dots-container { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid white; cursor: pointer; transition: 0.3s; background: transparent; }
.slide-dot.active { background: white; }

.section-title-wrapper { text-align: center; margin-bottom: 60px; }
.category-card { position: relative; overflow: hidden; display: block; border: 1px solid var(--border-light); height: 450px; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%); display: flex; align-items: flex-end; padding: 30px; z-index: 2; }
.category-card-overlay h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 400; text-transform: uppercase; color: white; margin-bottom: 5px; }
.category-card-link { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); font-weight: 600; }

.new-arrivals-section { background: var(--bg-surface); font-family: var(--font-body); position: relative; }
.btn-carousel-arrow { width: 44px; height: 44px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-primary); background: transparent; transition: var(--transition); }
.btn-carousel-arrow:hover { background: var(--color-primary); color: white; }
.new-arrivals-carousel { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 20px; }
.product-card-img-wrap {
    width: 100%;
    height: 0;
    padding-top: 134.89%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-surface-soft);
}
.product-card-img-wrap > a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-emoji { width: 100%; height: 100%; background: var(--bg-surface-soft); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.product-card-details { padding: 15px; text-align: center; }
.product-card-category { font-size: 10px; color: var(--text-muted); text-transform: uppercase; display: block; margin-bottom: 5px; }
.product-card-title { font-family: var(--font-heading); font-size: 18px; font-weight: 400; margin-bottom: 8px; min-height: 48px; }
.product-card-title a { color: var(--text-primary); text-decoration: none; }
.product-card-price { font-size: 13px; font-weight: 600; color: var(--color-secondary); }

.trending-section { background: var(--bg-main); font-family: var(--font-body); }
.tab-toggle-container { text-align: center; margin-bottom: 50px; }
.tab-toggle-wrapper { display: inline-flex; border: 1px solid var(--border-strong); padding: 5px; background: var(--bg-surface); gap: 5px; }
.product-card-grid { border: 1px solid var(--border-light); background: var(--bg-surface); padding-bottom: 20px; text-align: center; position: relative; }

.occasion-bar-section { background: var(--bg-surface); text-align: center; border-bottom: 1px solid var(--border-light); font-family: var(--font-body); }
.occasion-bar-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--color-accent); display: block; margin-bottom: 18px; }
.occasion-bar-pills { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.pill-btn { border-radius: 30px !important; padding: 10px 24px !important; font-size: 11px !important; font-weight: 600 !important; }

.occasion-banners-section { font-family: var(--font-body); }
.occasion-banner { padding: 140px 0; position: relative; background-size: cover; background-position: center; }
.banner-wedding { background-image: url('../../uploads/gallery/lookbook_1.png'); }
.banner-office { background-image: url('../../uploads/gallery/lookbook_2.png'); border-top: 1px solid var(--border-light); }
.occasion-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 1; }
.occasion-banner-content { position: relative; z-index: 2; color: white; text-align: center; max-width: 600px; margin: 0 auto; }
.occasion-banner-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--color-accent); font-weight: 600; display: block; margin-bottom: 15px; }
.occasion-banner-content h2 { font-family: var(--font-heading); font-size: 44px; font-weight: 300; text-transform: uppercase; color: white; margin-bottom: 15px; }
.occasion-banner-content p { font-size: 14px; font-style: italic; color: #f5f4f0; margin-bottom: 25px; font-family: var(--font-heading); line-height: 1.6; }
.btn-banner { background: white !important; color: black !important; border-color: white !important; }

.video-banner-section { position: relative; height: 50vh; overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); }
.video-banner-media { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: 1; }
.video-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 2; }
.video-banner-content { position: relative; z-index: 3; color: white; text-align: center; max-width: 600px; padding: 20px; }
.video-banner-content h2 { font-family: var(--font-heading); font-size: 38px; font-weight: 300; text-transform: uppercase; color: white; margin-bottom: 20px; }
.video-banner-content p { font-size: 14px; font-style: italic; color: #e6e6e6; margin-bottom: 25px; font-family: var(--font-heading); }

.reviews-section { background: var(--bg-surface-soft); font-family: var(--font-body); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); text-align: center; overflow: hidden; position: relative; }
.reviews-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.reviews-slider-wrap { position: relative; height: 180px; }
.reviews-slider { display: flex; width: 300%; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.review-slide { width: 33.333%; padding: 0 20px; display: flex; flex-direction: column; align-items: center; }
.review-stars { color: var(--color-accent); margin-bottom: 15px; font-size: 16px; }
.review-quote { font-family: var(--font-heading); font-size: 22px; font-style: italic; color: var(--text-primary); margin-bottom: 15px; line-height: 1.5; font-weight: 300; }
.review-author { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.1em; font-style: normal; }
.review-dots-container { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.review-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); cursor: pointer; transition: 0.3s; opacity: 0.5; }
.review-dot.active { background: var(--color-primary); opacity: 1; }

.insta-section { background: var(--bg-main); font-family: var(--font-body); }
.insta-container { text-align: center; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; border: 1px solid var(--border-light); cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; color: white; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.insta-meta { font-size: 13px; font-weight: 600; text-align: center; }
.insta-meta i { font-size: 20px; display: block; margin-bottom: 6px; }

.newsletter-section { background: var(--bg-main); font-family: var(--font-body); border-bottom: 1px solid var(--border-light); text-align: center; }
.newsletter-container { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.newsletter-subtitle { color: var(--text-secondary); font-size: 14px; margin-bottom: 40px; font-style: italic; font-family: var(--font-heading); }
.btn-newsletter { padding: 12px 40px !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.05em !important; }

.blog-card { background: var(--bg-surface); border: 1px solid var(--border-light); }
.blog-card-img { height: 220px; overflow: hidden; background-size: cover; background-position: center; }
.blog-img-1 { background-image: url('../../uploads/gallery/lookbook_3.png'); }
.blog-img-2 { background-image: url('../../uploads/gallery/lookbook_2.png'); }
.blog-img-3 { background-image: url('../../uploads/gallery/lookbook_1.png'); }
.blog-card-content { padding: 30px; }
.blog-card-tag { font-size: 11px; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.blog-card-title { font-family: var(--font-heading); font-size: 22px; font-weight: 400; margin: 12px 0; }
.blog-card-title a { color: var(--text-primary); text-decoration: none; }
.blog-card-text { color: var(--text-secondary); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.blog-card-link { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--text-primary); text-decoration: none; }
.blog-card-link i { margin-left: 5px; }

.benefits-section { background: var(--bg-surface); border-bottom: 1px solid var(--border-light); font-family: var(--font-body); }
.benefit-item { padding: 10px; }
.benefit-icon { font-size: 24px; color: var(--color-accent); margin-bottom: 12px; }
.benefit-title { font-family: var(--font-heading); font-size: 16px; font-weight: 500; text-transform: uppercase; margin-bottom: 6px; }
.benefit-text { font-size: 12px; color: var(--text-secondary); }

/* Product Page Clean Components */
.gallery-thumbs-col { display: flex; flex-direction: column; gap: 15px; width: 90px; flex-shrink: 0; }
.gallery-thumb { width: 100%; height: 130px; border: 1px solid var(--border-light); cursor: pointer; transition: 0.3s; opacity: 0.6; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active-thumb { border-color: var(--color-primary); opacity: 1; }

.product-main-img-wrap { flex-grow: 1; position: relative; border: 1px solid var(--border-light); background: var(--bg-surface); padding: 0; overflow: hidden; cursor: crosshair; }
.badge-product-page { top: 25px; left: 25px; z-index: 10; }
.product-main-img { width: 100%; max-width: 600px; height: auto; margin: 0 auto; display: block; transition: transform 0.2s ease; }
.product-main-emoji { width: 100%; height: 500px; background: var(--bg-surface-soft); display: flex; align-items: center; justify-content: center; font-size: 100px; }

.product-details-col { padding-top: 10px; }
.product-breadcrumbs { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 20px; }
.product-breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.product-breadcrumbs span { color: var(--text-primary); }
.product-title-heading { font-family: var(--font-heading); font-size: 40px; font-weight: 300; text-transform: uppercase; line-height: 1.2; color: var(--text-primary); margin-bottom: 15px; }
.product-price-heading { font-size: 20px; font-weight: 500; color: var(--color-secondary); margin-bottom: 30px; }
.product-description-text { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 35px; }

.delivery-checker-box { margin-bottom: 35px; border: 1px dashed var(--border-strong); padding: 15px; }
.delivery-checker-label { display: block; font-size: 11px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 10px; }
.delivery-checker-input-wrap { display: flex; gap: 10px; }
.delivery-checker-input-wrap input { flex: 1; padding: 10px; border: 1px solid var(--border-light); font-size: 13px; background: var(--bg-surface); }
.delivery-checker-input-wrap button { padding: 10px 20px; font-size: 12px; font-weight: 500; }
.delivery-status-msg { font-size: 12px; margin-top: 10px; display: none; }

.specifications-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn-reset-filters { width: 100%; padding: 10px; font-size: 11px; justify-content: center; margin-top: 20px; }
.filters-sorting-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--border-strong); margin-bottom: 30px; }
.view-controls { display: flex; gap: 10px; }
.view-controls .view-btn { background: none; border: none; font-size: 18px; color: var(--text-muted); cursor: pointer; }
.view-controls .view-btn.active { color: var(--text-primary); }
.sorting-controls { display: flex; align-items: center; gap: 10px; }
.sorting-controls label { font-size: 11px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; color: var(--text-secondary); }
.sorting-controls select { border: 1px solid var(--border-strong); background: var(--bg-surface); padding: 8px 16px; font-family: inherit; font-size: 12px; outline: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; }

.scroll-loader-wrap { text-align: center; padding: 60px 0 20px; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.scroll-loader-wrap .loader-spinner { width: 24px; height: 24px; border: 2px solid var(--border-strong); border-top-color: var(--color-primary); border-radius: 50%; animation: spinner-spin 0.8s linear infinite; display: none; }
.scroll-loader-wrap p { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 10px; font-weight: 600; }

.cart-page-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: start; }
.cart-action-btns { margin-top: 30px; display: flex; justify-content: space-between; }

/* Checkout Page Clean Components */
.checkout-hero { background: #eae7e1 !important; margin-bottom: 40px !important; }
.checkout-main-section { background: var(--bg-main); font-family: var(--font-body); }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: start; }
.checkout-form-panel { background: var(--bg-surface); border: 1px solid var(--border-light); padding: 40px; }
.checkout-alert { margin-bottom: 24px; padding: 15px; background: #fdf2f2; color: #a94442; border: 1px solid #f5c6cb; font-size: 13px; }
.step-nav-header { display: flex; gap: 20px; margin-bottom: 45px; border-bottom: 1px solid var(--border-light); padding-bottom: 15px; justify-content: space-between; }
.step-nav-tab { font-size: 12px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); border-bottom: 2px solid transparent; padding-bottom: 15px; flex: 1; text-align: center; }
.step-nav-tab.active-tab { color: var(--color-accent); border-bottom-color: var(--color-accent); }

.checkout-step-title { font-family: var(--font-heading); font-size: 24px; font-weight: 400; text-transform: uppercase; margin-bottom: 25px; }
.checkout-step-subtitle { font-family: var(--font-heading); font-size: 20px; font-weight: 400; text-transform: uppercase; margin-bottom: 20px; border-top: 1px solid var(--border-light); padding-top: 30px; }

.express-shipping-box { border: 1px solid var(--color-accent); padding: 25px; background: var(--bg-surface-soft); margin-bottom: 35px; display: flex; justify-content: space-between; align-items: center; }
.express-shipping-box h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 500; margin-bottom: 5px; }
.express-shipping-box h3 i { color: var(--color-accent); margin-right: 8px; }
.express-shipping-box p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* Main Header Bar */
.main-header-bar { padding: 12px 0; background: #ffffff; border-bottom: 1px solid var(--border-light); width: 100%; }
.main-header-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 30px; width: 100%; }
.header-brand-group { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
    height: 75px !important;
    max-height: 75px !important;
    width: auto;
    object-fit: contain;
    display: block;
}



/* Center Search Wrap */
.header-search-wrap { flex: 1; max-width: 580px; position: relative; display: flex; align-items: center; background: #f9f9f9; border: 1px solid var(--border-strong); border-radius: 40px; padding: 5px 6px 5px 18px; cursor: pointer; transition: all 0.2s ease; }
.header-search-wrap:hover { border-color: var(--color-primary); background: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-search-wrap .search-icon { color: var(--text-muted); font-size: 14px; margin-right: 10px; }
.header-search-wrap input { border: none; background: transparent; width: 100%; font-size: 13px; color: var(--text-primary); outline: none; cursor: pointer; }
.header-image-search-btn { background: var(--bg-surface-soft); border: 1px solid var(--border-light); border-radius: 20px; padding: 6px 14px; font-size: 11px; font-weight: 600; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.header-image-search-btn:hover { background: var(--border-light); color: var(--text-primary); }

/* Right Action Icons */
.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-action-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-primary); font-size: 17px; position: relative; cursor: pointer; background: none; border: none; transition: color 0.2s; }
.nav-action-item:hover { color: var(--color-accent); }
.nav-action-item span { font-size: 10px; font-weight: 600; text-transform: uppercase; margin-top: 3px; color: var(--text-secondary); letter-spacing: 0.05em; }
.action-badge { position: absolute; top: -6px; right: -8px; background: var(--color-primary); color: #ffffff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Bottom Category Navigation Bar */
.bottom-header-bar { background: #ffffff; padding: 12px 0; position: relative; }
.bottom-header-container { display: flex; justify-content: center; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-link-item { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); text-decoration: none; transition: color 0.2s ease; position: relative; padding: 6px 0; display: flex; align-items: center; gap: 6px; }
.nav-link-item:hover { color: var(--color-accent); }
.nav-highlight-new { color: var(--color-accent); font-weight: 700; }
.nav-arrow { font-size: 10px; transition: transform 0.2s; }

/* Mega Menu Dropdown (BIBA & AZA Style) */
.has-mega-menu { position: static !important; }
.mega-dropdown { position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff; border-top: 1px solid var(--border-light); border-bottom: 2px solid var(--color-primary); box-shadow: 0 16px 40px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999; padding: 35px 0; }
.has-mega-menu:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-mega-menu:hover .nav-arrow { transform: rotate(180deg); }
.mega-dropdown-container { display: grid; grid-template-columns: 220px 220px 1fr; gap: 40px; align-items: start; }
.mega-column .mega-heading { font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); margin-bottom: 16px; border-bottom: 1px solid var(--border-light); padding-bottom: 6px; }
.mega-column ul { list-style: none; padding: 0; margin: 0; }
.mega-column ul li { margin-bottom: 10px; }
.mega-column ul li a { font-size: 13px; color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: color 0.2s ease, padding-left 0.2s ease; display: inline-block; }
.mega-column ul li a:hover { color: var(--text-primary); font-weight: 700; padding-left: 4px; }

.mega-promo-column { width: 100%; }
.mega-promo-card { position: relative; height: 210px; border-radius: var(--radius-sm); overflow: hidden; display: flex; align-items: flex-end; }
.mega-promo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mega-promo-card:hover img { transform: scale(1.04); }
.mega-promo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: #ffffff; }
.mega-promo-overlay h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 400; margin-bottom: 8px; color: #ffffff; }
.btn-mega-shop { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #ffffff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-mega-shop:hover { color: var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE PRICE RANGE FILTER DESIGN FIX
   ═══════════════════════════════════════════════════════════ */
.sidebar-filters-title { font-family: var(--font-heading); font-size: 18px; font-weight: 400; text-transform: uppercase; margin-bottom: 20px; border-bottom: 2px solid var(--text-primary); padding-bottom: 8px; display: inline-block; }
.filter-checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); cursor: pointer; padding: 3px 0; }
.filter-checkbox-label input[type="checkbox"] { accent-color: var(--color-primary); width: 16px; height: 16px; }
.price-range-container { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.price-range-inputs { display: flex; align-items: center; gap: 8px; }
.price-input-box { display: flex; align-items: center; background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: 4px; padding: 6px 10px; flex: 1; min-width: 0; }
.price-input-box span { font-size: 12px; color: var(--text-muted); margin-right: 4px; font-weight: 600; }
.price-input-box input { border: none; background: transparent; width: 100%; font-size: 13px; color: var(--text-primary); outline: none; min-width: 0; }
.btn-apply-price { width: 100%; background: var(--text-primary); color: #ffffff; border: none; padding: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 4px; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.btn-apply-price:hover { background: var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   COMPACT SUGGESTED PIECES & RECENTLY VIEWED CARDS (ASPECT RATIO 3:4)
   ═══════════════════════════════════════════════════════════ */
.compact-suggested-section { background: var(--bg-surface); border-top: 1px solid var(--border-light); }
.related-compact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.compact-product-card { border: 1px solid var(--border-light); background: #ffffff; text-align: center; border-radius: var(--radius-sm); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.compact-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.compact-card-img-wrap { aspect-ratio: 3 / 4; height: auto; max-height: 340px; overflow: hidden; background: var(--bg-surface-soft); border-bottom: 1px solid var(--border-light); }
.compact-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.compact-product-card:hover .compact-card-img-wrap img { transform: scale(1.05); }
.compact-card-details { padding: 14px 12px; }
.compact-card-cat { font-size: 10px; color: var(--text-muted); text-transform: uppercase; display: block; margin-bottom: 4px; font-weight: 500; }
.compact-card-name { font-family: var(--font-heading); font-size: 14px; font-weight: 500; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.compact-card-name a { color: var(--text-primary); text-decoration: none; }
.compact-card-price { font-size: 13px; font-weight: 600; color: var(--color-primary); }
.recently-viewed-empty { text-align: center; font-size: 13px; color: var(--text-muted); display: none; padding: 20px 0; }

/* Product Page Action Buttons */
.product-variants-wrap { margin: 20px 0; }
.variant-select-label { font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); display: block; margin-bottom: 8px; }
.variant-pills-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill-btn { padding: 8px 16px; border: 1px solid var(--border-strong); background: var(--bg-surface); font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.2s; border-radius: 4px; color: var(--text-primary); }
.variant-pill-btn.selected-pill, .variant-pill-btn:hover { background: var(--text-primary); color: #ffffff; border-color: var(--text-primary); }

.product-action-buttons-group { display: flex; align-items: center; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.btn-add-bag { flex: 2; height: 50px; justify-content: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; gap: 10px; min-width: 180px; }
.btn-buy-now { flex: 1; height: 50px; justify-content: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; min-width: 140px; }
.btn-wishlist-action { width: 50px; height: 50px; border: 1px solid var(--border-strong); background: var(--bg-surface); font-size: 20px; color: var(--text-primary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; border-radius: 4px; }
.btn-wishlist-action:hover { border-color: var(--color-danger); color: var(--color-danger); }

/* ═══════════════════════════════════════════════════════════
   PRODUCT REVIEWS & Q&A SECTIONS
   ═══════════════════════════════════════════════════════════ */
.product-reviews-section { background: var(--bg-surface); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); font-family: var(--font-body); }
.product-reviews-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.reviews-header-bar { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--border-strong); padding-bottom: 20px; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.reviews-title { font-family: var(--font-heading); font-size: 28px; font-weight: 300; text-transform: uppercase; color: var(--text-primary); margin: 0; }
.reviews-rating-summary { font-size: 14px; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.reviews-rating-summary i { color: #fbbf24; }
.reviews-rating-summary span { font-weight: 600; color: var(--text-primary); margin-left: 6px; }
.btn-write-review { padding: 10px 24px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.reviews-list-grid { display: flex; flex-direction: column; gap: 24px; }
.review-card-item { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.review-card-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.review-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 10px; }
.review-buyer-name { font-size: 15px; color: var(--text-primary); font-weight: 600; }
.review-verified-tag { font-size: 12px; color: #10b981; margin-left: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.review-date { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.review-card-stars { margin-bottom: 12px; font-size: 13px; color: #fbbf24; display: flex; gap: 4px; }
.review-card-title { font-family: var(--font-heading); font-size: 18px; font-weight: 500; margin-bottom: 10px; color: var(--text-primary); }
.review-card-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

.product-qa-section { background: var(--bg-surface-soft); border-bottom: 1px solid var(--border-light); font-family: var(--font-body); }


/* ═══════════════════════════════════════════════════════════
   FOOTER ENHANCED DARK STYLING & NEWSLETTER FIX
   ═══════════════════════════════════════════════════════════ */
.footer-enhanced { background: #111111; color: #ffffff; padding: 80px 0 40px; font-family: var(--font-body); border-top: 1px solid #222222; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 50px; margin-bottom: 60px; }
.footer-brand img { max-height: 75px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; color: #a0a0a0; line-height: 1.7; margin-bottom: 24px; max-width: 340px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #222222; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 15px; text-decoration: none; transition: background 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--color-accent); transform: translateY(-3px); }

.footer-col h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: #ffffff; margin-bottom: 24px; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 1px; background: var(--color-accent); }
.footer-col p { font-size: 13px; color: #a0a0a0; line-height: 1.6; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #a0a0a0; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #ffffff; padding-left: 4px; }

.footer-newsletter-form { display: flex; gap: 0; border: 1px solid #333333; border-radius: 4px; overflow: hidden; margin-top: 16px; background: #1a1a1a; }
.footer-newsletter-form input { flex: 1; padding: 12px 16px; border: none; background: transparent; color: #ffffff; font-size: 12px; outline: none; }
.footer-newsletter-form input::placeholder { color: #777777; }
.footer-newsletter-form button { background: var(--color-primary); color: #ffffff; border: none; padding: 12px 24px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s; }
.footer-newsletter-form button:hover { background: var(--color-accent); }

.footer-bottom-bar { border-top: 1px solid #222222; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #777777; flex-wrap: wrap; gap: 15px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 18px; color: #ffffff; letter-spacing: 0.15em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════
   ACTION BADGES & ADMIN LOGIN LUXURY PORTAL
   ═══════════════════════════════════════════════════════════ */
.action-badge, .cart-badge, .wishlist-badge { background: var(--color-primary) !important; color: #ffffff !important; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.admin-login-body { background: #111111; min-height: 100vh; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); margin: 0; padding: 20px; }
.admin-login-wrapper { width: 100%; max-width: 440px; }
.admin-login-card { background: #ffffff; border: 1px solid var(--border-strong); border-radius: 8px; padding: 45px 35px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); text-align: center; }
.admin-login-brand { margin-bottom: 30px; }
.admin-login-logo { font-family: var(--font-heading); font-size: 36px; font-weight: 300; letter-spacing: 0.15em; color: var(--color-primary); text-transform: uppercase; margin-bottom: 6px; }
.admin-login-tagline { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 600; }
.admin-login-alert { background: #fdf2f2; color: var(--color-danger); border: 1px solid #f5c6cb; padding: 12px; border-radius: 4px; font-size: 13px; margin-bottom: 24px; text-align: left; display: flex; align-items: center; gap: 8px; }
.admin-login-form { text-align: left; }
.admin-input-group { margin-bottom: 20px; }
.admin-input-group label { display: block; font-size: 11px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; color: var(--text-primary); margin-bottom: 8px; }
.admin-input-box { display: flex; align-items: center; background: var(--bg-surface-soft); border: 1px solid var(--border-strong); border-radius: 4px; padding: 0 14px; height: 48px; position: relative; transition: border-color 0.2s; }
.admin-input-box:focus-within { border-color: var(--color-primary); background: #ffffff; }
.admin-input-box i { color: var(--text-muted); font-size: 14px; margin-right: 12px; }
.admin-input-box input { border: none; background: transparent; width: 100%; height: 100%; font-size: 14px; color: var(--text-primary); outline: none; }
.btn-pwd-eye { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; font-size: 14px; transition: color 0.2s; }
.btn-pwd-eye:hover { color: var(--color-primary); }
.btn-admin-submit { width: 100%; height: 50px; background: var(--color-primary); color: #ffffff !important; border: none; border-radius: 4px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-admin-submit:hover { background: var(--color-primary-dark); }
.admin-login-footer { margin-top: 25px; border-top: 1px solid var(--border-light); padding-top: 20px; }
.admin-login-footer a { color: var(--text-muted); font-size: 12px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.admin-login-footer a:hover { color: var(--color-primary); }


/* ═══════════════════════════════════════════════════════════
   NEW ARRIVALS CAROUSEL & PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.new-arrivals-section { background: var(--bg-surface); font-family: var(--font-body); position: relative; }
.home-section-header-btns { display: flex; gap: 10px; }
.btn-carousel-arrow { width: 44px; height: 44px; border: 1px solid var(--border-strong); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-primary); background: transparent; transition: all 0.2s; border-radius: 4px; }
.btn-carousel-arrow:hover { background: var(--color-primary); color: #ffffff; }

.new-arrivals-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 20px; }
.product-card-carousel { flex: 0 0 280px; width: 280px; scroll-snap-align: start; border: 1px solid var(--border-light); background: #ffffff; text-align: center; position: relative; border-radius: var(--radius-sm); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card-carousel:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }


