﻿/* RAWVEN Lifestyle — shared design system */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --charcoal: #47414f;
  --charcoal-soft: #55505e;
  --navy: #56526a;
  --navy-soft: #8b85ab;
  --cream: #f5f4f0;
  --cream-deep: #e8e6df;
  --gold: #1b5d72;
  --gold-soft: #2f7f98;
  --stone: #c7cacd;
  --stone-deep: #9a9ea3;
  --sage: #8fa39d;
  --sage-deep: #71847c;
  --wine: #6d2c3a;
  --wine-soft: #9c5064;
  --white: #ffffff;
  --text-dark: #1c2433;
  --text-muted: #5a6472;
  --text-on-dark: #f1efe9;
  --text-on-dark-muted: #a9b0bd;
  --border: rgba(71, 65, 79, 0.14);
  --border-on-dark: rgba(241, 239, 233, 0.14);
  --radius: 2px;
  --container: 1480px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Top announcement bar ---------- */
.announce-bar {
  background: var(--charcoal);
  color: var(--text-on-dark-muted);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px 16px;
}
.announce-bar strong { color: var(--white); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.logo span { color: var(--gold); font-style: italic; }

.main-nav {
  display: flex;
  gap: 36px;
}
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--gold); }
.nav-wholesale, .nav-private-label, .nav-fabric {
  padding: 8px 16px !important;
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-wholesale {
  background: #A9A9A9;
  color: var(--text-dark) !important;
}
.nav-wholesale:hover { background: #969696; }
.nav-wholesale.current { background: var(--charcoal); color: var(--text-on-dark) !important; }

.nav-private-label {
  background: #E0D9E0;
  color: var(--text-dark) !important;
}
.nav-private-label:hover { background: #cfc4cf; }
.nav-private-label.current { background: var(--charcoal); color: var(--text-on-dark) !important; }

.nav-fabric {
  background: #B0C4DE;
  color: var(--text-dark) !important;
}
.nav-fabric:hover { background: #9db3cf; }
.nav-fabric.current { background: var(--charcoal); color: var(--text-on-dark) !important; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-btn {
  width: 20px; height: 20px;
  display: inline-flex;
  color: var(--text-dark);
}
.header-actions svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 24px; height: 18px;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--text-dark);
}
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 8px; }
.nav-toggle::after { bottom: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,21,26,0.4) 0%, rgba(20,21,26,0.5) 45%, rgba(20,21,26,0.88) 100%), url('../images/hero.jpg');
  background-size: cover;
  background-position: top center;
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero-placeholder-note {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.hero-content {
  padding: 0 32px 88px;
  max-width: 640px;
}
.hero-eyebrow {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.hero p {
  font-size: 16.5px;
  color: var(--text-on-dark-muted);
  max-width: 460px;
  margin-bottom: 34px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ---------- USP strip (No MOQ / Logistics / Zero Hassle) ---------- */
.usp-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  padding: 30px 32px;
}
.usp-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.usp-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  max-width: 280px;
}
.usp-strip-icon { width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; }
.usp-strip-icon svg { width: 100%; height: 100%; }
.usp-strip-item strong { display: block; font-size: 14.5px; letter-spacing: 0.01em; margin-bottom: 3px; }
.usp-strip-item span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.85); line-height: 1.5; }
@media (max-width: 700px) {
  .usp-strip { padding: 22px 20px; }
  .usp-strip-inner { flex-direction: column; gap: 18px; }
  .usp-strip-item { max-width: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-outline-light {
  border-color: rgba(239,236,228,0.5);
  color: var(--text-on-dark);
}
.btn-outline-light:hover { border-color: var(--text-on-dark); background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  border-color: var(--text-dark);
  color: var(--text-dark);
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; }
.btn-messenger { background: #0084FF; color: #fff; }
.btn-messenger:hover { background: #006fd6; }
.btn-spec-sample { background: #B0C4DE; color: var(--text-dark); }
.btn-spec-sample:hover { background: #9db3cf; }
.btn-spec-pdf { background: #A9A9A9; color: var(--text-dark); }
.btn-spec-pdf:hover { background: #969696; }
.btn-spec-back { background: #E0D9E0; color: var(--text-dark); }
.btn-spec-back:hover { background: #cfc4cf; }
.btn-send-enquiry { background: #C8DCC5; color: var(--text-dark); }
.btn-send-enquiry:hover { background: #b3ccae; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Trust strip ---------- */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.trust-item strong { display: block; color: var(--text-dark); font-size: 13.5px; font-weight: 600; }

/* ---------- Section headings ---------- */
.section { padding: 92px 0; }
.section-dark { background: var(--charcoal); color: var(--text-on-dark); }
.section-cream { background: var(--cream); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); }
.section-dark .eyebrow { color: var(--gold-soft); }
.view-all {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card { position: relative; }
.product-media {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--cream-deep);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .placeholder-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 12px;
  letter-spacing: 0.03em;
}
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--charcoal);
  color: var(--text-on-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.product-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}
.product-price {
  font-size: 14.5px;
  font-weight: 600;
}

/* ---------- Story split ---------- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- USP banner ---------- */
.story-copy p {
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  font-size: 15.5px;
  margin: 22px 0 30px;
  max-width: 480px;
}
.story-copy h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.2; }

/* ---------- Home layout (retail content + pinned segment rail) ---------- */
.home-layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding: 92px 32px;
}
.main-content { flex: 1; min-width: 0; }
.main-content > .section-head:not(:first-child) { margin-top: 88px; }
.main-content .story-block { margin-top: 88px; }

.home-intro-block { margin-top: 48px; }
.home-intro-block:first-child { margin-top: 0; }
.home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.segment-rail {
  width: 296px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 106px;
  align-self: flex-start;
  order: 2;
}

.segment-tile {
  display: block;
  padding: 26px 22px;
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.segment-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(28, 36, 51, 0.14);
}
.segment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
}
.segment-icon svg { width: 100%; height: 100%; }
.segment-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.segment-tile h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.segment-tile p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.segment-stat {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed currentColor;
  opacity: 0.85;
}
.segment-cta {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.segment-moq, .segment-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 14px;
}

/* Retail — sage gradient fill, primary focus */
.segment-retail {
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--white);
  border-color: var(--sage-deep);
}
.segment-retail .segment-icon { color: var(--white); }
.segment-retail .segment-kicker { color: rgba(255,255,255,0.8); }
.segment-retail h3 { font-size: 20px; color: var(--white); }
.segment-retail p { color: rgba(255,255,255,0.82); }
.segment-retail .segment-stat { color: var(--white); }
.segment-retail .segment-cta { color: var(--white); }

/* Wholesale — cool stone grey, light, practical */
.segment-wholesale {
  background: var(--stone);
  border-color: var(--stone);
}
.segment-wholesale .segment-icon { color: var(--charcoal); }
.segment-wholesale .segment-kicker { color: var(--charcoal-soft); }
.segment-wholesale p { color: var(--charcoal-soft); opacity: 0.85; }
.segment-wholesale .segment-stat { color: var(--charcoal); }
.segment-moq { background: rgba(30,42,63,0.1); color: var(--charcoal); }
.segment-wholesale .segment-cta { color: var(--charcoal); }

/* Fabric — deep wine, premium textile focus */
.segment-fabric {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.segment-fabric .segment-icon { color: var(--white); }
.segment-fabric .segment-kicker { color: rgba(255,255,255,0.75); }
.segment-fabric p { color: rgba(255,255,255,0.82); }
.segment-fabric .segment-stat { color: var(--white); }
.segment-fabric .segment-cta { color: var(--white); }

/* Private Label — slate plum, darkest, premium/bespoke */
.segment-private {
  background: var(--navy);
  color: var(--text-on-dark);
  border-color: var(--navy);
}
.segment-private .segment-icon { color: var(--navy-soft); }
.segment-private .segment-kicker { color: var(--navy-soft); }
.segment-private p { color: var(--text-on-dark-muted); }
.segment-private .segment-stat { color: var(--navy-soft); }
.segment-badge { background: rgba(241,239,233,0.16); color: var(--text-on-dark); }
.segment-private .segment-cta { color: var(--white); }

@media (max-width: 1180px) {
  .segment-rail { width: 260px; }
  .home-layout { gap: 36px; }
}
@media (max-width: 980px) {
  .home-layout { flex-direction: column; padding: 64px 32px; }
  .segment-rail { position: static; width: 100%; flex-direction: row; flex-wrap: wrap; order: 0; }
  .segment-tile { flex: 1; min-width: 220px; }
  .segment-tile:hover { transform: none; }
}
@media (max-width: 560px) {
  .home-layout { padding: 48px 20px; }
  .segment-rail { flex-direction: column; }
}

/* ---------- Category strip ---------- */
.category-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-tile {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--cream-deep);
  overflow: hidden;
  display: block;
}
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.04); }
.category-tile .placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-tile .category-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(20,21,26,0) 0%, rgba(20,21,26,0.6) 100%);
}
.category-tile .category-name {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.category-tile .category-links { display: flex; gap: 16px; }
.category-tile .category-links a {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding-bottom: 2px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 64px 32px;
}
.cta-banner h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 16px; color: var(--white); }
.cta-banner p { font-size: 15px; margin-bottom: 30px; opacity: 0.9; }
.btn-email { background: #ffffff; color: var(--gold); }
.btn-email:hover { background: #e9eef0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark-muted);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-brand .logo { color: var(--text-on-dark); }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin: 18px 0 0; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Product page ---------- */
.breadcrumb {
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 22px 0;
}
.breadcrumb a:hover { color: var(--gold); }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding-bottom: 100px;
}

.gallery-main {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumbs button {
  aspect-ratio: 1;
  background: var(--cream-deep);
  border: 1px solid transparent;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-detail .eyebrow { margin-bottom: 12px; display: block; }
.product-detail h1 {
  font-size: 30px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.product-code { font-size: 12.5px; color: var(--text-muted); margin-bottom: 26px; }

.product-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.spec-list { list-style: none; padding: 0; margin: 14px 0 0; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-dark);
}
.spec-list li span:first-child { color: var(--text-muted); }

.option-block { margin-bottom: 28px; }
.option-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.option-label a { color: var(--gold); text-transform: none; font-weight: 500; letter-spacing: 0; border-bottom: 1px solid var(--gold); margin-left: auto; padding-left: 24px; }
.size-options { display: flex; gap: 10px; }
.size-options button {
  min-width: 52px;
  height: 46px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.size-options button.active, .size-options button:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}
.size-note { font-size: 12.5px; color: var(--text-muted); margin-top: 10px; display: none; }
.size-note.visible { display: block; }

.color-options { display: flex; gap: 12px; align-items: center; }
.color-swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 2px;
  position: relative;
  background-clip: content-box;
}
.color-swatch::after {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 50%;
  border: 1px solid rgba(20,21,26,0.15);
}
.color-swatch.active { border-color: var(--gold); }
.color-name { font-size: 13px; color: var(--text-muted); margin-left: 4px; }

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.availability .dot { width: 8px; height: 8px; border-radius: 50%; background: #4a8f5c; }
.availability.made-to-order .dot { background: var(--gold); }
.availability-note { font-size: 12.5px; color: var(--text-muted); font-weight: 400; margin-left: 2px; }

.moq-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 12px 14px;
  border: 1px dashed var(--border);
  margin-bottom: 22px;
}
.moq-note strong { color: var(--text-dark); }
.moq-note a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--navy); }

.option-row { display: flex; gap: 56px; flex-wrap: wrap; margin-bottom: 28px; }
.option-row .option-block { flex: 0 1 auto; min-width: 0; margin-bottom: 0; }

.product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  padding: 18px 16px;
  background: var(--cream-deep);
  margin-bottom: 22px;
}
.product-trust .trust-item { min-width: 0; align-items: flex-start; }
.product-trust .trust-item svg { width: 20px; height: 20px; margin-top: 1px; }
.product-trust .trust-item div { font-size: 12.5px; line-height: 1.5; }
.product-trust .trust-item strong { display: block; color: var(--text-dark); font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.trust-link { display: inline-block; margin-top: 2px; color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--navy); cursor: pointer; }
@media (max-width: 480px) {
  .product-trust { grid-template-columns: 1fr; }
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.video-placeholder .placeholder-label { font-size: 11px; color: var(--text-muted); text-align: center; padding: 12px; letter-spacing: 0.03em; }

.measure-diagram { display: flex; justify-content: center; margin: 20px 0; }
.measure-diagram svg { width: 100%; max-width: 260px; height: auto; color: var(--text-dark); }

.size-finder { background: var(--cream-deep); padding: 22px 24px; margin: 20px 0; }
.size-finder label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.size-finder-row { display: flex; gap: 12px; }
.size-finder-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
}
.size-finder-result { font-size: 13.5px; color: var(--text-muted); margin-top: 14px; display: none; }
.size-finder-result.visible { display: block; color: var(--text-dark); font-weight: 600; }

.brand-compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13.5px; }
.brand-compare-table th, .brand-compare-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.brand-compare-table th { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.brand-compare-table td:first-child { font-weight: 600; color: var(--text-dark); }
.table-note { font-size: 12.5px; color: var(--text-muted); margin-top: -8px; margin-bottom: 20px; }

/* ---------- Wholesale / Private Label pages (shared base) ---------- */
.wholesale-hero {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: 90px 0 70px;
  border-top: 4px solid transparent;
}
.wholesale-hero .eyebrow { margin-bottom: 16px; display: block; }
.wholesale-hero h1 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.15; margin-bottom: 20px; max-width: 780px; }
.wholesale-hero p { font-size: 16px; color: var(--text-on-dark-muted); max-width: 560px; line-height: 1.7; margin-bottom: 32px; }

