/* Le Soap — design-house Italian boutique soap brand
   Palette: olive #5e6b48, bone #f3ede0, charcoal #1c1c1c, clay #b76a4a
   Type: Fraunces (serif display, variable) + DM Sans (geometric sans body)
*/

:root {
  --olive: #5e6b48;
  --olive-deep: #3f4730;
  --bone: #f3ede0;
  --bone-warm: #ece4d2;
  --charcoal: #1c1c1c;
  --char-soft: #2a2a2a;
  --clay: #b76a4a;
  --clay-deep: #944f33;
  --muted: #7a7367;
  --line: #d8d1bf;
  --max: 1280px;
}

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--charcoal);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 350; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.3rem; font-weight: 500; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--clay);
  font-weight: 400;
}

p { margin: 0 0 1em; }

a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line);
  transition: text-decoration-color .2s, color .2s;
}
a:hover {
  color: var(--clay);
  text-decoration-color: var(--clay);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 700px) { .container { padding: 0 1.25rem; } }

/* ─────── HEADER ─────── */
.site-header {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  color: var(--charcoal);
  border: 0;
  flex-shrink: 0;
  line-height: 0;
  cursor: pointer;
}
.brand:hover { color: var(--clay); text-decoration: none !important; }
.brand-logo {
  display: block;
  width: 210px;
  height: 58px;
  flex-shrink: 0;
}
.brand-logo text { fill: currentColor; }
.footer-logo {
  display: block;
  width: 210px;
  height: 58px;
}
@media (max-width: 640px) { .brand-logo, .footer-logo { width: 170px; height: 47px; } }
.nav { display: flex; gap: 1.6rem; font-size: 0.92rem; align-items: center; }
.nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--clay); border-bottom-color: var(--clay); }
.cart-link {
  position: relative;
  padding: 0.45em 1.1em;
  background: var(--charcoal);
  color: var(--bone);
  border-radius: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-link:hover {
  background: var(--clay);
  color: var(--bone);
  border-bottom-color: transparent;
}
.cart-link .badge {
  display: inline-block;
  margin-left: 0.5em;
  font-weight: 600;
}

/* ─────── HERO (full-bleed image + overlaid text bottom-left) ─────── */
.hero {
  position: relative;
  width: 100%;
  height: clamp(540px, 80vh, 760px);
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28,28,28,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bone);
  padding: 0 2rem 4.5rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-content .hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--bone-warm);
}
.hero-content h1 {
  color: var(--bone);
  max-width: 14ch;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 350;
  line-height: 1;
  margin: 0 0 1.2rem;
}
.hero-content h1 em { color: #e4b594; font-style: italic; }
.hero-content .hero-lead {
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bone-warm);
  margin-bottom: 2rem;
}
.hero-content .hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }

/* ─────── BUTTONS ─────── */
.btn {
  display: inline-block;
  padding: 0.95em 1.8em;
  background: var(--charcoal);
  color: var(--bone);
  border: 0;
  font: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--clay); color: var(--bone); }
