/* ============================================================
   FILY ADI SIGNATURE — Frontend CSS
   Luxury Moroccan Brand | Elegant Minimalist Aesthetic
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --cream:   #FAF7F2;
    --beige:   #E8E0D5;
    --gold:    #C9A96E;
    --gold-dark: #A8854A;
    --charcoal: #2C2C2C;
    --gray-text: #6B7280;
    --white:   #FFFFFF;
    --border:  #E5DDD4;
    --shadow:  0 2px 16px rgba(44,44,44,0.07);
    --shadow-lg: 0 8px 40px rgba(44,44,44,0.13);
    --radius:  0.75rem;
    --transition: all 0.25s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1rem;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* --- Layout Utilities --- */
.container-site {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

/* ---- Outer shell ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(44,44,44,0.10);
}

/* ---- Topbar (WhatsApp + lang) ---- */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(228,216,202,0.5);
    font-size: 0.76rem;
    color: var(--gray-text);
    letter-spacing: 0.01em;
}
.top-bar a:hover { color: var(--gold); }

/* ---- Main header row ---- */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.5rem;
}

/* ---- Logo ---- */
.logo-link { flex-shrink: 0; line-height: 1; }
.logo-link:hover { opacity: 0.85; }

/* ---- Desktop Nav ---- */
.main-nav {
    display: none;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}
@media (min-width: 1024px) {
    .main-nav { display: flex; }
}

/* Base nav link */
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    right: 0.8rem;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.nav-link:hover,
.nav-link--active {
    color: var(--gold);
}
.nav-link:hover::after,
.nav-link--active::after {
    transform: scaleX(1);
}

/* Chevron arrow */
.nav-chevron {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: currentColor;
    opacity: 0.7;
}
.nav-chevron.rotated { transform: rotate(180deg); }

/* ---- Per-category dropdown ---- */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid rgba(201,169,110,0.2);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 12px 40px rgba(44,44,44,0.12);
    min-width: 200px;
    z-index: 500;
    overflow: hidden;
    /* Alpine handles show/hide */
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.815rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    white-space: nowrap;
    border-bottom: 1px solid rgba(228,216,202,0.4);
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover {
    background: var(--cream);
    color: var(--gold);
    padding-left: 1.5rem;
}

/* ---- Header icon buttons ---- */
.header-icons {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-shrink: 0;
}

.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.icon-btn:hover {
    background: rgba(201,169,110,0.10);
    color: var(--gold);
}

.badge-count {
    position: absolute;
    top: 1px;
    right: 1px;
    min-width: 16px;
    height: 16px;
    background: var(--gold);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* Account dropdown */
.account-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(44,44,44,0.13);
    min-width: 170px;
    overflow: hidden;
    z-index: 500;
}
.dropdown-item {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.84rem;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(228,216,202,0.4);
    transition: background 0.15s, color 0.15s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--cream); color: var(--gold); }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.lang-btn {
    padding: 0.15rem 0.4rem;
    color: var(--gray-text);
    transition: color 0.2s;
    background: none;
    border: none;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.06em;
}
.lang-btn:hover,
.lang-btn.active { color: var(--gold); }

/* ---- Search bar (inline under header) ---- */
.search-bar {
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 0.875rem 0;
}
.search-input {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--cream);
    outline: none;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.btn-gold:hover { background: var(--gold-dark); }

