/* ==========================================================
   ALIF COLLECTION — Laam-inspired theme (v5.0)
   File: Public/assets/css/style.css

   Design direction: editorial / refined / luxury minimal
   - Serif display type (Cormorant Garamond) for headings
   - Humanist sans (Jost) for body and UI
   - Generous whitespace, tall product imagery
   - Beige/gold accent (#c5a46d) kept as brand color
   - Near-monochrome base so accent pops
   ========================================================== */

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

:root {
    /* Neutral base — soft, warm-leaning */
    --white: #f5ebe0;
    --cream: #ede0d0;
    --off-white: #f6f4ef;
    --light-gray: #f0eeea;
    --mid-gray: #e4e1db;
    --border: #e4e1db;
    --text-gray: #8a8680;
    --text-dark: #2a2824;
    --black: #2f1c63;

    /* Brand accent — preserved */
    --accent: #c5a46d;
    --accent-dark: #a68754;
    --accent-light: #e9dbbf;

    /* Utility */
    --red: #b94a3a;
    --green: #4a7c59;

    /* Type */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --max-width: 1340px;
    --container-pad: 24px;
    --header-height: 72px;
    --announce-height: 36px;

    /* Motion */
    --t-fast: .2s ease;
    --t-med: .35s cubic-bezier(.22,.61,.36,1);
    --t-slow: .6s cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: transparent; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* Display type */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* ==========================================================
   ANNOUNCEMENT BAR
   ========================================================== */
.announce-bar {
    background: var(--black);
    color: var(--cream);
    height: var(--announce-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}
.announce-track {
    display: flex;
    gap: 24px;
    align-items: center;
    white-space: nowrap;
    animation: scroll-announce 40s linear infinite;
}
.announce-track span { opacity: .92; }
@keyframes scroll-announce {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================
   HEADER (v2 — Laam-style: brand left, search center, actions right)
   ========================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px var(--container-pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

/* ---- LEFT: brand + (mobile) hamburger ---- */
.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hamburger {
    display: none;                 /* hidden on desktop */
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all var(--t-fast);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
}
.brand:hover { color: var(--text-dark); }

.brand-mark {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    background: none;
}


.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1;
}

/* ---- CENTER: search bar (always visible on desktop) ---- */
.header-search {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 14px;
    height: 42px;
    transition: all var(--t-fast);
}
.header-search:focus-within {
    border-color: var(--text-dark);
    background: var(--white);
}
.header-search .hs-icon {
    background: none;
    border: none;
    padding: 0 8px 0 0;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header-search:focus-within .hs-icon { color: var(--text-dark); }
.header-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-dark);
    height: 100%;
    padding: 0;
}
.header-search input::placeholder {
    color: var(--text-gray);
    font-weight: 300;
}

/* ---- RIGHT: action buttons (icon + label) ---- */
.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 12px;
    background: none;
    border: none;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    position: relative;
    transition: color var(--t-fast);
    line-height: 1;
}
.action-btn:hover { color: var(--accent-dark); }
.action-btn span:not(.cart-count) {
    font-family: var(--font-body);
    margin-top: 2px;
}
.cart-btn .cart-count {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Mobile-only search row (collapses below header on small screens) ---- */
.mobile-search {
    display: none;
}

/* ---------- Primary nav row ---------- */
.primary-nav {
    border-top: 1px solid var(--border);
    background: var(--white);
}
.primary-nav ul {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    justify-content: center;
    gap: 42px;
    height: 44px;
    align-items: center;
    list-style: none;
}
.primary-nav a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 14px 0;
    position: relative;
    text-decoration: none;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--accent);
    transition: transform var(--t-fast);
    transform-origin: center;
}
.primary-nav a:hover::after { transform: translateX(-50%) scaleX(1); }
.primary-nav .nav-accent { color: var(--accent-dark); }
.primary-nav .nav-sale { color: var(--red); }

/* ==========================================================
   LOGIN MODAL (Admin or Seller picker)
   ========================================================== */
.login-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med);
}
.login-modal-backdrop.open { opacity: 1; pointer-events: auto; }