.btn.btn-light { background: var(--bone); color: var(--charcoal); }
.btn.btn-light:hover { background: var(--clay); color: var(--bone); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 0.95em 1.8em;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--bone); }
.btn-mini {
  padding: 0.5em 1em;
  background: var(--charcoal);
  color: var(--bone);
  border: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ─────── SECTIONS ─────── */
.sec-narrative { padding: 6rem 0; background: var(--bone); }
.sec-narrative.warm { background: var(--bone-warm); }
.sec-narrative.deep { background: var(--olive-deep); color: var(--bone); }
.sec-narrative.deep h2 { color: var(--bone); }
.sec-narrative.deep .section-eyebrow { color: #c9b97f; }
.sec-narrative.deep a { color: var(--bone); text-decoration-color: var(--bone-warm); }
.sec-narrative.deep a:hover { color: #e4b594; text-decoration-color: #e4b594; }

.sec-transactional { padding: 4.5rem 0; background: var(--bone); }
.sec-transactional.warm { background: var(--bone-warm); }

/* Edizione introduction - editorial storytelling intro to the current edition */
.edizione {
  background: var(--olive);
  color: var(--bone);
  padding: 5rem 0;
}
.edizione-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}
.edizione .section-eyebrow {
  color: #d8c79a;
  margin-bottom: 1rem;
}
.edizione h2 {
  font-family: 'Fraunces', serif;
  font-weight: 350;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--bone);
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}
.edizione h2 em {
  font-style: italic;
  color: #e4b594;
  font-weight: 400;
}
.edizione p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-warm);
  margin: 0 0 1rem;
}
.edizione p.highlight {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #e4b594;
  border-left: 2px solid #c9b97f;
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 1.45;
}
.edizione .lot-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8c79a;
  margin: 1.5rem 0 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(243, 237, 224, 0.18);
}
.edizione .btn {
  background: var(--bone);
  color: var(--charcoal);
}
.edizione .btn:hover {
  background: var(--clay);
  color: var(--bone);
}
@media (max-width: 880px) {
  .edizione-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─────── INGREDIENTS PHILOSOPHY (large statement section) ─────── */
.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}
.philosophy h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 350;
  max-width: 12ch;
  line-height: 1.05;
}
.philosophy .phil-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--char-soft);
  max-width: 36em;
}
.philosophy .phil-bullets {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.philosophy .phil-bullets li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.philosophy .phil-bullets li:last-child { border-bottom: 1px solid var(--line); }
.philosophy .phil-bullets strong {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--clay);
  margin-right: 0.5em;
}
@media (max-width: 880px) {
  .philosophy { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─────── PRODUCTS (systematic premium grid: 4→3→2→1) ─────── */
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.products-head h2 { margin: 0; font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.products-head p { max-width: 32ch; font-size: 0.92rem; color: var(--muted); margin: 0; }

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem 2rem;
}
@media (max-width: 1180px) {
  .products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.8rem 1.8rem; }
}
@media (max-width: 880px) {
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
}
@media (max-width: 520px) {
  .products { grid-template-columns: 1fr; gap: 2.5rem; }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-card a.product-image-link {
  display: block;
  text-decoration: none;
  border: 0;
  overflow: hidden;
  background: var(--bone-warm);
}
.product-card img.product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .3s;
}
.product-card a.product-image-link:hover img.product-image { transform: scale(1.025); }

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-grow: 1;
}
.product-body h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.product-body h3 a {
  text-decoration: none;
  color: var(--charcoal);
  border: 0;
}
.product-body h3 a:hover { color: var(--clay); }
.product-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.2rem;
}
.product-price {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.product-price-tax { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.product-batch {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.product-actions .btn, .product-actions .btn-outline {
  font-size: 0.72rem;
  padding: 0.65em 1em;
  flex: 1 1 auto;
  text-align: center;
  letter-spacing: 0.1em;
}
.product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--clay);
  color: var(--bone);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  font-weight: 500;
  z-index: 1;
  line-height: 1.2;
}

/* ─────── BOTTEGA / LABORATORIO (left-image right-text) ─────── */
.bottega {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.bottega .bot-image img {
  width: 100%;
  height: auto;
  display: block;
}
.bottega h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.bottega p { font-size: 1rem; line-height: 1.75; max-width: 36em; }
@media (max-width: 880px) {
  .bottega { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─────── MATERIALS PALETTE (5-col material strip) ─────── */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 980px) { .materials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .materials-grid { grid-template-columns: 1fr; } }
.material-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.material-card .mat-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
}
.material-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}
.material-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ─────── FOUNDER QUOTE (large pulled quote) ─────── */
.founder-quote {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.founder-quote .fq-image img {
  width: 100%;
  height: auto;
  display: block;
}
.founder-quote blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  font-weight: 350;
  color: var(--bone);
  font-style: italic;
}
.founder-quote blockquote::before { content: "\201C"; color: #c9b97f; }
.founder-quote blockquote::after { content: "\201D"; color: #c9b97f; }
.founder-quote .fq-attribution {
  margin-top: 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9b97f;
}
@media (max-width: 880px) { .founder-quote { grid-template-columns: 1fr; gap: 2rem; } }

/* ─────── PROCESS (table-of-figures style) ─────── */
.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 4rem;
  align-items: start;
}
.process h2 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 10ch; }
.process .proc-prose p { font-size: 1rem; line-height: 1.75; color: var(--char-soft); max-width: 38em; }
.proc-figures {
  margin-top: 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.proc-figures li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}
.proc-figures li:last-child { border-bottom: 1px solid var(--line); }
.proc-figures .fig-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--clay);
  font-weight: 400;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr; gap: 2rem; } }