/* Page identity accents */
.page-wholesale .wholesale-hero { border-top-color: var(--stone); }
.page-wholesale .wholesale-hero .eyebrow { color: var(--white); }
.page-wholesale .note-box-inline a { color: var(--navy); border-bottom-color: var(--navy); }
.page-private .wholesale-hero { border-top-color: var(--navy-soft); }
.page-private .wholesale-hero .eyebrow { color: var(--navy-soft); }
.page-private .note-box-inline a { color: var(--stone-deep); border-bottom-color: var(--stone-deep); }
.page-fabric .wholesale-hero { border-top-color: var(--wine-soft); }
.page-fabric .wholesale-hero .eyebrow { color: var(--wine-soft); }
.page-fabric .capability-card { border-top-color: var(--wine); }
.page-fabric .capability-card .card-icon { color: var(--wine); }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.capability-card { padding: 28px 24px; background: var(--cream); border: 1px solid var(--border); border-top: 3px solid var(--stone); }
.capability-card .card-icon { width: 30px; height: 30px; color: var(--stone-deep); margin-bottom: 16px; display: inline-flex; }
.capability-card .card-icon svg { width: 100%; height: 100%; }
.capability-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 8px; }
.capability-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.note-box-inline { margin-top: 36px; font-size: 13.5px; color: var(--text-muted); text-align: center; }
.note-box-inline a { font-weight: 600; border-bottom: 1px solid; }