/* ---- Mobile overlay ---- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44,44,44,0.45);
    z-index: 1699;
}

/* ---- Mobile drawer ---- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--white);
    z-index: 1700;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 32px rgba(44,44,44,0.15);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    color: var(--charcoal);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.mobile-close-btn:hover { background: rgba(201,169,110,0.12); color: var(--gold); }

.mobile-drawer-body {
    flex: 1;
    padding: 0.5rem 0;
    overflow-y: auto;
}

.mobile-nav-parent {
    display: flex;
    align-items: center;
}

.mobile-nav-link {
    display: block;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(228,216,202,0.5);
    transition: color 0.15s, background 0.15s;
    flex: 1;
}
.mobile-nav-link:hover { color: var(--gold); background: rgba(201,169,110,0.04); }
.mobile-nav-link--danger { color: #dc2626 !important; }
.mobile-nav-link--danger:hover { background: #fef2f2 !important; }

.mobile-expand-btn {
    padding: 0.8rem 1.25rem 0.8rem 0;
    border: none;
    background: transparent;
    color: var(--gray-text);
    cursor: pointer;
    border-bottom: 1px solid rgba(228,216,202,0.5);
    display: flex;
    align-items: center;
    transition: color 0.15s;
}
.mobile-expand-btn:hover { color: var(--gold); }

.mobile-sub-list {
    background: var(--cream);
    border-bottom: 1px solid rgba(228,216,202,0.5);
}

.mobile-sub-link {
    display: block;
    padding: 0.65rem 1.25rem 0.65rem 2rem;
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--gray-text);
    border-bottom: 1px solid rgba(228,216,202,0.3);
    transition: color 0.15s, background 0.15s;
}
.mobile-sub-link:last-child { border-bottom: none; }
.mobile-sub-link:hover { color: var(--gold); background: rgba(201,169,110,0.06); }

.mobile-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 1.25rem;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-container {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.flash-message {
    pointer-events: auto;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 360px;
    animation: slideInRight 0.3s ease;
}

.flash-success { background: #f0fdf4; border: 1px solid #86efac; color: #15803d; }
.flash-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.flash-info    { background: #eff6ff; border: 1px solid #93c5fd; color: #1d4ed8; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 500px;
    max-height: 800px;
    background: var(--charcoal);
}

.hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity 0.8s ease;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.55) 0%, rgba(44,44,44,0.25) 60%, transparent 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 8%;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    background: rgba(201,169,110,0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(201,169,110,0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 2px solid var(--gold);
}

.hero-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
    margin-left: 1rem;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* Slider controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.slider-arrow:hover {
    background: rgba(201,169,110,0.6);
}

.slider-arrow-prev { left: 1.5rem; }
.slider-arrow-next { right: 1.5rem; }

.slider-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: background 0.2s, width 0.3s;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--cream);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background: linear-gradient(to top, rgba(44,44,44,0.6), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-actions {
    transform: translateY(0);
}

.product-action-btn {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.btn-cart {
    background: var(--gold);
    color: var(--white);
}

.btn-cart:hover { background: var(--gold-dark); }

.btn-wishlist {
    background: rgba(255,255,255,0.9);
    color: var(--charcoal);
    flex: 0;
    width: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 0;
}

.btn-wishlist:hover { background: #fef2f2; color: #dc2626; }
.btn-wishlist.active { background: #fef2f2; color: #dc2626; }

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-new { background: var(--gold); color: var(--white); }
.badge-featured { background: var(--charcoal); color: var(--white); }

.product-card-body {
    padding: 1rem;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-category {
    font-size: 0.75rem;
    color: var(--gray-text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
}

/* No image placeholder */
.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    color: var(--border);
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--beige);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img { transform: scale(1.07); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.category-card-count {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 90px;
}

.product-main-image {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    cursor: zoom-in;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-main-image:hover img { transform: scale(1.04); }

.product-thumbnails {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.product-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
    background: var(--cream);
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--gold);
}

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

/* Product info */
.product-info-section {
    padding-top: 0.5rem;
}

.product-category-breadcrumb {
    font-size: 0.78rem;
    color: var(--gray-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.product-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}

.product-description {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.product-description p { margin-bottom: 0.75rem; }
.product-description ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }

/* Add to cart section */
.add-to-cart-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-add-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-add-cart:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

.btn-add-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-wishlist-full {
    width: 100%;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: border-color 0.2s, color 0.2s;
}

.btn-wishlist-full:hover {
    border-color: #fca5a5;
    color: #dc2626;
}

.btn-wishlist-full.active {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

.btn-whatsapp {
    width: 100%;
    padding: 0.875rem 2rem;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.2s;
}

.btn-whatsapp:hover { background: #128C7E; }

/* Share buttons */
.share-buttons {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1.5px solid var(--border);
    color: var(--gray-text);
    transition: border-color 0.2s, color 0.2s;
}

.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.2s ease;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   CART
   ============================================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

.cart-items-list {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.15s;
}

.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--cream); }

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--charcoal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, background 0.15s;
}

.qty-btn:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
    color: var(--gold);
}

.qty-display {
    width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.btn-remove-item {
    background: none;
    border: none;
    color: #d1d5db;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    gap: 0.25rem;
    transition: color 0.15s;
}

.btn-remove-item:hover { color: #ef4444; }

/* Cart summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 0.75rem;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.cart-summary-total span:last-child { color: var(--gold); }

/* ============================================================
   BUTTONS (General)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.btn-dark:hover {
    background: #3d3d3d;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: var(--font-body);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.form-input::placeholder { color: #c4b9ab; }

.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 0.35rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.checkout-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    max-height: 260px;
    overflow-y: auto;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
}

.city-option {
    display: block;
    position: relative;
}

.city-option input[type="radio"] { display: none; }

.city-label {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    cursor: pointer;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.city-option input:checked + .city-label {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
    color: var(--gold);
    font-weight: 600;
}

.city-label:hover { border-color: var(--gold); }

/* Order summary mini */
.order-summary-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-text);
    margin-bottom: 0.625rem;
}

