/* IAP — It's A Party Miami | shadow site styles */
:root {
  --ivory: #faf7f2;
  --sand: #f0e9df;
  --charcoal: #1f1d1a;
  --ink: #33302b;
  --brass: #b08d57;
  --brass-dark: #96743f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 29, 26, 0.08);
  --font-display: "Didot", "Didot LT STD", "GFS Didot", "Playfair Display", Georgia, serif;
  --font-body: "Didot", "Didot LT STD", "GFS Didot", "Playfair Display", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--charcoal); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--brass-dark); font-weight: 600; margin-bottom: 12px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; letter-spacing: 0.04em; }
.logo span { color: var(--brass); }
.nav { display: flex; gap: 28px; align-items: center; font-size: 0.92rem; font-weight: 500; }
.nav a:hover { color: var(--brass-dark); }
.nav-search { display: flex; align-items: center; }
.nav-search input {
  padding: 9px 16px; border: 1.5px solid var(--sand); border-radius: 999px;
  background: var(--white); font-family: inherit; font-size: 0.85rem;
  outline: none; width: 170px; transition: width 0.25s ease, border-color 0.2s ease;
}
.nav-search input:focus { border-color: var(--brass); width: 230px; }
.btn {
  display: inline-block; background: var(--charcoal); color: var(--white);
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease; border: none; cursor: pointer;
}
.btn:hover { background: var(--brass-dark); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn.ghost:hover { background: var(--charcoal); color: var(--white); }

/* Hero */
.hero { padding: 90px 0 70px; text-align: center; }
.hero p.lead { max-width: 620px; margin: 20px auto 32px; font-size: 1.1rem; color: #5c564d; }

/* Section scaffolding */
section { padding: 64px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1 / 1.05; background: var(--sand); box-shadow: var(--shadow);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card .label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(31, 29, 26, 0.72));
  color: var(--white); font-weight: 600; font-size: 1.05rem;
}

/* Product cards */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.prod-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s ease;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px); }
.prod-card .img-wrap { aspect-ratio: 1; background: var(--sand); position: relative; }
.prod-card img { width: 100%; height: 100%; object-fit: cover; }
/* Per-product vertical nudges (photos where the product sits too low) */
.prod-card[href*="vero-upholstered-loveseat"] .img-wrap,
.prod-card[href*="edana"] .img-wrap { background: #fff; }
.prod-card[href*="vero-upholstered-loveseat"] img,
.prod-card[href*="edana"] img { transform: translateY(-12%); }
.prod-card[href*="vero-upholstered-loveseat"]:hover img,
.prod-card[href*="edana"]:hover img { transform: translateY(-12%) scale(1.04); }
.prod-card .ribbon {
  position: absolute; top: 12px; left: 12px; background: var(--brass);
  color: var(--white); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.prod-card .info { padding: 16px 18px 20px; }
.prod-card .name { font-weight: 600; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 6px; }
.prod-card .price { color: var(--brass-dark); font-weight: 600; font-size: 0.92rem; }

/* Shop layout */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 40px; padding: 48px 0 80px; }
.filter-list { position: sticky; top: 96px; align-self: start; max-height: calc(100vh - 120px); overflow-y: auto; }
.filter-list h3 { font-size: 1.3rem; margin-bottom: 14px; }
.filter-list a {
  display: block; padding: 7px 10px; border-radius: 8px; font-size: 0.9rem; color: #5c564d;
}
.filter-list a:hover { background: var(--sand); }
.filter-list a.active { background: var(--charcoal); color: var(--white); font-weight: 600; }
.shop-tools { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.shop-tools input, .shop-tools select {
  padding: 11px 16px; border: 1.5px solid var(--sand); border-radius: 999px;
  background: var(--white); font-family: inherit; font-size: 0.9rem; outline: none;
}
.shop-tools input:focus { border-color: var(--brass); }
.shop-tools input { flex: 1; min-width: 220px; }

/* Product detail */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0 80px; align-items: start; }
.detail .img-wrap { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.detail .price { font-size: 1.5rem; color: var(--brass-dark); font-weight: 600; margin: 14px 0 8px; }
.detail .unit { color: #8a8378; font-size: 0.85rem; margin-bottom: 24px; }
.detail .desc { color: #4c473f; }
.detail .desc ul { padding-left: 20px; margin: 12px 0; }
.detail .desc li { margin-bottom: 6px; }
.detail .actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumb { padding: 24px 0 0; font-size: 0.85rem; color: #8a8378; }
.breadcrumb a:hover { color: var(--brass-dark); }

/* Value props */
.props { background: var(--white); }
.props-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 34px; text-align: center; }
.props-grid h3 { font-size: 1.25rem; margin-bottom: 8px; }
.props-grid p { font-size: 0.92rem; color: #6b6459; }
.props-grid .icon { font-size: 1.9rem; margin-bottom: 12px; }

/* CTA band */
.cta-band { background: var(--charcoal); color: var(--ivory); text-align: center; border-radius: var(--radius); padding: 64px 32px; margin: 40px auto; }
.cta-band h2 { color: var(--ivory); margin-bottom: 12px; }
.cta-band p { color: #cfc8bc; max-width: 520px; margin: 0 auto 28px; }
.cta-band .btn { background: var(--brass); }
.cta-band .btn:hover { background: var(--brass-dark); }

/* Footer */
.site-footer { background: var(--charcoal); color: #b5aea2; padding: 56px 0 32px; margin-top: 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.site-footer h4 { color: var(--ivory); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 14px; }
.site-footer a:hover { color: var(--brass); }
.site-footer .fine { border-top: 1px solid #3a362f; padding-top: 22px; font-size: 0.8rem; }
.footer-logo {
  height: 46px; width: auto; display: block; margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-modern { padding-top: 64px; }
.fm-top {
  text-align: center; padding-bottom: 44px; margin-bottom: 48px;
  border-bottom: 1px solid #3a362f;
}
.fm-top .footer-logo { margin: 0 auto 14px; height: 54px; }
.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--ivory);
}
.fm-mid {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 48px;
  max-width: 1020px; margin: 0 auto 52px;
}
.fm-col h5 {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.7rem;
  font-weight: 600; color: var(--brass); margin: 26px 0 12px;
}
.fm-col h5:first-child { margin-top: 0; }
.fm-col p { line-height: 1.9; color: #b5aea2; }
.fm-col a:hover { color: var(--brass); }
.fm-nav-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fm-ara { height: 42px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.9; margin: 4px 0 8px; }
.fm-ara-note { font-size: 0.78rem; }
.fm-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-top: 1px solid #3a362f; padding-top: 22px; font-size: 0.8rem;
}
.fm-bottom a:hover { color: var(--brass); }
@media (max-width: 860px) {
  .fm-mid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .fm-ara { margin: 4px auto 8px; }
  .fm-bottom { flex-direction: column; }
}

/* Utilities */
.empty-note { padding: 40px 0; color: #8a8378; }
.count-note { color: #8a8378; font-size: 0.85rem; }

/* ===== Shop — horizontal category strip ===== */
.shop-single { padding: 48px 0 80px; }
.cat-row {
  display: flex; gap: 26px; overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid var(--sand); margin: 18px 0 24px; padding-bottom: 0;
  white-space: nowrap;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-row a {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; font-weight: 600;
  color: #8a8378; padding: 10px 2px 12px; border-bottom: 2px solid transparent; flex: 0 0 auto;
}
.cat-row a:hover { color: var(--charcoal); }
.cat-row a.active { color: var(--charcoal); border-bottom-color: var(--charcoal); }

/* ===== Fullscreen hero + overlay header ===== */
.hero-full.fullscreen { height: calc(100vh - 64px); min-height: 520px; }
.cat-strip {
  min-height: 64px; align-items: center;
  position: sticky; top: 0; z-index: 40;
  transition: background 0.25s ease;
}
.strip-logo {
  display: block; position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
  opacity: 0; pointer-events: none;
}
.strip-logo img { height: 34px; width: auto; display: block; }
.cat-strip.with-logo .strip-logo { pointer-events: auto; }
.hero-full.fullscreen .hero-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -2;
}
.hero-full.fullscreen .hero-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1;
}
.hero-full.fullscreen { background: transparent; }
body > section:not(.hero-full), body > div.container, body > footer {
  position: relative; z-index: 1;
}
body > section:not(.hero-full), body > div.container {
  background: var(--ivory);
}
body > section.props, body > section.editorial { background: var(--white); }
.cat-strip.scrolled {
  background: rgba(250, 247, 242, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom-color: rgba(240, 233, 223, 0.3);
}
.hero-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
}
.hero-header .header-grid { height: 64px; }
.hero-header .nav-right { padding-right: 60px; }
.hero-header .nav a { color: var(--charcoal); }
.hero-header .nav .btn { color: var(--white); }
.hero-header .nav-search input { background: rgba(255,255,255,0.75); }
.cat-strip .strip-cart {
  position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
  color: var(--charcoal);
}
.cat-strip .strip-search {
  position: absolute; right: 76px; top: 50%; transform: translateY(-50%);
  color: var(--charcoal); cursor: pointer;
}
.cat-strip .strip-member {
  position: absolute; right: 124px; top: 50%; transform: translateY(-50%);
}
.mega-search { margin-bottom: 10px; }
.mega-search input {
  width: 100%; max-width: 540px; display: block;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--sand);
  border-radius: 0; padding: 8px 2px 12px; outline: none;
}
.mega-search input::placeholder { color: #a49c8f; font-style: italic; }
.mega-search input:focus { border-bottom-color: var(--charcoal); }

/* Live search results inside the frosted popup */
.mega-results { max-height: 350px; overflow-y: auto; }
.mega-hit {
  display: flex; align-items: center; gap: 16px;
  padding: 9px 2px; border-bottom: 1px solid rgba(31, 30, 28, 0.08);
  color: var(--ink);
}
.mega-hit img {
  width: 52px; height: 52px; flex: none;
  object-fit: contain; background: var(--white); border-radius: 4px;
}
.mega-hit .mh-name { flex: 1; font-family: var(--font-display); font-size: 1.02rem; line-height: 1.3; }
.mega-hit .mh-price { font-style: italic; color: #8a8378; font-size: 0.9rem; white-space: nowrap; }
.mega-hit:hover .mh-name { color: var(--brass-dark); }
.mega-hit { position: relative; }
.mega-hit .mh-add {
  position: absolute; right: 0; top: 50%;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(-50%) translateX(10px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mega-hit:hover .mh-add { opacity: 1; transform: translateY(-50%) translateX(0); pointer-events: auto; }
.mega-hit:hover .mh-price { display: none; }
.mh-add input {
  width: 48px; padding: 7px 4px; text-align: center;
  border: 1px solid var(--sand); border-radius: 6px; background: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; color: var(--ink);
}
.mh-add input::-webkit-outer-spin-button,
.mh-add input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mh-add input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.mh-add button {
  padding: 8px 14px; border: 0; border-radius: 999px;
  background: var(--charcoal); color: var(--ivory); cursor: pointer;
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.15s ease;
}
.mh-add button:hover { background: var(--brass-dark); }
.mega-all {
  display: block; padding: 14px 2px 4px;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: underline; text-underline-offset: 4px;
}
.mega-all:hover { color: var(--brass-dark); }
.mega-noresults { padding: 16px 2px 4px; color: #8a8378; font-style: italic; }
@media (max-width: 1023px) {
  .cat-strip .strip-search, .cat-strip .strip-member { display: none; }
}

/* ===== Mega menu (floating card, Nuage style) ===== */
.mega-panel {
  position: absolute; top: calc(100% + 14px); left: 24px; right: 24px;
  max-width: 1240px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 34px 80px rgba(31, 29, 26, 0.24);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 39;
  text-transform: none; letter-spacing: normal; font-size: 1rem; font-weight: 400;
  white-space: normal; text-align: left;
}
.mega-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel.up {
  top: auto; bottom: calc(100% + 14px);
  transform: translateY(-10px);
}
.mega-panel.up.open { transform: translateY(0); }
.mega-panel.compact { left: auto; right: 20px; width: 490px; max-width: 490px; margin: 0; }
/* Collage header — same style as the menu, centered */
.collage-head { text-align: center; }
.collage-head h2 {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 1.25rem; font-weight: 600; font-style: normal;
  color: var(--charcoal);
}
.collage-head .link-more {
  display: inline-block; margin-top: 10px;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem;
}

/* Rotating collage — uniform grid */
.collage {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; width: 100%; margin-top: 10px;
}
.collage a { position: relative; overflow: hidden; display: block; background: #fff; aspect-ratio: 1; }
.collage img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; transition: opacity 1s ease, transform 0.6s ease;
}
.collage a:hover img { transform: scale(1.03); }
/* Calendar (flatpickr) — themed to the site */
.flatpickr-calendar {
  font-family: var(--font-body); background: var(--ivory);
  border-radius: 12px; border: 1px solid var(--sand);
  box-shadow: 0 24px 60px rgba(31, 29, 26, 0.22);
}
.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after { border-bottom-color: var(--ivory); }
.flatpickr-months .flatpickr-month { color: var(--charcoal); }
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year { font-family: var(--font-body); font-weight: 600; color: var(--charcoal); }
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg { fill: var(--charcoal); }
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg { fill: var(--brass-dark); }
span.flatpickr-weekday { color: #8a8378; font-weight: 600; }
.flatpickr-day { color: var(--ink); border-radius: 50%; }
.flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover { background: var(--sand); border-color: var(--sand); }
.flatpickr-day.selected, .flatpickr-day.selected:hover, .flatpickr-day.selected:focus {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory);
}
.flatpickr-day.today { border-color: var(--brass); }
.flatpickr-day.today:hover { background: var(--sand); color: var(--ink); }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: #c9c2b6; }
.flatpickr-day.inRange {
  background: var(--sand); border-color: var(--sand);
  box-shadow: -5px 0 0 var(--sand), 5px 0 0 var(--sand);
}
.flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory);
}
.flatpickr-day.selected.startRange + .flatpickr-day.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange + .flatpickr-day.endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 var(--charcoal);
}

/* Checkout form sections */
.form-section {
  font-style: italic; font-weight: 500; font-size: 1.35rem;
  margin: 34px 0 18px; padding-bottom: 10px; border-bottom: 1px solid var(--sand);
}
.form-section:first-of-type { margin-top: 8px; }
.field-note { font-size: 0.8rem; color: #8a8378; margin-top: 6px; }
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-group button {
  padding: 11px 16px; border: 1px solid var(--sand); border-radius: 999px;
  background: var(--white); font-family: var(--font-body); font-size: 0.85rem;
  color: var(--ink); cursor: pointer; transition: all 0.15s ease;
}
.pill-group button:hover { border-color: var(--charcoal); }
.pill-group button.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.pill-group button:disabled { opacity: 0.4; cursor: not-allowed; }
.pill-group button:disabled:hover { border-color: var(--sand); }
.os-wrap { position: relative; margin: -4px 0 14px; }
.os-wrap::before { content: "⌕"; position: absolute; left: 12px; top: 50%; transform: translateY(-55%); color: #a49c8f; font-size: 1.15rem; pointer-events: none; }
.os-wrap .qe-search { padding-left: 34px; }
.ol-qty {
  width: 58px; padding: 4px 6px; border: 1px solid var(--sand); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.85rem; color: var(--ink); text-align: center; background: var(--white);
}
.ol-qty:focus { border-color: var(--charcoal); outline: none; }
.pill-group.pill-missing button { border-color: #b0483a; animation: pillShake 0.3s ease 1; }
@keyframes pillShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }
input[type="file"] { font-family: var(--font-body); font-size: 0.88rem; color: #5c564d; }
input[type="file"]::file-selector-button {
  padding: 10px 18px; margin-right: 14px; border: 1px solid var(--sand); border-radius: 999px;
  background: var(--white); font-family: var(--font-body); font-size: 0.85rem;
  color: var(--ink); cursor: pointer; transition: all 0.15s ease;
}
input[type="file"]::file-selector-button:hover { border-color: var(--charcoal); }
.field input::placeholder,
.field textarea::placeholder { color: #c2bbae; font-style: italic; opacity: 1; }

/* Product page: add to an existing quote (members) */
.pd-addquote {
  margin-top: 24px; padding: 20px 22px;
  background: var(--ivory); border: 1px solid var(--sand); border-radius: 14px;
}
.pd-aq-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #8a8378; margin-bottom: 13px; font-weight: 600;
}
.pd-quote-row { display: flex; gap: 12px; align-items: stretch; }
.pd-quote-row select {
  flex: 1; appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding: 13px 44px 13px 18px; border: 1px solid var(--sand); border-radius: 999px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%2333302b' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 18px center;
  font-family: var(--font-display); font-size: 0.98rem; color: var(--ink);
  cursor: pointer; outline: none; transition: border-color 0.15s ease;
}
.pd-quote-row select:hover, .pd-quote-row select:focus { border-color: var(--charcoal); }
.pd-quote-row .btn {
  padding: 12px 30px; font-size: 0.8rem; border-radius: 999px;
}

/* Venue autocomplete dropdown */
.venue-results {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  background: var(--white); border-radius: 0 0 10px 10px;
  box-shadow: 0 22px 50px rgba(31, 29, 26, 0.16); overflow: hidden;
}
.venue-results button {
  display: block; width: 100%; text-align: left; padding: 12px 16px;
  background: none; border: 0; border-bottom: 1px solid rgba(31, 30, 28, 0.07);
  cursor: pointer; font-family: var(--font-body);
}
.venue-results button:hover { background: var(--ivory); }
.venue-results strong { display: block; font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.venue-results span { display: block; color: #8a8378; font-size: 0.82rem; margin-top: 2px; }

/* Checkout step wizard */
.ck-steps { display: flex; align-items: center; gap: 14px; margin: 30px 0 8px; }
.ck-steps .sep { flex: 1; height: 1px; background: var(--sand); }
.ck-step-dot {
  display: flex; align-items: center; gap: 10px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #a49c8f; transition: color 0.2s ease;
}
.ck-step-dot .num {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--sand); background: var(--white); color: var(--ink);
  font-family: var(--font-display); font-size: 0.95rem;
  transition: all 0.25s ease;
}
.ck-step-dot.active { color: var(--charcoal); }
.ck-step-dot.active .num { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.ck-step-dot.done { color: var(--brass-dark); }
.ck-step-dot.done .num { background: var(--white); color: var(--brass-dark); border-color: var(--brass-dark); }
.ck-step-dot.done:hover { color: var(--charcoal); }
.ck-nav { display: flex; gap: 14px; margin-top: 36px; }
.ck-nav .btn { padding: 15px 34px; }
.rv-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 30px;
  padding: 11px 0; border-bottom: 1px solid rgba(31, 30, 28, 0.08);
  font-size: 0.95rem;
}
.rv-row span { color: #8a8378; flex: none; }
.rv-row strong { font-weight: 500; text-align: right; }
@media (max-width: 700px) { .ck-step-dot .lbl { display: none; } }
.radio-group { display: flex; gap: 26px; padding: 8px 0 2px; }
.radio { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.radio input { accent-color: var(--charcoal); width: 16px; height: 16px; }

/* Quantity inputs — typeable, no native spinners */
.qty-row input::-webkit-outer-spin-button,
.qty-row input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-row input[type="number"] { -moz-appearance: textfield; appearance: textfield; text-align: center; }

/* Members area */
.member-link { color: var(--charcoal); display: flex; align-items: center; }
.member-link:hover { color: var(--brass-dark); }
.member-initial {
  width: 27px; height: 27px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal); color: var(--ivory);
  font-family: var(--font-display); font-size: 0.9rem; line-height: 1;
  transition: background 0.15s ease;
}
.member-link:hover .member-initial { background: var(--brass-dark); }
.account-page { padding: 60px 0 90px; max-width: 1060px; }
.account-page .eyebrow { margin-bottom: 10px; }
#acct-member, #acct-loading, #acct-unconfigured { max-width: 640px; margin: 0 auto; }
.auth-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(31, 29, 26, 0.12);
  margin-top: 10px;
}
.auth-photo { background: var(--sand); }
.auth-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; }
.auth-body {
  padding: 56px 54px; display: flex; flex-direction: column; justify-content: center;
}
.auth-body h2 {
  font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.6rem); margin: 6px 0 10px;
}
.auth-body .acct-form { margin-top: 20px; }
@media (max-width: 900px) {
  .auth-card { grid-template-columns: 1fr; }
  .auth-photo { display: none; }
  .auth-body { padding: 42px 28px; }
}
.acct-form { margin-top: 26px; }
.acct-note { color: #5c564d; line-height: 1.6; }
.acct-switch { margin-top: 18px; text-align: center; color: #5c564d; }
.acct-switch a { text-decoration: underline; text-underline-offset: 4px; color: var(--charcoal); }
.acct-switch a:hover { color: var(--brass-dark); }
.acct-error { color: #a04b3c; margin: 14px 0; font-size: 0.92rem; }
.acct-forgot { text-align: right; margin: -8px 0 4px; font-size: 0.85rem; }
.acct-forgot a { color: #8a8378; text-decoration: underline; text-underline-offset: 4px; }
.acct-forgot a:hover { color: var(--brass-dark); }
.acct-card {
  margin-top: 30px; padding: 28px 30px; background: var(--white);
  border-radius: 12px; box-shadow: 0 10px 34px rgba(31, 29, 26, 0.07);
}
.acct-card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 8px; }
.acct-or { text-align: center; color: #8a8378; font-size: 0.85rem; margin: 22px 0; letter-spacing: 0.06em; }
.acct-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.badge {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--charcoal); color: var(--ivory);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge.muted { background: var(--sand); color: var(--ink); }
.badge.brass { background: var(--brass-dark); color: var(--ivory); }
.badge.red { background: #efe0dc; color: #a04b3c; }
.quote-card {
  margin-top: 18px; padding: 24px 28px; background: var(--white);
  border-radius: 12px; box-shadow: 0 10px 34px rgba(31, 29, 26, 0.07);
}
.qgroup {
  margin: 30px 0 4px; font-family: var(--font-body); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass-dark);
}
.qc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; cursor: pointer; }
.qc-right { display: flex; align-items: baseline; gap: 14px; white-space: nowrap; }
.qc-chev { color: #b8b0a3; font-size: 0.8rem; transition: transform 0.2s ease; display: inline-block; }
.quote-card:not(.collapsed) .qc-chev { transform: rotate(180deg); }
.quote-card.collapsed { padding-top: 18px; padding-bottom: 18px; }
.quote-card.collapsed .qc-items,
.quote-card.collapsed .qc-main-actions { display: none; }
.qc-title { font-family: var(--font-display); font-size: 1.25rem; }
.qc-meta { color: #8a8378; font-size: 0.85rem; margin-top: 4px; }
.qc-total { font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.qc-items { margin: 18px 0 20px; }
.qc-badge { margin-left: 10px; vertical-align: middle; font-size: 0.62rem; padding: 5px 11px; }
.qc-item, .qe-row {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 0; border-bottom: 1px solid rgba(31, 30, 28, 0.07);
  font-size: 0.92rem; color: var(--ink);
}
.qc-item img, .qe-row img, .qi-noimg {
  width: 44px; height: 44px; flex: none; border-radius: 6px;
  object-fit: contain; background: var(--ivory);
}
.qc-item .qi-name, .qe-row .qi-name { flex: 1; line-height: 1.35; }
.qc-item .qi-qty { color: #8a8378; white-space: nowrap; }
.qc-item .qi-price { font-style: normal; font-family: var(--font-display); white-space: nowrap; }
.qe-row input {
  width: 64px; padding: 8px 4px; text-align: center;
  border: 1px solid var(--sand); border-radius: 6px; background: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
}
.qe-row input::-webkit-outer-spin-button,
.qe-row input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qe-row input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.qe-row .qe-rm {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--sand);
  background: var(--white); color: #8a8378; font-size: 1.05rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.15s ease;
}
.qe-row .qe-rm:hover { border-color: #a04b3c; color: #a04b3c; }
.qe-note { margin: 14px 0 4px; color: #8a8378; font-size: 0.85rem; font-style: italic; }
.qe-add { margin-top: 16px; }
.qe-search {
  width: 100%; padding: 12px 14px; border: 1px solid var(--sand); border-radius: 8px;
  background: var(--ivory); font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  outline: none;
}
.qe-search:focus { border-color: var(--charcoal); }
.qe-search::placeholder { color: #a49c8f; font-style: italic; }
.qe-results { margin-top: 4px; }
.qe-hit {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 8px 6px; background: none; border: 0; border-bottom: 1px solid rgba(31, 30, 28, 0.07);
  cursor: pointer; font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
}
.qe-hit:hover { background: var(--ivory); }
.qe-hit img { width: 38px; height: 38px; flex: none; object-fit: contain; background: var(--ivory); border-radius: 6px; }
.qe-hit span { flex: 1; }
.qe-hit em { font-style: italic; color: #8a8378; white-space: nowrap; }
.qe-noresults { padding: 10px 6px; color: #8a8378; font-style: italic; font-size: 0.88rem; }
.qe-totals { margin-top: 18px; padding: 16px 18px; background: var(--ivory); border-radius: 10px; }
.qet-row {
  display: flex; justify-content: space-between; padding: 4px 0;
  font-size: 0.9rem; color: #5c564d;
}
.qet-row.qet-total {
  margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--sand);
  font-weight: 700; color: var(--ink); font-size: 0.98rem;
}
.qc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.qc-actions .btn { font-size: 0.8rem; padding: 11px 24px; }

/* Mini cart card — frosted popup shown next to the search panel on add */
.cart-card {
  position: fixed; z-index: 90; padding: 28px 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; box-shadow: 0 34px 80px rgba(31, 29, 26, 0.24);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.cart-card.open { opacity: 1; visibility: visible; transform: translateY(0); }
.cart-card h2 {
  font-size: 1.7rem; font-weight: 500; padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1px solid var(--sand);
}
.cart-card .cc-line {
  display: block; font-family: var(--font-display); font-size: 1rem;
  color: var(--ink); padding: 5px 0; line-height: 1.4;
}
.cart-card .cc-line:hover { color: var(--brass-dark); }
.cart-card .cc-sub { color: #5c564d; font-size: 0.92rem; line-height: 1.6; margin: 16px 0 20px; }
.cart-card .cc-links { display: flex; gap: 26px; }
.cart-card .cc-links a {
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: underline; text-underline-offset: 5px;
}
.cart-card .cc-links a:hover { color: var(--brass-dark); }

/* Header search popup (menu-style frosted panel) */
.hdr-search-btn { color: var(--charcoal); display: flex; align-items: center; }
.hdr-search-btn:hover { color: var(--brass-dark); }
.hdr-panel {
  position: fixed; top: 78px; right: 22px; z-index: 80;
  width: 490px; max-width: calc(100vw - 40px); padding: 26px 30px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; box-shadow: 0 34px 80px rgba(31, 29, 26, 0.24);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  text-align: left;
}
.hdr-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.hdr-panel h2 {
  font-weight: 400; font-size: 1.7rem;
  border-bottom: 1px solid var(--sand); padding-bottom: 12px; margin-bottom: 14px;
}

/* Category grid — Instagram-style square tiles */
.catgrid-ig {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  width: 100vw; margin-left: calc(50% - 50vw); padding: 0 10px;
}
.catgrid-ig a { position: relative; display: block; overflow: hidden; aspect-ratio: 1; background: var(--sand); }
.catgrid-ig img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.catgrid-ig a:hover img { transform: scale(1.04); }
.catgrid-ig a[href*="cat=tables"] img {
  object-fit: contain; background: #fff; padding: 9%; box-sizing: border-box;
}
@media (max-width: 900px) { .catgrid-ig { grid-template-columns: repeat(2, 1fr); } }

.prod-card { position: relative; }
.tile-add { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.tile-add input {
  width: 58px; padding: 9px 6px; text-align: center;
  border: 1px solid var(--sand); background: #fff; border-radius: 0;
  font-family: var(--font-body); font-size: 0.85rem; outline: none;
  -moz-appearance: textfield; appearance: textfield;
}
.tile-add input::-webkit-outer-spin-button,
.tile-add input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tile-add button {
  padding: 10px 16px; background: var(--charcoal); color: var(--ivory);
  border: 0; cursor: pointer; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; font-weight: 600;
  transition: background 0.2s ease;
}
.tile-add button:hover { background: var(--brass-dark); }
.tile-price {
  display: block; font-style: normal; font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing: 0.08em; color: #5c564d; margin-top: 8px;
}
.collage .tile-name,
.catgrid-ig .tile-name,
.prod-card .tile-name {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px; text-align: center;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.35rem); color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  opacity: 0; transition: opacity 0.35s ease;
}
.collage a:hover .tile-name,
.catgrid-ig a:hover .tile-name,
.prod-card:hover .tile-name { opacity: 1; }
@media (max-width: 900px) { .collage { grid-template-columns: repeat(2, 1fr); } }
.mega-panel.compact .mega-inner { grid-template-columns: 1fr; padding: 28px 30px; gap: 0; }
.mega-panel.compact .mega-content { padding: 0; }
.mega-panel.compact .mega-content h2 { font-size: 1.7rem; padding-bottom: 12px; margin-bottom: 14px; }
.mega-panel.compact .mega-browse { margin: 22px 0 8px; font-size: 0.82rem; }
.mega-panel.compact .mega-cats a { font-size: 1rem; }
.mega-panel.compact .mega-desc { font-size: 0.92rem; }
.mega-panel.compact .mega-shop { font-size: 0.85rem; }
.mega-panel.compact .mega-search input { font-size: 1.15rem; }
.mega-inner {
  display: grid; grid-template-columns: 420px 1fr; gap: 52px;
  padding: 32px;
}
.mega-photo { border-radius: 6px; overflow: hidden; background: var(--white); align-self: start; }
.mega-photo img { width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block; }
.mega-content { padding: 8px 20px 8px 0; }
.mega-content h2 {
  font-weight: 400; font-size: clamp(2rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--sand); padding-bottom: 16px; margin-bottom: 18px;
}
.mega-desc { color: #5c564d; max-width: 540px; margin-bottom: 22px; line-height: 1.6; }
.mega-shop {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.92rem; font-weight: 600; color: var(--charcoal);
  text-decoration: underline; text-underline-offset: 5px;
}
.mega-shop:hover { color: var(--brass-dark); }
.mega-browse {
  margin: 30px 0 10px; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.92rem; font-weight: 700; color: var(--charcoal);
}
.mega-cats a {
  display: block; padding: 5px 0; font-size: 1.08rem; color: var(--ink);
  letter-spacing: 0.03em; transition: color 0.15s ease, padding-left 0.15s ease;
}
.mega-cats a:hover { color: var(--brass-dark); padding-left: 5px; }
.mega-note { margin-top: 26px; color: #8a8378; font-size: 0.9rem; max-width: 560px; }
.mega-backdrop {
  position: fixed; inset: 0; z-index: 38;
  background: rgba(250, 247, 242, 0.3);
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.mega-backdrop.open { opacity: 1; }
@media (max-width: 1023px) { .mega-panel, .mega-backdrop { display: none; } }
.hero-center-stack {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  z-index: 5; pointer-events: none;
}
.hero-logo-dark { width: clamp(110px, 12vw, 160px); }
.hero-tagline {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--charcoal); letter-spacing: 0.04em;
}

/* ===== Instagram grid ===== */
.ig-section { padding-bottom: 0; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ig-grid a { display: block; aspect-ratio: 1; overflow: hidden; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ig-grid a:hover img { transform: scale(1.05); }

/* ===== Journal (blog) ===== */
.journal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; padding: 0 10px; width: 100%;
}
.post-card { display: block; }
.post-img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand); margin-bottom: 18px; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-img img { transform: scale(1.04); }
.post-meta { font-family: var(--font-display); font-style: italic; color: #8a8378; font-size: 0.95rem; margin-bottom: 8px; }
.post-card h3 { font-style: italic; font-weight: 500; font-size: 1.45rem; margin-bottom: 10px; }
.post-card p { color: #5c564d; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.55; }

/* ===== Clients ===== */
.clients { background: var(--ivory); }
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px 10px;
  align-items: center; justify-items: center;
  width: 100vw; margin-left: calc(50% - 50vw); padding: 0 10px;
}
.clients-grid img { max-height: 170px; max-width: 82%; width: auto; filter: grayscale(1); opacity: 0.85; mix-blend-mode: multiply; transition: all 0.25s ease; }
.clients-grid a:hover img { filter: none; opacity: 1; }

/* ===== Product detail v2 (Wix-style) ===== */
.pd-top-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pd-prevnext { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; display: flex; gap: 18px; }
.pd-prevnext a:hover { color: var(--brass-dark); }
.breadcrumb { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--charcoal); }
.detail h1.pd-title { font-style: italic; font-weight: 500; }
.pd-price { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: var(--charcoal); margin: 18px 0 22px; }
.pd-price .pd-per { font-size: 1.05rem; color: #8a8378; }
.pd-rack { font-size: 0.88rem; color: #a08b5f; letter-spacing: 0.02em; margin: -14px 0 22px; }
.pd-rack-note { color: #8a8378; }
/* Linen fit checker — compact drape diagram on product pages */
.pd-fit { border: 1px solid #e6e0d5; background: #fbf9f4; padding: 16px 18px 14px; margin: -6px 0 22px; }
.pd-fit-head { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink); margin-bottom: 10px; }
.pd-fit .pd-fit-select { margin-bottom: 14px; padding: 10px 12px; font-size: 0.92rem; background: var(--white); }
.pd-fit #fit-diagram svg { display: block; width: 100%; }
.pd-fit-verdict { font-size: 0.86rem; color: #5f594e; margin-top: 10px; letter-spacing: 0.02em; }
.pd-fit-verdict b { font-weight: 600; }
.pd-fit-verdict b.good { color: #4a6b4f; }
.pd-fit-verdict b.puddle { color: #a08b5f; }
.pd-fit-verdict b.gap { color: #c47a5a; }
/* Fit visual, Direction A — product photo + measurement + verdict */
.pd-fit-photo { display: flex; gap: 18px; align-items: stretch; }
.pfp-img { position: relative; flex: none; width: 150px; height: 190px; overflow: hidden; }
.pfp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pfp-line { position: absolute; top: 12px; bottom: 12px; left: 14px; border-left: 1.5px dashed rgba(255, 255, 255, 0.95); filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.45)); }
.pfp-label { position: absolute; left: 22px; top: 45%; font-family: var(--font-display); font-style: italic; font-size: 0.88rem; color: #fff; background: rgba(38, 36, 33, 0.55); padding: 3px 9px; border-radius: 2px; white-space: nowrap; }
.pfp-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.pfp-main { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--charcoal); line-height: 1.2; }
.pfp-main.gap { color: #c47a5a; }
.pfp-main.puddle { color: #a08b5f; }
.pfp-sub { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: #5f594e; margin-top: 5px; }
.pfp-sub.puddle { color: #a08b5f; }
.pfp-sub.gap { color: #c47a5a; }
.pfp-sub.good { color: #4a6b4f; }
.pfp-meta { font-size: 0.62rem; letter-spacing: 1.6px; color: #8a8378; margin-top: 13px; }
.pfp-rule { width: 44px; border-top: 1px solid #a08b5f; margin-top: 13px; }
/* Banquet table seating diagram (little chairs) */
.pd-seats { display: flex; align-items: center; gap: 18px; margin: -8px 0 24px; }
.pd-seats svg { flex: none; display: block; }
.pd-seats svg.ps-rect { width: 112px; }
.pd-seats svg.ps-round { width: 92px; }
/* Suggested tables line under the size dropdown */
.pd-fit-suggest { margin: -8px 0 22px; font-family: var(--font-display); font-style: italic; font-size: 0.94rem; color: #5f594e; line-height: 1.5; }
.pd-fit-suggest b { font-weight: 600; color: var(--charcoal); }
.pd-fit-suggest .pfs-tick { color: #4a6b4f; margin-right: 2px; }
.pd-fit-suggest .pfs-tick.puddle { color: #a08b5f; }
/* Members landing: events lead, My Information collapsed at the bottom */
#acct-member { display: flex; flex-direction: column; }
#acct-member > #m-setup { order: 1; }
#acct-member > #m-company { order: 2; }
#acct-member > #m-timeline { order: 3; }
#acct-member > #m-quotes-wrap { order: 4; }
#acct-member > #m-info { order: 5; }
#acct-member > #m-logout { order: 6; align-self: flex-start; }
/* "Same as billing" — grayed, locked delivery address fields */
.ro-gray { background: #f1ede4 !important; color: #8a8378 !important; }
select.ro-lock { pointer-events: none; }
/* Language toggle */
.lang-toggle {
  font-size: 0.72rem; letter-spacing: 1.5px; color: #8a8378; text-decoration: none;
  border: 1px solid #d8d1c3; padding: 5px 9px; border-radius: 999px; line-height: 1;
  align-self: center;
}
.lang-toggle:hover { color: var(--charcoal); border-color: #b9b2a5; }
.mm-foot .lang-toggle { margin-left: auto; }
/* Portal tabs */
.tab-off { display: none !important; }
.mtabs { display: flex; gap: 26px; margin: 26px 0 6px; border-bottom: 1px solid #e6e0d5; flex-wrap: wrap; }
.mtabs button {
  background: none; border: 0; padding: 0 2px 12px; cursor: pointer;
  font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: #8a8378;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.mtabs button:hover { color: var(--charcoal); }
.mtabs button.active { color: var(--charcoal); border-bottom-color: #a08b5f; }
/* Planning tools — collapsed section at the bottom of My Events */
#m-tools #tools-head { cursor: pointer; user-select: none; }
#m-tools #tools-head::after { content: " ▾"; color: #a08b5f; font-size: 0.75em; }
#m-tools.collapsed #tools-head::after { content: " ▸"; }
#m-tools.collapsed > :not(#tools-head) { display: none; }
/* Dashboard cards */
.dash-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; margin-top: 16px; }
.dash-card { background: var(--white); border: 1px solid #e6e0d5; padding: 18px 18px 16px; }
.dash-card .dc-name { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--charcoal); }
.dash-card .dc-date { font-size: 0.78rem; color: #8a8378; margin: 2px 0 10px; }
.dash-card .badge { margin-bottom: 10px; }
.dash-card .dc-note { font-size: 0.85rem; color: #5f594e; margin: 10px 0 14px; line-height: 1.5; }
.dash-card .dc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dash-card .dc-foot .btn { padding: 9px 16px; font-size: 0.82rem; }
.dash-card .dc-total { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--charcoal); margin-left: auto; }
/* Documents */
.doc-row { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid #e6e0d5; padding: 13px 16px; margin-bottom: 10px; }
.doc-row .doc-main { flex: 1; min-width: 0; }
.doc-row .doc-main b { display: block; font-weight: 600; font-size: 0.92rem; color: var(--charcoal); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.doc-row .doc-main span { font-size: 0.76rem; color: #8a8378; }
.doc-row .doc-dl { background: none; border: 1px solid #b9b2a5; padding: 7px 14px; font-size: 0.78rem; cursor: pointer; font-family: inherit; }
.doc-row .doc-dl:hover { background: var(--ivory, #f7f4ee); }
.doc-row .doc-rm { background: none; border: 0; color: #a3512f; font-size: 1.2rem; cursor: pointer; padding: 2px 6px; }
/* Tool tables */
.mtable .mt-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-top: 1px solid #eee8dc; font-size: 0.9rem; color: var(--charcoal); }
.mtable .mt-row:first-child { border-top: 0; }
.mtable .mt-row.mt-head span { font-size: 0.64rem; letter-spacing: 1.6px; text-transform: uppercase; color: #8a8378; }
.mtable .mt-row span:last-child { font-weight: 600; text-align: right; }
/* Favorites / product page heart */
.pd-fav { display: block; margin-top: 14px; background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: #8a8378; padding: 0; }
.pd-fav:hover { color: #a08b5f; }
.pd-fav.on { color: #a08b5f; }
/* Events timeline (Gantt bars) */
.tl-wrap { border: 1px solid #e6e0d5; background: var(--white); padding: 18px 18px 14px; }
.tl-months { display: flex; margin-left: 150px; border-bottom: 1px solid #eee8dc; padding-bottom: 6px; margin-bottom: 12px; }
.tl-month { font-size: 0.62rem; letter-spacing: 1.5px; color: #8a8378; text-transform: uppercase; border-left: 1px solid #eee8dc; padding-left: 6px; box-sizing: border-box; }
.tl-month:first-child { border-left: 0; padding-left: 0; }
.tl-row { display: flex; align-items: center; padding: 7px 0; cursor: pointer; }
.tl-row:hover .tl-label { color: #a08b5f; }
.tl-label { flex: none; width: 150px; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-right: 12px; box-sizing: border-box; }
.tl-track { flex: 1; position: relative; height: 16px; background: #faf8f3; border-radius: 8px; }
.tl-bar { position: absolute; top: 0; height: 16px; border-radius: 8px; }
.tl-today { position: absolute; top: -3px; bottom: -3px; width: 0; border-left: 1.5px dashed #c47a5a; opacity: 0.6; }
.tl-legend .tl-today-key { background: none; border-left: 1.5px dashed #c47a5a; width: 2px; border-radius: 0; height: 12px; }
.tl-legend { display: flex; gap: 18px; margin-top: 14px; margin-left: 150px; font-size: 0.72rem; color: #8a8378; letter-spacing: 0.5px; }
.tl-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
@media (max-width: 767px) {
  .tl-label { width: 92px; }
  .tl-months, .tl-legend { margin-left: 92px; }
}
/* My Information card */
.mi-section { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--ink); border-top: 1px solid #eee8dc; padding-top: 20px; margin: 20px 0 4px; }
#m-info input[type="file"] { padding: 11px 12px; border: 1px dashed #b9b2a5; background: var(--white); width: 100%; font-size: 0.9rem; color: #5f594e; }
#m-info .btn { margin-top: 6px; }
/* Custom dropdown (fancySelect) — site-styled select panels */
.fsel { position: relative; margin-bottom: 22px; }
.fsel-native { position: absolute !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; margin: 0 !important; }
.fsel-btn {
  width: 100%; display: flex; align-items: center; gap: 12px; padding: 13px 15px;
  border: 1px solid #b9b2a5; background: var(--white); cursor: pointer; text-align: left;
  font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--ink);
}
.fsel-btn .l { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fsel-btn .r { color: var(--charcoal); }
.fsel-btn svg { flex: none; color: #8a8378; transition: transform 0.18s ease; }
.fsel.open .fsel-btn svg { transform: rotate(180deg); }
.fsel-panel {
  position: absolute; top: calc(100% - 1px); left: 0; right: 0; z-index: 40; display: none;
  background: var(--white); border: 1px solid #b9b2a5; max-height: 320px; overflow: auto;
  box-shadow: 0 18px 40px rgba(38, 36, 33, 0.1);
}
.fsel.open .fsel-panel { display: block; }
.fsel-row {
  display: flex; align-items: baseline; gap: 12px; padding: 12px 15px; cursor: pointer;
  border-top: 1px solid #eee8dc; font-family: var(--font-display); font-style: italic; font-size: 0.98rem; color: var(--ink);
}
.fsel-row:first-child { border-top: 0; }
.fsel-row:hover { background: var(--ivory, #f7f4ee); }
.fsel-row .l { flex: 1; }
.fsel-row.on { color: #a08b5f; }
.pd-fit .fsel { margin-bottom: 14px; }
.pd-quote-row .fsel { flex: 1; margin-bottom: 0; }
.pd-quote-row .fsel-btn { padding: 11px 13px; font-size: 0.95rem; }
.cd-item .rack-note { font-size: 0.75rem; color: #8a8378; margin-top: 3px; }
.pd-label { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.pd-select {
  width: 100%; padding: 13px 15px; border: 1px solid #b9b2a5; background: var(--white);
  font-family: var(--font-display); font-style: italic; font-size: 1rem; margin-bottom: 22px; outline: none;
}
.pd-qty { margin-bottom: 26px; }
.pd-qty .qty-row { border-radius: 0; border-color: #b9b2a5; }
.btn.inquiry {
  display: block; width: 100%; background: transparent; color: var(--charcoal);
  border: 1px solid #b9b2a5; border-radius: 0; padding: 16px;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem; font-weight: 500;
}
.btn.inquiry:hover { background: var(--charcoal); color: var(--white); transform: none; }
.pd-divider { border: none; border-top: 1px solid var(--sand); margin: 30px 0; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumbs img {
  width: 64px; height: 64px; object-fit: cover; cursor: pointer;
  border: 1px solid transparent; opacity: 0.8;
}
.pd-thumbs img.active { border-color: var(--charcoal); opacity: 1; }
.pd-desc-below { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.6; margin-top: 26px; }
.pd-desc-below ul { padding-left: 22px; margin: 10px 0; }
.detail .img-wrap { border-radius: 0; box-shadow: none; border: 1px solid var(--sand); }

/* ===== Shop grid — editorial 3-col ===== */
.prod-grid.big { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.prod-grid.big .price { color: #8a8378; font-weight: 500; font-size: 0.85rem; }

@media (max-width: 860px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .prod-grid.big { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Cart drawer ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(20, 18, 15, 0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 90;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw);
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 95; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -18px 0 50px rgba(31, 29, 26, 0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer .cd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--sand);
}
.cart-drawer .cd-head h3 { font-style: italic; font-weight: 500; font-size: 1.5rem; }
.cart-drawer .cd-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--charcoal); line-height: 1; padding: 4px; }
.cart-drawer .cd-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cd-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--sand); }
.cd-item img { width: 64px; height: 64px; object-fit: cover; }
.cd-item .n { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; line-height: 1.3; }
.cd-item .pr { color: #8a8378; font-size: 0.8rem; margin-top: 3px; }
.cd-item .cd-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cd-item .cd-qty button {
  width: 24px; height: 24px; border: 1px solid #b9b2a5; background: var(--white);
  cursor: pointer; font-size: 0.85rem; line-height: 1; color: var(--charcoal);
}
.cd-item .cd-qty span { font-size: 0.88rem; min-width: 16px; text-align: center; }
.cd-item .cd-qty input {
  width: 52px; font-size: 0.88rem; text-align: center; padding: 5px 2px;
  border: 1px solid #d8d1c3; background: var(--white); font-family: inherit;
  -moz-appearance: textfield; appearance: textfield;
}
.cd-item .cd-qty input::-webkit-outer-spin-button, .cd-item .cd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cd-item .cd-rm { background: none; border: none; color: #8a8378; font-size: 0.72rem; text-decoration: underline; cursor: pointer; padding: 0; margin-top: 6px; }
.cd-item .line { font-weight: 600; font-size: 0.9rem; }
.cart-drawer .cd-empty { padding: 40px 0; color: #8a8378; text-align: center; }
.cart-drawer .cd-foot { padding: 20px 26px 26px; border-top: 1px solid var(--sand); }
.cart-drawer .cd-sub { display: flex; justify-content: space-between; font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.cart-drawer .cd-note { color: #8a8378; font-size: 0.78rem; margin-bottom: 16px; }
.cart-drawer .cd-foot .btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; }

/* ===== Cart & Checkout ===== */
.cart-link { position: relative; display: flex; align-items: center; font-size: 1.25rem; }
.cart-link #cart-count {
  position: absolute; top: -7px; right: -11px; background: var(--brass);
  color: var(--white); font-size: 0.62rem; font-weight: 700; font-family: var(--font-body);
  width: 17px; height: 17px; border-radius: 50%; display: none; align-items: center; justify-content: center;
}
.qty-row { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--sand); border-radius: 999px; width: max-content; background: var(--white); }
.qty-row button { border: none; background: none; width: 40px; height: 42px; font-size: 1.05rem; cursor: pointer; color: var(--charcoal); }
.qty-row input { width: 44px; border: none; text-align: center; font-family: inherit; font-size: 0.95rem; outline: none; }
.cart-page { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.cart-line { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--sand); }
.cart-line img { width: 90px; height: 90px; object-fit: cover; }
.cart-line .name { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; }
.cart-line .rm { font-size: 0.78rem; color: #8a8378; cursor: pointer; background: none; border: none; text-decoration: underline; }
.cart-line .line-price { font-weight: 600; min-width: 80px; text-align: right; }
.cart-summary { margin-top: 28px; text-align: right; }
.cart-summary .subtotal { font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.cart-summary .note { color: #8a8378; font-size: 0.85rem; margin-bottom: 20px; }
.checkout-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; max-width: 1080px; margin: 0 auto; padding: 48px 24px 80px; align-items: start; }
.checkout-form h2 { margin-bottom: 6px; }
.checkout-form .sub { color: #8a8378; font-size: 0.9rem; margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; color: #6b6459; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--sand); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; background: var(--white); outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--brass); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-box { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 26px; position: sticky; top: 100px; }
.order-box h3 { font-size: 1.3rem; margin-bottom: 16px; }
.order-line { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; padding: 7px 0; border-bottom: 1px solid var(--sand); }
.order-line span:first-child { color: #5c564d; }
.order-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; padding-top: 14px; }
[hidden] { display: none !important; }
.order-box .note { color: #8a8378; font-size: 0.8rem; margin-top: 12px; }
.success-box { max-width: 720px; margin: 90px auto 110px; text-align: center; padding: 0 24px; }
.sx-ring {
  width: 86px; height: 86px; border-radius: 50%; margin: 0 auto;
  border: 1px solid var(--brass-dark); color: var(--brass-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem;
}
.success-box h2 { font-style: italic; font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem); margin: 10px 0 16px; }
.sx-sub { color: #5c564d; line-height: 1.7; max-width: 480px; margin: 0 auto; }
.sx-ref { margin-top: 24px; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a8378; }
.sx-ref strong { color: var(--charcoal); font-weight: 600; }
.sx-steps { display: flex; gap: 18px; justify-content: center; margin: 46px 0 42px; text-align: left; }
.sx-steps > div {
  flex: 1; max-width: 210px; background: var(--white); border-radius: 12px;
  padding: 24px 22px; box-shadow: 0 10px 34px rgba(31, 29, 26, 0.07);
  font-size: 0.9rem; color: #5c564d; line-height: 1.55;
}
.sx-steps span {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  font-family: var(--font-display); color: var(--ink); background: var(--ivory);
}
.sx-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .sx-steps { flex-direction: column; align-items: center; }
  .sx-steps > div { max-width: 100%; width: 100%; }
}
@media (max-width: 860px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .cart-line .line-price { grid-column: 2; text-align: left; }
}

/* ===== v2 — Nuage-inspired landing ===== */
.site-header.v2 { border-bottom: none; background: var(--ivory); }
.header-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 84px; gap: 16px;
}
.nav-left { justify-self: start; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 16px; }
.logo-img img { height: 46px; width: auto; }
.btn.boxed { border-radius: 4px; padding: 12px 24px; }
.btn.boxed.light { background: var(--ivory); color: var(--charcoal); }
.btn.boxed.light:hover { background: var(--white); }
.nav .btn { color: var(--white); }

.hero-full { position: relative; height: 86vh; min-height: 520px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20,18,15,0.18), rgba(20,18,15,0.38)); }
.hero-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.hero-logo { width: clamp(180px, 24vw, 300px); filter: invert(1) brightness(2); opacity: 0.96; }
.hero-bottom { position: absolute; left: 0; right: 0; bottom: 40px; text-align: center; }
.hero-title {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--white); font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.cat-strip {
  display: flex; justify-content: center; gap: clamp(18px, 3.5vw, 44px); flex-wrap: wrap;
  padding: 22px 16px; background: var(--ivory); border-bottom: 1px solid var(--sand);
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 600;
}
.cat-strip a:hover { color: var(--brass-dark); }

.italic-head { font-style: italic; font-weight: 500; }
.link-more { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; }
.link-more:hover { color: var(--brass-dark); }

.carousel-arrows { display: flex; gap: 10px; }
.arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--charcoal);
  background: transparent; cursor: pointer; font-size: 1.1rem; color: var(--charcoal);
  transition: all 0.2s ease;
}
.arrow:hover { background: var(--charcoal); color: var(--white); }
.carousel {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 8px;
}
.carousel::-webkit-scrollbar { display: none; }
.car-card { flex: 0 0 clamp(240px, 26vw, 320px); scroll-snap-align: start; }
.car-img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand); }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.car-card:hover .car-img img { transform: scale(1.04); }
.car-label {
  display: block; margin-top: 14px; font-family: var(--font-display); font-style: italic;
  font-size: 1.35rem; color: var(--charcoal);
}
.progress { height: 2px; background: var(--sand); margin-top: 26px; }
.progress span { display: block; height: 100%; width: 20%; background: var(--charcoal); transition: width 0.2s ease; }

.band { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; margin: 30px 0; }
.band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-overlay { position: absolute; inset: 0; background: rgba(20, 18, 15, 0.42); }
.band-content { position: relative; padding: 80px 24px; max-width: 640px; }
.band-content h2 { color: var(--white); font-style: italic; font-weight: 500; margin-bottom: 12px; }
.band-content p { color: #eae4d9; margin-bottom: 28px; font-size: 1.05rem; }

.editorial { background: var(--white); }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.editorial-grid h2 { font-style: italic; font-weight: 500; }
.editorial-grid p { color: #5c564d; margin-bottom: 18px; }
.editorial-grid .btn { margin-top: 8px; }

/* Flatter, editorial product cards */
.prod-card { box-shadow: none; background: transparent; border-radius: 0; }
.prod-card:hover { transform: none; }
.prod-card .img-wrap { border-radius: 0; }
.prod-card img { transition: transform 0.5s ease; }
.prod-card:hover img { transform: scale(1.04); }
.prod-card .info { padding: 14px 2px 4px; }
.prod-card .name { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; font-weight: 500; }

@media (max-width: 860px) {
  .header-grid { grid-template-columns: auto 1fr; height: auto; padding: 12px 0; }
  .nav-left { display: none; }
  .logo-img { justify-self: start; }
  .nav-right { justify-self: end; }
  .editorial-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-full { height: 62vh; }
}

@media (max-width: 860px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-list { position: static; max-height: none; display: flex; flex-wrap: wrap; gap: 6px; }
  .filter-list h3 { width: 100%; }
  .detail { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav { gap: 16px; }
  .nav .hide-mobile { display: none; }
  .nav-search input, .nav-search input:focus { width: 120px; }
}

/* ============================================================
   MOBILE (phone) — menu, touch behavior, phone layout
   ============================================================ */

/* Never allow sideways scroll/zoom-out on phones (full-bleed grids use 100vw) */
html, body { overflow-x: clip; max-width: 100%; }

/* Burger + full-screen frosted menu */
.mm-burger { display: none; }
.mmenu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 20px 26px 44px; overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.mmenu.open { opacity: 1; visibility: visible; transform: none; }
body.mm-lock { overflow: hidden; }
.mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mm-eyebrow {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-dark); font-weight: 600;
}
.mm-close {
  background: none; border: 0; font-size: 2.1rem; line-height: 1;
  color: var(--charcoal); cursor: pointer; padding: 2px 8px;
}
.mm-search input { font-size: 1.3rem; max-width: none; }
.mmenu .mega-results { max-height: 46vh; }
.mm-links { display: flex; flex-direction: column; margin-top: 24px; }
.mm-links a {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal);
  padding: 13px 0; border-bottom: 1px solid rgba(31, 30, 28, 0.08);
}
.mm-links a:first-child { font-style: italic; color: var(--brass-dark); }
.mmenu.open .mm-links a { animation: mmIn 0.4s both; animation-delay: calc(var(--i, 0) * 40ms); }
@keyframes mmIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.mm-foot { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.mm-foot a {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: underline; text-underline-offset: 5px;
}

/* Touch devices: tiles stay clean; first tap shows the hover overlay, second tap opens */
.prod-card.touch-hover .tile-name,
.collage a.touch-hover .tile-name,
.catgrid-ig a.touch-hover .tile-name { opacity: 1; }
@media (hover: none) {
  .mega-hit .mh-add { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .mega-hit .mh-price { display: none; }
}

/* Phone layout */
@media (max-width: 767px) {
  .mm-burger {
    display: flex; flex-direction: column; gap: 6px;
    background: none; border: 0; padding: 10px 8px; cursor: pointer;
  }
  .mm-burger span { display: block; width: 22px; height: 1.6px; background: var(--charcoal); }

  /* Header: burger · logo · member/cart */
  .site-header .header-inner { height: 60px; }
  .site-header .nav > a[href*="catalog"] { display: none; }
  .container.shop-single { padding-left: 18px; padding-right: 18px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .site-header .hdr-search-btn { display: none; }
  .site-header .nav { gap: 18px; }
  .site-header .logo-img img { height: 32px !important; }

  /* Homepage strip: burger left, logo center, member + cart right */
  .cat-strip { display: flex; justify-content: center; min-height: 58px; }
  .cat-strip > a:not(.strip-cart):not(.strip-member):not(.strip-search):not(.strip-logo) { display: none; }
  .cat-strip .mm-burger { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }
  .cat-strip .strip-logo { position: static; transform: none; opacity: 1; pointer-events: auto; }
  .cat-strip .strip-logo img { height: 30px; }
  .cat-strip .strip-member { display: block; right: 66px; }
  .cat-strip .strip-cart { right: 20px; }
  .hero-full.fullscreen { height: calc(100svh - 58px); min-height: 420px; }

  /* Grids */
  .prod-grid, .prod-grid.big { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .collage, .catgrid-ig, .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .collage-head h2 { font-size: 1.05rem; }
  .shop-single { padding: 30px 0 60px; }

  /* Popups & drawer */
  .hdr-panel { left: 12px; right: 12px; width: auto; top: 64px; padding: 22px 22px; }
  .cart-card { left: 12px !important; right: 12px !important; width: auto !important; }
  .cart-drawer { width: 100vw; }
  .mega-hit .qi-name, .mega-hit .mh-name { font-size: 0.92rem; }

  /* Checkout wizard */
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .ck-steps { gap: 10px; margin-top: 22px; }
  .ck-nav { flex-wrap: wrap; }
  .ck-nav .btn { flex: 1 1 auto; text-align: center; }
  .order-box { position: static; margin-top: 8px; }
  .checkout-layout { gap: 30px; }

  /* Account & quotes */
  .account-page { padding: 36px 0 70px; }
  .qc-head { flex-wrap: wrap; gap: 8px 18px; }
  .qc-right { margin-left: auto; }
  .quote-card { padding: 20px 20px; }
  .qc-actions .btn { flex: 1 1 auto; text-align: center; }
  .auth-photo img { min-height: 0; }

  /* Product page */
  .pd-quote-row { flex-wrap: wrap; }
  .pd-quote-row select { min-width: 0; flex: 1 1 200px; }
  .pd-quote-row .btn { flex: 1 1 auto; text-align: center; }
  .detail .img-wrap img { width: 100%; }

  /* Misc */
  .success-box { margin: 56px auto 76px; }
  .cta-band { padding: 44px 22px; }
  .footer-modern { text-align: center; }
}
