/* ============================================================
   SMART COLLECTIONS — Main Stylesheet
   Design: Luxury Ethnic / Deep Maroon + Gold + Cream
   Fonts: Playfair Display + Josefin Sans
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --pri:       #7b0d1e;
    --pri-d:     #5a0917;
    --pri-l:     #a01428;
    --gold:      #c9943c;
    --gold-l:    #e0b060;
    --cream:     #f8ecd7;
    --cream-d:   #ecd5a8;
    --cream-l:   #fdf8f0;
    --bg:        #f8ecd7;
    --dark:      #2a0d14;
    --text:      #3d1a22;
    --muted:     #9a7060;
    --border:    #ddc89a;
    --green:     #166534;
    --red:       #c0392b;
    --white:     #fff;

    --topbar-h:  36px;
    --header-h:  72px;
    --catnav-h:  46px;

    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 4px rgba(42,13,20,.08);
    --shadow:    0 4px 16px rgba(42,13,20,.12);
    --shadow-lg: 0 8px 32px rgba(42,13,20,.18);

    --trans: .2s ease;
    --trans-slow: .4s ease;
}

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

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

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: calc(var(--topbar-h) + var(--header-h) + var(--catnav-h));
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.serif { font-family: 'Playfair Display', serif; }

/* ── Container ── */
.container { max-width: 90%; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark);
    height: var(--topbar-h);
    display: flex; align-items: center;
}
.topbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar-msg, .topbar-right {
    font-size: 12px; color: var(--cream-d);
    display: flex; align-items: center; gap: 8px;
}
.topbar-msg i { color: var(--gold); }
.topbar-right a { color: var(--cream-d); transition: color var(--trans); }
.topbar-right a:hover { color: var(--gold); }
.topbar-sep { opacity: .4; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: var(--topbar-h); left: 0; right: 0;
    z-index: 999;
    background: var(--white);
    height: var(--header-h);
    border-bottom: 2px solid var(--border);
    transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
    max-width: 90%; margin: 0 auto; padding: 0 20px;
    height: 100%;
    display: flex; align-items: center; gap: 20px;
}
/* Push header-actions to far right */
.header-actions { margin-left: auto; }

/* Logo */
.site-logo {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--pri), var(--pri-d));
    color: var(--cream);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.logo-mark.sm { width: 34px; height: 34px; font-size: 13px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--dark);
}
.logo-tagline {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
}

/* Search */
.header-search {
    flex: 1; max-width: 500px;
    display: flex; align-items: center;
    background: var(--cream-l);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden; position: relative;
    transition: border-color var(--trans), box-shadow var(--trans);
}
.header-search:focus-within {
    border-color: var(--pri);
    box-shadow: 0 0 0 3px rgba(123,13,30,.1);
}
.header-search input {
    flex: 1; padding: 10px 16px;
    background: transparent; border: none; outline: none;
    font-size: 14px; color: var(--text);
}
.header-search input::placeholder { color: var(--muted); }
.header-search button {
    width: 44px; height: 44px;
    background: var(--pri); color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
    transition: background var(--trans);
}
.header-search button:hover { background: var(--pri-d); }

