/* ===== Her Greed — beige & light gold theme ===== */
:root{
  --beige:        #f5efe6;   /* page background */
  --beige-deep:   #ece3d4;   /* section alt bg */
  --sand:         #e3d5bf;   /* borders / tiles */
  --gold:         #c8a96a;   /* primary light gold */
  --gold-deep:    #b8945020; /* soft gold tint */
  --gold-soft:    #d8c39a;   /* hover gold */
  --ink:          #3c352b;   /* primary text */
  --ink-soft:     #6f6657;   /* secondary text */
  --white:        #fffdf9;
  --sale:         #b5654a;
  --shadow:       0 10px 40px rgba(120,100,60,.12);
  /* ASOS-style: one geometric sans everywhere (Jost = Futura clone). --serif kept as an
     alias so every old serif rule automatically becomes bold sans. */
  --serif: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--beige);
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}

h1,h2,h3{font-family:var(--sans);font-weight:700;text-transform:uppercase;letter-spacing:.03em;line-height:1.15}
.eyebrow{font-size:.72rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);font-weight:500;margin-bottom:.8rem}
.eyebrow--light{color:#f3e7cf}

/* ===== Buttons ===== */
.btn{
  display:inline-block;font-family:var(--sans);font-size:.84rem;letter-spacing:.1em;
  text-transform:uppercase;font-weight:700;padding:.95rem 2.2rem;cursor:pointer;
  border:1px solid transparent;transition:.3s ease;text-align:center;
}
.btn--dark{background:var(--ink);color:var(--white)}
.btn--dark:hover{background:var(--gold);color:var(--ink)}
.btn--light{background:var(--white);color:var(--ink);border-color:var(--white)}
.btn--light:hover{background:var(--gold);border-color:var(--gold);color:var(--white)}
.btn--ghost{background:transparent;color:var(--white);border-color:rgba(255,255,255,.7)}
.btn--ghost:hover{background:rgba(255,255,255,.15);border-color:#fff}
.btn--block{display:block;width:100%}

/* ===== Announcement bar ===== */
.announce{
  background:var(--ink);color:var(--beige);display:flex;align-items:center;
  justify-content:flex-start;font-size:.7rem;letter-spacing:.2em;
  text-transform:uppercase;padding:.6rem 0;overflow:hidden;white-space:nowrap;
}
.announce__track{display:flex;gap:2.6rem;align-items:center;white-space:nowrap;flex:0 0 auto;
  animation:hg-marquee 30s linear infinite}
.announce:hover .announce__track{animation-play-state:paused}
.announce__track span:nth-child(even){color:var(--gold)}
.announce__arrow{display:none}
@keyframes hg-marquee{from{transform:translateX(-50%)}to{transform:translateX(0)}}
@media(prefers-reduced-motion:reduce){.announce__track{animation:none}}

/* ===== Header ===== */
.header{position:sticky;top:0;z-index:50;background:var(--beige);border-bottom:1px solid var(--sand);transition:box-shadow .3s}
.header.scrolled{box-shadow:0 4px 20px rgba(120,100,60,.08)}
/* Boohoo-style header: logo left | search pill centre | icons right, category row under */
.header__inner{
  display:flex;flex-wrap:wrap;align-items:center;
  max-width:1440px;margin:0 auto;padding:.7rem 1.5rem 0;gap:1.4rem;
}
.logo{
  font-family:var(--serif);font-size:1.7rem;font-weight:600;letter-spacing:.32em;
  color:var(--ink);display:flex;flex:0 0 auto;
}
.logo img{height:44px;width:auto}
.nav{display:flex;gap:1.7rem;flex:1 1 100%;order:10;justify-content:center;align-items:center;
  min-height:40px;padding:.15rem 0 .3rem}
.nav a{font-size:.95rem;letter-spacing:0;text-transform:none;font-weight:400;
  position:relative;padding:.2rem 0;color:var(--ink);transition:color .25s}
.nav a:hover{color:var(--ink)}
.nav a::after{content:'';position:absolute;left:0;bottom:-2px;width:0;height:1px;background:var(--gold);transition:width .3s}
.nav a:hover::after{width:100%}
.nav__sale{color:#d0021b!important;font-weight:700!important}
.header__actions{display:flex;gap:.6rem;justify-content:flex-end;margin-left:auto;align-items:center}
.icon-btn{background:none;border:none;cursor:pointer;color:var(--ink);padding:.4rem;position:relative;display:flex}
.icon-btn:hover{color:var(--gold)}
.icon-btn--bag .bag-count{
  position:absolute;top:-2px;right:-2px;background:var(--gold);color:var(--white);
  font-size:.6rem;font-weight:600;width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-family:var(--sans);
}
/* Only show the bag/wishlist count once there's something in it. Higher specificity
   (.icon-btn ancestor) so it beats BOTH the --bag and --wish display:flex rules
   regardless of source order. */
.icon-btn .bag-count[hidden]{display:none}
.header__menu{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:.4rem;grid-column:1}
.header__menu span{width:22px;height:1.5px;background:var(--ink);transition:.3s}

/* ===== Search bar ===== */
.searchbar{max-height:0;overflow:hidden;background:var(--beige-deep);transition:max-height .35s ease;border-top:1px solid var(--sand)}
.searchbar.open{max-height:120px}
.searchbar__inner{max-width:760px;margin:0 auto;display:flex;align-items:center;padding:1.2rem 2rem;gap:1rem}
.searchbar input{flex:1;border:none;border-bottom:1px solid var(--gold);background:transparent;
  font-family:var(--serif);font-size:1.4rem;padding:.5rem 0;color:var(--ink);outline:none}
.searchbar input::placeholder{color:var(--ink-soft);opacity:.6}
.search-close{background:none;border:none;font-size:1.8rem;cursor:pointer;color:var(--ink-soft);line-height:1}

/* ===== Persistent mobile search bar (hidden on desktop) ===== */
.msearch{display:flex;align-items:center;gap:.6rem;flex:1 1 auto;max-width:860px;margin:0 auto;
  padding:.55rem 1.1rem;height:42px;
  background:var(--white);border:1px solid var(--sand);border-radius:999px}
#searchBtn{display:none} /* redundant — the boohoo-style search pill is always visible */
.msearch__icon{width:18px;height:18px;flex:0 0 18px;fill:none;stroke:var(--ink-soft);stroke-width:2;
  stroke-linecap:round}
.msearch input{flex:1;border:none;background:transparent;outline:none;font-family:var(--sans);
  font-size:.95rem;font-weight:400;color:var(--ink);-webkit-appearance:none}
.msearch input::placeholder{color:var(--ink-soft);opacity:.7}
.msearch input::-webkit-search-cancel-button{-webkit-appearance:none}

/* ===== Drawer (mobile menu) ===== */
/* overflow-y:auto is load-bearing: with the accordions expanded the nav is ~1400px tall,
   far past the viewport. Without it the overflow spills out of this fixed panel and is
   completely unreachable — the menu looks broken below the fold. */
.drawer{position:fixed;top:0;left:0;height:100%;width:300px;max-width:85vw;background:var(--beige);
  z-index:120;transform:translateX(-100%);transition:transform .35s ease;box-shadow:var(--shadow);
  overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;overscroll-behavior:contain}
.drawer.open{transform:translateX(0)}
.drawer__head{display:flex;justify-content:space-between;align-items:center;padding:1.4rem 1.6rem;
  border-bottom:1px solid var(--sand);font-size:.8rem;letter-spacing:.25em}
.drawer__head button{background:none;border:none;font-size:1.8rem;cursor:pointer;line-height:1;color:var(--ink)}
.drawer__nav{display:flex;flex-direction:column;padding:1rem 0}
.drawer__nav a{padding:1rem 1.6rem;font-size:.95rem;letter-spacing:.12em;text-transform:uppercase;
  border-bottom:1px solid var(--beige-deep);color:var(--ink)}
.drawer__nav a:hover{background:var(--beige-deep);color:var(--gold)}
.drawer__sale{color:var(--sale)!important}

/* ===== Overlay ===== */
.overlay{position:fixed;inset:0;background:rgba(60,53,43,.4);opacity:0;visibility:hidden;
  transition:.3s;z-index:110}
.overlay.show{opacity:1;visibility:visible}

/* ===== Hero ===== */
.hero{position:relative;height:78vh;min-height:520px;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;overflow:hidden}
.hero__media{position:absolute;inset:0;background-size:cover;background-position:center;}
.hero__media::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(60,53,43,.15),rgba(60,53,43,.45))}
.hero__content{position:relative;z-index:2;max-width:640px;padding:1rem}
.hero__eyebrow{font-size:.78rem;letter-spacing:.34em;margin-bottom:1rem;color:#f3e7cf}
.hero__title{font-size:clamp(2.4rem,5.5vw,4rem);line-height:1.05;margin-bottom:1rem;font-weight:700;text-shadow:0 2px 24px rgba(0,0,0,.25)}
.hero__sub{font-size:1.1rem;font-weight:400;margin-bottom:2rem;letter-spacing:.04em}
.hero__cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ===== Category tiles ===== */
.cats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--sand);padding:0}
.cat{position:relative;overflow:hidden;background:var(--beige)}
.cat__img{aspect-ratio:3/4;background-size:cover;background-position:center;transition:transform .6s ease}
.cat:hover .cat__img{transform:scale(1.05)}
.cat__label{position:absolute;left:0;right:0;bottom:0;padding:1.4rem;background:linear-gradient(transparent,rgba(60,53,43,.55));
  color:#fff;font-family:var(--serif);font-size:1.5rem;font-weight:500}

/* ===== Split banner ===== */
.split{display:grid;grid-template-columns:1fr 1fr;min-height:520px}
.split__media{background-size:cover;background-position:center}
.split__text{background:var(--beige-deep);display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:4rem clamp(2rem,6vw,6rem)}
.split__text h2{font-size:clamp(2rem,4vw,3.2rem);margin-bottom:1.2rem;line-height:1.1}
.split__text p{color:var(--ink-soft);max-width:420px;margin-bottom:2rem;font-size:1.02rem}

/* ===== Products ===== */
.products{max-width:1440px;margin:0 auto;padding:5rem 2rem}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2.5rem;
  border-bottom:1px solid var(--sand);padding-bottom:1rem}