.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: 92%;
    max-width: 420px;
    background: var(--white);
    border-radius: 8px;
    padding: 36px 32px 32px;
    z-index: 401;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-med);
}
.login-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.lm-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--text-gray);
    cursor: pointer;
}
.lm-close:hover { color: var(--text-dark); }
.login-modal h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.login-modal > p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 24px;
}
.lm-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--t-fast);
}
.lm-option:hover {
    border-color: var(--accent);
    background: var(--cream);
    color: var(--text-dark);
}
.lm-icon {
    width: 42px;
    height: 42px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    flex-shrink: 0;
}
.lm-option:hover .lm-icon {
    background: var(--accent);
    color: var(--white);
}
.lm-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}
.lm-sub {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}
.lm-arrow {
    margin-left: auto;
    font-size: 20px;
    color: var(--text-gray);
    transition: transform var(--t-fast);
}
.lm-option:hover .lm-arrow {
    color: var(--accent-dark);
    transform: translateX(4px);
}

/* ==========================================================
   MOBILE NAV DRAWER
   ========================================================== */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med);
}
.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 301;
    padding: 24px;
    transition: left var(--t-med);
    overflow-y: auto;
}
.mobile-nav.open { left: 0; }
.mobile-nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.mobile-nav-head span {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mobile-nav-head button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav ul li { padding: 12px 0; }
.mobile-nav ul li a {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
}
.mobile-nav ul li a:hover { color: var(--accent); }
.mobile-nav ul li.divider {
    border-top: 1px solid var(--border);
    margin: 12px 0;
    padding: 0;
}

/* ==========================================================
   RESPONSIVE — header collapses on mobile
   ========================================================== */
@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;  /* hamburger + brand | spacer | actions */
        gap: 12px;
        padding: 12px 16px;
    }
    .hamburger { display: flex; }
    .brand-mark { width: 36px; height: 36px; font-size: 16px; }
    .brand-name { font-size: 18px; }
    .header-search { display: none; }       /* hide desktop search */
    .mobile-search {
        display: flex;
        align-items: center;
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 16px 12px;
        gap: 8px;
    }
    .mobile-search input {
        flex: 1;
        background: var(--off-white);
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 10px 12px;
        font-size: 14px;
    }
    .mobile-search button {
        background: var(--text-dark);
        border: none;
        color: var(--white);
        width: 42px;
        height: 42px;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .action-btn span:not(.cart-count) { display: none; }   /* icon-only on mobile */
    .action-btn { padding: 8px; }
    .primary-nav { display: none; }                         /* nav lives in mobile drawer */
}

@media (max-width: 480px) {
    .brand-name { display: none; }                          /* mark only on tiny screens */
}
/* ==========================================================
   HERO SLIDER — large editorial imagery
   ========================================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--cream);
}
.hero-slides {
    display: flex;
    transition: transform var(--t-slow);
}
.hero-slide {
    min-width: 100%;
    position: relative;
    height: 80vh;
    min-height: 560px;
    max-height: 780px;
    background: var(--cream);
    overflow: hidden;
}
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}
.hero-slide.active img { transform: scale(1); }

.hero-copy {
    position: absolute;
    left: 8%;
    bottom: 12%;
    max-width: 560px;
    color: var(--white);
    z-index: 2;
}
.hero-copy.light-bg { color: var(--text-dark); }
.hero-copy .overline {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 16px;
    display: inline-block;
}
.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.hero-copy h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.hero-copy p {
    font-size: 15px;
    max-width: 420px;
    margin-bottom: 28px;
    opacity: 0.95;
    font-weight: 300;
}
.hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--white);
    transition: all var(--t-med);
}
.hero-cta:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.hero-copy.light-bg .hero-cta {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}
.hero-copy.light-bg .hero-cta:hover {
    background: transparent;
    color: var(--text-dark);
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all var(--t-fast);
    opacity: 0;
}
.hero:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: var(--white); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all var(--t-fast);
}
.hero-dots button.active { background: var(--white); width: 24px; border-radius: 4px; }


/* ==========================================================
   SECTION HEADERS — editorial
   ========================================================== */