/* Search Suggestions — Rich UI */
.search-suggestions {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    z-index: 500; display: none; overflow: hidden;
    max-height: 480px; overflow-y: auto;
}
.search-suggestions.active { display: block; }
.sugg-section-head {
    padding: 7px 14px 4px;
    font-size: 9.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--muted);
    background: var(--cream-l); border-top: 1px solid var(--border);
}
.sugg-item {
    padding: 8px 14px; cursor: pointer;
    display: flex; align-items: center; gap: 10px;
    transition: background var(--trans);
    border-bottom: 1px solid rgba(0,0,0,.04);
    text-decoration: none; color: inherit;
}
.sugg-item:hover { background: var(--cream-l); color: inherit; }
.sugg-cat i { color: var(--pri); font-size: 13px; }
.sugg-cat-name { flex: 1; font-weight: 600; color: var(--dark); font-size: 13px; }
.sugg-cat-count { font-size: 11px; color: var(--muted); }
.sugg-prod { align-items: flex-start; gap: 10px; }
.sugg-prod-img {
    width: 44px; height: 52px; object-fit: cover;
    border-radius: 6px; border: 1px solid var(--border); flex-shrink: 0;
}
.sugg-no-img {
    display: flex; align-items: center; justify-content: center;
    background: var(--cream-l); color: var(--muted); font-size: 18px;
    width: 44px; height: 52px; border-radius: 6px; flex-shrink: 0;
}
.sugg-prod-info { flex: 1; min-width: 0; }
.sugg-prod-name { font-size: 13px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sugg-prod-brand { font-size: 11px; color: var(--muted); }
.sugg-prod-price { font-size: 12px; font-weight: 700; color: var(--pri); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.sugg-old { font-size: 11px; color: var(--muted); text-decoration: line-through; font-weight: 400; }
.sugg-disc { font-size: 10px; background: #dcfce7; color: #166534; padding: 1px 5px; border-radius: 3px; font-weight: 700; }
.sugg-sizes { display: flex; gap: 3px; margin-top: 3px; flex-wrap: wrap; }
.sugg-sizes span { font-size: 9px; padding: 1px 5px; border: 1px solid var(--border); border-radius: 3px; color: var(--text); }
.sugg-footer {
    padding: 10px 14px; font-size: 13px; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    color: var(--pri); font-weight: 600;
    border-top: 1px solid var(--border); background: var(--cream-l);
    transition: background var(--trans);
    text-decoration: none;
}
.sugg-footer:hover { background: var(--cream-d); color: var(--pri); }
.sugg-loading, .sugg-empty {
    padding: 16px; text-align: center; color: var(--muted);
    font-size: 13px; display: flex; align-items: center;
    justify-content: center; gap: 8px;
}


/* Header Actions */
.header-actions {
    display: flex; align-items: center; gap: 4px;
    flex-shrink: 0;
}
.action-btn {
    position: relative;
    width: 44px; height: 44px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text); font-size: 18px;
    transition: color var(--trans), background var(--trans);
    gap: 1px;
}
.action-btn:hover { color: var(--pri); background: var(--cream-l); }
.action-label {
    font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px;
    font-weight: 600; color: var(--muted); line-height: 1;
}
.action-badge {
    position: absolute; top: 4px; right: 4px;
    min-width: 18px; height: 18px; padding: 0 4px;
    background: var(--pri); color: var(--white);
    border-radius: 50px; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    line-height: 1; transition: transform var(--trans);
}
.action-badge.hidden { display: none; }
.action-badge.bump { transform: scale(1.4); }

/* Account Dropdown */
.account-item { position: relative; }
.account-toggle-btn {
    position: relative;
    width: 44px; height: 44px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text); font-size: 18px;
    transition: color var(--trans), background var(--trans);
    gap: 1px; border: none; background: none; cursor: pointer;
}
.account-toggle-btn:hover { color: var(--pri); background: var(--cream-l); }
.account-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 180px; z-index: 300;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--trans), transform var(--trans);
    overflow: hidden;
}
.account-item:hover .account-dropdown,
.account-item:focus-within .account-dropdown,
.account-dropdown.sc-open {
    opacity: 1; pointer-events: all; transform: translateY(0);
}
.account-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px; font-size: 13px;
    transition: background var(--trans);
}
.account-dropdown a:hover { background: var(--cream-l); color: var(--pri); }
.account-dropdown a i { width: 16px; text-align: center; color: var(--muted); }
.dropdown-sep { height: 1px; background: var(--border); }
.logout-link { color: var(--red) !important; }

/* Menu Toggle (mobile) */
.menu-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--trans);
}
.menu-toggle:hover { background: var(--cream-l); }
.menu-toggle span {
    width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}

/* ============================================================
   CATEGORY NAV
   ============================================================ */
.cat-nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h)); left: 0; right: 0;
    z-index: 998;
    background: var(--pri);
    height: var(--catnav-h);
    border-bottom: 2px solid var(--pri-d);
    overflow: hidden;
}
.cat-nav-inner {
    max-width: 90%; margin: 0 auto; padding: 0 20px;
    height: 100%; overflow-x: auto;
    scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-list {
    display: flex; align-items: center;
    height: 100%; gap: 2px; white-space: nowrap;
}
.cat-nav-list a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; height: 34px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
    color: rgba(255,255,255,.85);
    border-radius: 50px;
    transition: background var(--trans), color var(--trans);
}
.cat-nav-list a:hover,
.cat-nav-list a.active {
    background: rgba(255,255,255,.18);
    color: var(--cream);
}
.cat-emoji { font-size: 15px; }
.cat-sale-link { color: var(--gold-l) !important; font-weight: 600 !important; }
.cat-sale-link:hover { background: rgba(201,148,60,.2) !important; }

