:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --surface-muted: #fcfcfb;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --text-soft: #8a8a8a;
  --accent: #6b1e2a;
  --accent-soft: rgba(107, 30, 42, 0.12);
  --border: #e6e2da;
  --border-strong: #d6d0c6;
  --bio: #6f7a3d;
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 10px 28px rgba(26, 26, 26, 0.08);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --space-1: 0.35rem;
  --space-2: 0.55rem;
  --space-3: 0.85rem;
  --space-4: 1.15rem;
  --space-5: 1.65rem;
  --space-6: 2.25rem;
  --content-max: 1120px;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  margin: 0 0 var(--space-3);
  font-weight: 600;
}

h2 {
  font-size: 1.15rem;
  margin: var(--space-5) 0 var(--space-3);
  font-weight: 600;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 var(--space-2);
  font-weight: 600;
}

p {
  margin: 0 0 var(--space-3);
}

p:last-child {
  margin-bottom: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--space-4) 0;
}

/* Header */
.header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, white);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.45rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.search-wrap {
  position: relative;
  flex: 1 1 100%;
  min-width: 0;
  max-width: none;
  order: 3;
}

.search-form {
  width: 100%;
}

.search-form input {
  width: 100%;
  background: var(--surface);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-form input:focus {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-sm);
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}

.search-suggest-item {
  width: 100%;
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border: none;
  border-bottom: 1px solid #f0ede8;
  background: var(--surface);
  cursor: pointer;
  display: grid;
  gap: var(--space-1);
}

.search-suggest-item:last-child {
  border-bottom: none;
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
  background: #faf7f4;
}

.search-suggest-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.search-suggest-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
  order: 2;
}

.account-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.logout-icon:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cart-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.cart-badge {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
}

/* Page shell */
.page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-4) var(--space-4) var(--space-6);
}