.section {
    padding: 100px 0;
}
.section.tight { padding: 70px 0; }
.section-head {
    text-align: center;
    margin-bottom: 56px;
}
.section-head .eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
    display: inline-block;
}
.section-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.section-head h2 em {
    font-style: italic;
    color: var(--accent);
}
.section-head p {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}
.section-link {
    display: inline-block;
    margin-top: 48px;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
    font-weight: 500;
}
.section-link:hover { color: var(--accent); border-color: var(--accent); }
.center { text-align: center; }

/* ==========================================================
   CATEGORY TILES — tall editorial cards
   ========================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-tile {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--light-gray);
}
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}
.tile-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    text-align: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.05em;
    z-index: 2;
}
.tile-label::after {
    content: 'Shop now →';
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--t-med);
}
.category-tile:hover .tile-label::after { opacity: 1; transform: translateY(0); }

/* ==========================================================
   PRODUCT GRID / CARD
   ========================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
}

.product-card {
    position: relative;
    display: block;
    color: inherit;
}
.product-card .image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 14px;
}
.product-card .image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--t-med), transform 1s ease-out;
}
.product-card .image-wrap .img-hover {
    opacity: 0;
}
.product-card:hover .image-wrap .img-main { opacity: 0; }
.product-card:hover .image-wrap .img-hover { opacity: 1; transform: scale(1.03); }

/* Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.badge {
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--white);
    color: var(--text-dark);
}
.badge.badge-new { background: var(--text-dark); color: var(--white); }
.badge.badge-sale { background: var(--red); color: var(--white); }

/* Wishlist button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(-4px);
    transition: all var(--t-med);
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn svg { width: 16px; height: 16px; stroke: var(--text-dark); }
.wishlist-btn.active svg { fill: var(--red); stroke: var(--red); }

/* Quick-add on hover */
.quick-add {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 11px 0;
    background: var(--text-dark);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--t-med);
    z-index: 2;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--accent); }

/* Info */
.product-info { text-align: center; padding: 0 4px; }
.product-info .cat {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 4px;
}
.product-info h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}
.product-info .price {
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}
.product-info .price-strike {
    color: var(--text-gray);
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 13px;
}
.product-info .price-sale {
    color: var(--red);
    font-weight: 500;
}

/* ==========================================================
   SPLIT BANNER (2-up)
   ========================================================== */
.split-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.split-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light-gray);
}
.split-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-out;
}
.split-card:hover img { transform: scale(1.04); }
.split-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    padding: 40px;
    z-index: 2;
}
.split-copy .overline {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
}
.split-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--white);
}
.split-copy .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all var(--t-fast);
}
.split-copy .btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* ==========================================================
   EDITORIAL BAND (image + text, 50/50)
   ========================================================== */
.editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: var(--cream);
}
.editorial.flip { direction: rtl; }
.editorial.flip > * { direction: ltr; }
.editorial-image { position: relative; overflow: hidden; background: var(--light-gray); }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.editorial-copy .overline {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.editorial-copy h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.15;
}
.editorial-copy h2 em { font-style: italic; color: var(--accent); }
.editorial-copy p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 420px;
}
.editorial-copy a {
    display: inline-block;
    width: fit-content;
    padding: 13px 30px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all var(--t-fast);
}
.editorial-copy a:hover { background: var(--accent-dark); color: var(--white); }

/* ==========================================================
   INSTAGRAM STRIP
   ========================================================== */
.ig-strip {
    padding: 80px 0 30px;
    text-align: center;
}
.ig-strip .section-head { margin-bottom: 36px; }
.ig-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}
.ig-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--light-gray);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.ig-item:hover img { transform: scale(1.08); }
.ig-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background var(--t-fast);
}
.ig-item:hover::after { background: rgba(0,0,0,0.15); }

/* ==========================================================
   NEWSLETTER
   ========================================================== */