/* ============================================================
   GALLERY (Masonry-like)
   ============================================================ */
.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--beige);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s;
}

.gallery-item:hover img { transform: scale(1.04); opacity: 0.92; }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,44,44,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(44,44,44,0.3);
}

.gallery-item-overlay svg {
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* ============================================================
   ACCOUNT PAGES
   ============================================================ */
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

.account-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.account-user-info {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.account-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 auto 0.75rem;
    border: 2px solid var(--border);
}

.account-user-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border-radius: 7px;
    font-size: 0.875rem;
    color: var(--gray-text);
    transition: background 0.15s, color 0.15s;
    margin-bottom: 0.2rem;
}

.account-nav-link:hover,
.account-nav-link.active {
    background: rgba(201,169,110,0.1);
    color: var(--gold);
}

.account-content {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem;
}

.account-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

/* Order status badges */
.order-status {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-pending   { background: #fef9c3; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1d4ed8; }
.status-shipped   { background: #e0e7ff; color: #4338ca; }
.status-delivered { background: #dcfce7; color: #15803d; }
.status-cancelled { background: #fee2e2; color: #dc2626; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.875rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--gray-text);
    margin-top: 0.2rem;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d3428 100%);
    border-radius: var(--radius);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201,169,110,0.08);
    pointer-events: none;
}

.promo-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 0.3rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 0.875rem;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.promo-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.875rem;
}

.about-content-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.about-content-text {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--gray-text);
    margin-top: 0.25rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201,169,110,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-weight: 500;
    color: var(--charcoal);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.footer-logo span { color: var(--gold); }

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    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.7);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    animation-play-state: paused;
    color: var(--white);
}

@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-item a { color: var(--gray-text); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-separator { color: var(--border); }
.breadcrumb-item.current { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    list-style: none;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.75rem;
    border-radius: 7px;
    font-size: 0.875rem;
    border: 1.5px solid var(--border);
    color: var(--gray-text);
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active span,
.pagination [aria-current="page"] span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    font-weight: 700;
}

.pagination [aria-disabled="true"] span {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.empty-state-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--gray-text);
    font-size: 0.925rem;
    margin-bottom: 2rem;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--beige), var(--cream));
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.page-hero-subtitle {
    color: var(--gray-text);
    font-size: 1rem;
}

/* ============================================================
   AOS ANIMATION OVERRIDES
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   ORDER CONFIRMATION PAGE
   ============================================================ */
.order-confirm-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.order-confirm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.order-confirm-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201,169,110,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    letter-spacing: 0.08em;
    border: 1px solid rgba(201,169,110,0.25);
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2.5rem;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--gray-text);
    font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid var(--border);
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.search-query-highlight {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
}

.search-query-highlight span { color: var(--gold); }