/* Wholesale — compact icon row-list */
.process-list { display: flex; flex-direction: column; }
.process-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border-on-dark);
}
.process-row:first-child { border-top: none; padding-top: 0; }
.process-row .row-icon { width: 34px; height: 34px; color: var(--stone); flex-shrink: 0; }
.process-row .row-icon svg { width: 100%; height: 100%; }
.process-row h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.process-row p { font-size: 12.5px; color: var(--text-on-dark-muted); line-height: 1.5; margin: 0; }

/* Private Label — spacious editorial chapters (ghost numerals) */
.capability-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.capability-intro p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin: 16px 0 0; max-width: 400px; }
.capability-checklist { list-style: none; padding: 0; margin: 26px 0 0; }
.capability-checklist li {
  font-size: 13.5px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  gap: 10px;
}
.capability-checklist li::before { content: '—'; color: var(--navy); flex-shrink: 0; }
.capability-features { display: flex; flex-direction: column; }
.capability-feature { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.capability-feature:first-child { padding-top: 0; }
.capability-feature:last-child { border-bottom: none; }
.capability-feature .feature-icon { width: 28px; height: 28px; color: var(--navy); flex-shrink: 0; }
.capability-feature .feature-icon svg { width: 100%; height: 100%; }
.capability-feature h3 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 6px; }
.capability-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.process-chapters { display: flex; flex-direction: column; }
.process-chapter {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid rgba(139, 133, 171, 0.22);
  align-items: start;
}
.process-chapter:first-child { border-top: none; padding-top: 0; }
.process-chapter .chapter-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--navy-soft);
  opacity: 0.55;
  line-height: 1;
}
.chapter-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.chapter-heading .chapter-icon { width: 26px; height: 26px; color: var(--navy-soft); flex-shrink: 0; }
.chapter-heading .chapter-icon svg { width: 100%; height: 100%; }
.process-chapter h4 { font-size: 16px; font-weight: 600; margin: 0; }
.process-chapter p { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.6; margin: 0; max-width: 440px; }