.hero {
  margin: 0 0 var(--space-5);
  padding: var(--space-5) var(--space-5);
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero p {
  color: var(--text-muted);
  max-width: 52ch;
}

.layout-with-filters {
  display: grid;
  gap: var(--space-4);
}

.filters-drawer {
  border: 0;
  padding: 0;
  margin: 0;
}

.filters-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.filters-summary::-webkit-details-marker {
  display: none;
}

.filters-drawer[open] .filters-summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.filters-drawer .filters {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}

.filters-drawer:not([open]) .filters {
  display: none;
}

.checkout-steps {
  margin: 0 0 var(--space-6);
}

.checkout-steps-list {
  list-style: none;
  margin: 0;
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.checkout-steps-list li {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.checkout-steps-list a,
.checkout-steps-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.35rem 0.25rem;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
}

.checkout-steps-list a:hover {
  color: var(--accent);
}

.checkout-steps-list li.is-done {
  color: var(--text);
}

.checkout-steps-list li.is-current a,
.checkout-steps-list li.is-current span {
  background: #f6f1ec;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
}

.checkout-steps-muted {
  color: var(--text-soft);
  font-weight: 600;
}

.cart-toast-stack {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: var(--space-2);
  max-width: min(calc(100vw - 2 * var(--space-4)), 22rem);
  pointer-events: none;
}

.cart-toast-stack .cart-toast {
  position: relative;
  right: auto;
  bottom: auto;
  pointer-events: auto;
}

.cart-toast {
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.2);
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transform-origin: bottom right;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    box-shadow 0.32s ease;
  font-weight: 600;
  font-size: 0.92rem;
  max-width: 100%;
  word-wrap: break-word;
}

.cart-toast.is-visible {
  animation: cartToastPop 0.52s cubic-bezier(0.34, 1.4, 0.36, 1) both;
}

.cart-toast.is-leaving {
  animation: none;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

@keyframes cartToastPop {
  0% {
    transform: translateY(20px) scale(0.86);
    opacity: 0;
    box-shadow: 0 4px 14px rgba(26, 26, 26, 0.15);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
    opacity: 1;
    box-shadow: 0 16px 36px rgba(26, 26, 26, 0.32);
  }
  78% {
    transform: translateY(3px) scale(0.98);
    box-shadow: 0 8px 22px rgba(26, 26, 26, 0.22);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: 0 10px 28px rgba(26, 26, 26, 0.26);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-toast {
    transition: opacity 0.2s ease;
    transform: translateY(6px);
  }

  .cart-toast.is-visible {
    animation: none;
    opacity: 1;
    transform: translateY(0);
    box-shadow: var(--shadow-md);
  }

  .cart-toast.is-leaving {
    transform: translateY(4px);
  }
}

.filters {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.filters form {
  display: grid;
  gap: var(--space-3);
}

label {
  display: grid;
  gap: var(--space-2);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

label span,
.filters label {
  color: var(--text);
}

.form-page > form,
.auth-box > form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-page > form > label,
.auth-box > form > label {
  margin-top: 0;
}

.form-page .modal-actions {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
}

input,
select,
button {
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:hover,
select:hover,
button:hover {
  border-color: var(--border-strong);
}

input:focus,
select:focus,
button:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Product list */
.grid-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card-product {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  padding: var(--space-4);
}

.card-media img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: contain;
}

.card-body {
  padding: var(--space-4) var(--space-4) var(--space-3);
}

.card-actions {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  align-content: center;
  border-top: 1px solid #f2efe9;
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
}

.card-actions select,
.card-actions input,
.card-actions button {
  width: 100%;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: var(--space-2);
}

.badge {
  display: inline-block;
  background: #f3f0ea;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  margin: 0.15rem 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a4a4a;
}

.badge.bio {
  background: #eef2e0;
  color: var(--bio);
}

.dot-color {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.35rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  box-shadow: 0 6px 16px rgba(107, 30, 42, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(107, 30, 42, 0.26);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.btn-secondary:hover {
  border-color: var(--border-strong);
}

.btn-danger {
  background: #faf0f0;
  color: #7a1f1f;
  border-color: #e9cfcf;
  font-weight: 600;
}

.muted {
  color: var(--text-muted);
}

.pagination {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.page-link {
  min-width: 2.35rem;
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  background: var(--surface);
  cursor: pointer;
}

.page-link:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-link.is-current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Forms / auth / cart */
.cart-stock-alert {
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border: 1px solid #e0c9a8;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff9f0 0%, #fff4e6 100%);
  color: var(--text);
}

.cart-stock-alert-intro {
  margin: var(--space-2) 0 var(--space-3);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cart-stock-alert-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-stock-alert-list li {
  margin-bottom: var(--space-2);
}

.cart-stock-alert-list li:last-child {
  margin-bottom: 0;
}

.cart-page,
.auth-box,
.form-page {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid #f0ede8;
}

.cart-row:last-of-type {
  border-bottom: none;
}

.cart-row > div:first-child strong {
  font-size: 1.02rem;
}

.checkout-btn {
  margin-top: var(--space-6);
  width: 100%;
  max-width: 360px;
  padding: 0.85rem 1.25rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  display: grid;
  place-items: center;
  padding: var(--space-4);
  z-index: 80;
}

.hidden {
  display: none;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.pay-success {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #f6fbf5;
}

.pay-success-btn {
  margin-top: var(--space-3);
}

.modal-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.error {
  color: #a02828;
  font-weight: 600;
}

@media (min-width: 640px) {
  .header {
    padding: var(--space-3) var(--space-5);
    flex-wrap: nowrap;
  }

  .search-wrap {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 520px;
    order: 0;
  }

  .header-actions {
    order: 0;
  }

  .layout-with-filters {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: var(--space-5);
    align-items: start;
  }

  .filters-summary {
    display: none !important;
  }

  .filters-drawer .filters {
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .filters-drawer:not([open]) .filters {
    display: block;
  }

  .filters {
    position: sticky;
    top: 5.5rem;
  }

  .card-product {
    grid-template-columns: 200px minmax(0, 1fr) minmax(200px, 240px);
    align-items: stretch;
  }

  .card-media {
    padding: var(--space-4) var(--space-3);
  }

  .card-media img {
    max-width: 170px;
    height: 170px;
  }

  .cart-row {
    grid-template-columns: minmax(0, 1.4fr) auto auto auto;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
  }

  .checkout-btn {
    width: auto;
    min-width: 260px;
  }
}

@media (min-width: 1024px) {
  .page {
    padding: var(--space-5) var(--space-6) var(--space-6);
  }

  .header {
    padding: var(--space-3) var(--space-6);
  }

  .product-detail {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  }
}

/* Fiches produit catalogue / primeurs */
.breadcrumb {
  max-width: var(--content-max);
  margin: 0 auto var(--space-3);
  padding: 0 var(--space-4);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-current {
  color: var(--text-soft);
  font-weight: 500;
}

.product-detail {
  max-width: var(--content-max);
  margin: 0 auto var(--space-6);
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}

.product-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
}

.product-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: contain;
}

.product-detail-main h1 {
  margin-top: var(--space-2);
}

.product-detail-domaine {
  margin-bottom: 0;
}

.product-detail-tags {
  margin: var(--space-2) 0 var(--space-3);
}

.product-detail-price {
  font-size: 1.25rem;
  margin: var(--space-3) 0;
}

.product-specs {
  margin: var(--space-4) 0;
  display: grid;
  gap: var(--space-3);
}

.product-specs > div {
  display: grid;
  gap: var(--space-1);
}

.product-specs dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.product-specs dd {
  margin: 0;
  font-size: 0.95rem;
}

.press-list {
  margin: 0 0 var(--space-4);
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.press-list li {
  margin-bottom: var(--space-2);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.product-detail-actions input[type="number"] {
  width: 5rem;
}

.product-detail-actions select {
  min-width: 220px;
  flex: 1 1 200px;
}

.primeur-pool-hint {
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
}

.product-flac-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: var(--space-3) 0 var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-flac-table th,
.product-flac-table td {
  padding: var(--space-3) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.product-flac-table th {
  background: var(--surface-muted);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.product-flac-table tr:last-child td {
  border-bottom: 0;
}

.related-wines {
  max-width: var(--content-max);
  margin: 0 auto var(--space-6);
  padding: 0 var(--space-4);
}

.related-wines-hint {
  font-size: 0.85rem;
  margin-top: calc(-1 * var(--space-2));
  margin-bottom: var(--space-4);
}

.related-wines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-4);
}

.related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.related-card-media {
  aspect-ratio: 1;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 140px;
}

.related-card-body {
  padding: var(--space-3);
}

.related-card-body h3 {
  font-size: 0.95rem;
  margin: 0 0 var(--space-2);
  color: var(--text);
}

.related-card-body .price {
  margin-top: var(--space-2);
  font-size: 0.95rem;
}

.related-card-body .small {
  font-size: 0.8rem;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