.section-head h2{font-size:clamp(1.8rem,3.5vw,2.6rem)}
.section-head__link{font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);
  border-bottom:1px solid var(--gold);padding-bottom:2px}
.section-head__link:hover{color:var(--ink);border-color:var(--ink)}

.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.8rem}
.card{position:relative;cursor:pointer}
.card__img{position:relative;aspect-ratio:3/4;background-size:cover;background-position:center;overflow:hidden;background-color:var(--sand)}
.card__photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.card__img::after{content:'';position:absolute;inset:0;background:rgba(245,239,230,0);transition:.3s}
.card:hover .card__img::after{background:rgba(245,239,230,.08)}
.card__tag{position:absolute;top:.8rem;left:.8rem;background:var(--white);color:var(--ink);
  font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;padding:.35rem .6rem;font-weight:500;z-index:2}
.card__tag--sale{background:var(--sale);color:#fff}
.card__wish{position:absolute;top:.7rem;right:.7rem;background:var(--white);border:none;width:34px;height:34px;
  border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;opacity:0;transform:translateY(-4px);transition:.25s}
.card:hover .card__wish{opacity:1;transform:translateY(0)}
.card__wish svg{width:16px;height:16px}
.card__wish.active{background:var(--gold);color:#fff}
.card__add{position:absolute;left:.8rem;right:.8rem;bottom:.8rem;background:var(--ink);color:#fff;border:none;
  padding:.8rem;font-family:var(--sans);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;cursor:pointer;
  opacity:0;transform:translateY(8px);transition:.28s;z-index:2}
.card:hover .card__add{opacity:1;transform:translateY(0)}
.card__add:hover{background:var(--gold)}
.card__info{padding:.9rem 0 .2rem}
.card__name{font-size:.92rem;font-weight:400;margin-bottom:.2rem}
.card__price{font-size:.95rem;font-weight:700;color:var(--ink)}
.card__price .was{text-decoration:line-through;margin-right:.5rem;opacity:.6}
.card__price .now{color:var(--sale)}
.card__swatches{display:flex;gap:.35rem;margin-top:.5rem}
.swatch{width:14px;height:14px;border-radius:50%;border:1px solid var(--sand)}

/* ===== Editorial ===== */
.editorial{position:relative;height:60vh;min-height:420px;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;overflow:hidden}
.editorial__media{position:absolute;inset:0;background-size:cover;background-position:center}
.editorial__media::after{content:'';position:absolute;inset:0;background:rgba(60,53,43,.4)}
.editorial__overlay{position:relative;z-index:2;max-width:560px;padding:1rem}
.editorial__overlay h2{font-size:clamp(1.8rem,4vw,3rem);margin-bottom:1.6rem;color:#fff}

/* ===== Values ===== */
.values{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:1200px;margin:0 auto;padding:4rem 2rem;text-align:center}
.value svg{width:34px;height:34px;color:var(--gold);margin:0 auto .8rem}
.value h4{font-family:var(--sans);font-size:.85rem;letter-spacing:.16em;text-transform:uppercase;font-weight:500;margin-bottom:.3rem}
.value p{font-size:.85rem;color:var(--ink-soft)}

/* ===== Newsletter ===== */
.newsletter{background:var(--ink);color:var(--beige);text-align:center;padding:5rem 2rem}
.newsletter h2{font-size:clamp(2rem,4vw,3rem);color:#fff;margin-bottom:1rem}
.newsletter h2::after{content:'';display:block;width:48px;height:1px;background:var(--gold);margin:1rem auto 0}
.newsletter p{max-width:480px;margin:0 auto 2rem;color:#d9cfbf}
.newsletter__form{display:flex;max-width:480px;margin:0 auto;gap:0}
.newsletter__form input{flex:1;padding:.95rem 1.2rem;border:1px solid var(--gold);background:transparent;color:#fff;font-family:var(--sans);outline:none}
.newsletter__form input::placeholder{color:#b8ad9a}
.newsletter__note{margin-top:1rem;font-size:.85rem;color:var(--gold);min-height:1.2em}

/* ===== Footer ===== */
.footer{background:var(--beige-deep);color:var(--ink);padding:4rem 2rem 2rem}
.footer__cols{display:grid;grid-template-columns:1fr 1fr 1fr 1.6fr;gap:2.5rem;max-width:1280px;margin:0 auto;padding-bottom:3rem;border-bottom:1px solid var(--sand)}
.footer__col h5{font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;margin-bottom:1.2rem;font-family:var(--sans);font-weight:600}
.footer__col a{display:block;font-size:.88rem;color:var(--ink-soft);padding:.35rem 0}
.footer__col a:hover{color:var(--gold)}
.footer__col--wide p{font-size:.88rem;color:var(--ink-soft);margin-bottom:1.2rem;max-width:280px}
.socials{display:flex;gap:.8rem}
.socials a{width:38px;height:38px;border:1px solid var(--sand);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--ink)}
.socials a:hover{background:var(--gold);border-color:var(--gold);color:#fff}
.socials svg{width:18px;height:18px}
.footer__bottom{max-width:1280px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;
  padding-top:1.8rem;font-size:.8rem;color:var(--ink-soft);flex-wrap:wrap;gap:1rem}
.footer__legal{display:flex;gap:1.5rem}
.footer__legal a:hover{color:var(--gold)}

/* ===== Mini cart ===== */
.cart{position:fixed;top:0;right:0;height:100%;width:400px;max-width:90vw;background:var(--beige);
  z-index:130;transform:translateX(100%);transition:transform .35s ease;box-shadow:var(--shadow);display:flex;flex-direction:column}
.cart.open{transform:translateX(0)}
.cart__head{display:flex;justify-content:space-between;align-items:center;padding:1.4rem 1.6rem;border-bottom:1px solid var(--sand);font-size:.82rem;letter-spacing:.22em}
.cart__head button{background:none;border:none;font-size:1.8rem;cursor:pointer;line-height:1;color:var(--ink)}
.cart__body{flex:1;overflow-y:auto;padding:1rem 1.6rem}
.cart__empty{text-align:center;color:var(--ink-soft);padding:3rem 1rem;font-size:.95rem}
.cart-item{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--sand)}
.cart-item__img{width:70px;height:90px;background-size:cover;background-position:center;background-color:var(--sand);flex-shrink:0}
.cart-item__info{flex:1}
.cart-item__name{font-size:.9rem;margin-bottom:.2rem}
.cart-item__meta{font-size:.78rem;color:var(--ink-soft);margin-bottom:.4rem}
.cart-item__price{font-size:.88rem;color:var(--gold)}
.cart-item__remove{background:none;border:none;color:var(--ink-soft);cursor:pointer;font-size:.75rem;text-decoration:underline;align-self:flex-start}
.cart-item__remove:hover{color:var(--sale)}
.cart__foot{padding:1.4rem 1.6rem;border-top:1px solid var(--sand)}
.cart__total{display:flex;justify-content:space-between;font-size:1rem;margin-bottom:1rem;font-weight:500}

/* ===== Shop page ===== */
.shop-hero{background:var(--beige-deep);text-align:center;padding:3.5rem 2rem 2.8rem;border-bottom:1px solid var(--sand)}
.shop-hero h1{font-size:clamp(2.2rem,5vw,3.4rem);margin-bottom:.5rem}
.shop-hero p{color:var(--ink-soft)}
.breadcrumb{font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);margin-bottom:1.2rem}
.breadcrumb a:hover{color:var(--gold)}
.shop-wrap{max-width:1440px;margin:0 auto;padding:2.5rem 2rem 5rem}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}
.filters{display:flex;gap:.6rem;flex-wrap:wrap}
.filter-chip{border:1px solid var(--sand);background:var(--white);padding:.55rem 1.1rem;font-size:.74rem;letter-spacing:.12em;
  text-transform:uppercase;cursor:pointer;transition:.25s;color:var(--ink-soft)}
.filter-chip:hover{border-color:var(--gold);color:var(--ink)}
.filter-chip.active{background:var(--ink);color:#fff;border-color:var(--ink)}
.shop-sort{display:flex;align-items:center;gap:.6rem;font-size:.8rem;color:var(--ink-soft)}
.shop-sort select{font-family:var(--sans);border:1px solid var(--sand);background:var(--white);padding:.5rem .8rem;color:var(--ink);cursor:pointer}
.shop-count{font-size:.82rem;color:var(--ink-soft);margin-bottom:1.5rem}

/* ===== Toast ===== */
.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(20px);background:var(--ink);color:var(--beige);
  padding:.9rem 1.6rem;font-size:.82rem;letter-spacing:.06em;opacity:0;transition:.3s;z-index:200;pointer-events:none}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* ===== Reveal animation ===== */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}

/* ===== Responsive ===== */
@media(max-width:1024px){
  .grid{grid-template-columns:repeat(3,1fr)}
  .footer__cols{grid-template-columns:1fr 1fr}
}
@media(max-width:860px){
  /* Boohoo-style mobile header: hamburger | centred logo | icons, search below.
     Equal flex sides (flex:1) centre the logo on the page; icons tightened so the
     right cluster fits inside its half without shoving the logo off-centre. */
  .header__inner{display:flex;flex-wrap:wrap;align-items:center;padding:.7rem 1rem;gap:.5rem 0}
  .header__menu{display:flex;flex:1 1 0;align-items:flex-start}
  .logo{flex:0 0 auto;padding:0;justify-content:center}
  .logo img{height:30px}
  .nav{display:none}
  .header__actions{flex:1 1 0;justify-content:flex-end;gap:.3rem}
  .header__actions .icon-btn{padding:.2rem}
  .header__actions .icon-btn svg{width:20px;height:20px}
  /* Mobile: ASOS-style — no inline search field. Show a magnifier icon that
     expands the search overlay instead of the full-width pill. */
  .msearch{display:none}
  #searchBtn{display:flex}
  .cats{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .split__media{min-height:320px}
  .values{grid-template-columns:repeat(2,1fr)}
  .grid{grid-template-columns:repeat(2,1fr);gap:1.1rem}
}
@media(max-width:520px){
  .announce{font-size:.62rem}
  .logo img{height:32px}
  .footer__cols{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .newsletter__form{flex-direction:column}
  .hero{height:70vh}
}

/* ===== Boohoo-style mobile: full-bleed, image-forward, dense (phones) ===== */
@media(max-width:640px){
  /* product section reaches the screen edges */
  .products{padding:2rem 0 2.4rem}
  .section-head{margin:0 1rem 1rem;padding-bottom:.75rem}
  .section-head h2{font-size:1.4rem;letter-spacing:.02em}
  .section-head__link{font-size:.66rem;letter-spacing:.14em}
  /* tight 2-up grid, edge to edge like boohoo */
  .grid{grid-template-columns:repeat(2,1fr);gap:2px}
  .card__img{aspect-ratio:5/7}
  .card__info{padding:.55rem .7rem 1.1rem}
  .card__name{font-size:.82rem;line-height:1.25;margin-bottom:.3rem}
  .card__price{font-size:.86rem}
  .card__tag{font-size:.56rem;padding:.3rem .5rem;top:.5rem;left:.5rem}
  .card__wish{opacity:1;transform:none;width:30px;height:30px;top:.5rem;right:.5rem}
  .card__swatches{margin-top:.4rem}
  /* full-bleed category tiles */
  .cats{gap:2px}
  .cat__img{aspect-ratio:5/7}
  .cat__label{font-size:1rem;padding:.9rem}
  /* denser editorial / values / newsletter */
  .products .section-head{align-items:flex-end}
  .values{gap:1.2rem;padding:2.4rem 1.2rem}
  .newsletter{padding:3rem 1.2rem}
}

/* ===== Storefront modals (checkout + contact) ===== */
.smodal{position:fixed;inset:0;background:rgba(60,53,43,.5);display:none;align-items:flex-start;justify-content:center;z-index:300;padding:5vh 1rem;overflow-y:auto}
.smodal.open{display:flex}
.smodal__card{background:var(--beige);width:460px;max-width:96vw;box-shadow:var(--shadow);animation:smpop .25s ease}
@keyframes smpop{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.smodal__head{display:flex;justify-content:space-between;align-items:center;padding:1.2rem 1.5rem;border-bottom:1px solid var(--sand);font-size:.8rem;letter-spacing:.22em}
.smodal__close{background:none;border:none;font-size:1.8rem;line-height:1;cursor:pointer;color:var(--ink-soft)}
.smodal__close:hover{color:var(--sale)}
.smodal__body{padding:1.5rem}
.sform{display:flex;flex-direction:column;gap:.9rem}
.sform label{display:flex;flex-direction:column;gap:.35rem;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-soft)}
.sform input,.sform select,.sform textarea{padding:.75rem .9rem;border:1px solid var(--sand);background:var(--white);outline:none;font-family:var(--sans);font-size:.95rem;font-weight:400;color:var(--ink)}
.sform input:focus,.sform select:focus,.sform textarea:focus{border-color:var(--gold)}
.sform textarea{min-height:90px;resize:vertical}
.sform .btn{margin-top:.4rem}
.co-summary{background:var(--white);border:1px solid var(--sand);padding:1rem 1.2rem;margin-bottom:1.3rem}
.co-line{display:flex;justify-content:space-between;font-size:.9rem;padding:.35rem 0;color:var(--ink-soft)}
.co-total{border-top:1px solid var(--sand);margin-top:.4rem;padding-top:.6rem;font-size:1.05rem;font-weight:500;color:var(--ink)}
.co-note{font-size:.78rem;color:var(--ink-soft);line-height:1.5}
.co-done{text-align:center;padding:1.5rem 1rem}
.co-done h3{font-family:var(--serif);font-size:1.8rem;margin-bottom:.6rem}
.co-done p{color:var(--ink-soft);margin-bottom:.6rem}
.co-done .btn{margin-top:1rem}
.co-check{width:64px;height:64px;border-radius:50%;background:var(--gold);color:#fff;font-size:2rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem}

/* ===== Brand logo (footer) ===== */
.footer__logo{height:56px;width:auto;margin-bottom:1rem}

/* ===== Account / Auth ===== */
.account-wrap{max-width:1080px;margin:0 auto;padding:2.2rem 1.5rem 5rem;min-height:50vh}
.account-title{font-size:clamp(1.9rem,4vw,2.8rem);margin-bottom:1.5rem}
.account-title span{font-style:italic}

/* auth card */
.auth-card{max-width:440px;margin:0 auto;background:var(--white);border:1px solid var(--sand);border-radius:18px;
  padding:2.2rem;box-shadow:0 10px 30px rgba(60,53,43,.06)}
.auth-tabs{display:flex;margin-bottom:1.6rem;border-bottom:1px solid var(--sand)}
.auth-tab{flex:1;background:none;border:none;padding:.8rem;font-family:var(--sans);font-size:.8rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ink-soft);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px}
.auth-tab.active{color:var(--ink);border-bottom-color:var(--gold)}
.auth-form{display:flex;flex-direction:column;gap:1rem}
.auth-form label{display:flex;flex-direction:column;gap:.4rem;font-size:.72rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--ink-soft)}
.auth-form input{padding:.8rem .9rem;border:1px solid var(--sand);border-radius:10px;background:var(--beige);outline:none;
  font-family:var(--sans);font-weight:400;font-size:.95rem;color:var(--ink)}
.auth-form input:focus{border-color:var(--gold);background:var(--white)}
.auth-check{flex-direction:row!important;align-items:center;gap:.5rem;text-transform:none!important;letter-spacing:0!important;font-size:.85rem!important}
.auth-check input{width:auto}
.auth-link{background:none;border:none;color:var(--ink-soft);font-size:.82rem;text-decoration:underline;cursor:pointer;align-self:center;padding:.2rem}
.auth-link:hover{color:var(--gold)}
.auth-link--danger:hover{color:var(--sale)}
.auth-hint{font-size:.85rem;color:var(--ink-soft);line-height:1.5}
.auth-note{font-size:.74rem;color:var(--ink-soft);text-align:center;margin-top:1.4rem;opacity:.8}
.auth-msg{font-size:.84rem;min-height:1em;margin:0}
.auth-msg.err{color:var(--sale)}
.auth-msg.ok{color:var(--green,#5b8a72)}

/* dashboard */
.account-head{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;margin-bottom:1.6rem;
  background:var(--white);border:1px solid var(--sand);border-radius:18px;padding:1.3rem 1.6rem;box-shadow:0 8px 24px rgba(60,53,43,.05)}
.account-hello{display:flex;align-items:center;gap:1rem;min-width:0}
.acct-avatar{width:54px;height:54px;flex:0 0 54px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:var(--ink);display:flex;align-items:center;justify-content:center;font-family:var(--sans);font-weight:700;font-size:1.2rem}
.account-hello .breadcrumb{margin-bottom:.15rem}
.account-title{font-size:clamp(1.35rem,3.5vw,1.9rem);margin:0}
.account-title span{font-style:normal}
.btn--dark-outline{color:var(--ink);border-color:var(--ink)}
.btn--dark-outline:hover{background:var(--ink);color:var(--white)}

.account-layout{display:grid;grid-template-columns:230px 1fr;gap:1.6rem;align-items:start}
.account-nav{display:flex;flex-direction:column;gap:.25rem;background:var(--white);border:1px solid var(--sand);
  border-radius:16px;padding:.6rem;box-shadow:0 8px 24px rgba(60,53,43,.05);position:sticky;top:90px}
.acct-tab{display:flex;align-items:center;gap:.6rem;text-align:left;background:none;border:none;border-radius:11px;
  padding:.8rem .95rem;font-family:var(--sans);font-size:.9rem;color:var(--ink-soft);cursor:pointer;transition:background .15s,color .15s}
.acct-tab svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;flex:0 0 18px}
.acct-tab:hover{color:var(--ink);background:var(--beige)}
.acct-tab.active{color:var(--ink);background:var(--beige-deep);font-weight:600}
.acct-view{display:none}
.acct-view.active{display:block;animation:fade .25s ease}
@keyframes fade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.acct-view-head{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;margin-bottom:1.1rem}
.acct-view-head .acct-h2{margin-bottom:0}
.acct-h2{font-size:1.4rem;margin-bottom:1.1rem}
.acct-h3{font-family:var(--sans);font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-soft);margin:1.4rem 0 .8rem}
.acct-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem;margin-bottom:1.4rem}
.acct-card{background:var(--white);border:1px solid var(--sand);border-radius:16px;padding:1.2rem 1.05rem;
  box-shadow:0 8px 24px rgba(60,53,43,.05);display:flex;flex-direction:column;gap:.5rem}
.acct-card__ico{width:38px;height:38px;border-radius:11px;background:var(--beige-deep);display:flex;align-items:center;justify-content:center}
.acct-card__ico svg{width:20px;height:20px;fill:none;stroke:var(--gold);stroke-width:1.8}
.acct-card__n{display:block;font-family:var(--sans);font-size:1.5rem;font-weight:700;line-height:1;color:var(--ink)}
.acct-card__l{font-size:.72rem;letter-spacing:.07em;text-transform:uppercase;color:var(--ink-soft)}
.acct-block{background:var(--white);border:1px solid var(--sand);border-radius:16px;padding:1.2rem 1.4rem;margin-bottom:1.1rem;box-shadow:0 8px 24px rgba(60,53,43,.05)}
.acct-block p{font-size:.92rem;line-height:1.7}
.acct-empty{color:var(--ink-soft);padding:1.5rem 0}
.acct-empty a{color:var(--gold)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* order cards */
.order-card{background:var(--white);border:1px solid var(--sand);border-radius:14px;padding:1.1rem 1.3rem;margin-bottom:.9rem;
  box-shadow:0 8px 24px rgba(60,53,43,.05)}
.order-card__top{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;margin-bottom:.5rem}
.order-card__date{color:var(--ink-soft);font-size:.82rem;margin-left:.5rem}
.order-card__items{font-size:.88rem;color:var(--ink-soft);margin-bottom:.5rem;line-height:1.5}
.order-card__totals{display:flex;gap:1rem;font-size:.78rem;color:var(--ink-soft);margin-bottom:.4rem}
.order-card__total{font-weight:700;font-size:1.05rem}
.order-card__badges{display:flex;gap:.4rem}
.ord-badge{font-size:.66rem;letter-spacing:.06em;text-transform:uppercase;padding:.28rem .62rem;border-radius:20px;font-weight:600}
.ord-paid{background:#e6f0ea;color:#5b8a72}
.ord-unpaid{background:var(--gold-soft);color:var(--ink)}
.ord-status{background:var(--beige-deep);color:var(--ink-soft)}

/* address cards */
.address-card{position:relative;background:var(--white);border:1px solid var(--sand);border-radius:14px;padding:1.1rem 1.3rem;margin-bottom:.9rem;
  box-shadow:0 8px 24px rgba(60,53,43,.05)}
.address-card p{font-size:.9rem;line-height:1.6}
.address-card__default{position:absolute;top:1rem;right:1.1rem;font-size:.64rem;letter-spacing:.08em;text-transform:uppercase;
  background:var(--gold);color:var(--white);padding:.24rem .55rem;border-radius:20px;font-weight:600}
.address-card__actions{display:flex;gap:1rem;margin-top:.7rem}
.address-form{background:var(--white);border:1px solid var(--sand);border-radius:14px;padding:1.4rem;margin-top:1rem;box-shadow:0 8px 24px rgba(60,53,43,.05)}
.address-form__actions{display:flex;gap:.8rem;justify-content:flex-end;margin-top:.5rem}

@media(max-width:760px){
  .account-wrap{padding:1.2rem 1rem 4rem}
  .account-head{padding:1.1rem 1.2rem;border-radius:16px}
  .acct-avatar{width:46px;height:46px;flex-basis:46px;font-size:1.05rem}
  #signOutBtn{padding:.55rem .9rem;font-size:.78rem}
  .account-layout{grid-template-columns:1fr;gap:1.1rem}
  .account-nav{flex-direction:row;overflow-x:auto;position:static;padding:.4rem;gap:.35rem;
    -webkit-overflow-scrolling:touch;scrollbar-width:none}
  .account-nav::-webkit-scrollbar{display:none}
  .acct-tab{flex:0 0 auto;white-space:nowrap;padding:.6rem .95rem}
  .acct-tab svg{display:none}
  .acct-cards{grid-template-columns:repeat(2,1fr);gap:.7rem}
  .acct-card{padding:1rem .85rem}
  .acct-card__n{font-size:1.3rem}
  .form-row{grid-template-columns:1fr}
}
@media(max-width:339px){ .acct-cards{grid-template-columns:1fr} }

/* Ensure [hidden] wins over the flex display on auth forms */
.auth-form[hidden]{display:none}

/* ===== Help / Customer Care ===== */
.help-wrap{max-width:1080px;margin:0 auto;padding:2.5rem 2rem 5rem;display:grid;grid-template-columns:220px 1fr;gap:3rem}
.help-toc{position:sticky;top:120px;align-self:start;display:flex;flex-direction:column;gap:.2rem;border-left:1px solid var(--sand);padding-left:1rem}
.help-toc a{font-size:.86rem;color:var(--ink-soft);padding:.5rem 0;letter-spacing:.03em}
.help-toc a:hover{color:var(--gold)}
.help-body{min-width:0}
.help-section{padding-bottom:2.8rem;margin-bottom:2.8rem;border-bottom:1px solid var(--sand);scroll-margin-top:130px}
.help-section:last-child{border-bottom:none;margin-bottom:0}
.help-section h2{font-size:clamp(1.7rem,3vw,2.3rem);margin-bottom:.8rem}
.help-section h3{font-family:var(--serif);font-size:1.3rem;font-weight:500;margin:1.8rem 0 .7rem}
.help-section h4{font-family:var(--sans);font-size:1rem;font-weight:500;margin-bottom:.3rem}
.help-section p{color:var(--ink-soft);margin-bottom:.9rem;max-width:62ch}
.help-lead{font-size:1.05rem;color:var(--ink)!important}
.help-section a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.help-section a:hover{color:var(--ink)}
.help-note{font-size:.88rem;font-style:italic}
.help-list,.help-steps{margin:0 0 1rem 1.2rem;color:var(--ink-soft)}
.help-list li,.help-steps li{margin-bottom:.5rem;padding-left:.3rem;max-width:60ch}
.info-table{width:100%;border-collapse:collapse;margin:1rem 0 1.2rem;font-size:.9rem}
.info-table th{text-align:left;background:var(--beige-deep);color:var(--ink);font-weight:500;
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;padding:.7rem .9rem;border:1px solid var(--sand)}
.info-table td{padding:.7rem .9rem;border:1px solid var(--sand);color:var(--ink-soft)}
.info-table tbody tr:nth-child(even){background:var(--white)}
.faq{padding:1rem 0;border-bottom:1px solid var(--sand)}
.faq:last-child{border-bottom:none}
.faq p{margin-bottom:0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin-top:1rem}
.contact-box{background:var(--white);border:1px solid var(--sand);padding:1.3rem 1.4rem}
.contact-box h4{color:var(--ink-soft);letter-spacing:.1em;text-transform:uppercase;font-size:.74rem;margin-bottom:.6rem}
.contact-box p{margin-bottom:.4rem}
@media(max-width:760px){
  .help-wrap{grid-template-columns:1fr;gap:1.5rem}
  .help-toc{flex-direction:row;flex-wrap:wrap;gap:.4rem 1rem;border-left:none;border-bottom:1px solid var(--sand);padding-left:0;padding-bottom:.8rem;position:static}
  .contact-grid{grid-template-columns:1fr}
}

/* ===== Google Sign-In ===== */
.google-signin{display:block;margin-bottom:1.2rem}
.btn--google{display:flex;align-items:center;justify-content:center;gap:.65rem;
  background:var(--white);color:var(--ink);border:1px solid var(--sand);
  letter-spacing:.14em;padding:.85rem 1rem}
.btn--google:hover{border-color:var(--gold);background:var(--beige-deep);color:var(--ink)}
.btn--google .g-logo{width:18px;height:18px;flex:0 0 18px}
.btn--google[disabled]{opacity:.55;cursor:default}
.auth-or{display:flex;align-items:center;gap:1rem;color:var(--ink-soft);font-size:.74rem;
  letter-spacing:.14em;text-transform:uppercase;margin-bottom:1.4rem}
.auth-or::before,.auth-or::after{content:"";flex:1;height:1px;background:var(--sand)}

/* ===== Logo variant switching: full lockup on desktop, HG mark on mobile ===== */
.brand-full{display:block}
.brand-mark{display:none}
@media(max-width:860px){
  .brand-full{display:none}
  .brand-mark{display:block}
}

/* ===== Mega-menu (desktop) ===== */
.nav__group{position:relative;display:flex}
.nav__top{display:inline-flex;align-items:center;gap:.4rem}
.nav__caret{width:6px;height:6px;border-right:1.4px solid currentColor;border-bottom:1.4px solid currentColor;
  transform:rotate(45deg) translateY(-1px);opacity:.55;transition:transform .25s}
.nav__group:hover .nav__caret{transform:rotate(-135deg) translateY(-1px)}
.mega{position:absolute;top:calc(100% + 11px);left:0;transform:translateY(8px);
  background:var(--beige);border:1px solid var(--sand);box-shadow:var(--shadow);
  padding:1.6rem 2rem;display:flex;gap:2.2rem;width:min(760px,94vw);
  opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s ease,transform .2s ease;z-index:60}
.mega::before{content:'';position:absolute;top:-11px;left:0;right:0;height:11px}
.nav__group:hover .mega,
.nav__group:focus-within .mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
.mega__cols{display:grid;grid-template-columns:repeat(2,minmax(200px,1fr));gap:0 2.4rem;flex:1;align-content:start}
.mega__cols a{padding:.42rem .6rem .42rem 0;font-size:.8rem;font-weight:400;letter-spacing:.02em;text-transform:none;
  color:var(--ink-soft);line-height:1.25}
.mega__cols a:hover{color:var(--gold)}
.mega a::after{display:none}
.mega__cols a.mega__all{grid-column:1/-1;font-weight:600;color:var(--ink);letter-spacing:.14em;
  text-transform:uppercase;font-size:.7rem;padding:0 0 .7rem;margin-bottom:.5rem;border-bottom:1px solid var(--sand)}
.mega__promo{flex:0 0 190px;border-left:1px solid var(--sand);padding-left:1.7rem;padding-right:.6rem;display:flex;flex-direction:column;gap:.55rem}
.mega__promo-h{font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold)}
.mega__promo a{font-size:.82rem;font-weight:400;letter-spacing:.02em;text-transform:none;color:var(--ink-soft)}
.mega__promo a:hover{color:var(--gold)}

/* ===== Mobile drawer — nested accordion ===== */
.drawer__acc{width:100%;background:none;border:none;border-bottom:1px solid var(--beige-deep);cursor:pointer;
  font-family:var(--sans);display:flex;align-items:center;justify-content:space-between;
  padding:1rem 1.6rem;font-size:.95rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink)}
.drawer__chev{width:8px;height:8px;border-right:1.5px solid var(--ink-soft);border-bottom:1.5px solid var(--ink-soft);
  transform:rotate(45deg);transition:transform .25s;flex:0 0 auto}
.drawer__acc[aria-expanded="true"] .drawer__chev{transform:rotate(-135deg)}
.drawer__panel{display:none;flex-direction:column;background:var(--beige-deep)}
.drawer__panel.open{display:flex}
.drawer__panel a{padding:.72rem 1.6rem .72rem 2.4rem;font-size:.82rem;letter-spacing:.05em;text-transform:none;
  color:var(--ink-soft);border-bottom:1px solid rgba(60,53,43,.05)}
.drawer__panel a:hover{color:var(--gold);background:transparent}

/* ===== Faceted filters (Size / Colour / Price) ===== */
.facetbar{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;margin-top:1.1rem}
.facetbar__label{font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);margin-right:.1rem}
.facet{position:relative}
.facet__btn{display:inline-flex;align-items:center;gap:.5rem;border:1px solid var(--sand);background:var(--white);
  padding:.55rem 1rem;font-family:var(--sans);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink);cursor:pointer;transition:.2s}
.facet__btn:hover,.facet.open .facet__btn{border-color:var(--gold)}
.facet__caret{width:6px;height:6px;border-right:1.3px solid currentColor;border-bottom:1.3px solid currentColor;
  transform:rotate(45deg);opacity:.55;transition:transform .2s}
.facet.open .facet__caret{transform:rotate(-135deg)}
.facet__panel{position:absolute;top:calc(100% + 7px);left:0;z-index:45;min-width:190px;
  background:var(--beige);border:1px solid var(--sand);box-shadow:var(--shadow);
  padding:.85rem;display:none;flex-direction:column;gap:.15rem}
.facet.open .facet__panel{display:flex}
.facet__opt{display:flex;align-items:center;gap:.55rem;padding:.35rem .3rem;font-size:.84rem;color:var(--ink-soft);cursor:pointer}
.facet__opt:hover{color:var(--ink)}
.facet__opt input{width:15px;height:15px;accent-color:var(--ink);cursor:pointer}
.facet__empty{color:var(--ink-soft);font-size:.82rem;padding:.3rem}
.swatches-grid{display:grid;grid-template-columns:1fr 1fr;gap:.2rem}
.swatch-opt{display:flex;align-items:center;gap:.5rem;background:none;border:1px solid transparent;border-radius:4px;
  padding:.4rem .45rem;font-family:var(--sans);font-size:.8rem;color:var(--ink-soft);cursor:pointer;text-align:left}
.swatch-opt span{width:16px;height:16px;border-radius:50%;border:1px solid rgba(60,53,43,.25);flex:0 0 16px}
.swatch-opt:hover{color:var(--ink)}
.swatch-opt.on{border-color:var(--gold);color:var(--ink)}
.active-facets{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:.85rem;align-items:center}
.afacet{display:inline-flex;align-items:center;gap:.4rem;border:1px solid var(--sand);background:var(--beige-deep);
  padding:.4rem .8rem;font-family:var(--sans);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--ink);cursor:pointer;transition:.2s}