@media (max-width: 900px) {
  .capability-split { grid-template-columns: 1fr; gap: 32px; }
  .process-row { grid-template-columns: 50px 1fr; }
  .process-row p { grid-column: 2; }
  .process-chapter { grid-template-columns: 60px 1fr; gap: 20px; }
  .process-chapter .chapter-num { font-size: 34px; }
}

.inquiry-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.inquiry-panel h3 { font-size: 22px; margin-bottom: 14px; }
.inquiry-panel p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.field-group input, .field-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
}
.field-group input:focus, .field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-group textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.field-group input[readonly] { background: var(--cream); color: var(--text-muted); }
.inquiry-form .btn { margin-top: 4px; }

@media (max-width: 900px) {
  .capability-grid { grid-template-columns: 1fr; gap: 16px; }
  .capability-card { padding: 20px 20px; }
  .inquiry-panel { grid-template-columns: 1fr; padding: 28px; }
}

.order-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 26px;
  margin-bottom: 24px;
}
.order-panel-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.order-buttons { display: flex; flex-direction: column; gap: 12px; }
.order-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}
.order-note strong { color: var(--text-dark); }

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
}
.accordion-trigger .plus { font-size: 18px; transition: transform 0.2s ease; color: var(--gold); }
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion-item.open .accordion-panel { padding-bottom: 18px; }