.newsletter-band {
    background: var(--cream);
    padding: 72px 0;
}
.nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.nl-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
    margin-bottom: 10px;
}
.nl-copy p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }
.nl-form { display: flex; gap: 0; border-bottom: 1px solid var(--text-dark); }
.nl-form input {
    flex: 1;
    padding: 14px 4px;
    background: transparent;
    font-size: 14px;
}
.nl-form input::placeholder { color: var(--text-gray); }
.nl-form button {
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 500;
}
.nl-form button:hover { color: var(--accent); }

/* ==========================================================
   SERVICE BAR (pre-footer)
   ========================================================== */
.service-bar {
    padding: 64px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.service-item svg { color: var(--accent-dark); margin-bottom: 14px; }
.service-item h4 {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.service-item p { color: var(--text-gray); font-size: 13px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background: var(--black);
    color: var(--cream);
    padding: 72px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 14px;
}
.footer-col p {
    color: rgba(250,247,242,0.7);
    font-size: 13px;
    line-height: 1.8;
    max-width: 320px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 18px;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(250,247,242,0.7);
    transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--accent); }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all var(--t-fast);
}
.social-row a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.6);
}
.pay-pill {
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 0.12em;
}
.copy {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.5);
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .editorial { grid-template-columns: 1fr; }
    .editorial-copy { padding: 50px 8%; }
    .nl-inner { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; --container-pad: 16px; }
    .primary-nav { display: none; }
    .hamburger { display: flex; }
    .hero-slide { height: 70vh; min-height: 460px; }
    .hero-copy { left: 24px; right: 24px; bottom: 40px; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 16px 8px; }
    .split-banner { grid-template-columns: 1fr; }
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
    .service-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .site-logo { font-size: 22px; }
    .announce-bar { font-size: 10px; }
    .wishlist-btn, .quick-add { opacity: 1; transform: none; } /* always visible on touch */
}

/* Utility */
.visually-hidden { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }


/* ============================================================
   PATCH — append this to the bottom of style.css
   Or replace the existing .category-grid + section-head rules.
   ============================================================ */

/* Section heading — already centered, but reinforced here */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}
.section-head .eyebrow {
    display: block;            /* was inline-block — block centers reliably */
    text-align: center;
}

/* Category grid — auto-fits all categories into a single row.
   Number of columns comes from the inline --cat-count style on the grid. */