/* ============================================================
   MOBILE SIDE MENU
   ============================================================ */
.side-menu-overlay {
    display: none; position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
    opacity: 0; transition: opacity var(--trans-slow);
}
.side-menu-overlay.active { display: block; opacity: 1; }

.side-menu {
    position: fixed; top: 0; left: -300px; bottom: 0;
    width: 280px; z-index: 1101;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    transition: left var(--trans-slow);
    display: flex; flex-direction: column;
}
.side-menu.active { left: 0; }

.side-menu-header {
    display: flex; align-items: center; gap: 10px;
    padding: 16px;
    background: var(--pri); color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 600;
}
.side-menu-header .logo-mark { background: rgba(255,255,255,.2); }
.side-close {
    margin-left: auto; color: var(--cream); font-size: 18px;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--trans);
}
.side-close:hover { background: rgba(255,255,255,.15); }

.side-user {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: var(--cream-l);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.side-user i { font-size: 28px; color: var(--pri); }
.side-user strong { display: block; color: var(--dark); font-size: 14px; }
.side-user a { color: var(--pri); font-size: 12px; }

.side-auth-btns { padding: 12px 16px; }
.btn-primary-sm {
    display: block; text-align: center;
    padding: 10px; border-radius: var(--radius-sm);
    background: var(--pri); color: var(--cream);
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    transition: background var(--trans);
}
.btn-primary-sm:hover { background: var(--pri-d); }

.side-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; font-size: 14px;
    border-bottom: 1px solid rgba(221,200,154,.3);
    transition: background var(--trans), color var(--trans);
}
.side-nav a:hover { background: var(--cream-l); color: var(--pri); }
.side-nav a i, .side-nav a span { width: 18px; text-align: center; }
.side-sep { height: 6px; background: var(--cream-d); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
    pointer-events: none;
}
.toast {
    display: flex; align-items: center; gap: 12px;
    background: var(--dark); color: var(--cream);
    padding: 14px 18px; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 14px; min-width: 240px; max-width: 340px;
    pointer-events: all;
    animation: toastIn .3s ease;
    border-left: 4px solid var(--gold);
}
.toast.success { border-color: #22c55e; }
.toast.error   { border-color: var(--red); }
.toast i { font-size: 16px; flex-shrink: 0; }
.toast.success i { color: #22c55e; }
.toast.error i   { color: var(--red); }
.toast.removing  { animation: toastOut .3s ease forwards; }

@keyframes toastIn  { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { to   { transform: translateX(120%); opacity: 0; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 36px;
}
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.section-tag::before, .section-tag::after {
    content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-header h2 { color: var(--dark); }
.section-header p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans), box-shadow var(--trans);
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4; background: var(--cream-l);
}
.card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-badges {
    position: absolute; top: 10px; left: 10px;
    display: flex; flex-direction: column; gap: 5px; z-index: 1;
}
.card-badge {
    display: inline-block; padding: 3px 9px;
    border-radius: 50px; font-size: 10px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-new     { background: var(--green); color: #fff; }
.badge-sale    { background: var(--red); color: #fff; }
.badge-hot     { background: var(--gold); color: var(--dark); }
.badge-trending{ background: var(--pri); color: var(--cream); }

.card-wishlist {
    position: absolute; top: 10px; right: 10px; z-index: 1;
    width: 34px; height: 34px;
    background: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--muted);
    box-shadow: var(--shadow-sm);
    transition: color var(--trans), transform var(--trans);
    cursor: pointer;
}
.card-wishlist:hover, .card-wishlist.active { color: var(--red); transform: scale(1.1); }

.card-quick-view {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(42,13,20,.85); color: var(--cream);
    text-align: center; padding: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform var(--trans);
    cursor: pointer;
}
.product-card:hover .card-quick-view { transform: translateY(0); }

.card-body { padding: 14px; }
.card-brand { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 4px; }
.card-name {
    font-size: 14px; font-weight: 600; color: var(--dark);
    margin-bottom: 8px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-rating {
    display: flex; align-items: center; gap: 5px; margin-bottom: 8px;
}
.stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--muted); }
.card-price {
    display: flex; align-items: center; gap: 8px;
}
.price-now { font-size: 17px; font-weight: 700; color: var(--pri); }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-disc {
    font-size: 11px; color: var(--green);
    background: rgba(22,101,52,.1); padding: 2px 6px;
    border-radius: 50px; font-weight: 600;
}

.card-colors {
    display: flex; gap: 5px; margin-top: 10px;
}
.color-dot {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--border);
    cursor: pointer; transition: transform var(--trans);
    flex-shrink: 0;
}
.color-dot:hover, .color-dot.active { transform: scale(1.25); box-shadow: 0 0 0 2px var(--pri); }
.color-more { font-size: 10px; color: var(--muted); align-self: center; }

.card-add-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; margin-top: 12px; padding: 9px;
    background: var(--pri); color: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    transition: background var(--trans), transform var(--trans);
}
.card-add-btn:hover { background: var(--pri-d); transform: translateY(-1px); }
.card-add-btn:active { transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; cursor: pointer;
    transition: all var(--trans); border: 2px solid transparent;
}
.btn-primary {
    background: var(--pri); color: var(--cream); border-color: var(--pri);
}
.btn-primary:hover { background: var(--pri-d); border-color: var(--pri-d); }
.btn-outline {
    background: transparent; color: var(--pri); border-color: var(--pri);
}
.btn-outline:hover { background: var(--pri); color: var(--cream); }
.btn-gold {
    background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }
.btn-lg { padding: 15px 36px; font-size: 14px; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; pointer-events: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block; margin-bottom: 6px;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--muted);
}
.form-control {
    width: 100%; padding: 11px 14px;
    background: var(--cream-l); border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
    transition: border-color var(--trans), box-shadow var(--trans);
    outline: none;
}
.form-control:focus {
    border-color: var(--pri);
    box-shadow: 0 0 0 3px rgba(123,13,30,.1);
    background: var(--white);
}
.form-error { color: var(--red); font-size: 12px; margin-top: 4px; }
.form-hint  { color: var(--muted); font-size: 12px; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--cream-d); margin-top: 60px; }