/* ---------- Related ---------- */
.related-section { padding-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .story-split { grid-template-columns: 1fr; gap: 36px; }
  .category-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Fabric catalog (fabric.html) ---------- */
.fabric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fabric-card { display: block; border: 1px solid var(--border); }
.fabric-card-media { aspect-ratio: 4/5; background: var(--cream-deep); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.fabric-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fabric-card-body { padding: 20px 22px 24px; }
.fabric-card-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin-bottom: 8px; display: block; }
.fabric-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 8px; }
.fabric-card-specs { font-size: 12.5px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.6; }
.fabric-card-cta { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wine); border-bottom: 1px solid var(--wine); padding-bottom: 2px; }

/* ---------- Fabric spec-sheet detail page ---------- */
.spec-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px 0 24px; align-items: start; }
.spec-hero .gallery-main { aspect-ratio: 3/4; }
.spec-info { position: sticky; top: 106px; }
.gallery-caption { padding: 16px 2px 0; border-top: 1px solid var(--border); margin-top: 4px; }
.gallery-caption h4 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 6px; }
.gallery-caption p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.spec-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin-bottom: 14px; display: block; }
.spec-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; margin-bottom: 8px; }
.spec-subtitle { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 20px; }
.spec-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; max-width: 440px; margin-bottom: 28px; }

.feel-tier { background: #D4D4D9; padding: 22px 24px 20px; margin-bottom: 28px; }
.feel-tier-title { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dark); font-weight: 700; margin-bottom: 24px; }
.feel-tier-track { position: relative; display: flex; }
.feel-tier-line { position: absolute; top: 6px; left: calc(100% / 6); right: calc(100% / 6); height: 1px; background: var(--border); }
.feel-tier-step { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.feel-tier-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); transition: all 0.2s ease; }
.feel-tier-label { font-size: 11.5px; color: var(--text-muted); text-align: center; letter-spacing: 0.01em; }
.feel-tier-step.active .feel-tier-dot { width: 16px; height: 16px; background: var(--wine); border-color: var(--wine); box-shadow: 0 0 0 4px rgba(109, 44, 58, 0.12); }
.feel-tier-step.active .feel-tier-label { color: var(--wine); font-weight: 700; }
.feel-tier-note { font-size: 11px; color: var(--text-muted); margin-top: 20px; font-style: italic; text-align: center; }