.afacet span{color:var(--ink-soft);font-size:.9rem;line-height:1}
.afacet:hover{border-color:var(--gold)}
.afacet--clear{background:none;border-color:transparent;color:var(--ink-soft);text-decoration:underline;letter-spacing:.06em}

/* "Categories" toggle is desktop-hidden; the chips always show on desktop */
.cat-toggle{display:none}

/* Mobile: compact chips that wrap within the frame, tucked behind a Categories toggle */
@media(max-width:860px){
  .filters{flex-wrap:wrap;gap:.45rem;width:100%;max-height:2.4rem;overflow:hidden;transition:max-height .3s ease}
  .filters.open{max-height:75vh;overflow:auto;-webkit-overflow-scrolling:touch}
  .filter-chip{white-space:nowrap;padding:.42rem .8rem;font-size:.66rem;letter-spacing:.07em}
  .shop-toolbar{flex-direction:column;align-items:stretch;gap:.7rem}
  .cat-toggle{display:inline-flex;align-items:center;gap:.5rem;align-self:flex-start;background:none;border:none;
    color:var(--ink);font-family:var(--sans);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
    cursor:pointer;padding:.2rem 0}
  .cat-toggle .cv{width:7px;height:7px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
    transform:rotate(45deg);margin-bottom:2px;transition:transform .25s}
  .cat-toggle.open .cv{transform:rotate(-135deg);margin-bottom:-2px}
  .facet__panel{min-width:170px}
}

