/* =========================================================================
   Dar Noora — Design 2 · Brand-book aligned system (mockup)
   Strictly the four Brand Book §05 colours + Source Sans 3 (Myriad equivalent).
   ========================================================================= */

:root {
    /* Palette — straight from Dar Noora Brand Book (Section 05) */
    --onyx:      #2d2a26;        /* Pantone Black C — warm brand black */
    --onyx-2:    #232017;
    --onyx-3:    #1a1814;
    --navy:      #111921;        /* Pantone Black 6 C — deep navy */
    --ivory:     #faf0d2;        /* Pantone 7401 C @ 50% — light cream */
    --cream:     #f6dfa4;        /* Pantone 7401 C — brand cream/yellow */
    --ivory-dim: #c9bf9b;
    --muted:     #8a8170;
    --line:      #3a352d;
    --gold:      #f6dfa4;        /* brand cream now stands in for "accent" */
    --gold-soft: #faf0d2;
    --burgundy:  #6e2820;        /* from sub-brand palette */

    /* Typography — Brand Book Sections 03 & 04:
       English = Myriad Variable Concept (Source Sans 3 is the open equivalent)
       Arabic  = VIP Rawy (Cairo is the closest free Google fallback) */
    /* Brand book §03 prescribes ONE Latin face (Myriad). Source Sans 3 is the
       open equivalent and is used for everything — no separate serif. */
    --sans:  "Source Sans 3", "Source Sans Pro", "Myriad Pro", "Cairo", system-ui, sans-serif;
    --sans-ar: "Cairo", "Tajawal", "VIP Rawy", "Source Sans 3", sans-serif;
    --serif:var(--sans); /* Brand book §04 prescribes ONE serif (Playfair Display) but we don't use it. */
    --maxw: 1440px;
    --gutter: clamp(20px, 5vw, 70px);
    --header-h: 120px;
    --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans); font-weight: 400; color: var(--onyx);
    /* background: var(--onyx) !important; */ line-height: 1.7; font-size: 16px;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--onyx); }

/* ---------- Type (Brand Book §03 — Myriad Variable Concept; we use Source Sans 3) ---------- */
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; line-height: 1.12; letter-spacing: -.005em; }
.eyebrow {
    font-family: var(--sans); font-size: .72rem; letter-spacing: .36em;
    text-transform: uppercase; font-weight: 600; color: var(--cream);
}
.black-filter { filter: brightness(0); }
.serif-em { font-family: var(--serif); font-style: italic; color: var(--cream); }
/* Arabic — VIP Rawy (Cairo fallback). Applied automatically to RTL nodes. */
[lang="ar"], [dir="rtl"] { font-family: var(--sans-ar); }
.gold-rule { width: 60px; height: 1px; background: var(--gold); margin: 22px auto; }
.gold-rule--left { margin-inline: 0; }

/* ---------- Brand decorations (§02 / §06 / §08 / §09) ---------- */
/* §02 — Heritage House tagline under the wordmark */
.header__logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; }
.header__logo .tagline {
    font-family: var(--sans); font-size: .58rem; letter-spacing: .32em;
    text-transform: uppercase; font-weight: 400; color: var(--ivory);
    opacity: .85; margin-top: 2px;
}
.ivory{
    color: var(--ivory)!important;
}
/* §06 — "Frames are never to the edge": inner cream rule that floats over hero/banner photos */
.brand-frame { position: absolute; inset: clamp(14px, 2vw, 28px); border: 1px solid var(--cream); pointer-events: none; z-index: 2; display: none; }
.brand-frame__mark { position: absolute; left: 12px; bottom: 10px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .56rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--cream); padding: 6px 10px; background: rgba(45,42,38,.7); }
.brand-frame__mark img { height: 22px; width: auto; }

/* Arabic wordmark line — uses the Cairo (VIP Rawy fallback) face, brand cream */
.brand-arabic { font-family: var(--sans-ar); color: var(--cream); letter-spacing: 0; direction: rtl; }

/* Generic arch-icon utility — drop the AA arch in any inline context */
.arch-icon { display: inline-block; width: 1em; height: 1.16em; vertical-align: -.18em; color: currentColor; }
.arch-icon svg, .arch-icon img { width: 100%; height: 100%; display: block; }

/* §08 — Repeating arch icon pattern, extracted pixel-true from the brand book.
   Dark navy arches (Pantone Black 6 C) on the cream background, per PDF colours. */
/* Brand arch pattern band — black arches on a white band, sits above the dark footer */
.brand-pattern {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}
.brand-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../../images/darnoora/arch-strip.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    animation: arch-drift 180s linear infinite;     /* slower drift — 3× longer cycle */
    will-change: background-position;
}
/* Soft fades at the left/right so the pattern eases into the band edges */
.brand-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #ffffff 0%, transparent 8%, transparent 92%, #ffffff 100%);
}
@keyframes arch-drift {
    from { background-position: 0 center; }
    to   { background-position: -1200px center; }
}
@media (prefers-reduced-motion: reduce) {
    .brand-pattern::before { animation: none; }
}
.brand-pattern-strip { height: 100px; margin-bottom: -1px; }

/* Light section helper — for portraits + newsletter (pure white background) */
.on-white { background: #ffffff; color: var(--onyx); }
.on-white h1, .on-white h2, .on-white h3, .on-white h4 { color: var(--onyx); }
.on-white p { color: var(--onyx); }
.on-white .eyebrow { color: var(--onyx); }
.on-white .portrait__name { color: var(--onyx); }
.on-white .portrait__role { color: var(--onyx); opacity: .65; }
.on-white .portrait__img { border-color: var(--onyx); }
.on-white .newsletter__form { border-color: var(--onyx); }
.on-white .newsletter__form input { color: var(--onyx); background: transparent; }
.on-white .newsletter__form input::placeholder { color: rgba(45,42,38,.45); }
.on-white .newsletter__form button { background: var(--onyx); color: var(--cream); }
.on-white .newsletter__form button:hover { background: var(--navy); }
.on-white .link-underline { color: var(--onyx); }

/* §07 mock — 3-column icon row ("RESHEARCH / arch icon / WORK AND WORK") */
.threecol { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(24px, 5vw, 80px); align-items: center; max-width: 1100px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--gutter); }
.threecol__col { text-align: center; }
.threecol__col h3 { font-size: .9rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.threecol__col p { color: var(--ivory-dim); font-size: .92rem; max-width: 36ch; margin: 0 auto; }
.threecol__icon { width: clamp(60px, 8vw, 110px); height: auto; color: var(--cream); }
@media (max-width: 760px) { .threecol { grid-template-columns: 1fr; text-align: center; } }

/* §07 mock — sunbird stat band: sunbird left + 4 big numbers right */
.statband { background: var(--onyx-2); padding: clamp(50px, 7vw, 100px) var(--gutter); }
.statband__inner { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: clamp(30px, 6vw, 90px); align-items: center; max-width: 1240px; margin: 0 auto; }
.statband__bird { width: 100%; max-width: 480px; height: auto; }
.statband__body { text-align: center; }
.statband__body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; letter-spacing: .08em; color: var(--cream); margin-bottom: 14px; }
.statband__body p { color: var(--ivory-dim); margin: 0 auto 30px; max-width: 60ch; }
.statband__nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 24px); }
.statband__num { text-align: center; }
.statband__num strong { font-size: clamp(4rem, 9vw, 7.5rem); font-weight: 700; color: var(--cream); display: block; line-height: 1; letter-spacing: -.02em; }
.statband__num span { font-size: .95rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 18px; display: block; }
@media (max-width: 860px) { .statband__inner { grid-template-columns: 1fr; text-align: center; } .statband__bird { margin: 0 auto; max-width: 320px; } .statband__num { text-align: center; } }

