/* ============================================================
   Archive Vault — Design System
   Display: Cormorant Garamond (editorial serif, echoes the AV wordmark)
   UI/Body: Inter (quiet, neutral sans — mirrors a Madison-Ave-style nav)
   Palette: warm ivory ground, near-black ink, Archive Vault burgundy,
            aged-brass accent for "hardware" touches
   ============================================================ */

:root {
  --ink: #2a2523;
  --ink-soft: #5c5450;
  --bg: #faf7f3;
  --surface: #ffffff;
  --fog: #f3ede6;
  --line: #e6ddd3;
  --burgundy: #6d1f2e;
  --burgundy-deep: #4a141f;
  --burgundy-soft: #8c3242;
  --brass: #a9835a;
  --brass-light: #cdb28c;
  --success: #3f6b4a;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1280px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--surface); }

.btn--solid {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}
.btn--solid:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); }

.btn--ghost-light {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); }

.btn--block { width: 100%; justify-content: center; }

.section { padding: 96px 0; }
.section--fog { background: var(--fog); }
.section--dark { background: var(--burgundy-deep); color: #fff; }
.section--tight { padding: 64px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-head h2 { font-size: 40px; margin-top: 10px; }
.section-head p { margin: 14px auto 0; }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

/* While the page is actively being scrolled (either direction), fade the
   header to 60% opacity with a frosted-glass blur; it settles back to fully
   opaque shortly after scrolling stops. */
.site-header.is-scrolling {
  background: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(230, 221, 211, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.is-scrolling .topbar {
  background: rgba(74, 20, 31, 0.6);
}

.topbar {
  background: var(--burgundy-deep);
  color: #f2e6e2;
  transition: background 0.25s ease;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.topbar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
}
.topbar-marquee {
  flex: 1;
  text-align: center;
  color: #e8cfd0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
.topbar-links { display: flex; gap: 20px; white-space: nowrap; }
.topbar-links a { opacity: 0.88; }
.topbar-links a:hover { opacity: 1; text-decoration: underline; }

.logo-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.logo-bar-start { display: flex; align-items: center; gap: 18px; }
.logo-bar-actions { display: flex; align-items: center; gap: 18px; justify-content: flex-end; }

.brand {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.brand-mark-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
}
.brand-word {
  font-size: 24px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.brand-word em { font-style: normal; color: var(--burgundy); }
.brand-logo-img { height: 24px; width: auto; display: block; }

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
}
.icon-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; }
.icon-btn .badge-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--burgundy);
  color: #fff;
  font-size: 10px;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.main-nav {
  border-top: 1px solid var(--line);
}
.main-nav ul {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.main-nav a {
  display: inline-block;
  padding: 15px 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.is-active { border-color: var(--burgundy); color: var(--burgundy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 60px 24px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30,15,17,0.34) 0%, rgba(30,15,17,0.52) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero .eyebrow { color: #f0d8d3; }
.hero h1 {
  font-size: 68px;
  color: #fff;
  margin: 18px 0 20px;
  letter-spacing: 0.01em;
}
.hero p { color: rgba(255,255,255,0.86); font-size: 17px; max-width: 460px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Promo strip ---------------- */

.promo-strip {
  background: var(--burgundy);
  color: #fff;
  padding: 34px 0;
  text-align: center;
}
.promo-strip .eyebrow { color: #eec9cc; }
.promo-strip h2 { color: #fff; font-size: 26px; margin: 8px 0 10px; }
.promo-strip p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 16px; }
.promo-strip a.text-link { color: #fff; text-decoration: underline; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------------- Product grid & cards ---------------- */

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.filter-block { margin-bottom: 34px; }
.filter-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
}
.filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.filter-list button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
}
.filter-list button:hover { color: var(--burgundy); }
.filter-list button.is-active { color: var(--burgundy); font-weight: 600; }
.filter-count { color: #b3a99e; font-size: 12px; margin-left: 4px; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.shop-toolbar .result-count { font-size: 13px; color: var(--ink-soft); }

.grid {
  display: grid;
  gap: 30px 26px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card { position: relative; }
.product-card .thumb {
  position: relative;
  overflow: hidden;
  background: var(--fog);
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
}
.product-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .thumb img { transform: scale(1.045); }
.product-card .wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
}
.product-card .wishlist svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; }
.product-card .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
}
.product-card .tag--sold { background: var(--ink-soft); }
.product-card .brand-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
  font-weight: 600;
}
.product-card h3 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.4;
}
.product-card .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.product-card .condition {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.section-cta { text-align: center; margin-top: 52px; }

/* ---------------- Split / mission ---------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-media { position: relative; min-height: 460px; background-size: cover; background-position: center; }
.split-copy {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.split-copy .eyebrow { margin-bottom: 14px; }
.split-copy h2 { font-size: 38px; }
.pull-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--burgundy);
  border-left: 3px solid var(--burgundy);
  padding-left: 22px;
  margin: 26px 0;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------------- Trust strip ---------------- */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.trust-strip .icon-wrap {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border: 1px solid var(--brass-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
}
.trust-strip .icon-wrap svg { width: 22px; height: 22px; }
.trust-strip h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.trust-strip p { font-size: 13px; margin: 0; }

/* ---------------- Newsletter ---------------- */

.newsletter {
  background: var(--fog);
  padding: 64px 0;
  text-align: center;
}
.newsletter h2 { font-size: 30px; }
.newsletter p { max-width: 480px; margin: 0 auto 24px; }
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid var(--ink);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  border: none;
  background: var(--ink);
  color: #fff;
  padding: 0 26px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--burgundy); }

/* ---------------- Footer ---------------- */

.site-footer { background: var(--burgundy-deep); color: #e9dcd8; }
.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 48px;
}
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-word em { color: var(--brass-light); }
.footer-brand .brand-mark-img { border-radius: 2px; }
.footer-brand p { color: #cbb7b3; margin-top: 18px; max-width: 260px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #d8c5c1; font-size: 13.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #b79d97;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #b79d97; }
.footer-bottom a:hover { color: #fff; }

/* ---------------- Breadcrumb ---------------- */

.breadcrumb {
  font-size: 12px;
  color: var(--ink-soft);
  padding: 22px 0;
  letter-spacing: 0.02em;
}
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb span { margin: 0 8px; color: #cabfb4; }

/* ---------------- Product detail ---------------- */

.pdp {
  display: grid;
  grid-template-columns: 88px 1fr 1fr;
  gap: 28px;
  padding-bottom: 90px;
}
.pdp-thumbs { display: flex; flex-direction: column; gap: 12px; }
.pdp-thumbs button {
  border: 1px solid var(--line);
  padding: 0;
  background: var(--fog);
  cursor: pointer;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.pdp-thumbs button.is-active { border-color: var(--burgundy); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main { background: var(--fog); aspect-ratio: 1/1; overflow: hidden; }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .badges { display: flex; gap: 8px; margin-bottom: 16px; }
.pdp-info .pill {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.pdp-info .pill--accent { border-color: var(--burgundy); color: var(--burgundy); }
.pdp-info h1 { font-size: 32px; margin-bottom: 10px; }
.pdp-info .brand-label { color: var(--brass); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; margin-bottom: 8px; display: block; }
.pdp-info .price { font-size: 22px; font-weight: 600; margin-bottom: 22px; }
.pdp-info .price .was { font-size: 15px; color: #b3a99e; text-decoration: line-through; font-weight: 400; margin-left: 10px; }

.guarantee-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 12px 16px;
  margin-bottom: 22px;
}
.guarantee-line svg { width: 18px; height: 18px; color: var(--burgundy); flex-shrink: 0; }

.pdp-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.ask-expert {
  text-align: center;
  border: 1px solid var(--line);
  padding: 13px;
  font-size: 13px;
  color: var(--ink-soft);
}
.ask-expert a { color: var(--burgundy); font-weight: 600; text-decoration: underline; }

.condition-block { margin-bottom: 26px; }
.condition-block .label-row { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; color: var(--ink-soft); }
.condition-track { position: relative; height: 3px; background: var(--line); border-radius: 3px; margin-bottom: 10px; }
.condition-track .fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--burgundy); }
.condition-track .dot { position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--burgundy); transform: translate(-50%, -50%); }
.condition-note { background: var(--fog); padding: 12px 14px; font-size: 13px; color: var(--ink-soft); }

.details-toggle {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.details-toggle:last-of-type { border-bottom: 1px solid var(--line); }

.spec-table { width: 100%; border-collapse: collapse; margin: 10px 0 20px; font-size: 13.5px; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 10px 0; }
.spec-table td:first-child { color: var(--ink-soft); width: 40%; }
.spec-table td:last-child { color: var(--ink); font-weight: 500; }

.related-heading { margin-top: 10px; }

/* ---------------- About page ---------------- */

.about-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(30,15,17,0.45), rgba(30,15,17,0.55)),
              url("../assets/hero/collection-bags.jpg") center / cover no-repeat;
}
.about-hero h1 { color: #fff; font-size: 52px; }
.about-hero p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 10px auto 0; }

.founder-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-block img { border: 1px solid var(--line); }
.founder-signoff { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--burgundy); margin-top: 20px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.value-card { text-align: center; padding: 10px; }
.value-card .num { font-family: var(--font-display); font-size: 44px; color: var(--brass); margin-bottom: 6px; }
.value-card h3 { font-size: 20px; }

/* ---------------- Consign page ---------------- */

.consign-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 48px;
}

.form-section + .form-section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.form-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.form-section-head h3 { font-size: 22px; margin: 0; }
.form-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brass);
  min-width: 30px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { margin-bottom: 4px; }
.field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border-radius: var(--radius);
  width: 100%;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--burgundy); background: #fff; }

.field-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 18px 0 0;
}
.field-hint svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--burgundy); }
.field-hint.center { justify-content: center; }

.dropzone {
  display: block;
  border: 1.5px dashed var(--line);
  background: var(--fog);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dropzone:hover,
.dropzone.is-dragover { border-color: var(--burgundy); background: #fbf0ee; }
.dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.dropzone .dz-icon { width: 32px; height: 32px; color: var(--burgundy); margin: 0 auto 12px; }
.dropzone h4 { font-family: var(--font-body); font-weight: 600; font-size: 14px; margin: 0 0 6px; }
.dropzone p { font-size: 12.5px; margin: 0; }

.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.upload-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--fog);
}
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; }
.upload-thumb button {
  position: absolute;
  top: 5px; right: 5px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(20,10,10,0.68);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.appt-type-toggle { display: flex; gap: 12px; margin-bottom: 22px; }
.appt-type-toggle button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 13px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
}
.appt-type-toggle button svg { width: 16px; height: 16px; }
.appt-type-toggle button.is-active { border-color: var(--burgundy); color: var(--burgundy); background: #fbf0ee; }

.confirm-panel { text-align: center; padding: 30px 10px; }
.confirm-panel .icon-wrap {
  width: 56px; height: 56px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
}
.confirm-panel .icon-wrap svg { width: 26px; height: 26px; }
.confirm-panel h2 { margin: 10px 0 12px; }
.confirm-summary {
  background: var(--fog);
  padding: 20px 24px;
  text-align: left;
  margin: 24px auto 28px;
  max-width: 420px;
  font-size: 13.5px;
}
.confirm-summary div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.confirm-summary div:last-child { border-bottom: none; }
.confirm-summary span:first-child { color: var(--ink-soft); }
.confirm-summary span:last-child { color: var(--ink); font-weight: 500; text-align: right; }

.info-card {
  border: 1px solid var(--line);
  background: var(--fog);
  padding: 26px;
  margin-bottom: 22px;
}
.info-card h4 { font-size: 14px; margin-bottom: 12px; }
.info-card p { font-size: 13.5px; margin: 0; }
.info-card a { color: var(--burgundy); font-weight: 600; }
.info-card--contact { background: var(--burgundy-deep); border-color: var(--burgundy-deep); color: #fff; }
.info-card--contact h4 { color: #fff; }
.info-card--contact p { color: #e2cfcb; }
.info-card--contact a { color: #fff; text-decoration: underline; }

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.check-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  border-left: 1.6px solid var(--brass);
  border-bottom: 1.6px solid var(--brass);
  transform: rotate(-45deg);
}

/* ---------------- Utilities ---------------- */

.center { text-align: center; }
.mt-lg { margin-top: 60px; }

/* ---------------- Responsive ---------------- */

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-copy { padding: 56px 32px; }
  .founder-block { grid-template-columns: 1fr; gap: 32px; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 70px 1fr; }
  .pdp-info { grid-column: 1 / -1; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .value-grid { grid-template-columns: 1fr; }
  .consign-layout { grid-template-columns: 1fr; }
  .form-card { padding: 36px 28px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .topbar-marquee, .topbar-links { display: none; }
  .topbar-inner { justify-content: center; }
  .logo-bar { grid-template-columns: auto 1fr auto; padding: 16px 22px; column-gap: 8px; }
  .logo-bar-start .search-btn { display: none; }
  .brand { gap: 6px; min-width: 0; }
  .brand-mark-img { width: 30px; height: 30px; flex-shrink: 0; }
  .brand-word { font-size: 19px; }
  .brand-logo-img { height: 13px; width: auto; max-width: 34vw; }
  .logo-bar-actions { gap: 12px; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); }
  .site-header.nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 22px 20px; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 42px; }
  .hero { min-height: 520px; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 30px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; overflow-x: auto; }
  .pdp-thumbs button { width: 64px; flex-shrink: 0; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 30px; }
  .value-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 36px; }
  .form-card { padding: 26px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .appt-type-toggle { flex-direction: column; }
}