.search-count {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin { animation: spin 1s linear infinite; }
.animate-fadeIn { animation: fadeIn 0.3s ease; }

.text-gold { color: var(--gold); }
.bg-gold { background: var(--gold); }
.border-gold { border-color: var(--gold); }

.skeleton {
    background: linear-gradient(90deg, var(--beige) 25%, var(--cream) 50%, var(--beige) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Gold divider line */
.gold-line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem 0;
}

.gold-line-center { margin: 1rem auto; }

/* ============================================================
   RTL SUPPORT (Arabic)
   ============================================================ */
[dir="rtl"] .main-nav { direction: rtl; }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .mega-menu { left: auto; right: 50%; transform: translateX(50%); }
[dir="rtl"] .hero-content { align-items: flex-end; padding: 0 8%; }
[dir="rtl"] .hero-btn-outline { margin-left: 0; margin-right: 1rem; }
[dir="rtl"] .product-card-actions { flex-direction: row-reverse; }
[dir="rtl"] .cart-item { direction: rtl; }
[dir="rtl"] .account-layout { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-description { max-width: 280px; }
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
[dir="rtl"] .flash-container { left: 1.5rem; right: auto; }
[dir="rtl"] .whatsapp-float { left: 2rem; right: auto; }
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .slider-arrow-prev { left: auto; right: 1.5rem; }
[dir="rtl"] .slider-arrow-next { right: auto; left: 1.5rem; }
[dir="rtl"] .about-teaser { direction: rtl; }
[dir="rtl"] .about-image-accent { right: auto; left: -2rem; }
[dir="rtl"] .checkout-layout { direction: rtl; }
[dir="rtl"] .product-detail-grid { direction: rtl; }
[dir="rtl"] .product-gallery { direction: ltr; }
[dir="rtl"] .mobile-drawer-panel { margin-right: auto; }

/* RTL font adjustment for Arabic */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .section-title {
    font-family: var(--font-body);
    font-weight: 700;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-teaser { gap: 3rem; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .order-summary-card { position: static; }
    .product-detail-grid { gap: 2.5rem; }
    .main-nav { display: none; }
    .mobile-nav-btn { display: flex; }
    .gallery-grid { columns: 2; }
    .promo-banner { grid-template-columns: 1fr; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hero-slider { height: 75vh; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-teaser { grid-template-columns: 1fr; }
    .about-image-accent { display: none; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { columns: 2; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { padding: 0 5%; }
    .cart-item { grid-template-columns: 64px 1fr auto; }
    .cart-item-image { width: 64px; height: 64px; }
    .form-card { padding: 1.25rem; }
    .checkout-cities-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
    .whatsapp-float { bottom: 1.5rem; right: 1.5rem; }
    .header-inner { padding: 0 1rem; }
    .container-site { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-card-body { padding: 0.75rem; }
    .product-card-name { font-size: 0.9rem; }
    .product-card-price { font-size: 1rem; }
    .hero-slider { height: 65vh; }
    .slider-arrow { width: 36px; height: 36px; }
    .gallery-grid { columns: 1; }
    .auth-card { padding: 1.5rem; }
    .order-confirm-card { padding: 2rem 1.25rem; }
}

@media print {
    .site-header, .site-footer, .whatsapp-float, .flash-container, .mobile-bottom-nav { display: none !important; }
}

/* ============================================================
   MISSING / ALIAS CLASSES  — added to fix invisible text
   ============================================================ */

/* ---- Section header wrapper ---- */
.section-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

/* ---- Small gold label above section titles ---- */
.section-sub {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.625rem;
}

/* ---- Hero overlay (alias for hero-slide-overlay) ---- */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.58) 0%, rgba(44,44,44,0.22) 60%, transparent 100%);
    pointer-events: none;
}

/* Hero background image on the slide div */
.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---- Fallback hero ---- */
.hero-fallback {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d3428 100%);
}

.hero-sub-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    background: rgba(201,169,110,0.15);
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    border: 1px solid rgba(201,169,110,0.3);
    display: inline-block;
}

/* ---- Hero arrows (aliases for slider-arrow) ---- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(201,169,110,0.6); }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* ---- Hero dots (aliases for slider-dots / slider-dot) ---- */
.hero-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: background 0.2s, width 0.3s;
}
.hero-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

/* ---- Product card image (home grid uses different class names) ---- */
.product-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--cream);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img {
    transform: scale(1.05);
}
.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    color: var(--border);
}
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,44,44,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.product-card:hover .product-card-overlay {
    background: rgba(44,44,44,0.35);
}
.product-card-view-btn {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}
.product-card:hover .product-card-view-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Product card footer (price + cart button row) ---- */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.625rem;
    gap: 0.5rem;
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

/* Small icon cart button (inside product-card-footer) */
.product-card-footer .btn-add-cart {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;  /* hide any text */
    flex-shrink: 0;
}

/* ---- Promo Banner — Mommies section ---- */
.promo-banner-mommies {
    /* just a section wrapper, no extra background needed */
}
.promo-banner-inner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2016 60%, #1f1408 100%);
    overflow: hidden;
}
.promo-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* ---- Special Offer Banner ---- */
.offer-banner {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 60%, #fff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ---- Gallery Preview Grid (homepage teaser) ---- */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.gallery-preview-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--beige);
    cursor: pointer;
}
.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-preview-item:hover img {
    transform: scale(1.06);
}
.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,44,44,0);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.75rem;
    transition: background 0.3s;
}
.gallery-preview-item:hover .gallery-preview-overlay {
    background: rgba(44,44,44,0.45);
}
.gallery-preview-overlay span {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s;
    text-align: center;
}
.gallery-preview-item:hover .gallery-preview-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* ---- About Teaser Decorative Images ---- */
.about-teaser-img-wrap {
    position: relative;
    height: 480px;
}
.about-teaser-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 2.5rem;
    bottom: 2.5rem;
    border-radius: var(--radius);
    /* Image setup */
    background-color: var(--beige); 
    background-image: url('/assets/images/about-teaser-img-bg.jpeg'); /* Adjust extension as needed */
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.about-teaser-img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 65%;
    border-radius: var(--radius);
    /* Image setup */
    background-color: var(--charcoal);
    background-image: url('/assets/images/about-teaser-img-front.jpeg');
    background-size: cover;
    background-position: center;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