/* §07 mock — circle portrait row (four round photos with caption) */
.portraits { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); width: 100%; margin: 0 auto; padding: clamp(40px, 5vw, 70px) clamp(16px, 2vw, 30px) clamp(40px, 5vw, 70px); box-sizing: border-box; }
.portrait { display: block; text-align: center; width: 100%; }
.portrait__img { width: 100%; aspect-ratio: 1 / 1; height: auto; border-radius: 50%; overflow: hidden; margin: 0 auto 24px; border: 1px solid var(--cream); }
.portrait__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.portrait:hover .portrait__img img { transform: scale(1.05); }
.portrait__name { font-size: .95rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory); font-weight: 700; }
.portrait__role { font-size: .82rem; color: var(--ivory-dim); margin-top: 8px; letter-spacing: .08em; }
@media (max-width: 760px) { .portraits { grid-template-columns: repeat(2, 1fr); } }

/* §09 — Sub-brand sunbird palette as a thin accent bar */
.brand-spectrum { display: flex; height: 4px; width: 100%; display:none; }
.brand-spectrum span { flex: 1; }
.brand-spectrum .c1 { background: #635040; } /* brown */
.brand-spectrum .c2 { background: #9a6e1f; } /* caramel */
.brand-spectrum .c3 { background: #006670; } /* teal */
.brand-spectrum .c4 { background: #e07432; } /* orange */
.brand-spectrum .c5 { background: #ebc066; } /* sand */
.brand-spectrum .c6 { background: #d14026; } /* vermilion */
.brand-spectrum .c7 { background: #6e2820; } /* dark red */
.brand-spectrum .c8 { background: #c2d419; } /* lime */
.brand-spectrum .c9 { background: #7d5f37; } /* coffee */
.brand-spectrum .c10 { background: #c8aea8; } /* mauve */

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 10vw, 150px); }
.section--tight { padding-block: clamp(44px, 6vw, 90px); }
.bg-2 { background: var(--onyx-2); }
.bg-3 { background: var(--onyx-3); }
.center { text-align: center; }
@media (max-width:560px){ .hide-sm { display:none !important; } }

.section-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 76px); text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 20px; }
.section-head h2 {
    font-size: clamp(2.1rem, 4.4vw, 3.6rem); text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}
.section-head p { margin-top: 20px; color: var(--ivory-dim); font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--sans); font-size: .72rem; font-weight: 400;
    letter-spacing: .28em; text-transform: uppercase;
    padding: 17px 42px; border: 1px solid var(--gold); color: var(--ivory);
    background: transparent; transition: background .4s var(--ease), color .4s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--onyx); }
.btn--solid { background: var(--gold); color: var(--onyx); }
.btn--solid:hover { background: transparent; color: var(--ivory); }
.btn--light { border-color: rgba(250,240,210,.5); }
.btn--light:hover { background: var(--ivory); color: var(--onyx); border-color: var(--ivory); }
.btn--block { width: 100%; justify-content: center; }

.link-underline {
    font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
    border-bottom: 1px solid currentColor; padding-bottom: 5px; transition: opacity .3s;
}
.link-underline:hover { opacity: .65; }

/* =========================================================================
   Announcement
   ========================================================================= */
.announce {
    background: var(--onyx); color: var(--gold-soft); border-bottom: 1px solid var(--line);
    font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
    text-align: center; padding: 11px 16px;
}
.announce a { color: var(--gold); border-bottom: 1px solid currentColor; }

/* =========================================================================
   Header (transparent over hero, solidifies on scroll)
   ========================================================================= */
   .dn-site-header{
    position: relative;
    z-index: 2;
   }
.header {
    /* position: fixed; */
     top: 0; left: 0; right: 0; z-index: 200;
    transition: background .4s var(--ease), border-color .4s var(--ease);
    border-bottom: 1px solid transparent;
}
.header.is-stuck, .header.solid {
    background: rgba(45,42,38,.96); border-bottom-color: var(--line);
    backdrop-filter: blur(8px);
}
.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center;/* column-gap: clamp(28px, 5vw, 70px); */height: var(--header-h);    grid-template-columns: 1fr auto; }
.header__nav { display: flex;
    gap: 36px;
    justify-content: space-around;
    /* padding: 0; */
    margin: 0; 
        /* padding-left: 8rem; */
}
.header__nav > li {
    display:flex;
    align-items: center;
    padding: 20px 0;
}
.header__nav > li > a {
    font-size: .95rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--onyx);
    padding: 34px 2px; display: inline-block; position: relative; transition: color .3s;padding:0;
}
.header__nav > li:not(.header__logo-item) > a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--gold); transform: scaleX(0); transition: transform .35s var(--ease);
}
.header__nav > li:hover > a { color: var(--ink); }
.header__nav > li:hover > a::after, .header__nav > li > a.active::after { transform: scaleX(1); }
.header__logo { order: -1; justify-self: start; }
.header__logo img { height: 80px; width: auto; transition: height .35s var(--ease); }
.header.is-stuck .header__logo img, .header.solid .header__logo img { height: 32px; }
.header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
/* Persistent header search bar (Sitemap §8 "Search-first thinking") */
.header__search { display: flex; align-items: center; gap: 8px; background: rgba(250,240,210,.08); border: 1px solid rgba(250,240,210,.25); padding: 7px 14px; border-radius: 999px; transition: background .25s, border-color .25s; min-width: 240px; }
.header__search:focus-within { background: rgba(250,240,210,.14); border-color: var(--cream); }
.header__search i { color: var(--ivory); opacity: .7; font-size: .85rem; }
.header__search input { flex: 1; background: transparent; border: none; outline: none; color: var(--ivory); font-size: .82rem; min-width: 0; padding: 0; }
.header__search input::placeholder { color: rgba(250,240,210,.55); }
@media (max-width: 1100px) { .header__search { display: none; } }
/* EN / USD toggle cluster */
.header__toggles { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory); }
.header__toggles .toggle-sep { opacity: .4; }
.header__toggles .lang { border: none; padding: 4px 2px; }
.header__toggles .lang:hover { color: var(--cream); }
.header__actions a, .header__actions button { font-size: 1rem; position: relative; line-height: 1; color: var(--ivory); }
.header__actions .lang {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    border: 1px solid var(--line); padding: 7px 12px; transition: border-color .3s, color .3s;
}
.header__actions .lang:hover { border-color: var(--gold); color: var(--gold); }
.cart-count {
    position: absolute; top: -9px; right: -11px; background: var(--gold); color: var(--onyx);
    font-family: var(--sans); font-size: .58rem; font-weight: 500; min-width: 16px; height: 16px;
    border-radius: 50%; display: grid; place-items: center; padding: 0 4px;
}
.menu-toggle { display: none; font-size: 1.2rem; }

/* ---------- Mega menu (dark) ---------- */
.has-mega { position: static; }
.mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff/*rgba(45,42,38,.98)*/; border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; z-index: 199;
}
.has-mega:hover .mega, .mega:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__inner { display: grid; grid-template-columns: repeat(3, 1fr) 1.3fr; gap: 50px; padding-block: 50px; }
.mega__col h5 { font-family: var(--sans); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.mega__col li { margin-bottom: 12px; }
.mega__col a { font-size: .9rem; color: #2b2621; transition: color .25s, padding-left .25s; }
.mega__col a:hover { color: var(--gold-soft); padding-left: 5px; }
.mega__feature { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.mega__feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); filter: grayscale(.2) brightness(.85); }
.mega__feature:hover img { transform: scale(1.06); }
.mega__feature figcaption { position: absolute; left: 24px; bottom: 22px; font-family: var(--serif); font-size: 1.5rem; color: var(--ivory); z-index: 2; }
.mega__feature::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,.6)); }