.footer-top { padding: 50px 0 40px; }
.footer-grid {
    max-width: 90%; margin: 0 auto; padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); font-family: 'Josefin Sans', sans-serif;
    font-weight: 600; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
    font-size: 14px; color: rgba(248,236,215,.7);
    transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--cream); }

/* Footer Brand */
.footer-logo {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo .logo-mark { background: rgba(201,148,60,.2); border: 1px solid rgba(201,148,60,.3); }
.footer-logo strong { display: block; font-family: 'Playfair Display', serif; color: var(--cream); }
.footer-logo span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(248,236,215,.65); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--cream-d);
    transition: background var(--trans), color var(--trans);
}
.footer-socials a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Contact */
.contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
}
.contact-item i {
    width: 30px; height: 30px;
    background: rgba(201,148,60,.15); color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.contact-item strong { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.contact-item a, .contact-item span { font-size: 13px; color: rgba(248,236,215,.7); }
.contact-item a:hover { color: var(--cream); }

/* Newsletter */
.footer-newsletter { margin-top: 16px; }
.footer-newsletter p { font-size: 13px; color: rgba(248,236,215,.65); margin-bottom: 10px; }
.nl-form {
    display: flex; overflow: hidden;
    border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.15);
}
.nl-form input {
    flex: 1; padding: 10px 12px;
    background: rgba(255,255,255,.06); border: none; outline: none;
    color: var(--cream); font-size: 13px;
}
.nl-form input::placeholder { color: rgba(248,236,215,.4); }
.nl-form button {
    padding: 10px 14px; background: var(--gold); color: var(--dark);
    font-size: 14px; transition: background var(--trans);
}
.nl-form button:hover { background: var(--gold-l); }
.nl-msg { font-size: 12px; color: #22c55e; margin-top: 8px; display: none; }
.nl-msg.visible { display: block; }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
}
.footer-bottom-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(248,236,215,.5); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(248,236,215,.5); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-pay { display: flex; align-items: center; gap: 10px; }
.footer-pay img { opacity: .7; filter: brightness(0) invert(1); transition: opacity var(--trans); }
.footer-pay img:hover { opacity: 1; }

/* ============================================================
   HERO SLIDER (Homepage)
   ============================================================ */
.hero-slider {
    position: relative; overflow: hidden;
    height: clamp(380px, 56vw, 620px);
    background: var(--dark);
}
.slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; transition: opacity .7s ease;
    z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1.04); }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(42,13,20,.75) 0%, rgba(42,13,20,.3) 60%, transparent 100%);
}
.slide-content {
    position: relative; z-index: 1; padding: 0 80px;
    max-width: 580px;
}
.slide-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.slide-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.slide-content h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--cream); margin-bottom: 14px; line-height: 1.15;
}
.slide-content p { color: rgba(248,236,215,.8); font-size: 15px; margin-bottom: 28px; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider Controls */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2; width: 46px; height: 46px;
    background: rgba(255,255,255,.15); color: var(--cream);
    border-radius: 50%; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    transition: background var(--trans); cursor: pointer;
}
.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 2;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.4); cursor: pointer;
    transition: all var(--trans);
}
.slider-dot.active { width: 24px; border-radius: 4px; background: var(--gold); }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
.section { padding: 22px 0; }
.section-alt { background: var(--cream-d); }
.section-dark { background: var(--dark); }