/* ─────── REVIEWS (3-col, magazine style, no boxes) ─────── */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 3rem;
}
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviews { grid-template-columns: 1fr; } }
.review .stars {
  color: var(--clay);
  letter-spacing: 0.2em;
  font-size: 0.86rem;
  margin-bottom: 0.7rem;
}
.review p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 0.9rem;
  color: var(--charcoal);
}
.review .author {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ─────── WHOLESALE CTA (deep olive background) ─────── */
.wholesale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wholesale h2 { color: var(--bone); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.wholesale p { color: var(--bone-warm); font-size: 1rem; line-height: 1.7; max-width: 38em; }
.wholesale ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: var(--bone-warm);
}
.wholesale ul li {
  padding: 0.5rem 0;
  border-top: 1px solid rgba(243, 237, 224, 0.18);
}
.wholesale ul li:last-child { border-bottom: 1px solid rgba(243, 237, 224, 0.18); }
.wholesale ul li strong { color: var(--bone); font-family: 'Fraunces', serif; font-weight: 400; margin-right: 0.6em; }
@media (max-width: 880px) { .wholesale { grid-template-columns: 1fr; gap: 2rem; } }

/* ─────── INFO TRIO (shipping/payment/withdrawal) ─────── */
.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 780px) { .info { grid-template-columns: 1fr; } }
.info-card {
  padding: 0;
  background: transparent;
  border: 0;
}
.info-card .info-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--clay);
  margin-bottom: 0.6rem;
  display: block;
}
.info-card h3 { font-size: 1.15rem; font-weight: 500; margin: 0 0 0.6rem; }
.info-card p { font-size: 0.92rem; color: var(--char-soft); line-height: 1.7; }

/* ─────── CONTACT SECTION (Map + form, 2-col) ─────── */
.contact-section {
  padding: 5rem 0;
  background: var(--bone-warm);
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 880px) { .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 1.2rem; }
.contact-nap { font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.4rem; color: var(--charcoal); }
.contact-intro { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.4rem; }
.map-frame { overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { display: block; }

.contact-form .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .fields .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  background: var(--bone);
  font: inherit;
  font-size: 0.96rem;
  color: var(--charcoal);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 1px solid var(--clay); }
.consent { display: flex; align-items: flex-start; gap: 0.8rem; margin: 1.4rem 0; font-size: 0.86rem; color: var(--muted); }
.consent input { margin-top: 0.3em; }

.form-error {
  background: #f1d6cf;
  border-left: 3px solid var(--clay-deep);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
  color: #6e2a18;
}