/* ---------- Chapters mega (light floating card) ---------- */
.mega--chapters { background:transparent; border-top:none; backdrop-filter:none; }
.chmega {
    background:#fff;
    border-radius:0;
    /* border-radius:14px; */
    /* box-shadow:0 26px 70px rgba(30,25,20,.28); */
    /* margin-top:12px; */
    margin-top:2px;
    display:grid; grid-template-columns: 0.95fr 1.55fr 1.5fr;
    gap:clamp(22px,2.8vw,50px);
    padding:clamp(28px,2.8vw,46px);
    align-items:stretch;
}
.chmega__intro { position:relative; display:flex; flex-direction:column; }
.chmega__title { font-family:var(--serif); font-size:clamp(1.9rem,2.5vw,2.7rem); font-weight:400; color:#2b2621; margin-bottom:14px; }
.chmega__sub { font-size:.92rem; line-height:1.65; color:#8a8178; max-width:220px; }
.chmega__leaf { width:92px; height:auto; color:#ddd6c8; margin-top:auto; }
.chmega__list { list-style:none; margin:0; padding:0; align-self:center; width:100%; }
.chmega__item + .chmega__item { border-top:1px solid #ece7df; }
.chmega__item a { display:grid; grid-template-columns:56px 1fr auto; align-items:center; gap:16px; padding:13px 4px; color:inherit; text-decoration:none; }
.chmega__thumb { width:56px; height:56px; overflow:hidden; border-radius:2px; background:#efeae2; }
.chmega__thumb img { width:100%; height:100%; object-fit:cover; filter:grayscale(.15); transition:transform .5s var(--ease); }
.chmega__item a:hover .chmega__thumb img { transform:scale(1.07); }
.chmega__name { display:block; font-family:var(--serif); font-size:1.14rem; color:#2b2621; margin-bottom:2px; transition:color .3s; }
.chmega__desc { display:block; font-size:.76rem; line-height:1.5; color:#9a9188; }
.chmega__arrow { color:#c1b7a7; font-size:.8rem; transition:transform .3s var(--ease), color .3s; }
.chmega__item a:hover .chmega__name { color:#a1791f; }
.chmega__item a:hover .chmega__arrow { color:var(--gold); transform:translateX(5px); }
.chmega__feature { display:flex; flex-direction:column; gap:20px; text-decoration:none; }
.chmega__imgs { display:grid; grid-template-columns:1fr 1fr; gap:6px; flex:1; min-height:230px; border-radius:4px; overflow:hidden; }
.chmega__imgs img { width:100%; height:100%; object-fit:cover; filter:grayscale(.3) brightness(.97); transition:transform .8s var(--ease); }
.chmega__feature:hover .chmega__imgs img { transform:scale(1.05); }
.chmega__story { font-family:var(--serif); font-size:clamp(1.3rem,1.9vw,1.75rem); line-height:1.28; color:#2b2621; max-width:360px; }
[dir="rtl"] .chmega__arrow { transform:scaleX(-1); }
[dir="rtl"] .chmega__item a:hover .chmega__arrow { transform:scaleX(-1) translateX(5px); }

/* ---------- Home collections band (Ready Pieces / Custom & Bridal / Chapters) — image-left cards on light ---------- */
.collections { background:#fbfaf7; padding: clamp(34px,4.5vh,66px) 0; }
.collections__grid { display:grid; grid-template-columns:repeat(3,1fr); }
.collection-card { position:relative; display:grid; grid-template-columns:118px 1fr; gap:22px; align-items:stretch; padding:14px clamp(18px,2.2vw,40px); color:inherit; text-decoration:none; }
.collection-card + .collection-card::before { content:""; position:absolute; left:0; top:16px; bottom:16px; width:1px; background:#e8e2d8; }
.collection-card__img { width:118px; height:152px; overflow:hidden; background:#efeae2; flex:none; }
.collection-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.collection-card:hover .collection-card__img img { transform:scale(1.05); }
.collection-card__text { display:flex; flex-direction:column; justify-content:center; padding:6px 0; }
.collection-card__name { font-family:var(--serif); font-size:clamp(1.3rem,1.65vw,1.7rem); color:#1e1b18; margin-bottom:10px; }
.collection-card__desc { font-size:.8rem; line-height:1.55; color:#8a8178; max-width:230px; }
.collection-card__arrow { margin-top:20px; color:#2b2621; font-size:.9rem; align-self:flex-start; transition:transform .3s var(--ease); }
.collection-card__arrow:lang(ar){
    margin-right:auto;
}
.collection-card__arrow:lang(en){
    margin-left:auto;
}
.collection-card:hover .collection-card__arrow { transform:translateX(6px); }
[dir="rtl"] .collection-card__arrow { transform:scaleX(-1); }
[dir="rtl"] .collection-card:hover .collection-card__arrow { transform:scaleX(-1) translateX(6px); }
[dir="rtl"] .collection-card + .collection-card::before { left:auto; right:0; }
@media (max-width:860px){ .collections__grid { grid-template-columns:1fr; } .collection-card + .collection-card::before { display:none; } .collection-card + .collection-card { border-top:1px solid #e8e2d8; } }

/* ---------- Search overlay ---------- */
.search-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(45,42,38,.98); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay form { width: min(720px, 88vw); position: relative; }
.search-overlay input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--gold); padding: 22px 44px 22px 4px; font-family: var(--serif); font-size: clamp(1.6rem,4vw,2.8rem); color: var(--ivory); }
.search-overlay input::placeholder { color: var(--muted); }
.search-overlay .search-close { position: absolute; top: -64px; right: 0; font-size: 1.5rem; color: var(--gold); }

/* =========================================================================
   Hero (cinematic "video")
   ========================================================================= */
.hero { position: relative; /*height: 100vh;*/ min-height: 600px; overflow: hidden; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.3s var(--ease), visibility 1.3s;z-index:1 }
.hero__slide.active { opacity: 1; visibility: visible; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__slide.active .hero__media img,
.hero__slide.active .hero__media video { animation: kenburns 14s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,42,38,.45) 0%, rgba(45,42,38,.15) 40%, rgba(45,42,38,.7) 100%); }
.hero .container { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; }
.hero__content { max-width: 760px; }
.hero__content .eyebrow { margin-bottom: 24px; }
.hero__content h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ivory); }
.hero__content p { font-size: 1.05rem; color: var(--ivory-dim); margin: 26px auto 38px; max-width: 520px; }
.hero__play { width: 78px; height: 78px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 30px; color: var(--gold); font-size: 1.1rem; transition: background .4s, color .4s; }
.hero__play:hover { background: var(--gold); color: var(--onyx); }
.hero__dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; gap: 12px; }
.hero__dots span { width: 36px; height: 2px; background: rgba(250,240,210,.35); cursor: pointer; transition: background .3s; }
.hero__dots span.active { background: var(--gold); }
.hero__nav { position: absolute; bottom: 36px; right: var(--gutter); z-index: 1; display: flex; gap: 12px; }
.hero__nav button { width: 52px; height: 52px; border: 1px solid rgba(250,240,210,.4); color: var(--ivory); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.hero__nav button:hover { background: var(--gold); color: var(--onyx); border-color: var(--gold); }
.hero__scroll { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 3; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ivory-dim); display: none; }
.hero__vidctrl { position: absolute; bottom: 36px; left: var(--gutter); z-index: 4; display: flex; gap: 10px; }
.hero__vidctrl button { width: 42px; height: 42px; border: 1px solid rgba(250,240,210,.4); color: var(--ivory); display: grid; place-items: center; font-size: .8rem; transition: background .3s, color .3s, border-color .3s; }
.hero__vidctrl button:hover { background: var(--gold); color: var(--onyx); border-color: var(--gold); }

/* =========================================================================
   Category tab bar  (Galia "Shop Sale: New In | All | …")
   ========================================================================= */
.cat-tabs { border-bottom: 1px solid var(--line); }
.cat-tabs__inner { display: flex; align-items: center; gap: 34px; padding-block: 26px; flex-wrap: wrap; }
.cat-tabs__title { font-family: var(--serif); font-size: 1.6rem; letter-spacing: .04em; margin-right: 18px; }
.cat-tabs__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.cat-tabs__nav button { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory-dim); padding-bottom: 5px; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.cat-tabs__nav button.active, .cat-tabs__nav button:hover { color: var(--gold); border-color: var(--gold); }
.cat-tabs__more { margin-left: auto; }

/* category cards row */
.catrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.catcard { position: relative; aspect-ratio: 3/4.4; overflow: hidden; display: block; }
.catcard img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) brightness(.82); transition: transform 1s var(--ease), filter .5s; }
.catcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.65)); }
.catcard:hover img { transform: scale(1.07); filter: grayscale(0) brightness(.9); }
.catcard__label { position: absolute; left: 0; right: 0; bottom: 30px; text-align: center; z-index: 2; }
.catcard__label .name { font-family: var(--serif); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .08em; display: block; }
.catcard__label .cta { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); margin-top: 10px; display: inline-block; opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.catcard:hover .catcard__label .cta { opacity: 1; transform: translateY(0); }

/* =========================================================================
   Shop Sale edit (Galia: left "Shop Sale" + inline tabs, full-bleed image row
   with name + sale price overlaid bottom-left of each image)
   ========================================================================= */
.edit-bar { display: flex; align-items: flex-end; gap: clamp(20px, 4vw, 60px); padding: 0 var(--gutter) clamp(22px, 3vw, 40px); flex-wrap: wrap; }
.edit-bar__title { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 400; letter-spacing: .02em; flex: none; }
.edit-bar__tabs { display: flex; gap: clamp(18px, 2.4vw, 36px); flex-wrap: wrap; padding-bottom: 8px; }
.edit-bar__tabs button { font-size: .76rem; letter-spacing: .14em; text-transform: capitalize; color: var(--muted); padding-bottom: 6px; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.edit-bar__tabs button.active, .edit-bar__tabs button:hover { color: #000; border-color: var(--gold); }

.editrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.editcard { position: relative; overflow: hidden; aspect-ratio: 3/4.3; display: flex; align-items: flex-end; }
.editcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.92); transition: transform 1s var(--ease), filter .5s; }
.editcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.72)); z-index: 1; }
.editcard:hover img { transform: scale(1.05); filter: brightness(1); }
/* Transparent overlay — makes the whole card a link, sits above the gradient */
.editcard__link { position: absolute; inset: 0; z-index: 2; }
/* Action buttons — above the transparent link so they get the click first */
.editcard__actions { position: absolute; top: 14px; right: 14px; z-index: 4; display: flex; gap: 6px; }
.editcard__fav, .editcard__cart { width: 38px; height: 38px; display: grid; place-items: center; color: var(--ivory); font-size: 1.5rem; opacity: .85; transition: color .3s, opacity .3s; text-decoration: none; }
.editcard__fav:hover, .editcard__cart:hover { color: var(--gold); opacity: 1; }
.editcard__cart.added_to_cart { color: var(--gold); opacity: 1; }
/* Body is visually above the gradient but pointer-events fall through to the transparent link */
.editcard__body { position: relative; z-index: 3; padding: clamp(20px, 2vw, 34px); width: 100%; pointer-events: none; }
.editcard__name { font-family: var(--serif); font-size: clamp(1.3rem, 1.8vw, 1.8rem); font-weight: 400; color: var(--ivory); }
.editcard__price { display: flex; gap: 12px; align-items: baseline; margin-top: 8px; font-size: .95rem; color: var(--ivory); }
.editcard__price .old { color: var(--ivory-dim); text-decoration: line-through; font-size: .85rem; }
.edit-foot { padding: clamp(22px, 3vw, 38px) var(--gutter) 0; grid-column: 1 / -1; }
@media (max-width: 980px) { .editrow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .editrow { grid-template-columns: 1fr; } }

/* =========================================================================
   Occasions editorial grid (dramatic large tiles)
   ========================================================================= */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.occ { position: relative; aspect-ratio: 3/4.2; overflow: hidden; display: flex; align-items: flex-end; padding: 40px; }
.occ.occ--tall { grid-row: span 2; aspect-ratio: auto; }
.occ img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: brightness(.7); transition: transform 1.1s var(--ease), filter .5s; }
.occ::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7)); z-index: 1; }
.occ:hover img { transform: scale(1.06); filter: brightness(.8); }
.occ__body { position: relative; z-index: 2; text-align: center; width: 100%; }
.occ__body .eyebrow { display: block; margin-bottom: 12px; }
.occ__body h3 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.occ__body .link-underline { margin-top: 16px; display: inline-block; }