/* Category Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}
.cat-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden; text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans), box-shadow var(--trans);
    cursor: pointer; text-decoration: none;
    display: block;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card-img {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--pri) 0%, var(--pri-l) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
}
.cat-card-body { padding: 10px 8px; background-color: #880012; }
.cat-card-name { font-size: 12px; font-weight: 600; color: #ffffff; }
.cat-card-count { font-size: 10px; color: #ffffff; }

/* Featured Collections */
.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.feat-main { grid-row: span 2; }
.feat-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--dark);
    cursor: pointer;
}
.feat-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.feat-main img { height: 460px; }
.feat-card:not(.feat-main) img { height: 215px; }
.feat-card:hover img { transform: scale(1.05); }
.feat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(42,13,20,.85), transparent);
    padding: 20px;
}
.feat-tag {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 5px;
}
.feat-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--cream); margin-bottom: 10px; }
.feat-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--cream); padding: 7px 14px;
    background: rgba(255,255,255,.15); border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background var(--trans);
}
.feat-link:hover { background: var(--gold); color: var(--dark); }

/* Filter Tabs */
.filter-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 32px;
}
.filter-tab {
    padding: 8px 20px; border-radius: 50px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    border: 1.5px solid var(--border);
    color: var(--muted); background: var(--white);
    cursor: pointer; transition: all var(--trans);
}
.filter-tab:hover { border-color: var(--pri); color: var(--pri); }
.filter-tab.active { background: var(--pri); color: var(--cream); border-color: var(--pri); }

/* Banner */
.banner-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.banner-card {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    min-height: 280px;
}
.banner-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.banner-card:hover img { transform: scale(1.04); }
.banner-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(42,13,20,.8), transparent);
}
.banner-content h3 { font-family: 'Playfair Display', serif; color: var(--cream); margin-bottom: 8px; }
.banner-content p { color: rgba(248,236,215,.7); font-size: 13px; margin-bottom: 14px; }

/* Stats Bar */
.stats-bar {
    background: var(--pri);
    padding: 24px 0;
}
.stats-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
    padding: 0 20px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--cream); line-height: 1.1;
}
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(248,236,215,.65); margin-top: 4px; }

