/* ===== Yamin — Handmade Leather Watch Straps ===== */

:root {
  --cream: #f5efe6;
  --cream-deep: #ebe2d3;
  --paper: #fbf7f0;
  --leather: #8b5a3c;
  --leather-dark: #5c3a26;
  --espresso: #2a1f17;
  --gold: #b8895a;
  --gold-soft: #c9a06b;
  --thread: #d9c4a3;
  --ink: #1f1813;
  --muted: #7a6a5a;
  --line: #d6c8b3;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --shadow-soft: 0 10px 30px rgba(60, 40, 25, 0.08);
  --shadow-card: 0 20px 50px rgba(60, 40, 25, 0.12);
}

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184, 137, 90, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 90, 60, 0.05) 0%, transparent 50%);
  min-height: 100vh;
}

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

a { color: var(--leather-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--espresso);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5em; }
h3 { font-size: 1.5rem; margin-bottom: 0.4em; }

p { margin-bottom: 1em; color: #3b2d22; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2em;
  display: inline-block;
}

.lead {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 2em;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 90px 0; }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto;
  max-width: 220px;
}
.divider .line { flex: 1; height: 1px; background: var(--line); }
.divider .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--espresso);
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  /* Fallback circle if logo.png is missing */
  border: 1.5px solid var(--leather-dark);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--leather-dark);
  font-style: italic;
}
.brand-mark.has-logo {
  border: none;
  border-radius: 0;
  width: 64px;
  height: 64px;
  color: transparent;
  font-size: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  /* multiply blends the cream PNG background into the cream page background */
  mix-blend-mode: multiply;
}
/* Footer is dark — invert the logo so it shows correctly */
.footer-brand .brand-mark img {
  mix-blend-mode: screen;
  filter: invert(1);
}
/* When the logo is the brand mark, shrink the wordmark-tagline column */
.brand-mark.has-logo + span {
  font-size: 0.85rem;
  line-height: 1.15;
  color: var(--muted);
}
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--leather-dark); }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--espresso);
  transition: transform .3s ease, opacity .3s ease;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover {
  background: var(--leather-dark);
  border-color: var(--leather-dark);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  background: transparent;
  color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--cream);
}

/* ===== Hero ===== */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 80px 28px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.hero-text { max-width: 560px; }
.hero h1 {
  font-weight: 400;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--leather-dark);
}
.hero .lead {
  margin-left: 0;
  text-align: left;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(135deg, #efe3cf 0%, #d9c5a4 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(60, 40, 25, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-visual svg,
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  bottom: 20px; right: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--leather-dark);
  opacity: 0.7;
  z-index: 2;
}

/* ===== Featured / Section variants ===== */
.featured { background: var(--paper); }
.dark-section {
  background: var(--espresso);
  color: var(--cream);
}
.dark-section h2 { color: var(--cream); }
.dark-section p { color: #d4c5b1; }
.dark-section .eyebrow { color: var(--gold-soft); }

/* ===== Product Grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 36px;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.product-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f0e4cf 0%, #ddc8a8 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-image svg { width: 80%; height: 80%; }
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cream);
  color: var(--leather-dark);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.product-body { padding: 24px 26px 28px; }
.product-body h3 {
  margin-bottom: 6px;
  font-weight: 500;
}
.product-meta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.product-desc {
  font-size: 0.95rem;
  color: #4a3a2d;
  margin-bottom: 18px;
  min-height: 3.4em;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--leather-dark);
  font-weight: 500;
}
.product-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ===== Process steps ===== */
.process-list {
  display: grid;
  gap: 80px;
  margin-top: 40px;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.process-step:nth-child(even) .step-visual { order: 3; }
.process-step:nth-child(even) .step-text { order: 2; }

.step-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step-visual {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cream-deep) 0%, #d9c5a4 100%);
  border-radius: 3px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.step-visual svg { width: 60%; }
.step-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.step-text h3 {
  margin-bottom: 14px;
}
.step-text p { color: #3b2d22; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #d9c5a4 0%, #b89671 100%);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-portrait svg { width: 100%; height: 100%; }
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--leather-dark);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0;
  line-height: 1.5;
}
.signature {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--leather-dark);
  margin-top: 24px;
}