.category-grid {
    display: grid;
    grid-template-columns: repeat(var(--cat-count, 4), minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

/* Tile shrinks gracefully when there are many categories */
.category-grid .category-tile {
    aspect-ratio: 3/4;
    min-width: 0;              /* allow grid items to shrink below content size */
}

/* Tile label scales with tile size */
.category-grid[data-count="5"] .tile-label,
.category-grid[data-count="6"] .tile-label,
.category-grid[data-count="7"] .tile-label,
.category-grid[data-count="8"] .tile-label {
    font-size: 18px;
}
.category-grid[data-count="9"] .tile-label,
.category-grid[data-count="10"] .tile-label {
    font-size: 16px;
    bottom: 16px;
}

/* Responsive — wrap onto multiple rows on small screens */
@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(min(var(--cat-count, 4), 4), minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .category-grid .tile-label {
        font-size: 16px;
    }
}
@media (max-width: 420px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Hero slider fix: crossfade between banners ── */
.hero-slides {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;          /* ← must match .hero height */
  min-height: 560px;     /* ← safety net */
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* ==========================================================
   LAAM / KHAADI PRODUCT CARD SPACING
   Safe overrides only — no layout breakage
   ========================================================== */

/* 1️⃣ Product grid horizontal & vertical rhythm */
.product-grid {
    gap: 28px 20px;          /* ✔ Laam density */
}

/* 2️⃣ Space between image and product info */
.product-card .image-wrap {
    margin-bottom: 12px;    /* ✔ tighter than default */
}

/* 3️⃣ Product info block spacing */
.product-info {
    padding-top: 2px;
}

/* Category label (e.g. Jewelry) */
.product-info .cat {
    margin-bottom: 4px;
}

/* Product title */
.product-info h3 {
    margin-bottom: 6px;
    line-height: 1.45;      /* ✔ Laam text rhythm */
}

/* Price block */
.product-info .price {
    margin-top: 2px;
}

/* 4️⃣ Entire card breathing room */
.product-card {
    padding-bottom: 6px;
}

/* 5️⃣ Hover elements don’t push layout */
.quick-add,
.wishlist-btn {
    pointer-events: auto;
}

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

    .product-grid {
        gap: 20px 12px;     /* ✔ Laam mobile density */
    }

    .product-card .image-wrap {
        margin-bottom: 10px;
    }

    .product-info h3 {
        font-size: 13.5px;
    }
}

/* ==========================================================
   LAAM / KHAADI PRICE TYPOGRAPHY
   Safe refinement — price hierarchy only
   ========================================================== */

/* Base product price */
.product-info .price {
    font-weight: 400;              /* ✔ Laam regular weight */
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

/* Original price (crossed out) */
.product-info .price-strike {
    font-weight: 300;              /* ✔ lighter, secondary */
    font-size: 13px;
    color: var(--text-gray);
    opacity: 0.85;
}

/* Sale price */
.product-info .price-sale {
    font-weight: 500;              /* ✔ subtle emphasis only */
    color: var(--red);
    letter-spacing: 0.02em;
}

/* Prevent price from feeling heavy on hover */
.product-card:hover .price,
.product-card:hover .price-sale {
    font-weight: inherit;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .product-info .price {
        font-size: 13.5px;
    }

    .product-info .price-sale {
        font-weight: 500;          /* still restrained */
    }
}

/* ==========================================================
   LAAM / KHAADI PRICE COLOR — FINAL, VERIFIED FIX
   Targets actual DOM structure exactly
   ========================================================== */

/* Base price wrapper (ensures consistency) */
.product-card .product-info .price {
    color: #3a352e !important; /* warm charcoal */
}

/* Original (struck) price */
.product-card .product-info .price .price-strike {
    color: #9a948c !important; /* warm muted grey */
    font-weight: 300;
}

/* Sale price */
.product-card .product-info .price .price-sale {
    color: #b0503d !important; /* refined warm red */
    font-weight: 500;
}


/* ZIA COLLECTION — dark & visually bold (Waterfall) */
.brand .brand-name {
    font-family: 'Waterfall', cursive !important;
    font-size: 40px;
    font-weight: 400;                 /* Waterfall only has one weight */
    color: #2a2824;                   /* dark charcoal (luxury, not pure black) */
    letter-spacing: 0.04em;
    text-transform: none !important;
    line-height: 1;

    /* ✅ creates bold appearance */
    text-shadow:
        0.3px 0.3px 0 #2a2824,
       -0.3px -0.3px 0 #2a2824;
}

/* ==========================================================
   Top navigation — darker & stronger (luxury style)
   ========================================================== */

/* Main navigation links */
.primary-nav a {
    color: #2a2824;          /* deep charcoal (not pure black) */
    font-weight: 500;        /* slightly stronger */
}

/* Hover state */
.primary-nav a:hover {
    color: #1f1d1a;          /* darker on hover */
}

/* Active / current page (optional but recommended) */
.primary-nav a.active {
    color: #000000;
}

/* Sale link stays special but slightly darker */
.primary-nav .nav-sale {
    color: #b03024;
}

/* ==========================================================
   Rounded corners for product images (luxury style)
   ========================================================== */

/* Product image container */
.product-card .image-wrap {
    border-radius: 14px;      /* elegant, Laam-style */
    overflow: hidden;         /* CRITICAL: clips image + badges */
}

/* Ensure images inherit rounding */
.product-card .image-wrap img {
    border-radius: inherit;
}

/* ==========================================================
   Rounded corners for category tiles (luxury style)
   ========================================================== */

/* Category card container */
.category-tile {
    border-radius: 16px;      /* slightly larger than products */
    overflow: hidden;         /* clips image + overlay text */
}

/* Category images inherit rounding */
.category-tile img {
    border-radius: inherit;
}
