:root{
  --ink:#0d0f2b;
  --ink-2:#14173d;
  --paper:#faf9f5;
  --paper-dim:#f0eee6;
  --mist:#9a9dc9;
  --line: rgba(255,255,255,0.14);
  --line-dark: rgba(13,15,43,0.12);

  --soho:#e8720b;
  --soho-soft:#ffb463;
  --soho-tint:#fdece0;

  --chelsea:#3f7a45;
  --chelsea-soft:#8fd38a;
  --chelsea-tint:#e7f2e5;

  --mayfair:#1b2e7a;
  --mayfair-soft:#5c78e8;
  --mayfair-tint:#e6e9fb;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}

.display{
  font-family:'Archivo Black', sans-serif;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  line-height:0.92;
}
.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  opacity:0.6;
}
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(13,15,43,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav{
  max-width:1180px; margin:0 auto; padding:18px 32px;
  display:flex; align-items:center; justify-content:space-between;
  color:#fff;
}
.logo{font-family:'Archivo Black'; font-size:22px; letter-spacing:-0.02em; color:#fff;}
.nav-links{display:flex; gap:34px; font-size:14px; font-weight:600;}
.nav-links a{opacity:0.75; transition:opacity .2s;}
.nav-links a:hover{opacity:1;}
.nav-right{display:flex; align-items:center; gap:20px;}
.basket-btn{
  position:relative;
  background:none; border:1px solid var(--line); color:#fff;
  padding:9px 16px; border-radius:999px; font-size:13px; font-weight:700;
  display:flex; align-items:center; gap:8px;
}
.basket-count{
  background:var(--soho); color:#fff; font-size:11px; font-weight:800;
  min-width:18px; height:18px; border-radius:999px;
  display:flex; align-items:center; justify-content:center; padding:0 4px;
}
@media(max-width:760px){ .nav-links{display:none;} }

/* ---------- BREADCRUMB ---------- */
.breadcrumb{
  padding:22px 32px 0; max-width:1180px; margin:0 auto;
  font-size:13px; font-weight:600; color:#8385a3;
}
.breadcrumb a{color:var(--ink); opacity:0.55;}
.breadcrumb a:hover{opacity:1;}

/* ---------- HERO ---------- */
.hero{
  background:var(--ink);
  color:#fff;
  padding:120px 32px 90px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero .eyebrow{color:var(--mist); margin-bottom:22px;}
.hero h1{
  font-size:clamp(40px,7vw,86px);
  max-width:960px; margin:0 auto 26px;
}
.hero h1 .accent-soho{color:var(--soho-soft);}
.hero h1 .accent-chelsea{color:var(--chelsea-soft);}
.hero h1 .accent-mayfair{color:var(--mayfair-soft);}
.hero p{
  max-width:520px; margin:0 auto 40px;
  font-size:17px; line-height:1.6; color:rgba(255,255,255,0.65);
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; color:var(--ink);
  padding:16px 30px; font-size:14px; font-weight:800;
  letter-spacing:0.02em; text-transform:uppercase;
  border-radius:999px; border:none;
}
.btn-outline{
  background:transparent; color:#fff; border:1px solid var(--line);
}
.hero-strip{
  display:flex; justify-content:center; gap:10px; margin-top:64px;
}
.hero-strip span{
  width:64px; height:5px; border-radius:3px;
}
.hero-strip .s1{background:var(--soho-soft);}
.hero-strip .s2{background:var(--mayfair-soft);}
.hero-strip .s3{background:var(--chelsea-soft);}

/* ---------- HOW IT WORKS ---------- */
.how{ padding:100px 32px; background:var(--paper); }
.how-head{max-width:640px; margin-bottom:64px;}
.how-head .eyebrow{color:var(--ink); opacity:0.45; margin-bottom:14px;}
.how-head h2{font-size:clamp(30px,4vw,46px);}
.how-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.how-step{border-top:2px solid var(--ink); padding-top:20px;}
.how-step .num{font-family:'Archivo Black'; font-size:14px; opacity:0.35; margin-bottom:14px;}
.how-step h3{font-size:20px; margin-bottom:10px;}
.how-step p{font-size:14.5px; line-height:1.6; color:#54566f;}
@media(max-width:760px){ .how-grid{grid-template-columns:1fr;} }

/* ---------- COLLECTION INTRO ---------- */
.collection-intro{ padding:0 32px 60px; text-align:center; }
.collection-intro .eyebrow{color:var(--ink); opacity:0.45; margin-bottom:16px;}
.collection-intro h2{font-size:clamp(28px,4.2vw,44px); max-width:640px; margin:0 auto;}

/* ---------- HOMEPAGE PRODUCT CARDS (with photo) ---------- */
.product-cards{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  max-width:1180px; margin:0 auto; padding:0 32px 100px;
}
.product-card{
  border-radius:10px; overflow:hidden; color:#fff; position:relative;
  display:flex; flex-direction:column;
}
.product-card.soho{background:linear-gradient(160deg,#e8720b,#a8480a);}
.product-card.chelsea{background:linear-gradient(160deg,#3f7a45,#1f4a26);}
.product-card.mayfair{background:linear-gradient(160deg,#1b2e7a,#0d1748);}
.product-card .photo{ aspect-ratio:4/3; width:100%; }
.product-card .photo img{ width:100%; height:100%; object-fit:cover; }
.product-card .card-body{ padding:26px; flex:1; display:flex; flex-direction:column; }
.product-card .card-tag{font-size:11.5px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; opacity:0.7; margin-bottom:6px;}
.product-card h3{font-family:'Archivo Black'; font-size:34px; text-transform:uppercase; margin-bottom:10px;}
.product-card p{font-size:13.5px; line-height:1.6; opacity:0.85; margin-bottom:20px; flex:1;}
.product-card .card-foot{display:flex; align-items:center; justify-content:space-between;}
.product-card .from-price{font-size:13px; opacity:0.75;}
.product-card .from-price strong{font-family:'Archivo Black'; font-size:16px; display:block; color:#fff;}
.card-link{
  font-size:12.5px; font-weight:800; text-transform:uppercase; letter-spacing:0.04em;
  border:1px solid rgba(255,255,255,0.5); padding:9px 16px; border-radius:999px;
}
@media(max-width:900px){ .product-cards{grid-template-columns:1fr;} }

/* ---------- PRODUCT SECTION (homepage anchor / product page) ---------- */
.product{ padding:100px 32px; color:#fff; position:relative; }
.product.soho{background:linear-gradient(160deg,#e8720b,#a8480a);}
.product.chelsea{background:linear-gradient(160deg,#3f7a45,#1f4a26);}
.product.mayfair{background:linear-gradient(160deg,#1b2e7a,#0d1748);}

.product-inner{max-width:1180px; margin:0 auto;}
.product-top{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:end;
  margin-bottom:56px;
}
.product-name{ font-size:clamp(56px,9vw,120px); line-height:0.85; }
.product-tag{
  font-size:13px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  opacity:0.75; margin-bottom:16px;
}
.product-desc{font-size:16px; line-height:1.65; max-width:420px; opacity:0.88;}

/* image slider on product detail pages */
.gallery-slider{ margin-bottom:56px; }
.gallery-main{
  position:relative; border-radius:8px; overflow:hidden;
  aspect-ratio:16/10; background:rgba(255,255,255,0.06);
}
.gallery-main img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.9); color:var(--ink); border:none;
  width:42px; height:42px; border-radius:50%; font-size:20px; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,0.25);
}
.gallery-arrow:hover{background:#fff;}
.gallery-arrow.prev{left:16px;}
.gallery-arrow.next{right:16px;}
.gallery-thumbs{ display:flex; gap:10px; margin-top:12px; }
.gallery-thumb{
  width:96px; height:68px; object-fit:cover; border-radius:6px; cursor:pointer;
  opacity:0.5; border:2px solid transparent; transition:opacity .2s, border-color .2s;
}
.gallery-thumb:hover{opacity:0.8;}
.gallery-thumb.active{opacity:1; border-color:#fff;}
@media(max-width:600px){ .gallery-thumb{width:68px; height:50px;} .gallery-arrow{width:36px; height:36px; font-size:17px;} }

.product-body{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.feature-list{display:flex; flex-direction:column; gap:22px; margin-bottom:36px;}
.feature{display:flex; gap:14px; align-items:flex-start;}
.feature .dot{
  width:8px; height:8px; border-radius:50%; background:#fff; margin-top:7px; flex:none; opacity:0.85;
}
.feature h4{font-size:14.5px; font-weight:700; margin-bottom:4px;}
.feature p{font-size:13.5px; line-height:1.55; opacity:0.75;}

.spec-table{
  width:100%; border-collapse:collapse; font-size:13px;
  background:rgba(255,255,255,0.06); border-radius:6px; overflow:hidden;
}
.spec-table tr{border-bottom:1px solid rgba(255,255,255,0.12);}
.spec-table tr:last-child{border-bottom:none;}
.spec-table td{padding:12px 16px;}
.spec-table td:first-child{opacity:0.6; font-weight:600; letter-spacing:0.03em; text-transform:uppercase; font-size:11px;}
.spec-table td:last-child{text-align:right; font-weight:700;}

.buy-box{
  background:#fff;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:8px; padding:26px;
  color:var(--ink);
  box-shadow:0 12px 40px rgba(0,0,0,0.25);
}
.buy-box .label{font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; opacity:0.55; margin-bottom:10px;}
.size-options{display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:22px;}
.size-opt{
  border:1.5px solid #e3e2da; border-radius:6px; padding:10px 12px;
  background:#fff; color:var(--ink); text-align:left; font-size:13px; font-weight:600;
}
.size-opt .dims{display:block; font-size:11px; opacity:0.55; margin-top:2px; font-weight:500;}
.size-opt.active{background:var(--ink); color:#fff; border-color:var(--ink);}
.size-opt.active .dims{color:#fff; opacity:0.7;}

.price-row{display:flex; align-items:baseline; justify-content:space-between; margin-bottom:18px;}
.price-row .price{font-family:'Archivo Black'; font-size:32px; color:var(--ink);}
.price-row .price-note{font-size:12px; opacity:0.55;}

.add-btn{
  width:100%; background:var(--ink); color:#fff; border:none;
  padding:15px; border-radius:6px; font-size:13.5px; font-weight:800;
  text-transform:uppercase; letter-spacing:0.04em;
}

/* ---------- CROSS-SELL (product pages) ---------- */
.crosssell{ padding:90px 32px; background:var(--paper); }
.crosssell .eyebrow{color:var(--ink); opacity:0.45; margin-bottom:14px; text-align:center;}
.crosssell h2{font-size:clamp(26px,4vw,36px); text-align:center; margin-bottom:44px;}
.crosssell-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:820px; margin:0 auto;
}
@media(max-width:700px){ .crosssell-grid{grid-template-columns:1fr;} }

/* ---------- ABOUT ---------- */
.about{ padding:110px 32px; background:var(--ink); color:#fff; text-align:center; }
.about .eyebrow{color:var(--mist); margin-bottom:20px;}
.about h2{font-size:clamp(28px,4.5vw,48px); max-width:760px; margin:0 auto 26px;}
.about p{max-width:560px; margin:0 auto; color:rgba(255,255,255,0.6); font-size:16px; line-height:1.7;}
.about-badges{ display:flex; justify-content:center; gap:48px; margin-top:56px; flex-wrap:wrap; }
.about-badge .n{font-family:'Archivo Black'; font-size:34px;}
.about-badge .l{font-size:12px; opacity:0.55; text-transform:uppercase; letter-spacing:0.08em; margin-top:6px;}

/* ---------- CONTACT / FOOTER ---------- */
.contact{ padding:100px 32px; background:var(--paper-dim); }
.contact-inner{ max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.contact h2{font-size:clamp(28px,4vw,42px); margin-bottom:16px;}
.contact p{color:#54566f; font-size:15px; line-height:1.65; max-width:400px;}
.contact-info{margin-top:32px; display:flex; flex-direction:column; gap:6px; font-size:14.5px;}
.contact-info a{font-weight:700;}

form.enquiry{display:flex; flex-direction:column; gap:14px;}
form.enquiry input, form.enquiry textarea{
  border:1px solid var(--line-dark); background:#fff; padding:14px 16px;
  font-family:inherit; font-size:14px; border-radius:6px; color:var(--ink);
}
form.enquiry textarea{min-height:110px; resize:vertical;}
form.enquiry button{
  background:var(--ink); color:#fff; border:none; padding:15px; border-radius:6px;
  font-size:13.5px; font-weight:800; text-transform:uppercase; letter-spacing:0.04em;
}
@media(max-width:820px){ .contact-inner{grid-template-columns:1fr;} .product-top,.product-body{grid-template-columns:1fr;} }

footer{
  padding:36px 32px; background:var(--ink); color:rgba(255,255,255,0.45);
  text-align:center; font-size:12.5px; border-top:1px solid var(--line);
}

/* ---------- BASKET DRAWER ---------- */
.overlay{
  position:fixed; inset:0; background:rgba(13,15,43,0.5);
  opacity:0; pointer-events:none; transition:opacity .25s; z-index:90;
}
.overlay.open{opacity:1; pointer-events:auto;}
.drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(420px,92vw);
  background:#fff; z-index:100; transform:translateX(100%);
  transition:transform .3s ease; display:flex; flex-direction:column;
}
.drawer.open{transform:translateX(0);}
.drawer-head{ padding:24px 26px; border-bottom:1px solid var(--line-dark); display:flex; align-items:center; justify-content:space-between; }
.drawer-head h3{font-family:'Archivo Black'; font-size:18px; text-transform:uppercase;}
.drawer-close{background:none; border:none; font-size:22px; line-height:1; color:var(--ink);}
.drawer-items{flex:1; overflow-y:auto; padding:10px 26px;}
.drawer-empty{padding:60px 0; text-align:center; color:#9a9dc9; font-size:14px;}
.basket-item{ display:flex; gap:14px; padding:18px 0; border-bottom:1px solid var(--line-dark); }
.basket-item .swatch{width:44px; height:44px; border-radius:6px; flex:none;}
.basket-item .info{flex:1;}
.basket-item .info .name{font-weight:700; font-size:14px;}
.basket-item .info .meta{font-size:12.5px; color:#8385a3; margin-top:2px;}
.basket-item .qty-row{display:flex; align-items:center; gap:10px; margin-top:8px;}
.qty-btn{
  width:22px; height:22px; border-radius:4px; border:1px solid var(--line-dark);
  background:#fff; font-size:13px; display:flex; align-items:center; justify-content:center;
}
.basket-item .price{font-weight:700; font-size:14px; white-space:nowrap;}
.remove-link{font-size:11.5px; color:#b3495a; margin-top:8px; display:inline-block; cursor:pointer;}
.drawer-foot{padding:22px 26px; border-top:1px solid var(--line-dark);}
.subtotal-row{display:flex; justify-content:space-between; font-size:14px; margin-bottom:16px;}
.subtotal-row strong{font-family:'Archivo Black'; font-size:18px;}
.checkout-btn{
  width:100%; background:#635bff; color:#fff; border:none; padding:16px;
  border-radius:6px; font-size:14px; font-weight:800; text-transform:uppercase; letter-spacing:0.04em;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.checkout-btn:disabled{opacity:0.5; cursor:not-allowed;}
.stripe-note{font-size:11px; color:#9a9dc9; text-align:center; margin-top:10px;}