/* ===== Form ===== */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-info {
  position: sticky;
  top: 100px;
}
.form-info ul {
  list-style: none;
  margin-top: 24px;
}
.form-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}
.form-info li span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}
.form-info li span:last-child { color: var(--ink); font-weight: 500; }

form {
  background: var(--paper);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.field {
  margin-bottom: 22px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--leather-dark);
  background: var(--paper);
}
textarea { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  background: #e9dfc8;
  border: 1px solid var(--gold);
  padding: 18px 22px;
  border-radius: 2px;
  margin-bottom: 22px;
  color: var(--leather-dark);
  font-style: italic;
}
.form-success.show { display: block; }

/* ===== Materials swatches ===== */
.materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.material {
  text-align: center;
}
.material-swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 14px;
  width: 110px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.15), var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.1);
}
.material h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.material p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--espresso);
  color: #c9b89e;
  padding: 70px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .brand {
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-brand .brand-mark {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.footer-brand p { color: #a89a83; font-size: 0.95rem; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: #c9b89e; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid #4a3a2d;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8a7c69;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

/* ===== Page header banner (interior pages) ===== */
.page-banner {
  padding: 100px 28px 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 14px;
}
.page-banner h1 em { font-style: italic; color: var(--leather-dark); }
.page-banner p {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  font-style: italic;
}

/* ===== Filters (shop page) ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--leather-dark); color: var(--leather-dark); }
.filter-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 28px 60px;
    gap: 40px;
  }
  .hero-visual { order: -1; max-height: 380px; }
  .about-grid,
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-info { position: static; }
  .process-step {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .process-step:nth-child(even) .step-visual,
  .process-step:nth-child(even) .step-text {
    order: initial;
  }
  .step-visual { max-width: 320px; margin: 0 auto; }
  .step-num { text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { max-height: 400px; padding: 14px 0; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 0; }
  form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}

.brand-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ===================================================== */
/* ===== Bespoke configurator ===== */
/* ===================================================== */
.config-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.config-main { min-width: 0; }

/* Step block */
.config-step {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.config-step:last-child { border-bottom: none; }
.config-step-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 30px;
}
.config-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}
.config-step-head h2 {
  font-size: 1.7rem;
  margin-bottom: 4px;
}
.config-step-head p {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Swatch grids */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}
.swatch-grid-md {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.swatch-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}

/* Individual swatch */
.swatch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 12px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.swatch:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.swatch input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.swatch:has(input:checked) {
  border-color: var(--leather-dark);
  background: var(--cream);
  box-shadow: 0 0 0 2px var(--leather-dark) inset, var(--shadow-soft);
}
.swatch:has(input:checked) .swatch-preview {
  box-shadow: 0 0 0 2px var(--leather-dark), inset 0 0 25px rgba(0,0,0,0.18);
}

.swatch-preview {
  width: 100%;
  aspect-ratio: 1;
  max-width: 110px;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.15), 0 2px 6px rgba(60,40,25,0.1);
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow .25s ease;
}
.swatch-thread .swatch-preview {
  max-width: 70px;
  aspect-ratio: 1;
}
.swatch-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 2px;
}
.swatch-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.swatch-option {
  align-items: flex-start;
  text-align: left;
  padding: 18px 20px;
}
.swatch-option .swatch-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* Summary panel */
.config-summary {
  position: sticky;
  top: 100px;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
}
.config-summary h3 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 6px;
}
.config-summary .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
.config-summary .divider {
  margin-bottom: 22px;
}
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.summary-list > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  padding-bottom: 12px;
  border-bottom: 1px dotted var(--line);
}
.summary-list > div:last-child { border-bottom: none; }
.summary-list dt {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}
.summary-list dd {
  text-align: right;
  font-family: var(--font-body);
  color: var(--espresso);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.3;
}
.summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.summary-price-row span:first-child {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.summary-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--leather-dark);
  font-weight: 500;
}
.summary-note {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 22px;
  line-height: 1.5;
}
.summary-meta {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin: 0;
}
.summary-meta li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
}
.summary-meta li span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}
.summary-meta li span:last-child {
  color: var(--espresso);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 980px) {
  .config-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .config-summary {
    position: static;
    order: -1;
  }
}
@media (max-width: 540px) {
  .config-step-head { flex-direction: column; gap: 8px; }
  .config-num { font-size: 2rem; min-width: 0; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
  .swatch-grid-sm { grid-template-columns: repeat(3, 1fr); }
}