/* Testimonials */
.testi-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.testi-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
}
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; }
.testi-text {
    font-size: 14px; color: var(--text); line-height: 1.7;
    font-style: italic; margin-bottom: 16px;
}
.testi-author {
    display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pri), var(--pri-l));
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
    flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.testi-loc  { font-size: 11px; color: var(--muted); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.breadcrumb-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px;
}
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--pri); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--pri) 0%, var(--pri-d) 100%);
    padding: 40px 0;
    position: relative; overflow: hidden;
}
.page-header::after {
    content: 'SC';
    position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 130px; font-weight: 700; color: rgba(255,255,255,.05);
    line-height: 1; pointer-events: none;
}
.page-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.page-header h1 { color: var(--cream); margin-bottom: 6px; }
.page-header p { color: rgba(248,236,215,.7); font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-contact { grid-column: span 3; }
    .featured-grid { grid-template-columns: 1fr; }
    .feat-main img { height: 320px; }
    .feat-card:not(.feat-main) img { height: 180px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
    .stat-item { border-right: none; }
}

/* Old mobile queries merged into new comprehensive block below */

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.text-pri     { color: var(--pri); }
.text-gold    { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

.loading-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--pri);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
    text-align: center; padding: 60px 20px;
    color: var(--muted);
}
.empty-state i { font-size: 48px; opacity: .3; margin-bottom: 16px; display: block; }
.empty-state h3 { color: var(--dark); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg, var(--cream-d) 25%, var(--cream-l) 50%, var(--cream-d) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ============================================================
   BOTTOM NAV BAR — Mobile App Style
   ============================================================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1100;
    background: #fff;
    border-top: 1.5px solid rgba(123,13,30,.12);
    box-shadow: 0 -8px 32px rgba(0,0,0,.12);
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 4px;
    width: stretch;
}
.bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #999;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: color .15s;
    position: relative;
    padding: 6px 0 4px;
    -webkit-tap-highlight-color: transparent;
}
.bn-item i { font-size: 19px; line-height: 1; }
.bn-item span { line-height: 1; }
.bn-item.active { color: var(--pri); }
.bn-item.active i { transform: scale(1.08); }

/* Badge */
.bn-badge {
    position: absolute;
    top: 4px;
    left: calc(50% + 4px);
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    background: var(--pri);
    color: #fff;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    pointer-events: none;
    line-height: 1;
}

/* Cart - elevated center pill */
.bn-item.bn-cart .bn-icon-wrap {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--pri) 0%, #a01020 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(123,13,30,.4);
    margin-top: -16px;
    margin-bottom: 0;
    transition: transform .2s, box-shadow .2s;
    flex-shrink: 0;
}
.bn-item.bn-cart:active .bn-icon-wrap {
    transform: scale(0.94);
    box-shadow: 0 2px 8px rgba(123,13,30,.35);
}
.bn-item.bn-cart .bn-badge {
    top: -4px;
    left: calc(50% + 8px);
}
.bn-item.bn-cart span { margin-top: 2px; color: var(--pri); font-weight: 700; }

/* ============================================================
   MOBILE — Complete Overhaul
   ============================================================ */