/* =========================================================================
   Product cards
   ========================================================================= */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1.4vw, 22px); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pcard { position: relative; }
.pcard__media { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--onyx-3); margin-bottom: 18px; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), opacity .5s; filter: brightness(.92); }
.pcard__media img.alt { position: absolute; inset: 0; opacity: 0; }
.pcard:hover .pcard__media img.main { opacity: 0; }
.pcard:hover .pcard__media img.alt { opacity: 1; transform: scale(1.05); }
.pcard__badges { position: absolute; top: 16px; left: 16px; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.badge { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; padding: 6px 11px; background: rgba(45,42,38,.7); color: var(--ivory); border: 1px solid var(--cream); }
.badge--sale { background: var(--cream); border-color: var(--cream); color: var(--onyx); font-weight: 700; }
.pcard__fav { position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; background: rgba(45,42,38,.6); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s, color .3s, border-color .3s; }
.pcard:hover .pcard__fav { opacity: 1; transform: translateY(0); }
.pcard__fav:hover { color: var(--gold); border-color: var(--gold); }
.pcard__add { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; background: rgba(45,42,38,.85); color: var(--gold-soft); text-align: center; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; padding: 15px; opacity: 0; transform: translateY(100%); transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s, color .3s; }
.pcard:hover .pcard__add { opacity: 1; transform: translateY(0); }
.pcard__add:hover { background: var(--gold); color: var(--onyx); }
.pcard__cat { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.pcard__name { font-family: var(--serif); font-size: 1.3rem; margin: 6px 0 8px; }
.pcard__name a:hover { color: var(--gold-soft); }
.pcard__price { font-size: .95rem; color: var(--gold-soft); display: flex; gap: 12px; align-items: baseline; }
.pcard__price .old { color: var(--muted); text-decoration: line-through; font-size: .82rem; }

/* =========================================================================
   Horizontal carousel (product sliders)
   ========================================================================= */
.carousel { position: relative; }
.carousel__track { display: flex; gap: clamp(8px, 1.4vw, 22px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; padding-bottom: 4px; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > .pcard { flex: 0 0 clamp(240px, 24vw, 320px); scroll-snap-align: start; }
.carousel__track > .pcard img { pointer-events: none; }
.carousel__arrow { position: absolute; top: 38%; transform: translateY(-50%); z-index: 5; width: 52px; height: 52px; border: 1px solid var(--gold); background: rgba(45,42,38,.7); color: var(--gold); display: grid; place-items: center; transition: background .3s, color .3s; }
.carousel__arrow:hover { background: var(--gold); color: var(--onyx); }
.carousel__arrow.prev { left: -10px; } .carousel__arrow.next { right: -10px; }
@media (max-width: 760px) { .carousel__arrow { display: none; } }

/* =========================================================================
   Full-width editorial banner (parallax)
   ========================================================================= */
.banner { position: relative; height: clamp(440px, 72vh, 760px); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.banner__bg { position: absolute; inset: -12%; z-index: 0; will-change: transform; }
.banner__bg img, .banner__bg video { width: 100%; height: 100%; object-fit: cover; }
/* Auto-playing Ken Burns showreel from brand imagery (stands in for video footage) */
.kenburns { position: absolute; inset: 0; }
.kenburns img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: brightness(.58); animation: kb-cycle 28s infinite; }
.kenburns img:nth-child(1) { animation-delay: 0s; }
.kenburns img:nth-child(2) { animation-delay: 7s; }
.kenburns img:nth-child(3) { animation-delay: 14s; }
.kenburns img:nth-child(4) { animation-delay: 21s; }
@keyframes kb-cycle {
    0%   { opacity: 0; transform: scale(1); }
    3%   { opacity: 1; }
    22%  { opacity: 1; }
    25%  { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}
.showreel-badge { position: absolute; right: var(--gutter); bottom: clamp(40px,7vh,90px); z-index: 3; display: inline-flex; align-items: center; gap: 8px; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory); border: 1px solid rgba(250,240,210,.4); padding: 9px 16px; }
.showreel-badge i { font-size: .5rem; color: #e0322f; animation: kb-blink 1.6s infinite; }
@keyframes kb-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .kenburns img { animation: none; } .kenburns img:nth-child(1) { opacity: 1; } .showreel-badge i { animation: none; } }
.banner .hero__play { margin-top: 8px; }
.banner::after { content: none; }
.banner__body { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.banner__body .eyebrow { display: block; margin-bottom: 18px; }
.banner__body h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.banner__body p { color: var(--ivory-dim); margin: 20px auto 32px; max-width: 460px; }

/* =========================================================================
   Split (designer / about)
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 100px); }
.split--reverse .split__media { order: 2; }
.split__media { aspect-ratio: 4/5; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.1) brightness(.92); }
.split__body { max-width: 500px; }
.split__body h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin: 18px 0; }
.split__body p { color: var(--ivory-dim); margin-bottom: 18px; }
.split__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }

/* =========================================================================
   Stats
   ========================================================================= */
.impact__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 90px); align-items: center; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--onyx); padding: 38px 18px; text-align: center; }
.stat h3 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold); font-weight: 400; }
.stat p { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 8px; }

