/* ==========================================================================
   Rabaldo AG – Stylesheet
   ========================================================================== */

:root {
  --cream: #faf5ee;
  --cream-dark: #f0e4d4;
  --coffee-900: #2b1c14;
  --coffee-800: #3a2618;
  --coffee-700: #4a3021;
  --coffee-500: #7a5b42;
  --coffee-300: #b89b81;
  --copper: #c1662f;
  --copper-dark: #a04f21;
  --copper-light: #f3d9c4;
  --white: #ffffff;
  --success: #4c7a4c;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(43, 28, 20, 0.08);
  --shadow-hover: 0 16px 40px rgba(43, 28, 20, 0.14);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--coffee-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--coffee-900);
}

h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.5vw + 1rem, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--alt {
  background: var(--cream-dark);
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--copper-dark);
  background: var(--copper-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  color: var(--coffee-700);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(193, 102, 47, 0.35);
}

.btn--primary:hover {
  background: var(--copper-dark);
  box-shadow: 0 14px 30px rgba(160, 79, 33, 0.4);
}

.btn--ghost {
  background: transparent;
  border-color: var(--coffee-900);
  color: var(--coffee-900);
}

.btn--ghost:hover {
  background: var(--coffee-900);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--coffee-900);
}

.btn--light:hover {
  background: var(--copper-light);
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 28, 20, 0.08);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--coffee-900);
}

.logo span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.nav__links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  border-bottom-color: var(--copper);
  color: var(--copper-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--coffee-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(193, 102, 47, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(122, 91, 66, 0.18), transparent 50%),
    var(--cream);
  padding: 84px 0 100px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero__content p.lead {
  font-size: 1.15rem;
  color: var(--coffee-700);
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--copper-dark);
}

.hero__stat span {
  font-size: 0.85rem;
  color: var(--coffee-700);
}

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background:
    linear-gradient(155deg, var(--coffee-800), var(--coffee-700) 60%, var(--copper-dark));
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 24px);
}

.hero__art svg {
  width: 55%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(250, 245, 238, 0.95);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.hero__badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.hero__badge span {
  font-size: 0.82rem;
  color: var(--coffee-700);
}

.shop-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.shop-status[hidden] { display: none; }

.shop-status__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
}

.shop-status.is-open .shop-status__dot {
  animation: shop-status-pulse 2s ease-in-out infinite;
}

@keyframes shop-status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 122, 76, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(76, 122, 76, 0); }
}

.shop-status.is-open {
  background: #e7f0e3;
  color: var(--success);
}

.shop-status.is-closed {
  background: var(--cream-dark);
  color: var(--coffee-700);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--cream-dark), var(--cream));
  text-align: center;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--coffee-500);
  margin-bottom: 14px;
}

.breadcrumb a:hover { color: var(--copper-dark); }

.page-hero p.lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--coffee-700);
  font-size: 1.08rem;
}

/* ---------- Card grid / services ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--copper-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--copper-dark);
}

.card p { color: var(--coffee-700); margin-bottom: 0.6em; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--copper-dark);
  margin-top: 12px;
}

.card__link svg { transition: transform 0.15s ease; }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- Stats bar ---------- */

.stats-bar {
  background: var(--coffee-900);
  color: var(--cream);
}

.stats-bar .grid--4 {
  text-align: center;
}

.stats-bar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--copper-light);
}

.stats-bar span {
  font-size: 0.85rem;
  color: var(--coffee-300);
  letter-spacing: 0.03em;
}

/* ---------- Brands strip ---------- */

.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.brands__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  box-shadow: var(--shadow-soft);
}

.brands__item img {
  max-height: 32px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

/* ---------- Steps (process) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

.step p { color: var(--coffee-700); font-size: 0.96rem; margin: 0; }

/* ---------- Two-column content ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img, .split .media-block { width: 100%; }

.media-block {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--coffee-700), var(--copper-dark));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-block svg { width: 40%; height: auto; }

.media-block--photo {
  background: var(--cream-dark);
  padding: 18px;
}

.media-block--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.media-caption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--coffee-500);
  text-align: center;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--coffee-700);
}

.list-check svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--success);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--coffee-900), var(--coffee-700));
  color: var(--cream);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  margin: 0 24px;
  max-width: calc(var(--max-width) - 48px);
  margin-inline: auto;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--coffee-300); max-width: 520px; margin: 0 auto 28px; }
.cta-banner .hero__cta { justify-content: center; margin-top: 0; }

/* ---------- News / cards list ---------- */

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.news-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(155deg, var(--copper-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-dark);
}

.news-card__body { padding: 24px; }

.news-card__date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--copper-dark);
  margin-bottom: 10px;
  display: block;
}