.order-info-strip { display: flex; gap: 28px; margin-bottom: 28px; padding: 16px 20px; background: #D4D4D9; flex-wrap: wrap; }
.order-info-item { flex: 1; min-width: 140px; }
.order-info-label { display: block; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; }
.order-info-value { font-size: 13.5px; color: var(--text-dark); font-weight: 600; }

.print-only { display: none; }

.spec-list { list-style: none; padding: 0; margin: 0 0 28px; border-top: 1px solid var(--border); }
.spec-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.spec-list li span:first-child { color: var(--text-muted); text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.06em; font-weight: 600; }
.spec-list li span:last-child { color: var(--text-dark); font-weight: 500; text-align: right; }

.care-box { border: 1px dashed var(--border); padding: 18px 20px; font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.care-box strong { display: block; color: var(--text-dark); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }

.enquiry-modal { position: fixed; inset: 0; z-index: 500; display: none; }
.enquiry-modal.open { display: block; }
.enquiry-modal-overlay { position: absolute; inset: 0; background: rgba(20,21,26,0.6); }
.enquiry-modal-panel {
  position: relative;
  width: 92%;
  max-width: 460px;
  margin: 7vh auto;
  background: var(--white);
  padding: 40px 36px 36px;
  max-height: 86vh;
  overflow-y: auto;
  z-index: 1;
}
.enquiry-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
}
.enquiry-modal-close:hover { color: var(--text-dark); }
.enquiry-modal-panel h3 { font-size: 22px; margin-bottom: 6px; }
.enquiry-modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.enquiry-modal-form { display: flex; flex-direction: column; gap: 16px; }
.enquiry-modal-form .btn { margin-top: 4px; }
.enquiry-modal-status { font-size: 13px; padding: 10px 12px; border-radius: var(--radius); }
.enquiry-modal-status.success { background: #dff0d8; color: #3c763d; }
.enquiry-modal-status.error { background: #f8d7da; color: #842029; }
#videoModal .enquiry-modal-panel { max-width: 640px; }
#videoModal .video-placeholder { margin-bottom: 0; }

@media (max-width: 900px) {
  .fabric-grid { grid-template-columns: 1fr 1fr; }
  .spec-hero { grid-template-columns: 1fr; gap: 32px; }
  .spec-info { position: static; }
}
@media (max-width: 560px) {
  .fabric-grid { grid-template-columns: 1fr; }
  .made-in-fabric-grid { grid-template-columns: 1fr; }
}

@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; color-adjust: exact !important; }
  @page { size: auto; margin: 12mm; }

  .announce-bar, .site-header, .breadcrumb, .hero-actions, .cta-banner, .site-footer, .gallery, .enquiry-modal {
    display: none !important;
  }

  .print-only { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 20px; }
  .print-header-text { flex: 1; }
  .print-header-text .logo { font-size: 18px; letter-spacing: 0.08em; display: block; }
  .print-header-text .print-doc-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; margin-bottom: 20px; }
  .print-article-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-dark); margin-bottom: 8px; }
  .print-article-desc { font-size: 12px; line-height: 1.6; color: var(--text-muted); max-width: 420px; }
  .print-header-image { width: 240px; height: 240px; flex-shrink: 0; overflow: hidden; }
  .print-header-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

  body { padding: 0; font-size: 12px; }
  .spec-hero { display: block; padding: 0; }
  .spec-info { position: static; }
  .spec-eyebrow, .spec-title, .spec-subtitle, .spec-desc { display: none !important; }
  .feel-tier, .order-info-strip, .care-box { padding: 12px 16px; margin-bottom: 14px; }
  .feel-tier-title { margin-bottom: 12px; }
  .spec-list { margin-bottom: 14px; }
  .spec-list li { padding: 7px 0; font-size: 12px; }
  .care-box { line-height: 1.4; font-size: 11.5px; }
}