/* ─────── FOOTER ─────── */
.site-footer {
  background: var(--charcoal);
  color: var(--bone);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand-mark {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--bone);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9b97f;
  font-weight: 500;
  margin: 0 0 1rem;
}
.footer-col p { font-size: 0.9rem; color: var(--bone-warm); line-height: 1.65; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { font-size: 0.92rem; padding: 0.25rem 0; color: var(--bone-warm); }
.footer-col a { color: var(--bone); text-decoration: none; border-bottom: 1px solid transparent; }
.footer-col a:hover { color: #e4b594; }
.footer-bottom {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid #3a3a3a;
  font-size: 0.84rem;
  color: #9a9282;
  text-align: center;
}

/* ─────── COOKIE BANNER ─────── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--charcoal);
  color: var(--bone);
  padding: 1rem 1.2rem;
  z-index: 50;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner a { color: var(--bone); text-decoration-color: #c9b97f; }
.cookie-banner.hidden { display: none; }

/* ─────── PRODUCT DETAIL PAGE ─────── */
.product-detail {
  padding: 4rem 0;
  background: var(--bone);
}
.product-detail-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .product-detail-inner { grid-template-columns: 1fr; gap: 2rem; } }
.pd-image img { width: 100%; height: auto; display: block; background: var(--bone-warm); }
.pd-info h1 { margin: 0 0 0.6rem; font-size: clamp(2rem, 4vw, 2.8rem); }
.pd-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
}
.pd-price-tax { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.pd-desc { font-size: 1.02rem; line-height: 1.75; color: var(--char-soft); }
.pd-meta {
  list-style: none;
  padding: 1.2rem 0;
  margin: 1.8rem 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-meta li { padding: 0.3rem 0; }
.pd-meta strong { color: var(--charcoal); margin-right: 0.5em; font-weight: 500; }
.pd-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.pd-form .pd-qty label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.pd-form input[type="number"] {
  width: 100px;
  padding: 0.8em 0.9em;
  border: 1px solid var(--line);
  background: var(--bone);
  font: inherit;
  font-size: 1rem;
}
.pd-inci {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--bone-warm);
  border-left: 2px solid var(--olive);
}
.pd-inci .inci-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: block;
}
.pd-inci .inci-body { font-size: 0.84rem; line-height: 1.6; color: var(--char-soft); }
.pd-howto { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.pd-howto h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; }
.pd-howto p { font-size: 0.95rem; color: var(--char-soft); line-height: 1.7; }
.breadcrumb { font-size: 0.84rem; color: var(--muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }

/* ─────── CART ─────── */
.cart-wrap { padding: 4rem 0; background: var(--bone); }
.cart-wrap h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 1.5rem; }
.cart-empty { padding: 3rem 0; text-align: center; color: var(--muted); }
.cart-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.cart-table th, .cart-table td {
  padding: 1rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.cart-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-top: 1px solid var(--line);
}
.cart-img img { width: 80px; height: 80px; object-fit: cover; }
.cart-table input[type="number"] {
  width: 72px;
  padding: 0.45em 0.55em;
  border: 1px solid var(--line);
  background: var(--bone);
  font: inherit;
}
.cart-line { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--charcoal); }
.btn-text {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.btn-text:hover { color: var(--clay); }
.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.checkout-form { max-width: 720px; margin-top: 2rem; }
.checkout-form .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-form .fields .full { grid-column: 1 / -1; }
.checkout-form label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
}
.checkout-form input, .checkout-form select, .checkout-form textarea {
  width: 100%;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  background: var(--bone);
  font: inherit;
  color: var(--charcoal);
}
.checkout-form textarea { min-height: 90px; }

@media (max-width: 760px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
  .cart-table tr { border-bottom: 1px solid var(--line); padding: 0.6rem 0; }
  .cart-table td { padding: 0.3rem 0; border: 0; }
  .checkout-form .fields { grid-template-columns: 1fr; }
}

/* ─────── ORDER (thank you) ─────── */
.thanks-wrap {
  padding: 5rem 0;
  background: var(--bone);
  text-align: center;
}
.thanks-wrap .thanks-inner { max-width: 580px; margin: 0 auto; padding: 0 1.5rem; }
.thanks-wrap h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.thanks-wrap .lead { font-size: 1.05rem; color: var(--char-soft); line-height: 1.7; }
.thanks-wrap .ref {
  display: inline-block;
  margin: 2rem 0;
  padding: 0.5rem 1rem;
  background: var(--bone-warm);
  font-family: 'DM Sans', monospace;
  font-size: 0.86rem;
  color: var(--muted);
}

/* ─────── LEGAL PAGES ─────── */
.legal-wrap {
  max-width: 780px;
  margin: 3rem auto 5rem;
  padding: 0 1.5rem;
}
.legal-wrap h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.legal-wrap h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}
.legal-wrap p, .legal-wrap li { font-size: 0.97rem; line-height: 1.75; color: var(--char-soft); }
.legal-wrap ul { padding-left: 1.4rem; }
.legal-wrap li { margin: 0.3rem 0; }