/* =========================================================================
   Social mosaic (#DarNoora VIPS)
   ========================================================================= */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: 4px; }
.mosaic a { position: relative; aspect-ratio: 1; overflow: hidden; }
.mosaic a.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) brightness(.85); transition: transform .8s var(--ease), filter .5s; }
.mosaic a:hover img { transform: scale(1.07); filter: grayscale(0) brightness(1); }
.mosaic a::after { content: "\f16d"; font-family: "Font Awesome 6 Brands"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold); font-size: 1.4rem; opacity: 0; background: rgba(45,42,38,.4); transition: opacity .3s; }
.mosaic a:hover::after { opacity: 1; }

/* =========================================================================
   #DarNoora VIPS press gallery (Galia "#GLVIPS": B&W moments scroller,
   @source overlaid bottom-left, arrows centred below)
   ========================================================================= */
.vips__head { padding: 0 var(--gutter) clamp(26px, 3vw, 44px); }
.vips__head .eyebrow { display: block; margin-bottom: 14px; }
.vips__head h2 { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 400; }
.vips__head p { color: var(--ivory-dim); margin-top: 8px; }
.vips__track { display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; padding: 0 var(--gutter); }
.vips__track::-webkit-scrollbar { display: none; }
.vipcard { position: relative; flex: 0 0 clamp(240px, 26vw, 340px); aspect-ratio: 3/4.2; overflow: hidden; scroll-snap-align: start; display: flex; align-items: flex-end; }
.vipcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.88); transition: transform .9s var(--ease), filter .5s; }
.vipcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78)); z-index: 1; }
.vipcard:hover img { transform: scale(1.05); filter: grayscale(.2) brightness(1); }
.vipcard__body { position: relative; z-index: 2; padding: clamp(18px, 1.8vw, 28px); width: 100%; }
.vipcard__src { font-family: "Tenor Sans", var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); display: block; }
.vipcard__title { font-family: var(--serif); font-size: clamp(1.05rem, 1.4vw, 1.35rem); font-weight: 400; line-height: 1.35; color: var(--ivory); margin-top: 8px; }
.vips__arrows { display: flex; justify-content: center; gap: 14px; margin-top: clamp(26px, 3vw, 42px); }
.vips__arrows button { background: var(--gold);width: 50px; height: 50px; border: 1px solid var(--gold); color: var(--onyx); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.vips__arrows button:hover { background: var(--onyx); color: var(--ivory); border-color: rgba(250,240,210,.4); }

/* =========================================================================
   Press
   ========================================================================= */
.press-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.press-card { background: var(--onyx); text-align: center; overflow: hidden; }
.press-card i { font-size: 1.8rem; color: var(--gold); margin: 40px 0 16px; }
.press-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; filter: grayscale(.15) brightness(.92); transition: transform .8s var(--ease), filter .5s; }
.press-card:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.press-card p { font-size: .88rem; color: var(--ivory-dim); padding: 16px; }

/* =========================================================================
   Newsletter ("Unlock the full experience")
   ========================================================================= */
.newsletter { text-align: center; }
.newsletter__form { display: flex; max-width: 520px; margin: 28px auto 0; border: 1px solid var(--gold); }
.newsletter__form input { flex: 1; padding: 17px 22px; background: transparent; border: none; outline: none; color: var(--ivory); }
.newsletter__form input::placeholder { color: var(--muted); }
.newsletter__form button { padding: 0 32px; background: var(--gold); color: var(--onyx); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; transition: background .3s; }
.newsletter__form button:hover { background: var(--gold-soft); }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--onyx); border-top: 1px solid var(--line); padding-top: clamp(56px, 8vw, 100px); }
/* flex-wrap (not a fixed grid) so the footer adapts to a variable number of link
   columns — Shop, Quick Links, Security, Account, Get In Touch all render conditionally */
.footer__top { display: flex; flex-wrap: wrap; gap: 44px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer__brand { flex: 1 1 300px; }
.footer__col { flex: 1 1 150px; min-width: 140px; }
.footer__brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer__brand p { font-size: .92rem; color: var(--ivory-dim); max-width: 38ch; margin-bottom: 24px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ivory-dim); transition: background .3s, color .3s, border-color .3s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--onyx); }
.footer__col h5 { font-family: var(--sans); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col li { margin-bottom: 12px;color: var(--ivory-dim) }
.footer__col a { font-size: .9rem; color: var(--ivory-dim); transition: color .25s, padding-left .25s; }
.footer__col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 28px; flex-wrap: wrap; }
.footer__bottom p { font-size: .78rem; color: var(--muted); }
.footer__pay { display: flex; gap: 12px; align-items: center; font-size: 1.6rem; color: var(--ivory-dim); }
.footer__pay .pay-cod { font-size: .68rem; font-weight: 700; letter-spacing: .14em; padding: 4px 8px; border: 1px solid var(--cream); color: var(--cream); border-radius: 3px; }
/* Sitemap §4 — legal links row (full EN/AR parity) */
.footer__legal { display: flex; justify-content: center; gap: clamp(16px, 3vw, 36px); padding-block: 20px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer__legal a { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-dim); transition: color .25s; }
.footer__legal a:hover { color: var(--cream); }

.footer__col ul{
	padding-inline-start: 0;
}

/* Sitemap §8 — floating WhatsApp button */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 350; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(0,0,0,.35); transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.45); color: #fff; }
@media (max-width: 760px) { .whatsapp-fab { bottom: 88px; right: 16px; } }

/* =========================================================================
   Page hero (interior)
   ========================================================================= */
.pagehero { position: relative; padding-block: clamp(120px, 16vh, 220px) clamp(50px, 7vw, 90px); text-align: center; overflow: hidden; }
.pagehero::before { content: ""; position: absolute; inset: 0; background: var(--onyx-2); z-index: 0; }
.pagehero > * { position: relative; z-index: 1; }
.pagehero .eyebrow { display: block; margin-bottom: 16px; }
.pagehero h1 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.breadcrumb { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }
.breadcrumb a:hover { color: var(--gold-soft); }