.news-card p { color: var(--coffee-700); font-size: 0.95rem; }

/* ---------- Team ---------- */

.value-card { text-align: center; }
.value-card .card__icon { margin-inline: auto; }

.brand-logo {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.brand-logo img {
  max-height: 100%;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.brand-logo--text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--coffee-800);
}

.brand-category { margin-bottom: 36px; }
.brand-category:last-child { margin-bottom: 0; }

.brand-category__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coffee-500);
  margin: 0 0 16px;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 64px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.brand-chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-chip--text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--coffee-800);
  text-align: center;
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--copper-light);
  color: var(--copper-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h3 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-info-item p { margin: 0; color: var(--coffee-700); font-size: 0.95rem; }

.opening-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.opening-table td {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--coffee-700);
  border-bottom: 1px solid var(--cream-dark);
}

.opening-table td:last-child { text-align: right; font-weight: 600; color: var(--coffee-900); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--cream);
  color: var(--coffee-900);
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: var(--coffee-500);
  margin-top: 10px;
}

.form-success {
  display: none;
  background: #e7f0e3;
  color: var(--success);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-success.is-visible { display: block; }

.form-error {
  display: none;
  background: #f8e3e0;
  color: #a3392b;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-error.is-visible { display: block; }

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 32px;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

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

.site-footer {
  background: var(--coffee-900);
  color: var(--coffee-300);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: var(--cream); }
.footer-brand .logo span { color: var(--copper-light); }
.footer-brand p { color: var(--coffee-300); font-size: 0.92rem; margin-top: 14px; max-width: 280px; }

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--copper-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
}

.footer-bottom a:hover { color: var(--copper-light); }

.legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- Cart icon (header) ---------- */

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--coffee-900);
  transition: background 0.15s ease;
  flex-shrink: 0;
}

.cart-link:hover { background: var(--copper-light); }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.cart-badge[hidden] { display: none; }

/* ---------- Shop / product grid ---------- */

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--coffee-800), var(--copper-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-card__media svg { width: 44%; height: auto; }

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card__brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--copper-dark);
  margin-bottom: 4px;
}

.product-card__variant {
  font-size: 0.88rem;
  color: var(--coffee-500);
  margin-bottom: 10px;
}

.product-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: auto 0 18px;
  padding-top: 10px;
}

.product-card__weight {
  font-size: 0.85rem;
  color: var(--coffee-500);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coffee-900);
}

.product-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-stepper button {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--cream);
  color: var(--coffee-900);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

.qty-stepper button:hover { background: var(--copper-light); }

.qty-stepper input {
  width: 36px;
  height: 34px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--white);
  -moz-appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-card .btn--add {
  flex: 1;
  justify-content: center;
}

.product-card .btn--add.is-added {
  background: var(--success);
  box-shadow: none;
}

/* ---------- Cart page ---------- */

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coffee-500);
  padding: 0 0 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.cart-table td {
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
  font-size: 0.95rem;
}

.cart-table td:last-child, .cart-table th:last-child { text-align: right; padding-right: 0; }

.cart-item__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--coffee-900);
}

.cart-item__variant {
  font-size: 0.8rem;
  color: var(--coffee-500);
}

.cart-remove {
  background: none;
  border: none;
  color: var(--coffee-500);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  padding: 4px;
}

.cart-remove:hover { color: #a3392b; }

.cart-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: 20px 0;
  font-size: 0.95rem;
}

.cart-summary__row {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  min-width: 260px;
  color: var(--coffee-700);
}

.cart-summary__row span:first-child {
  flex: 1;
  text-align: left;
}

.cart-summary__row strong { font-weight: 600; color: var(--coffee-900); }

.cart-summary__row--total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}

.cart-summary__row--total strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--copper-dark);
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--coffee-700);
}

.delivery-option input { margin-top: 4px; }

.delivery-option strong { display: block; font-size: 0.95rem; color: var(--coffee-900); }

.delivery-option__desc {
  font-size: 0.8rem;
  color: var(--coffee-500);
}

.delivery-option:has(input:checked) {
  border-color: var(--copper-dark);
  background: var(--cream-dark);
}

.shipping-fields {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--coffee-700);
}

.cart-empty svg { color: var(--coffee-300); margin-bottom: 16px; }

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

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.table-responsive { width: 100%; overflow-x: auto; }

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

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .media-block { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .nav { position: fixed; inset: 72px 0 0 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 24px; gap: 24px; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .nav.is-open { transform: translateX(0); }
  .nav__links { flex-direction: column; gap: 18px; width: 100%; }
  .nav__links a { display: block; font-size: 1.1rem; }
  .header__actions { gap: 12px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  section { padding: 56px 0; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; margin: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .shop-status__dot { animation: none !important; }
}