@media (max-width: 768px) {

    /* Show bottom nav */
    .bottom-nav { display: flex; }
    body { padding-bottom: 60px !important; }

    /* Hide topbar on mobile */
    .topbar { display: none !important; }
    :root {
        --topbar-h: 0px;
        --header-h: 56px;
        --catnav-h: 44px;
    }

    /* ── Header ── */
    .site-header { height: 56px; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
    .header-inner { padding: 0 10px; gap: 8px; max-width: 100%; }
    .logo-mark { width: 34px; height: 34px; font-size: 12px; flex-shrink: 0; }
    .logo-text { display: none; }

    /* Search bar — compact but usable */
    .header-search {
        flex: 1;
        border-radius: 22px;
        min-width: 0;
    }
    .header-search input {
        font-size: 13px;
        padding: 8px 14px;
    }
    .header-search button { width: 38px; height: 38px; }
    .action-label { display: none !important; }

    /* Only show cart in header on mobile (rest in bottom nav) */
    .header-actions a[href*="wishlist"] { display: none !important; }
    .header-actions { gap: 2px; margin-left: auto; }

    /* ── Category Nav ── */
    .cat-nav { top: 56px; }
    .cat-nav-inner { padding: 0 10px; }
    .cat-nav-list { gap: 4px; }
    .cat-nav-list a {
        padding: 5px 12px;
        font-size: 12px;
        height: 32px;
        border-radius: 16px;
        white-space: nowrap;
    }

    /* ── Page body offset ── */
    body > main,
    #mainContent {
        padding-top: 0;
    }

    /* ── Breadcrumb ── */
    .breadcrumb { padding: 10px 14px; font-size: 11.5px; }
    .breadcrumb-inner { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* ── Hero Slider ── */
    .hero-slider { height: 220px !important; }
    .slide-content { padding: 0 20px !important; text-align: center; }
    .slide-content h2 { font-size: 1.35rem !important; margin-bottom: 10px; }
    .slide-content p { display: none !important; }
    .slide-btn { padding: 8px 20px !important; font-size: 12px !important; }
    .slider-btn { width: 28px !important; height: 28px !important; font-size: 12px !important; }
    .slide-dots { bottom: 10px; }

    /* ── Section Headers ── */
    .section-header { margin-bottom: 16px; }
    .section-tag { font-size: 10px; }
    .section-header h2 { font-size: 1.4rem; }

    /* ── Product Grid — Beautiful 2-col ── */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* ── Product Card — Mobile Optimized ── */
    .product-card {
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,.07);
    }
    .card-img-wrap { aspect-ratio: 3/4; }
    .card-body { padding: 8px 8px 10px; }
    .card-brand { font-size: 9px; margin-bottom: 2px; }
    .card-name {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
    }
    .card-rating { margin-bottom: 4px; }
    .stars { font-size: 10px; }
    .rating-count { font-size: 10px; }
    .card-price { gap: 5px; }
    .price-now { font-size: 14px; font-weight: 700; }
    .price-old { font-size: 11px; }
    .price-disc { font-size: 10px; padding: 1px 5px; }
    .card-colors { gap: 4px; margin-top: 6px; }
    .color-dot { width: 14px; height: 14px; }
    .card-sizes { gap: 3px; margin-top: 5px; }
    .card-size-pill {
        font-size: 9px;
        padding: 2px 5px;
        border-radius: 3px;
    }
    .card-add-btn {
        margin-top: 8px;
        padding: 8px 6px;
        font-size: 11px;
        gap: 5px;
        border-radius: 8px;
    }
    .card-wishlist { width: 30px; height: 30px; font-size: 13px; }
    .card-quick-view { font-size: 11px; padding: 8px; }

    /* ── Container ── */
    .container { max-width: 100%; padding: 0 10px; }

    /* ── Banner Split ── */
    .banner-split { grid-template-columns: 1fr !important; }

    /* ── Section padding ── */
    section { padding: 32px 0 !important; }

    /* ── Footer ── */
    .site-footer { padding-bottom: 68px; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; }
    .footer-brand, .footer-contact { grid-column: span 2 !important; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }

    /* ── Product Detail Page ── */
    #pdpLayout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    /* Unstick the image on mobile */
    #pdpLayout > div:first-child > div { position: relative !important; top: 0 !important; }

    /* ── Checkout ── */
    .checkout-grid { grid-template-columns: 1fr !important; }

    /* ── Cart page ── */
    .cart-grid { grid-template-columns: 1fr !important; }

    /* ── Orders page ── */
    .orders-list { padding: 10px; }

    /* ── Filter sidebar on mobile ── */
    #filterSidebar {
        display: none !important;
    }
    #filterSidebar.show {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 1050;
        overflow-y: auto;
        background: var(--white);
        padding: 16px;
        padding-bottom: 80px;
    }
    #filterMobileBtn { display: flex !important; }
    #productsLayout {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* ── Stats banner ── */
    .stats-inner { grid-template-columns: repeat(2, 1fr) !important; }

    /* ── Category cards ── */
    .categories-grid { gap: 10px !important; }
}

/* ── Extra small phones ── */
@media (max-width: 380px) {
    .product-grid { gap: 8px !important; }
    .card-body { padding: 7px 7px 9px; }
    .card-name { font-size: 11.5px; }
    .price-now { font-size: 13.5px; }
    .cat-nav-list a { padding: 4px 10px; font-size: 11.5px; }
    .header-search input { padding: 7px 10px; font-size: 12px; }
}

/* ============================================================
   PRODUCT CARD — Size pills (all screens)
   ============================================================ */
.card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}
.card-size-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1.5px solid var(--border);
    color: var(--muted);
    background: var(--cream-l);
    transition: all .15s;
    cursor: default;
    line-height: 1.4;
}
.card-size-pill:hover {
    border-color: var(--pri);
    color: var(--pri);
    background: rgba(123,13,30,.04);
}

/* ============================================================
   RELATED PRODUCTS — Improved section
   ============================================================ */
.related-section {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #fdf8f3 0%, #f5ede3 100%);
    border-top: 1px solid var(--border);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