/* =========================================================================
   Shop layout
   ========================================================================= */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 20px); }
.filter-block { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.filter-block h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.filter-list li { margin-bottom: 11px; }
.filter-list label { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ivory-dim); cursor: pointer; }
.filter-list label:hover { color: var(--ivory); }
.filter-list input { accent-color: var(--gold); }
.filter-list .count { margin-left: auto; color: var(--muted); font-size: .8rem; }
.price-inputs { display: flex; gap: 10px; align-items: center; }
.price-inputs input { width: 100%; padding: 11px; border: 1px solid var(--line); background: var(--onyx-2); }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer; }
.swatch.active { outline: 1px solid var(--gold); outline-offset: 2px; }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 14px; }
.shop-toolbar .count { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.shop-toolbar select { padding: 12px 38px 12px 16px; border: 1px solid var(--line); background: var(--onyx-2); color: var(--ivory); appearance: none; font-size: .82rem; letter-spacing: .08em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c6a662' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.filter-toggle { display: none; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; }
.pagination a, .pagination span { min-width: 44px; height: 44px; display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--line); font-size: .85rem; color: var(--ivory-dim); transition: border-color .25s, color .25s, background .25s; }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: var(--onyx); border-color: var(--gold); }

/* =========================================================================
   Product detail
   ========================================================================= */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.pdp__gallery { display: grid; grid-template-columns: 84px 1fr; gap: 16px; }
.pdp__thumbs { display: flex; flex-direction: column; gap: 12px; }
.pdp__thumbs button { aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--line); }
.pdp__thumbs button.active { border-color: var(--gold); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp__main { aspect-ratio: 3/4; overflow: hidden; background: var(--onyx-3); }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__cat { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.pdp__title { font-size: clamp(2rem, 3.6vw, 3rem); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin: 12px 0 16px; }
.pdp__rating { display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: .85rem; margin-bottom: 20px; }
.pdp__rating span { color: var(--muted); }
.pdp__price { font-size: 1.6rem; font-family: var(--serif); color: var(--gold-soft); margin-bottom: 26px; display: flex; gap: 14px; align-items: baseline; }
.pdp__price .old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.pdp__desc { color: var(--ivory-dim); margin-bottom: 28px; }
.opt-group { margin-bottom: 26px; }
.opt-group .label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.size-list { display: flex; flex-wrap: wrap; gap: 8px; }
.size-list button { min-width: 50px; height: 46px; border: 1px solid var(--line); font-size: .85rem; color: var(--ivory-dim); transition: border-color .25s, background .25s, color .25s; }
.size-list button.active { background: var(--gold); color: var(--onyx); border-color: var(--gold); }
.size-list button:hover { border-color: var(--gold); }
.pdp__buy { display: flex; gap: 12px; margin-bottom: 16px; }
.qty { display: flex; align-items: center; border: 1px solid var(--gold); }
.qty button { width: 48px; height: 56px; font-size: 1.1rem; color: var(--gold-soft); }
.qty input { width: 50px; text-align: center; border: none; background: transparent; }
.pdp__assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; text-align: center; }
.pdp__assure div { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ivory-dim); }
.pdp__assure i { display: block; font-size: 1.3rem; color: var(--gold); margin-bottom: 10px; }