/* ---- Tailwind-like color utilities used in blade templates ---- */
.text-text-muted { color: #8C7B6B; }
.text-charcoal   { color: var(--charcoal); }
.font-heading    { font-family: var(--font-heading); }
.font-lato       { font-family: var(--font-body); }
.bg-cream        { background-color: var(--cream); }
.bg-beige        { background-color: var(--beige); }

/* ---- Mobile: collapse gallery preview to 2 columns ---- */
@media (max-width: 640px) {
    .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .about-teaser-img-wrap { height: 280px; }
}

/* ============================================================
   PRODUCT DETAIL PAGE — missing / fixed classes
   ============================================================ */

/* Main image wrapper: holds image + zoom hint */
.product-main-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    cursor: zoom-in;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.product-main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-main-image-wrap:hover img {
    transform: scale(1.04);
}

/* Zoom hint icon — appears on hover */
.product-zoom-hint {
    position: absolute;
    bottom: 0.875rem;
    right: 0.875rem;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-main-image-wrap:hover .product-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

/* COD / Cash-on-delivery badge */
.cod-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(201,169,110,0.09);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 6px;
    color: var(--gold-dark);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Product action row: [qty] [Add to Cart] [♡] */
.product-action-row {
    display: flex;
    align-items: stretch;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.product-action-row .btn-add-cart {
    flex: 1;
    width: auto;
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
}

/* Qty control used in product detail page */
.product-qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
}

.product-qty-control .qty-btn {
    width: 36px;
    height: 100%;
    min-height: 44px;
    border-radius: 0;
    border: none;
    border-right: 1.5px solid var(--border);
    font-size: 1.1rem;
    background: transparent;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.product-qty-control .qty-btn:last-child {
    border-right: none;
    border-left: 1.5px solid var(--border);
}

.product-qty-control .qty-btn:hover {
    background: rgba(201,169,110,0.1);
    color: var(--gold);
}

.product-qty-control .qty-input {
    width: 44px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 0.5rem 0;
    background: transparent;
    -moz-appearance: textfield;
}

.product-qty-control .qty-input::-webkit-inner-spin-button,
.product-qty-control .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Wishlist icon-only button (next to add-to-cart) */
.btn-wishlist-icon {
    flex-shrink: 0;
    width: 48px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-decoration: none;
}

.btn-wishlist-icon:hover {
    border-color: #fca5a5;
    color: #dc2626;
    background: #fef2f2;
}

.btn-wishlist-icon.active {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* WhatsApp order button alias */
.btn-whatsapp-order {
    width: 100%;
    padding: 0.875rem 2rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-whatsapp-order:hover { background: #128C7E; color: #fff; }

/* Product detail info section */
.product-detail-info { padding-top: 0.25rem; }

@media (max-width: 768px) {
    .product-action-row { flex-wrap: wrap; }
    .product-action-row .btn-add-cart { flex-basis: 0; min-width: 0; }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR
   Visible only on screens < 1024px (below lg Tailwind breakpoint)
   ============================================================ */

/* Reserve space so page content is never hidden behind the bar */
@media (max-width: 1023px) {
    body {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    main {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
    /* Push WhatsApp float above the bottom nav */
    .whatsapp-float {
        bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 0.75rem) !important;
    }
}

/* The bar itself */
.mobile-bottom-nav {
    display: none; /* hidden on desktop */
}

@media (max-width: 1023px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(64px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: rgba(250,247,242,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -4px 24px rgba(44,44,44,0.08);
        z-index: 1600;
        align-items: stretch;
    }
}

/* Each tab item */
.mobile-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--gray-text);
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    transition: color 0.18s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0 0 2px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    transition: transform 0.18s ease;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item:focus,
.mobile-bottom-nav-item.active {
    color: var(--gold);
    outline: none;
}

.mobile-bottom-nav-item.active svg {
    transform: translateY(-2px);
}

/* Active indicator dot above icon */
.mobile-bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 3px 3px;
}

/* Cart badge in bottom nav */
.mobile-bottom-nav-badge {
    position: absolute;
    top: 6px;
    left: calc(50% + 6px);
    min-width: 16px;
    height: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    pointer-events: none;
    line-height: 1;
}

/* Ripple tap effect */
.mobile-bottom-nav-item:active svg {
    transform: scale(0.88);
}
.mobile-bottom-nav-item.active:active svg {
    transform: translateY(-2px) scale(0.88);
}
