/* Morpankh Designers Collection — storefront styles
   Palette taken from the peacock-feather logo. */
:root {
  --ink: #0B2B36;
  --teal: #0E5566;
  --gold: #C9A24D;
  --gold-deep: #8A6419;
  --ivory: #F8F3E8;
  --sand: #F1E9D8;
  --paper: #FFFCF5;
  --text: #1C2227;
  --muted: #565C5F;
  --line: #E4D9C3;
  --wa: #1B7F46;
  --sale: #A4441B;
  --on-dark: #F3EBDD;
  --on-dark-muted: #B9C6C8;
  --error: #9B2C12;
  --success: #1D5A34;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --container: 1400px;
  --gutter: 20px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--teal); }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.12; margin: 0; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.container.narrow { max-width: 900px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 8px; }
.hp { position: absolute; left: -9999px; }
.center { text-align: center; }
.small-muted { font-size: 14px; color: var(--muted); }
.icon { flex-shrink: 0; }
.pre { white-space: pre-line; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: var(--radius); font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: filter .15s, background .15s, color .15s; white-space: nowrap; }
.btn:hover { filter: brightness(1.08); }
.btn:disabled { opacity: .5; cursor: not-allowed; filter: none; }
.btn-sm { min-height: 44px; padding: 0 14px; font-size: 12px; }
.btn-lg { min-height: 54px; padding: 0 30px; }
.btn-full { width: 100%; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-gold:hover { color: var(--ink); }
.btn-ink { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.btn-ink:hover { color: #fff; }
.btn-wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.btn-wa:hover { color: #fff; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--on-dark); filter: none; }
.btn-ghost-light { background: transparent; border-color: var(--on-dark); color: var(--on-dark); }
.btn-ghost-light:hover { background: var(--on-dark); color: var(--ink); filter: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.icon-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; color: inherit; cursor: pointer; border-radius: 50%; }
.icon-btn-danger { color: var(--error); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--teal); text-decoration: none; }

/* ---------- eyebrow / section heads ---------- */
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--gold-deep); font-size: 13px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500; }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.eyebrow-gold { color: var(--gold); }
.eyebrow-sm { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.section { padding: 88px 0; }
.section.pt-0 { padding-top: 0; }
.section.pt-sm { padding-top: 40px; }
.section-sand { background: var(--sand); }
.section-teal { background: var(--teal); color: var(--on-dark); }
.section-teal h2, .section-teal h3 { color: var(--on-dark); }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(34px, 4vw, 52px); }
.section-head p { color: var(--muted); max-width: 640px; font-size: 17px; }
.section-head.center { align-items: center; text-align: center; }
.section-head.split { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.section-head.split > div { display: flex; flex-direction: column; gap: 14px; }
.lead { font-size: 17px; line-height: 1.7; color: var(--on-dark-muted); }
.lead-dark { font-family: var(--serif); font-size: 26px; line-height: 1.4; color: var(--ink); margin-top: 14px; }

/* ---------- topbar & header ---------- */
.topbar { background: var(--gold); color: var(--ink); font-size: 13px; letter-spacing: .04em; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar a { color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 42px; }
.topbar-contact, .topbar-info { display: flex; align-items: center; gap: 22px; }
.topbar .sep { opacity: .5; }
.site-header { background: var(--ink); color: var(--on-dark); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 92px; }
.logo img { height: 74px; width: auto; }
.nav-toggle { display: none; color: var(--on-dark); }
.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 30px; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 0; background: none; border: 0; border-bottom: 1px solid transparent; color: var(--on-dark); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active { border-bottom-color: var(--gold); }
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: 100%; left: -24px; min-width: 240px; background: var(--paper); border-top: 2px solid var(--gold); box-shadow: 0 18px 40px rgba(11, 43, 54, .18); list-style: none; margin: 0; padding: 10px 0; display: none; }
.dropdown a { display: block; padding: 12px 24px; color: var(--text); text-decoration: none; }
.dropdown a:hover { background: var(--sand); color: var(--ink); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown { display: block; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-search { display: flex; align-items: center; border: 1px solid rgba(243, 235, 221, .3); border-radius: 22px; padding-left: 16px; }
.header-search input { width: 170px; background: none; border: 0; color: var(--on-dark); font-size: 14px; outline: none; }
.header-search input::placeholder { color: var(--on-dark-muted); }
.header-search .icon-btn { color: var(--on-dark); }
.cart-link { position: relative; color: var(--on-dark); }
.cart-link:hover { color: var(--gold); }
.cart-count { position: absolute; top: 2px; right: 0; min-width: 19px; height: 19px; padding: 0 4px; border-radius: 10px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.flash-wrap { padding-top: 20px; }

/* ---------- alerts ---------- */
.alert { padding: 14px 18px; margin-bottom: 16px; font-size: 15px; border-left: 3px solid; }
.alert-success { background: #E6F0E8; color: var(--success); border-color: var(--success); }
.alert-error { background: #FBE9E1; color: var(--error); border-color: var(--error); }
.alert-info { background: #E6EFF1; color: var(--teal); border-color: var(--teal); }
.alert[hidden] { display: none; }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); min-height: 660px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 64px 64px 64px max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.hero h1 { font-size: clamp(44px, 5.6vw, 78px); line-height: 1.02; color: var(--on-dark); }
.hero h1 em { color: var(--gold); }
.hero p { max-width: 520px; font-size: 18px; line-height: 1.7; color: var(--on-dark-muted); }
.hero-media { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; padding: 36px max(var(--gutter), calc((100vw - var(--container)) / 2)) 36px 0; }
.hero-img { overflow: hidden; display: block; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s; }
.hero-img:hover img { transform: scale(1.03); }
.hero-img-0 { grid-row: 1 / span 2; }

/* ---------- trust ---------- */
.trust { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; padding-top: 30px; padding-bottom: 30px; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item div { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { color: var(--ink); font-weight: 500; }
.trust-item span { font-size: 14px; color: var(--muted); }
.trust-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.trust-icon.wa { color: var(--wa); }

/* ---------- category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cat-card { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: #EFE6D2; text-decoration: none; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s; }
.cat-card:hover img { transform: scale(1.04); }
.cat-card-label { position: absolute; left: 20px; right: 20px; bottom: 20px; background: var(--paper); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cat-card-label > span:first-child { display: flex; flex-direction: column; gap: 4px; }
.cat-card-label strong { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--ink); line-height: 1.1; }
.cat-card-label small { font-size: 14px; color: var(--muted); }
.round-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- product cards ---------- */
.product-grid { display: grid; gap: 40px 24px; }
.product-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card { display: flex; flex-direction: column; gap: 14px; }
.product-card-link { display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: var(--text); flex-grow: 1; }
.product-card-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #EFE6D2; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.badge { position: absolute; top: 12px; left: 12px; background: var(--paper); color: var(--ink); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 6px 10px; }
.badge-off { left: auto; right: 12px; background: var(--sale); color: #fff; letter-spacing: .06em; }
.product-card-body { display: flex; flex-direction: column; gap: 6px; }
.product-card-title { font-size: 22px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.price { font-size: 18px; font-weight: 600; color: var(--text); }
.price-old { font-size: 14px; color: var(--muted); }
.colours-note { margin-left: auto; font-size: 13px; color: var(--muted); }
.product-card-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.product-card-actions .btn-full { grid-column: 1 / -1; }

/* ---------- colour sets ---------- */
.sets-grid { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: auto auto; gap: 24px; }
.set-card { background: var(--paper); border: 1px solid var(--line); padding: 18px; display: grid; grid-template-columns: 200px 1fr; gap: 22px; }
.set-card-big { grid-row: 1 / span 2; grid-template-columns: 1fr; }
.set-card-media { display: block; overflow: hidden; background: #EFE6D2; aspect-ratio: 4 / 5; }
.set-card-big .set-card-media { aspect-ratio: 5 / 4; }
.set-card-media img { width: 100%; height: 100%; object-fit: cover; }
.set-card-body { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.set-card-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.set-card-title a { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); text-decoration: none; line-height: 1.15; }
.set-card-title span { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.swatches { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch { width: 22px; height: 22px; border-radius: 50%; display: inline-block; box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--line); }

/* ---------- about ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; height: 600px; }
.about-photos > div { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; min-height: 0; }
.about-photos img { width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.about-copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.about-copy h2 { font-size: clamp(34px, 4vw, 50px); }
.about-copy p { font-size: 17px; line-height: 1.8; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; border-top: 1px solid var(--line); padding-top: 22px; width: 100%; }
.stats div { display: flex; flex-direction: column; gap: 4px; }
.stats strong { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--teal); line-height: 1; }
.stats span { font-size: 14px; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature { background: var(--paper); border: 1px solid var(--line); padding: 30px; display: flex; flex-direction: column; gap: 12px; }
.feature h3 { font-size: 26px; }
.feature p { color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 8px; }

/* ---------- wholesale ---------- */
.wholesale-split { display: grid; grid-template-columns: 1fr 520px; gap: 72px; align-items: center; }
.wholesale-split > div { display: flex; flex-direction: column; gap: 22px; }
.wholesale-split h2 { font-size: clamp(34px, 4vw, 52px); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.check-list .icon { color: var(--gold); margin-top: 2px; }

/* ---------- forms ---------- */
.card-form { background: var(--paper); color: var(--text); padding: 36px; display: flex; flex-direction: column; gap: 18px; border: 1px solid var(--line); }
.card-form h2, .card-form h3 { font-size: 30px; color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid-3 { grid-template-columns: 1.4fr 1.2fr 1fr; }
label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
label small { text-transform: none; letter-spacing: 0; }
input:not([type=radio]):not([type=checkbox]), select, textarea { width: 100%; min-height: 48px; border: 1px solid var(--line); background: #fff; padding: 10px 14px; font-size: 15px; color: var(--text); text-transform: none; letter-spacing: 0; border-radius: var(--radius); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--teal); outline-offset: 0; border-color: var(--teal); }
[aria-invalid="true"] { border-color: var(--error) !important; }
.field-error { color: var(--error); font-size: 13px; text-transform: none; letter-spacing: 0; }
label.check { flex-direction: row; align-items: center; gap: 12px; min-height: 36px; font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--text); cursor: pointer; }
label.check input { width: 18px; height: 18px; accent-color: var(--teal); margin: 0; flex-shrink: 0; }
label.check small { color: var(--muted); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }

/* ---------- reviews / posts / insta ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review { margin: 0; background: var(--paper); border: 1px solid var(--line); padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.stars { display: flex; gap: 4px; color: var(--gold); }
.review blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review figcaption > span:last-child { display: flex; flex-direction: column; }
.review strong { font-weight: 500; }
.review small { font-size: 14px; color: var(--muted); }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: #E9DFC9; color: var(--gold-deep); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.post-card { display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: var(--text); }
.post-card-media { aspect-ratio: 4 / 3; overflow: hidden; background: #EFE6D2; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.post-card:hover img { transform: scale(1.04); }
.post-card h3 { font-size: 27px; }
.post-card p { color: var(--muted); font-size: 15px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.insta-grid a { aspect-ratio: 1; overflow: hidden; display: block; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.insta-grid a:hover img { transform: scale(1.05); }

/* ---------- page hero, breadcrumb, chips ---------- */
.page-hero { background: var(--sand); padding: 48px 0; }
.page-hero-sm { padding: 32px 0; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); margin: 10px 0; }
.page-hero p { color: var(--muted); max-width: 640px; font-size: 16px; }
.page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb-page { padding-top: 24px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { min-height: 44px; display: inline-flex; align-items: center; padding: 0 20px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); text-decoration: none; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.chip.active, .chip:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }

/* ---------- shop ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.filter-form { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; }
.filters-title { display: flex; align-items: center; gap: 10px; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.filter-form fieldset { border-top: 1px solid var(--line); padding-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.filter-form legend { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); padding: 0 0 8px; }
.filter-promo { background: var(--teal); color: var(--on-dark-muted); padding: 22px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.filter-promo strong { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--on-dark); line-height: 1.2; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 28px; color: var(--muted); font-size: 15px; }
.sort-form { display: flex; align-items: center; gap: 10px; }
.sort-form label { flex-direction: row; align-items: center; }
.sort-form select { width: auto; min-height: 44px; background: var(--paper); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.pagination a.current, .pagination a:hover { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.empty-state { text-align: center; padding: 60px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; color: var(--muted); }
.empty-state h1, .empty-state h2 { font-size: 36px; }

/* ---------- product page ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.gallery { display: grid; grid-template-columns: 96px 1fr; gap: 16px; position: sticky; top: 110px; }
.gallery:not(:has(.gallery-thumbs)) { grid-template-columns: 1fr; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 12px; }
.thumb { width: 96px; aspect-ratio: 3 / 4; padding: 0; border: 2px solid transparent; background: #EFE6D2; cursor: pointer; overflow: hidden; }
.thumb.active { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery-main { position: relative; aspect-ratio: 3 / 4; background: #EFE6D2; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-info h1 { font-size: clamp(34px, 3.4vw, 46px); }
.price-row-lg .price { font-size: 30px; }
.price-row-lg .price-old { font-size: 18px; }
.off-pill { background: var(--sale); color: #fff; font-size: 14px; font-weight: 600; padding: 3px 8px; }
.product-lead { font-size: 17px; line-height: 1.75; color: var(--muted); }
.buy-form { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid var(--line); padding-top: 20px; }
.colour-picker legend { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 0 0 12px; }
.colour-picker legend strong { color: var(--ink); font-weight: 600; }
.swatches-lg { gap: 14px; }
.swatch-radio { cursor: pointer; flex-direction: row; }
.swatch-radio input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.swatch-radio .swatch { width: 36px; height: 36px; }
.swatch-radio input:checked + .swatch { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink); }
.swatch-radio input:focus-visible + .swatch { outline: 2px solid var(--gold-deep); outline-offset: 4px; }
.qty-row { display: flex; align-items: center; gap: 16px; }
.qty-label { font-size: 14px; letter-spacing: .08em; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); background: var(--paper); }
.qty button { width: 48px; height: 50px; border: 0; background: none; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.qty input { width: 64px !important; min-height: 50px !important; border: 0 !important; background: transparent !important; text-align: center; font-weight: 600; font-size: 17px !important; padding: 0 !important; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-sm button { width: 40px; height: 44px; }
.qty-sm input { width: 52px !important; min-height: 44px !important; font-size: 15px !important; }
.moq-note { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.moq-note .icon { color: var(--teal); }
.moq-note strong { color: var(--ink); }
.buy-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.buy-buttons .btn-full { grid-column: 1 / -1; }
.assurances { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; font-size: 14px; color: var(--muted); }
.assurances li { display: flex; align-items: center; gap: 10px; }
.assurances .icon { color: var(--teal); }
.set-promo { background: var(--sand); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; }
.set-promo a { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center; }
.tabs { border-top: 1px solid var(--line); }
.tab-list { display: flex; gap: 36px; border-bottom: 1px solid var(--line); margin-bottom: 28px; overflow-x: auto; }
.tab-list button { background: none; border: 0; border-bottom: 2px solid transparent; padding: 16px 0; font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--muted); cursor: pointer; white-space: nowrap; }
.tab-list button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }
.prose { font-size: 16px; line-height: 1.8; color: var(--text); max-width: 820px; }
.prose p { margin: 0 0 1em; }
.prose h2, .prose h3 { margin: 1.4em 0 .5em; }
.prose h2 { font-size: 32px; }
.prose h3 { font-size: 24px; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose img { margin: 1.2em 0; }
.spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin: 24px 0 0; }
.spec-grid dt { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.spec-grid dd { margin: 0; font-size: 16px; }

/* ---------- cart & checkout ---------- */
.steps { list-style: none; margin: 18px 0 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; counter-reset: step; }
.steps li { counter-increment: step; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); letter-spacing: .06em; }
.steps li::before { content: counter(step); width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; }
.steps li:not(:last-child)::after { content: ""; width: 40px; height: 1px; background: var(--line); }
.steps li.current { color: var(--ink); font-weight: 500; }
.steps li.current::before { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.steps li.done::before { content: "✓"; background: var(--teal); color: #fff; border-color: var(--teal); }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; padding: 0 12px 14px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 20px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: flex; align-items: center; gap: 16px; }
.cart-item img { width: 80px; height: 104px; object-fit: cover; object-position: top; }
.cart-item-name { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); text-decoration: none; line-height: 1.2; }
.cart-actions { display: flex; justify-content: space-between; gap: 12px; margin: 22px 0 16px; flex-wrap: wrap; }
.summary-card { background: var(--paper); border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; gap: 16px; position: sticky; top: 110px; }
.summary-card h2 { font-size: 30px; }
.summary-rows { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.summary-rows div { display: flex; justify-content: space-between; gap: 16px; }
.summary-rows dt { color: var(--muted); }
.summary-rows dd { margin: 0; font-weight: 500; }
.summary-total { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 4px; font-size: 20px; }
.summary-total dt { color: var(--ink); font-weight: 600; }
.summary-total dd { font-weight: 700; }
.summary-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.summary-items li { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; font-size: 15px; }
.summary-thumb { position: relative; }
.summary-thumb img { width: 56px; height: 72px; object-fit: cover; object-position: top; }
.qty-bubble { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; border-radius: 11px; background: var(--ink); color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.summary-name { display: flex; flex-direction: column; line-height: 1.35; }
.summary-name small { color: var(--muted); font-size: 13px; }
.checkout-main { display: flex; flex-direction: column; gap: 24px; }
.panel { background: var(--paper); border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.checkout-main .panel { margin-bottom: 0; }
.panel legend, .panel h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); padding: 0; float: left; width: 100%; margin-bottom: 4px; }
.panel legend + * { clear: both; }
.pay-options { display: flex; flex-direction: column; gap: 12px; }
.pay-option { flex-direction: row; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); background: #fff; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 15px; color: var(--text); }
.pay-option:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pay-option input { margin-top: 4px; accent-color: var(--ink); width: 18px; height: 18px; }
.pay-option span { display: flex; flex-direction: column; gap: 4px; }
.pay-option small { color: var(--muted); font-size: 14px; }
.agree { font-size: 14px; }
.success-card { text-align: center; background: var(--paper); border: 1px solid var(--line); padding: 44px 28px; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 24px; }
.success-card h1 { font-size: 44px; }
.success-card p { color: var(--muted); max-width: 560px; font-size: 17px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: #E6F0E8; color: var(--success); display: inline-flex; align-items: center; justify-content: center; }
.order-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.order-meta h3 { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin-bottom: 4px; }
.order-meta p { margin-bottom: 12px; }

/* ---------- contact / blog ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: var(--paper); border: 1px solid var(--line); padding: 20px; color: var(--text); text-decoration: none; font-size: 15px; word-break: break-word; }
.contact-card > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.contact-card strong { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); }
.map { grid-column: 1 / -1; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #EFE6D2; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.post-title { font-size: clamp(38px, 5vw, 58px); margin: 12px 0 28px; }
.post-cover { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; margin-bottom: 32px; }
.post-body { font-size: 18px; }
.cta-inline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: var(--sand); padding: 22px; margin-top: 32px; }
.cta-inline span { flex-grow: 1; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-top: 72px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr 1.4fr; gap: 44px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand img { height: 84px; width: auto; align-self: flex-start; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 300px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 44px; height: 44px; border: 1px solid rgba(243, 235, 221, .3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--on-dark); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-links a, .footer-contact a { color: var(--on-dark-muted); text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.footer-contact .icon { color: var(--gold); margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(243, 235, 221, .15); margin-top: 56px; padding-top: 22px; padding-bottom: 26px; font-size: 13px; letter-spacing: .04em; }
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(0, 0, 0, .25); }
.wa-float:hover { color: #fff; filter: brightness(1.1); }
.mobile-bar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .main-nav > ul { gap: 20px; }
  .header-search input { width: 120px; }
  .product-grid.cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 72px; }
  .logo img { height: 58px; }
  .header-search { display: none; }
  .main-nav { position: fixed; inset: 0 30% 0 0; min-width: 280px; background: var(--ink); padding: 84px 24px 24px; transform: translateX(-100%); transition: transform .25s; overflow-y: auto; z-index: 70; box-shadow: 20px 0 40px rgba(0, 0, 0, .3); }
  body.nav-open .main-nav { transform: none; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0, 0, 0, .45); z-index: 60; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(243, 235, 221, .12); justify-content: space-between; }
  .dropdown { position: static; box-shadow: none; background: transparent; border: 0; padding: 0 0 8px 12px; min-width: 0; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
  .dropdown a { color: var(--on-dark-muted); padding: 10px 0; }
  .dropdown a:hover { background: none; color: var(--gold); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 48px var(--gutter); }
  .hero-media { padding: 0 var(--gutter) 36px; height: 520px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-split, .wholesale-split, .product-layout, .cart-layout, .checkout-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .gallery, .summary-card, .filter-form { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters-title, .filter-form > .btn, .filter-promo { grid-column: 1 / -1; }
  .sets-grid { grid-template-columns: 1fr; }
  .set-card-big { grid-row: auto; }
  .feature-grid, .review-grid, .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insta-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .section { padding: 56px 0; }
  .topbar-inner { flex-direction: column; gap: 0; padding-top: 4px; padding-bottom: 4px; }
  .topbar a, .topbar-inner { min-height: 0; }
  .topbar-contact { gap: 14px; font-size: 12px; }
  .topbar-info { font-size: 11px; gap: 8px; }
  .hide-sm { display: none; }
  .hero-media { height: 420px; }
  .cat-grid, .product-grid.cols-3, .product-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4 / 3; }
  .product-card-title { font-size: 18px; }
  .price { font-size: 16px; }
  .colours-note { display: none; }
  .product-card-actions { grid-template-columns: 1fr; gap: 6px; }
  .product-card-actions .btn { font-size: 11px; letter-spacing: .08em; padding: 0 8px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .set-card { grid-template-columns: 1fr; }
  .about-photos { height: 420px; }
  .check-list, .form-grid, .form-grid-3, .two-col, .feature-grid, .review-grid, .post-grid, .contact-cards, .order-meta, .filter-form { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .card-form, .panel, .summary-card { padding: 22px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .thumb { width: 72px; flex-shrink: 0; }
  .assurances { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { position: relative; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .cart-table td { border: 0; padding: 6px 0; display: flex; justify-content: space-between; align-items: center; }
  .cart-table td[data-label]::before { content: attr(data-label); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  .cart-table td[data-label="Saree"]::before { display: none; }
  .cart-table td:last-child { position: absolute; top: 12px; right: 0; width: auto; }
  .steps li:not(:last-child)::after { width: 16px; }
  .wa-float { bottom: 84px; right: 16px; width: 54px; height: 54px; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: var(--paper); border-top: 1px solid var(--line); padding: 10px 14px; box-shadow: 0 -6px 20px rgba(11, 43, 54, .1); }
  .mobile-bar .btn { min-height: 48px; font-size: 12px; padding: 0 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inline span { flex-basis: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
.cart-layout > *, .checkout-layout > *, .product-layout > * { min-width: 0; }
@media (max-width: 720px) {
  .cart-table td[data-label="Saree"] { padding-right: 48px; }
  .cart-item-name { font-size: 18px; }
}
.header-search input[type=search] { width: 170px; min-height: 40px; background: transparent; border: 0; padding: 0; color: var(--on-dark); }
.header-search input[type=search]:focus { outline: none; }
.header-search:focus-within { border-color: var(--gold); }
@media (max-width: 1200px) { .header-search input[type=search] { width: 120px; } }