.acc { border-top: 1px solid var(--line); margin-top: 28px; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__body p { padding-bottom: 20px; color: var(--ivory-dim); font-size: .92rem; }
.acc__item.open .acc__body { max-height: 240px; }
.acc__item.open .acc__head i { transform: rotate(45deg); }
.acc__head i { transition: transform .3s; }

/* =========================================================================
   Cart / checkout
   ========================================================================= */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.cart-row { display: grid; grid-template-columns: 116px 1fr auto; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-row__img { aspect-ratio: 3/4; overflow: hidden; background: var(--onyx-3); }
.cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__name { font-family: var(--serif); font-size: 1.3rem; }
.cart-row__cat { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.cart-row__remove { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; display: inline-block; }
.cart-row__remove:hover { color: var(--gold); }
.cart-row__price { text-align: right; font-size: 1.1rem; color: var(--gold-soft); }
.summary { background: var(--onyx-2); border: 1px solid var(--line); padding: 36px; position: sticky; top: calc(var(--header-h) + 20px); }
.summary h3 { font-size: 1.6rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin-bottom: 24px; }
.summary__row { display: flex; justify-content: space-between; padding: 13px 0; font-size: .95rem; color: var(--ivory-dim); }
.summary__row.total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 22px; font-family: var(--serif); font-size: 1.5rem; color: var(--gold-soft); }
.summary__note { font-size: .78rem; color: var(--muted); margin-top: 16px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.field input, .field textarea, .field select { padding: 15px; border: 1px solid var(--line); background: var(--onyx-2); color: var(--ivory); outline: none; transition: border-color .25s; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.fieldset-title { font-size: 1.5rem; font-family: var(--serif); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 22px; }

.confirm { text-align: center; max-width: 640px; margin: 0 auto; }
.confirm__check { width: 88px; height: 88px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 28px; }
.confirm .ref { display: inline-block; margin-top: 20px; padding: 13px 28px; border: 1px dashed var(--gold); color: var(--gold-soft); letter-spacing: .16em; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { background: var(--onyx); text-align: center; padding: 44px 22px; }
.value i { font-size: 2rem; color: var(--gold); margin-bottom: 18px; }
.value h4 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; margin-bottom: 12px; }
.value p { color: var(--ivory-dim); font-size: .92rem; }

/* =========================================================================
   Mobile drawer
   ========================================================================= */
.drawer { position: fixed; inset: 0; z-index: 400; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .35s; }
.drawer.open .drawer__backdrop { opacity: 1; }
.drawer__panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(380px, 88vw); background: var(--onyx-2); border-right: 1px solid var(--line); padding: 28px; transform: translateX(-100%); transition: transform .4s var(--ease); overflow-y: auto; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer__head img { height: 36px; filter: brightness(0) invert(1); }
.drawer__nav > li { border-bottom: 1px solid var(--line); }
.drawer__nav > li > a, .drawer__acc-head { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 17px 0; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory); }
.drawer__sub { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.drawer__sub li a { padding: 10px 0 10px 16px; display: block; font-size: .86rem; color: var(--ivory-dim); text-transform: none; letter-spacing: 0; }
.drawer__acc.open .drawer__sub { max-height: 420px; }
.drawer__acc.open .drawer__acc-head i { transform: rotate(180deg); }
.drawer__acc-head i { transition: transform .3s; color: var(--gold); }

/* =========================================================================
   Reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Directional reveal variants */
.reveal--left  { transform: translateX(-46px); }
.reveal--right { transform: translateX(46px); }
.reveal--zoom  { transform: scale(.9); }
.reveal--left.in, .reveal--right.in, .reveal--zoom.in { transform: none; }

/* Staggered cascade */
.reveal-stagger > * { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal-stagger.in > * { opacity: 1; transform: none; }

/* Image clip-reveal */
.clip-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); }
.clip-reveal.in { clip-path: inset(0 0 0 0); }

/* On-load entrances */
@keyframes dn-fade-down { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes dn-fade-up   { from { opacity: 0; transform: translateY(26px); }  to { opacity: 1; transform: none; } }
@keyframes dn-rise      { from { opacity: 0; transform: translateY(40px); }  to { opacity: 1; transform: none; } }
.header { animation: dn-fade-down 1s var(--ease) both; }
.announce { animation: dn-fade-down .7s var(--ease) both; }
.hero__slide.active .hero__content > * { animation: dn-rise 1s var(--ease) both; }
.hero__slide.active .hero__content > *:nth-child(2) { animation-delay: .12s; }
.hero__slide.active .hero__content > *:nth-child(3) { animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > *, .clip-reveal { transition: none; }
    .header, .announce, .hero__slide.active .hero__content > * { animation: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .mega__inner { grid-template-columns: repeat(3, 1fr); }
    .mega__feature { display: none; }
    .catrow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
    :root { --header-h: 74px; }
    .header__nav, .has-mega .mega { display: none; }
    .menu-toggle { display: block; }
    .split, .split--reverse .split__media, .pdp, .impact__inner, .cart-layout, .shop-layout { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .occasions { grid-template-columns: 1fr 1fr; }
    .occ.occ--tall { grid-row: auto; aspect-ratio: 3/4.2; }
    .filters { display: none; } .filters.open { display: block; }
    .filter-toggle { display: inline-flex; }
    .pdp__info, .summary { position: static; }
    .mosaic { grid-template-columns: repeat(3, 1fr); }
    .mosaic a.big { grid-column: span 2; grid-row: span 2; }
    .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .catrow, .occasions { grid-template-columns: 1fr; }
    .product-grid, .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .press-row, .stats, .values { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cart-row { grid-template-columns: 84px 1fr; }
    .cart-row__price { grid-column: 2; text-align: left; }
    .pdp__gallery { grid-template-columns: 1fr; }
    .pdp__thumbs { flex-direction: row; order: 2; }
    .footer__top { grid-template-columns: 1fr; }
    .hero__scroll { display: block; }
}
@media (max-width: 460px) {
    .product-grid, .product-grid--3, .mosaic { grid-template-columns: 1fr 1fr; }
    .mosaic a.big { grid-column: span 2; }
}

/* =========================================================================
   Comprehensive responsive sweep — every homepage block + mobile bottom bar
   ========================================================================= */
@media (max-width: 1200px) {
    /* Editrow (Shop Sale) goes 4 → 3 cols */
    .editrow { grid-template-columns: repeat(3, 1fr); }
    /* Portraits: 4 → 3 */
    .portraits { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
    /* Header — shrink search bar so logo + nav + actions still fit */
    .header__search { min-width: 180px; }
    .header__nav { gap: 22px; }
    .header__nav > li > a { font-size: .82rem; letter-spacing: .12em; padding: 30px 2px; }
}
@media (max-width: 980px) {
    /* The drawer takes over: hide desktop nav + search, show hamburger */
    .header__search, .header__toggles { display: none; }
    .header__actions { gap: 14px; }
    .header__logo img { height: 50px; }
    .header.is-stuck .header__logo img, .header.solid .header__logo img { height: 34px; }
    /* Editrow: 3 → 2 */
    .editrow { grid-template-columns: repeat(2, 1fr); }
    /* Edit bar (heading + tabs) stacks */
    .edit-bar { flex-direction: column; align-items: flex-start; gap: 18px; }
    /* Statband: 4 nums → 2x2 */
    .statband__nums { grid-template-columns: repeat(2, 1fr); }
    /* Portraits 3 → 2 */
    .portraits { grid-template-columns: repeat(2, 1fr); padding: clamp(40px, 6vw, 70px) clamp(20px, 3vw, 30px); }
    /* Footer: 4 cols → 2 */
    .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
    /* Newsletter stacks sunbird above text */
    .newsletter .container { flex-direction: column; text-align: center; }
    .newsletter .container > div { text-align: center !important; }
    .newsletter__form { margin: 24px auto 0 !important; }
    /* Brand frame inset shrinks */
    .brand-frame { inset: 10px; }
    .brand-frame__mark { font-size: .5rem; padding: 5px 8px; }
    .brand-frame__mark img { height: 16px; }
    /* Vips press scroller arrows hidden */
    .vips__arrows { display: none; }
}
@media (max-width: 760px) {
    :root { --header-h: 64px; --gutter: clamp(16px, 4vw, 24px); }
    /* Hero content tightens */
    .hero__content { padding: 0 var(--gutter); }
    .hero__nav { right: 12px; bottom: 76px; }
    .hero__nav button { width: 42px; height: 42px; }
    .hero__dots { bottom: 26px; }
    /* Video section caption keeps left-bottom but shrinks */
    .banner__body { font-size: .9rem; }
    /* Editrow: 2 cols → 1 col */
    .editrow { grid-template-columns: 1fr; gap: 1px; }
    .editcard { aspect-ratio: 16/10; }
    /* Edit bar tabs scroll horizontally */
    .edit-bar__tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
    .edit-bar__tabs::-webkit-scrollbar { display: none; }
    .edit-bar__tabs button { flex: 0 0 auto; }
    /* Brand spectrum strip shorter */
    .brand-spectrum { height: 3px; }
    /* Statband one-column numbers */
    .statband__nums { grid-template-columns: 1fr 1fr; gap: 18px; }
    .statband__num strong { font-size: 2rem; }
    /* Portraits: 2 cols stays, smaller padding */
    .portraits { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 40px 16px; }
    .portrait__name { font-size: .78rem; }
    .portrait__role { font-size: .72rem; }
    /* Footer 2 → 1 col */
    .footer__top { grid-template-columns: 1fr; gap: 24px; }
    .footer__brand img { height: 64px !important; }
    .footer__legal { gap: 12px; }
    .footer__legal a { font-size: .62rem; }
    .footer__bottom { flex-direction: column; text-align: center; padding-block: 22px; }
    /* Body bottom-padding so sticky mobile bar doesn't cover content */
    body { padding-bottom: 60px; }
    /* Arch pattern strip shrinks */
    .brand-pattern-strip { height: 64px; }
    /* WhatsApp FAB sits above sticky bar */
    .whatsapp-fab { bottom: 80px; right: 14px; width: 50px; height: 50px; font-size: 1.4rem; }
    /* Drawer panel a touch wider */
    .drawer__panel { width: min(340px, 86vw); padding: 22px; }
}
@media (max-width: 460px) {
    .hero { min-height: 480px; }
    .hero__content h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .banner { height: clamp(420px, 70vh, 600px) !important; }
    .statband__nums { grid-template-columns: 1fr; }
    .portraits { grid-template-columns: 1fr 1fr; }
    .portrait__img { width: 100%; }
    .editcard__name { font-size: 1.05rem; }
    .footer__brand img { height: 56px !important; }
    .pay-cod { font-size: .58rem; padding: 3px 6px; }
}

/* =========================================================================
   Mini Cart slide-out panel — ported from shoptheme.css
   CSS variables replaced with design2 values (no alukas theme dependency)
   ========================================================================= */

/* Panel */
.pls-minicart-slide {
    background-color: #fff;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; bottom: 0;
    right: 0; left: auto;
    width: 380px;
    max-width: 90vw;
    z-index: 13200;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: -12px 0 44px rgba(0,0,0,.22);
}
[dir="rtl"] .pls-minicart-slide {
    right: auto; left: 0;
    transform: translateX(-100%);
    box-shadow: 12px 0 44px rgba(0,0,0,.22);
}
.pls-minicart-slide.opened { transform: translateX(0); }

/* Backdrop */
.pls-mask-overaly {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,.6);
    z-index: 13100;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.pls-mask-overaly.opened { opacity: 1; visibility: visible; }

/* Header bar */
.pls-minicart-header {
    background-color: #f8f8f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    border-bottom: 1px solid #eee;
    flex: 0 0 auto;
}
.pls-minicart-header .minicart-title {
    border: 0 !important;
    flex: 1 1 auto;
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
.pls-minicart-header .minicart-title .pls-minicart-count { color: var(--gold, #c6a662); }
.pls-minicart-slide .minicart-title:before { content: none; }
.close-sidebar { flex: 0 0 auto; font-size: 0; text-decoration: none; }
.pls-minicart-header .close-sidebar { font-size: 16px; color: #555; }
.pls-minicart-header .close-sidebar:before { content: ''; }
.pls-minicart-header .close-sidebar:hover { color: #111; }

/* Scrollable body */
.pls-minicart-slide .widget_shopping_cart {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    overflow-y: auto;
    position: relative;
}
.pls-minicart-slide .widget_shopping_cart_content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

/* Cart items */
.pls-minicart-slide .top-cart { padding: 0 22px; }
.pls-minicart-slide .top-cart ul,
.pls-minicart-slide .cart_list { list-style: none; margin: 0; padding: 0; }
.widget_shopping_cart .mini_cart_item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
}
.widget_shopping_cart .mini-cart-item-content {
    flex: 1 1 auto;
    padding-right: 25px;
}
.widget_shopping_cart .mini-cart-item-content:lang(ar) { padding-right: 0; padding-left: 25px; }
.widget_shopping_cart .mini_cart_item_image {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}
.widget_shopping_cart .mini_cart_item_image img,
.pls-minicart-slide .top-cart img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    max-width: none !important;
}
.widget_shopping_cart .mini-cart-item-content div.quantity { margin: 5px 0; }
.pls-minicart-slide .top-cart a { color: #1f2937; text-decoration: none; }
.pls-minicart-slide .top-cart a:hover { color: var(--gold, #c6a662); }
/* .pls-minicart-slide .top-cart .remove,
.pls-minicart-slide .top-cart .remove_from_cart_button { color: #c0392b; } */

/* Empty state */
.widget_shopping_cart .woocommerce-mini-cart__empty-message,
.pls-minicart-slide .top-cart .woocommerce-mini-cart__empty-message {
    padding: 30px 0;
    text-align: center;
    color: #9aa3af;
    font-weight: normal;
    margin-top: 25px;
    margin-bottom: 40px;
}


woocommerce-mini-cart-item.mini_cart_item .remove_cart{
    font-size: 0;
}

/* Footer: total + buttons */
.widget_shopping_cart .widget_shopping_cart_footer {
    border-top: 1px solid #eee;
    margin: 0 22px;
    padding: 1rem 0;
    flex: 0 0 auto;
}
.woocommerce-mini-cart__total,
.pls-minicart-slide .top-cart .total,
.pls-minicart-slide .top-cart .woocommerce-mini-cart__total {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 700;
    padding: 14px 0;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}
.widget_shopping_cart .total .amount { color: var(--gold, #c6a662); font-weight: 500; font-size: 16px; }
.woocommerce-mini-cart__buttons,
.pls-minicart-slide .top-cart .buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 0;
}
.woocommerce-mini-cart__buttons a,
.pls-minicart-slide .top-cart .buttons a,
.pls-minicart-slide .top-cart .button {
    display: block;
    padding: 11px 18px;
    border-radius: 50px;
    background: #1f2937;
    color: #fff;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}
.woocommerce-mini-cart__buttons a:first-child {
    background: none;
    border: 2px solid var(--gold, #c6a662);
    color: var(--gold, #c6a662);
}
.woocommerce-mini-cart__buttons a:first-child:hover {
    background-color: var(--gold, #c6a662);
    color: #0c0b0a;
}
.widget_shopping_cart .buttons a.checkout,
.pls-minicart-slide .top-cart .button.checkout,
.pls-minicart-slide .top-cart .checkout {
    background-color: var(--gold, #c6a662);
    color: #0c0b0a;
}
.widget_shopping_cart .buttons a.checkout:hover { background-color: #b8924e; color: #fff; }

/* Loading overlay per item */
.mini_cart_item.loading:after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255,255,255,.7);
    z-index: 8;
}

@media (max-width: 600px) { .pls-minicart-slide { width: 300px; } }

/* =========================================================================
   Mobile sticky bottom action bar — Sitemap §8 "Sticky controls"
   (handles cart, wishlist, search, account on every mobile viewport)
   ========================================================================= */
.mobile-bar { display: none; }
@media (max-width: 760px) {
    .mobile-bar {
        display: grid; grid-template-columns: repeat(4, 1fr);
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 340;
        background: rgba(45,42,38,.96); backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
    }
    .mobile-bar a, .mobile-bar button {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 4px; padding: 10px 6px; color: var(--ivory);
        font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
        position: relative; background: transparent; border: 0;
    }
    .mobile-bar i { font-size: 1.1rem; color: var(--cream); }
    .mobile-bar a:active, .mobile-bar button:active { background: rgba(246,223,164,.08); }
    .mobile-bar .cart-count {
        position: absolute; top: 4px; right: calc(50% - 18px);
        background: var(--cream); color: var(--onyx);
        font-size: .55rem; min-width: 14px; height: 14px;
        border-radius: 50%; display: grid; place-items: center;
    }
}


:root{
    --pls-link-color: #222222;
    --pls-link-color: #777777;
}

.widget_shopping_cart .mini-cart-item-content div.quantity {
    margin: 5px 0;
}
div.quantity {
    background-color: var(--pls-body-background);
    border: 2px solid var(--pls-border-color);
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    text-align: center;
}
.quantity {
    width: auto;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    zoom: 1;
}

.quantity label.minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    margin-left: 1px;
}
.quantity label {
    cursor: pointer;
    font-size: 18px;
    font-weight: normal;
    padding: 0;
    margin: 0;
    min-width: 27px;
    color: var(--pls-link-color);
    display: block;
}

.quantity label.plus {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    float: left;
    margin-right: 15px;
    max-width: 25%;
}
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    height: auto;
    box-shadow: none;
}
.widget_shopping_cart .mini_cart_item_image img {
    max-width: 75px !important;
}

.woocommerce a.remove:before, .mfp-close:before {
    content: "\e880";
}

.woocommerce a.remove:before{
    font-family: 'Linearicons-Free';
    font-size: 16px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}


.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
    position: absolute;
    top: 0;
    right: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}


.widget_shopping_cart .mini-cart-item-content .quantity .qty, .widget_shopping_cart .mini-cart-item-content .quantity .qty2 {
    height: 35px;
}

.woocommerce .quantity .qty, .woocommerce .quantity .qty2 {
    border: none;
    border-radius: 0;
    color: var(--pls-link-color);
    font-size: 18px;
    /* padding: 5px; */
    text-align: center;
    height: 43px;
    width: 30px;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    overflow-clip-margin: 0px !important;
    overflow: clip !important;
    padding: 0;
}

.woocommerce .quantity .qty, .woocommerce .quantity .qty2::-webkit-outer-spin-button, 
.woocommerce .quantity .qty, .woocommerce .quantity .qty2::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity label.plus:before {
    content: '\e9c1';
}

.quantity label:before {
    color: var(--pls-text-color);
    font-size: 12px;
    font-weight: 600;
}

.quantity label.minus:before {
    content: '\e9c2';
}

.quantity label:before {
    color: var(--pls-text-color);
    font-size: 12px;
    font-weight: 600;
}

.quantity label:before{
    display: inline-block;
    font-family: 'presslayouts-font';
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

.pls-minicart-slide .top-cart .remove{
    font-size: 0;
}

/* =========================================================================
   Toast notification — used by shop.js show_notification_box()
   (wishlist add/remove, cart feedback, quantity errors, etc.)
   ========================================================================= */
.notification_box {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    min-width: 220px;
    max-width: 340px;
    background: var(--gold, #c6a662);
    color: #0c0b0a;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(0,0,0,.22);
    z-index: 99999;
    pointer-events: none;
}
.notification_box span { color: inherit !important; }
.notification_box.btn-danger { background: #c0392b; color: #fff; }
.notification_box.btn-success { background: var(--gold, #c6a662); color: #0c0b0a; }
.notification_popup {
    animation: popup .65s forwards;
}
@keyframes popup {
    0%   { bottom: -100%; }
    60%  { bottom: 28px; }
    80%  { bottom: 22px; }
    100% { bottom: 28px; }
}

.editcard__fav.single_add_to_wishlist.active i {
    color: var(--burgundy);
}