/* ===== Quick view (PDP) with size selection ===== */
.smodal__card--wide{width:720px;max-width:96vw}
.qv{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.qv__img{background-size:cover;background-repeat:no-repeat;background-position:center;background-color:var(--white);aspect-ratio:3/4;min-height:380px;border:1px solid var(--sand)}
.qv__ship{margin:.65rem 0;font-size:.82rem;color:var(--ink-soft);display:flex;flex-wrap:wrap;align-items:center;gap:.3rem .5rem}
.qv__ship-lbl{font-weight:700;color:var(--ink);text-transform:uppercase;letter-spacing:.04em;font-size:.72rem}
.qv__ship-c{white-space:nowrap}
.qv__ship-warn{flex-basis:100%;color:var(--sale);font-weight:600;margin-top:.2rem}
/* checkout: a line item that can't ship to the chosen country */
.co-item--noship{opacity:.6}
.co-ship-warn{color:var(--sale);font-weight:600;font-size:.85rem;margin:.5rem 0;display:flex;gap:.4rem;align-items:flex-start}
.qv__info{display:flex;flex-direction:column}
.qv__cat{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem}
.qv__name{font-family:var(--serif);font-size:1.7rem;font-weight:500;line-height:1.15;margin-bottom:.4rem}
.qv__price{font-size:1.1rem;margin-bottom:1rem}
.qv__price .was{color:var(--ink-soft);text-decoration:line-through;margin-right:.4rem}
.qv__price .now{color:var(--sale)}
.qv__desc{font-size:.9rem;color:var(--ink-soft);line-height:1.6;margin-bottom:1.1rem}
.qv__swatches{display:flex;gap:.4rem;margin-bottom:1.2rem}
.qv__swatches .swatch{width:20px;height:20px;border-radius:50%;border:1px solid var(--sand)}
/* Image gallery (multiple angles) */
.qv__media{display:flex;flex-direction:column;gap:.55rem;min-width:0}
.qv__thumbs{display:flex;gap:.45rem;flex-wrap:wrap}
.qv__thumb{width:52px;height:64px;flex:0 0 auto;border:1px solid var(--sand);background-color:var(--white);
  background-size:cover;background-position:center;cursor:pointer;padding:0;opacity:.75;transition:opacity .15s,border-color .15s}
.qv__thumb:hover{opacity:1}
.qv__thumb.sel{opacity:1;border-color:var(--ink);border-width:2px}
/* Colour selector */
/* Colour swatch circles (Amazon/boohoo style): the ring sits OUTSIDE the dot so a
   white swatch still reads as selected, and every dot keeps a hairline border so
   white/cream circles stay visible against the white panel. */
.qv__colours{display:flex;gap:.55rem;flex-wrap:wrap;margin-bottom:1rem}
.qcolour{width:34px;height:34px;padding:3px;border-radius:50%;border:1px solid transparent;
  background:none;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;
  transition:border-color .15s ease}
.qcolour__dot{width:100%;height:100%;border-radius:50%;background:var(--sw,#c9c4bb);
  border:1px solid rgba(0,0,0,.18);display:block}
.qcolour:hover{border-color:var(--gold)}
.qcolour.sel{border-color:var(--ink)}
.qcolour:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
.qcolour--legacy{padding:.5rem .8rem;border:1px solid var(--sand);background:var(--white);cursor:pointer;
  font-family:var(--sans);font-size:.78rem;letter-spacing:.04em;color:var(--ink-soft);transition:border-color .15s,color .15s}
.qv__sizelabel{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-soft);margin-bottom:.55rem}
.qv__sizes{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.4rem}
.qsize{min-width:44px;padding:.6rem .7rem;border:1px solid var(--sand);background:var(--white);
  font-family:var(--sans);font-size:.85rem;color:var(--ink);cursor:pointer;transition:.2s}
.qsize:hover{border-color:var(--gold)}
.qsize.sel{background:var(--ink);color:var(--white);border-color:var(--ink)}
#qvAdd{margin-top:auto}
@media(max-width:600px){ .qv{grid-template-columns:1fr} .qv__img{min-height:240px} }

/* Out-of-stock sizes + disabled buttons */
.qsize--out,.qsize:disabled{opacity:.4;text-decoration:line-through;cursor:not-allowed}
.qsize--out:hover{border-color:var(--sand)}
.btn:disabled{opacity:.5;cursor:not-allowed}
.btn--dark:disabled:hover{background:var(--ink);color:var(--white)}

/* ===== Wishlist ===== */
.icon-btn--wish{position:relative}
.icon-btn--wish .bag-count{position:absolute;top:-2px;right:-2px;background:var(--gold);color:var(--white);
  font-size:.6rem;font-weight:600;min-width:16px;height:16px;border-radius:50%;display:flex;align-items:center;
  justify-content:center;font-family:var(--sans);padding:0 3px}
#wishGrid .card__wish{opacity:1;transform:none}   /* always show the heart so items can be removed */
.wish-empty{text-align:center;padding:4rem 1rem 5rem;color:var(--ink-soft)}
.wish-empty__icon{width:46px;height:46px;stroke:var(--gold);stroke-width:1.3;fill:none;margin:0 auto 1rem;display:block}
.wish-empty h3{font-family:var(--serif);font-size:1.6rem;color:var(--ink);margin-bottom:.5rem}
.wish-empty p{margin-bottom:1.4rem}

/* ===== Per-size stock note (quick view / PDP) ===== */
.qv__stock{min-height:1rem;font-size:.8rem;color:var(--sale);margin-bottom:1rem;letter-spacing:.02em}

/* ===== Polished checkout summary ===== */
.co-items{display:flex;flex-direction:column;gap:.7rem;margin-bottom:1rem}
.co-item{display:flex;align-items:center;gap:.8rem}
.co-item__img{width:48px;height:60px;flex:0 0 48px;background-size:cover;background-position:center;border:1px solid var(--sand)}
.co-item__info{flex:1;display:flex;flex-direction:column;gap:.15rem}
.co-item__name{font-size:.9rem;color:var(--ink)}
.co-item__meta{font-size:.75rem;color:var(--ink-soft);letter-spacing:.03em}
.co-item__price{font-size:.9rem;color:var(--ink);white-space:nowrap}
.co-freeship{font-size:.8rem;color:var(--ink-soft);background:var(--beige-deep);border:1px dashed var(--sand);
  padding:.6rem .8rem;margin-bottom:1rem;text-align:center;letter-spacing:.02em}
.co-freeship--on{color:#5a7d4e;border-color:#9db98f;background:#eef3ea}

/* Order-history totals line (account page) */
.order-card__totals{display:flex;gap:1.2rem;font-size:.78rem;color:var(--ink-soft);margin-top:.4rem}

/* ===== Unified Sort / Size / Colour / Price controls ===== */
.facet__opt--btn{width:100%;display:flex;align-items:center;gap:.5rem;text-align:left;background:none;border:none;
  font-family:var(--sans);font-size:.84rem;color:var(--ink-soft);padding:.45rem .3rem;cursor:pointer}
.facet__opt--btn:hover{color:var(--ink)}
.facet__opt--btn.sel{color:var(--ink);font-weight:500}
.facet__opt--btn::before{content:"";width:6px;height:6px;border-radius:50%;flex:0 0 6px}
.facet__opt--btn.sel::before{background:var(--gold)}

@media(max-width:860px){
  /* Four equal boxes in a tidy 2×2 grid */
  .facetbar{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.2rem}
  .facet{width:100%}
  .facet__btn{width:100%;justify-content:space-between}
  .facet__panel{min-width:180px}
  .facetbar .facet:nth-child(even) .facet__panel{left:auto;right:0}
}

/* ===== ASOS-style typography overrides (bold geometric sans everywhere) ===== */
.cat__label,.qv__name,.co-done h3,.wish-empty h3,.acct-card__n,.help-section h3{
  font-weight:700;text-transform:uppercase;letter-spacing:.03em}
.searchbar input{font-weight:600;text-transform:uppercase;letter-spacing:.04em;font-size:1.2rem}
.section-head h2{letter-spacing:.04em}
.card__add,.card__tag{font-weight:700}
.section-head__link,.footer__col h5,.acct-h3{font-weight:700}
.eyebrow{font-weight:700}
.value h4{font-weight:700}
.qv__name{font-size:1.5rem}

/* ===================================================================
   Boohoo-parity additions: ratings, related products, richer PDP,
   product reviews, and checkout discount codes
   =================================================================== */

/* --- Fractional star rating (grey base with a gold copy clipped to %) --- */
.stars{position:relative;display:inline-block;font-size:.85rem;line-height:1;color:#dccfbb;letter-spacing:2px;white-space:nowrap;vertical-align:middle}
.stars::before{content:"★★★★★"}
.stars__fill{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:var(--gold)}
.stars__fill::before{content:"★★★★★"}

/* --- Rating on product cards --- */
.card__rating{display:flex;align-items:center;gap:.35rem;margin-top:.4rem}
.card__rcount{font-size:.72rem;color:var(--ink-soft)}

/* --- Small buttons + ghost buttons on light backgrounds --- */
.btn--sm{padding:.55rem .9rem;font-size:.7rem}
.qv__reviews .btn--ghost,.co-promo .btn--ghost{color:var(--ink);border-color:var(--sand)}
.qv__reviews .btn--ghost:hover,.co-promo .btn--ghost:hover{background:var(--beige-deep);border-color:var(--gold)}

/* --- PDP rating line under the product name --- */
.qv__ratingslot:empty{display:none}
.qv__ratingslot{margin-bottom:.5rem}
.qv__ratinglink{display:inline-flex;align-items:center;gap:.4rem;background:none;border:none;padding:0;cursor:pointer;color:var(--ink-soft);font-size:.78rem}
.qv__ratinglink span{text-decoration:underline}
.qv__ratinglink .stars{font-size:.95rem}

/* --- Size-guide link beside the size selector --- */
.qv__sizelabel--row{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.qv__sizeguide{font-size:.72rem;letter-spacing:.03em;text-transform:none;color:var(--ink-soft);text-decoration:underline;white-space:nowrap}
.qv__sizeguide:hover{color:var(--ink)}

/* --- Delivery / returns reassurance list --- */
.qv__meta{list-style:none;margin:.2rem 0 1.2rem;padding:1rem 0 0;border-top:1px solid var(--sand);display:flex;flex-direction:column;gap:.55rem}
.qv__meta li{display:flex;align-items:center;gap:.6rem;font-size:.82rem;color:var(--ink-soft)}
.qv__meta svg{width:20px;height:20px;flex:0 0 20px;fill:none;stroke:var(--gold);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}

/* --- Collapsible product details / care --- */
.qv__acc{border-top:1px solid var(--sand);padding:.85rem 0}
.qv__acc summary{cursor:pointer;font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink);list-style:none;display:flex;justify-content:space-between;align-items:center}
.qv__acc summary::-webkit-details-marker{display:none}
.qv__acc summary::after{content:"+";font-size:1.15rem;color:var(--ink-soft);line-height:1}
.qv__acc[open] summary::after{content:"–"}
.qv__acc-body{font-size:.86rem;color:var(--ink-soft);line-height:1.6;padding-top:.7rem}
.qv__acc-body a{color:var(--ink);text-decoration:underline}
.qv__spec{list-style:none;margin:.6rem 0 0;padding:0}
.qv__spec li{padding:.15rem 0}
.qv__spec-note{margin-top:.6rem;font-size:.8rem}

/* --- Reviews + related sections sit full-width below the .qv grid --- */
.qv__reviews,.qv__related{margin-top:1.6rem;padding-top:1.4rem;border-top:1px solid var(--sand)}
.qv__h{font-family:var(--serif);font-size:1.15rem;font-weight:700;margin-bottom:.9rem;text-transform:uppercase;letter-spacing:.06em}
.rev__summary{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem;font-size:.9rem;color:var(--ink)}
.rev__summary .stars{font-size:1.15rem}
.rev__summary b{font-weight:700}
.rev__none{font-size:.86rem;color:var(--ink-soft);margin-bottom:1rem}
.rev__list{display:flex;flex-direction:column;gap:1rem;margin-bottom:1rem}
.rev{border:1px solid var(--sand);background:var(--white);padding:.9rem 1rem}
.rev__top{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.rev__name{font-size:.82rem;font-weight:700;color:var(--ink)}
.rev__verified{font-size:.62rem;letter-spacing:.05em;text-transform:uppercase;color:#5a7d4e;background:#eef3ea;border:1px solid #9db98f;padding:.1rem .4rem;border-radius:3px}
.rev__title{font-size:.9rem;font-weight:600;color:var(--ink);margin:.4rem 0 .2rem}
.rev__body{font-size:.86rem;color:var(--ink-soft);line-height:1.55}
.rev__date{font-size:.72rem;color:var(--ink-soft);opacity:.7;margin-top:.4rem}
.rev__form{display:flex;flex-direction:column;gap:.6rem;margin-top:.8rem;border:1px solid var(--sand);padding:1rem;background:var(--beige)}
.rev__form input,.rev__form textarea{border:1px solid var(--sand);background:var(--white);padding:.6rem .7rem;font:inherit;font-size:.86rem;color:var(--ink)}
.rev__form textarea{resize:vertical}
.rev__stars-input{display:flex;gap:.15rem}
.rev__star{background:none;border:none;font-size:1.5rem;line-height:1;color:#dccfbb;cursor:pointer;padding:0;transition:color .12s}
.rev__star.on{color:var(--gold)}

/* --- "You may also like" horizontal rail --- */
.qv__rail{display:flex;gap:.8rem;overflow-x:auto;padding-bottom:.5rem;-webkit-overflow-scrolling:touch}
.qv__rel{flex:0 0 128px;background:none;border:none;padding:0;cursor:pointer;text-align:left;display:flex;flex-direction:column;gap:.35rem}
.qv__rel-img{display:block;width:128px;height:160px;background-size:cover;background-position:center;background-color:var(--white);border:1px solid var(--sand)}
.qv__rel:hover .qv__rel-img{border-color:var(--ink)}
.qv__rel-name{font-size:.78rem;color:var(--ink);line-height:1.3;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.qv__rel-price{font-size:.8rem;font-weight:700;color:var(--ink)}
.qv__rel-price .was{text-decoration:line-through;opacity:.6;margin-right:.3rem;font-weight:400;color:var(--ink-soft)}

/* ===================================================================
   ASOS-style expanding search — click the header pill to open a
   full-width panel with popular searches + live product suggestions
   =================================================================== */
.msearch,.msearch input{cursor:pointer}                 /* the pill is now a trigger */
body.search-open .msearch{display:none}                 /* header collapses into search mode while the overlay is open */
.searchbar.open{max-height:min(82vh,660px);overflow-y:auto;overflow-x:hidden}
.searchbar input{text-transform:none;letter-spacing:0}  /* readable typed queries */
body.search-open{overflow:hidden}                        /* lock page scroll while open */

.search-panel{max-width:760px;margin:0 auto;padding:0 2rem 1.6rem}
.search-pop__h{font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-soft);margin:.2rem 0 .75rem}
.search-chip{display:inline-block;margin:0 .5rem .5rem 0;padding:.5rem .95rem;border:1px solid var(--sand);
  background:var(--white);border-radius:999px;font:inherit;font-size:.82rem;color:var(--ink);cursor:pointer;transition:.15s}
.search-chip:hover{border-color:var(--gold);background:var(--beige)}

.search-results{display:flex;flex-direction:column}
.sresult{display:flex;align-items:center;gap:.9rem;width:100%;background:none;border:none;
  border-bottom:1px solid var(--sand);padding:.7rem 0;cursor:pointer;text-align:left}
.sresult:hover{background:rgba(200,169,106,.08)}
.sresult__img{width:48px;height:60px;flex:0 0 48px;background-size:cover;background-position:center;
  background-color:var(--white);border:1px solid var(--sand)}
.sresult__info{flex:1;min-width:0;display:flex;flex-direction:column;gap:.15rem}
.sresult__name{font-size:.88rem;color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sresult__cat{font-size:.72rem;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.08em}
.sresult__price{font-size:.85rem;font-weight:700;color:var(--ink);white-space:nowrap}
.sresult__price .was{text-decoration:line-through;opacity:.6;font-weight:400;color:var(--ink-soft);margin-right:.3rem}
.sresult-empty{padding:1.1rem 0;color:var(--ink-soft);font-size:.9rem}
.search-all{display:block;width:100%;text-align:left;background:none;border:none;padding:.95rem 0 .1rem;
  color:var(--ink);font-weight:700;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;cursor:pointer;text-decoration:underline}
.search-all:hover{color:var(--gold)}

@media(max-width:640px){
  .searchbar.open{max-height:100vh}
  .search-panel{padding:0 1.1rem 1.4rem}
  .searchbar__inner{padding:1rem 1.1rem}
}

/* --- Checkout discount code --- */
/* The [hidden] attribute must win over the display-setting classes below
   (a flex/block class otherwise overrides the UA [hidden]{display:none}). */
.rev__form[hidden],.co-line--discount[hidden]{display:none}
.co-promo{display:flex;gap:.5rem;margin-bottom:.55rem}
.co-promo input{flex:1;min-width:0;border:1px solid var(--sand);background:var(--white);padding:.6rem .7rem;font:inherit;font-size:.86rem;text-transform:uppercase;letter-spacing:.05em;color:var(--ink)}
.co-promo input::placeholder{text-transform:none;letter-spacing:normal;color:var(--ink-soft)}
.co-promo-msg{font-size:.8rem;margin-bottom:.9rem}
.co-promo-msg.ok{color:#5a7d4e}
.co-promo-msg.err{color:var(--sale)}
.co-line--discount{color:#5a7d4e;font-weight:600}

/* ============================================================
   Support chat assistant (bottom-right, minimizable)
   Built + injected by script.js (initChatbot). Storefront only.
   ============================================================ */
.hgc-fab{position:fixed;right:20px;bottom:20px;z-index:300;width:58px;height:58px;border-radius:50%;
  background:var(--gold);color:var(--ink);border:none;cursor:pointer;box-shadow:0 8px 24px rgba(60,53,43,.28);
  display:flex;align-items:center;justify-content:center;transition:transform .2s,background .2s}
.hgc-fab:hover{transform:translateY(-2px);background:var(--gold-soft)}
.hgc-fab svg{width:26px;height:26px;fill:none;stroke:var(--ink);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hgc-fab__dot{position:absolute;top:-2px;right:-2px;width:18px;height:18px;border-radius:50%;background:var(--sale);
  color:#fff;font-size:.62rem;font-weight:700;display:flex;align-items:center;justify-content:center;font-family:var(--sans)}
.hgc-fab.hide{display:none}

.hgc{position:fixed;right:20px;bottom:20px;z-index:301;width:340px;max-width:calc(100vw - 32px);
  height:470px;max-height:78vh;background:var(--white,#fffdf9);border:1px solid var(--sand);border-radius:16px;
  box-shadow:0 18px 50px rgba(60,53,43,.30);display:none;flex-direction:column;overflow:hidden;font-family:var(--sans)}
.hgc.open{display:flex}
.hgc__head{background:var(--ink);color:var(--beige);padding:.8rem 1rem;display:flex;align-items:center;gap:.6rem}
.hgc__avatar{width:30px;height:30px;border-radius:50%;background:var(--gold);flex:0 0 30px;display:flex;align-items:center;justify-content:center}
.hgc__avatar svg{width:16px;height:16px;fill:none;stroke:var(--ink);stroke-width:2}
.hgc__title{font-size:.9rem;font-weight:700;line-height:1.1}
.hgc__status{font-size:.66rem;color:var(--gold-soft);letter-spacing:.02em}
.hgc__min{margin-left:auto;background:none;border:none;color:var(--beige);cursor:pointer;font-size:1.4rem;line-height:1;padding:.1rem .3rem;opacity:.85}
.hgc__min:hover{opacity:1}
.hgc__body{flex:1;overflow-y:auto;padding:.9rem;background:var(--beige);display:flex;flex-direction:column;gap:.6rem}
.hgc__msg{max-width:82%;padding:.55rem .75rem;border-radius:14px;font-size:.85rem;line-height:1.45;white-space:pre-wrap}
.hgc__msg--bot{align-self:flex-start;background:var(--white,#fffdf9);border:1px solid var(--sand);border-bottom-left-radius:4px;color:var(--ink)}
.hgc__msg--user{align-self:flex-end;background:var(--gold);color:var(--ink);border-bottom-right-radius:4px}
.hgc__msg a{color:var(--sale);font-weight:600}
.hgc__chips{display:flex;flex-wrap:wrap;gap:.4rem;padding:0 .9rem .6rem}
.hgc__chip{background:var(--white,#fffdf9);border:1px solid var(--gold);color:var(--ink);border-radius:999px;
  padding:.32rem .7rem;font-size:.76rem;cursor:pointer;font-family:var(--sans);transition:background .15s}
.hgc__chip:hover{background:var(--gold);color:var(--ink)}
.hgc__foot{border-top:1px solid var(--sand);padding:.55rem;display:flex;gap:.4rem;align-items:center;background:var(--white,#fffdf9)}
.hgc__input{flex:1;border:1px solid var(--sand);border-radius:999px;padding:.5rem .8rem;font-size:.85rem;
  font-family:var(--sans);outline:none;color:var(--ink);background:var(--beige)}
.hgc__input:focus{border-color:var(--gold)}
.hgc__send{background:var(--ink);border:none;border-radius:50%;width:36px;height:36px;flex:0 0 36px;cursor:pointer;display:flex;align-items:center;justify-content:center}
.hgc__send svg{width:16px;height:16px;fill:none;stroke:var(--beige);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hgc__ticketlink{display:block;text-align:center;font-size:.72rem;color:var(--ink-soft);padding:.15rem 0 .5rem;background:var(--white,#fffdf9);cursor:pointer}
.hgc__ticketlink:hover{color:var(--sale)}
/* ticket form */
.hgc__form{padding:.9rem;background:var(--beige);flex:1;overflow-y:auto;display:flex;flex-direction:column;gap:.55rem}
.hgc__form h4{font-size:.85rem;text-transform:none;letter-spacing:0;margin:0 0 .1rem}
.hgc__form label{font-size:.72rem;color:var(--ink-soft);display:flex;flex-direction:column;gap:.2rem}
.hgc__form input,.hgc__form textarea{border:1px solid var(--sand);border-radius:8px;padding:.5rem;font-size:.82rem;
  font-family:var(--sans);color:var(--ink);background:var(--white,#fffdf9);outline:none;width:100%}
.hgc__form input:focus,.hgc__form textarea:focus{border-color:var(--gold)}
.hgc__form textarea{min-height:64px;resize:vertical}
.hgc__form .btn{margin-top:.2rem}
.hgc__back{background:none;border:none;color:var(--ink-soft);font-size:.74rem;cursor:pointer;text-align:left;padding:0}
.hgc__back:hover{color:var(--ink)}
@media(max-width:480px){
  .hgc{right:16px;left:16px;bottom:16px;width:auto;height:72vh}
  .hgc-fab{right:16px;bottom:16px}
}
