:root {
  --color-bg: #020816;
  --color-surface: #071120;
  --color-surface-soft: #0c1728;
  --color-primary: #f3d9a4;
  --color-primary-soft: rgba(243, 217, 164, 0.14);
  --color-accent: #89c0d6;
  --color-text: #f9f5ef;
  --color-text-muted: #c3cad6;
  --color-border-subtle: rgba(255, 255, 255, 0.08);

  --font-heading: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 12px 30px rgba(0, 0, 0, 0.4);

  --max-width: 1120px;
}

/* Reset simple */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, #102647 0, #020816 55%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/* Layout global */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Header / Navigation */

.site-header {
  position: relative;
  padding-top: 1.25rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 1.75rem;
  background: linear-gradient(to bottom, rgba(2, 8, 22, 0.96), rgba(2, 8, 22, 0.7));
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(18px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 15%, #ffffff 0, #89c0d6 32%, #020816 100%);
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.22s ease;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

/* Lien Panier dans la nav */

.nav-cart-link {
  font-weight: 500;
  padding: 0.35rem 0.9rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 217, 164, 0.4);
  background: radial-gradient(circle at top, rgba(243, 217, 164, 0.15) 0, transparent 70%);
}

.nav-cart-link::after {
  display: none;
}

.nav-cart-link:hover {
  color: var(--color-text);
  background: radial-gradient(circle at top, rgba(243, 217, 164, 0.26) 0, transparent 80%);
}

/* Burger menu */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  margin: 4px 0;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4.5rem;
}

.hero-inner {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 24, 50, 0.9);
  border: 1px solid var(--color-primary-soft);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.1vw + 1.4rem, 3rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* Hero visuel */

.hero-visual {
  position: relative;
  padding: 1.6rem;
}

.hero-photo-placeholder {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  background:
    radial-gradient(circle at 10% 0, rgba(243, 217, 164, 0.25) 0, transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(137, 192, 214, 0.32) 0, transparent 50%),
    linear-gradient(145deg, #071120, #020816);
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(249, 245, 239, 0.7);
}


/* Boutons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-primary), #ffeac6);
  color: #1b2738;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  background: rgba(7, 17, 32, 0.9);
  border-color: var(--color-border-subtle);
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(12, 23, 44, 0.95);
  border-color: var(--color-primary-soft);
}

.full-width {
  width: 100%;
}

/* Nous connaître */

.about {
  background: radial-gradient(circle at top right, rgba(137, 192, 214, 0.28) 0, transparent 45%),
    radial-gradient(circle at bottom left, rgba(243, 217, 164, 0.2) 0, transparent 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.about-block {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 32, 0.95);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
}

.about-block h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.about-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Produits */

.products {
  background: radial-gradient(circle at bottom, rgba(2, 8, 22, 0.4) 0, #020816 55%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.product-card {
  padding: 1.8rem 1.7rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 32, 0.98);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
}

.product-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.product-card p {
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.product-list li + li {
  margin-top: 0.2rem;
}

/* Process */

.process {
  background: radial-gradient(circle at top, rgba(7, 17, 32, 0.95) 0, #020816 60%);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-step {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(2, 8, 22, 0.98);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
}

.process-step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
  font-family: var(--font-heading);
}

.process-step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Contact */

.contact {
  background: radial-gradient(circle at top left, rgba(137, 192, 214, 0.16) 0, transparent 45%),
    linear-gradient(180deg, #020816 0, #020816 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-infos {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.contact-infos li + li {
  margin-top: 0.4rem;
}

.contact-form {
  padding: 1.9rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 32, 0.98);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(153, 168, 196, 0.32);
  background: rgba(2, 8, 22, 0.8);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(195, 202, 214, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(243, 217, 164, 0.3);
}

/* Panneau latéral de panier */

.cart-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 22, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
  z-index: 40;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: radial-gradient(circle at top left, rgba(137, 192, 214, 0.22) 0, transparent 60%),
    linear-gradient(160deg, #071120, #020816);
  border-left: 1px solid var(--color-border-subtle);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.18s ease-out;
  z-index: 50;
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-panel-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-panel-close {
  border: none;
  background: none;
  color: var(--color-text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.cart-panel-close:hover {
  background: rgba(249, 245, 239, 0.08);
  color: var(--color-text);
}

.cart-panel-body {
  padding: 1.1rem 1.4rem 1.4rem;
  flex: 1 1 auto;
  overflow-y: auto;
}

.cart-empty {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Exemple de style pour un futur item (non utilisé encore) */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-title {
  font-size: 0.92rem;
  margin: 0 0 0.2rem;
}

.cart-item-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-panel-footer {
  padding: 1.1rem 1.4rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 8, 22, 0.96);
}

.cart-total-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
}

.cart-total-amount {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.cart-help-text {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #020816;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-meta {
  opacity: 0.86;
}

/* État ouvert du panier */

body.cart-open {
  overflow: hidden;
}

body.cart-open .cart-panel-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .cart-panel {
  transform: translateX(0);
}

.footer-admin-link {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(195, 202, 214, 0.7);
  text-decoration: none;
  opacity: 0.85;
}

.footer-admin-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsivité */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .navbar {
    border-radius: 18px;
    padding-inline: 1.1rem;
  }

  .nav-right {
    position: absolute;
    inset: 58px 1rem auto 1rem;
    flex-direction: column;
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
    background: rgba(2, 8, 22, 0.96);
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-right.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-inline: 1.2rem;
    padding-bottom: 3.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .about-grid,
  .products-grid,
  .process-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-panel {
    width: 100%;
  }
}






/* Section produits – filtre catégories */

.products-filter {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

.products-tab {
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.products-tab.is-active {
  background: radial-gradient(circle at top, rgba(243, 217, 164, 0.2) 0, transparent 80%);
  color: var(--color-text);
}

/* Vues produits / plateaux */

.products-view {
  display: none;
}

.products-view.is-active {
  display: block;
}

/* Cartes produits visuelles */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.product-card {
  background: rgba(7, 17, 32, 0.98);
  border-radius: 32px;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
  padding: 0.9rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.65);
  border-color: rgba(243, 217, 164, 0.35);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto;
}

.product-card-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 10% 0, rgba(243, 217, 164, 0.25) 0, transparent 45%);
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.06);
}

.product-card-body {
  padding: 0.9rem 0.4rem 0.8rem;
}

.product-card-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.product-card-price {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.product-card-button {
  margin-top: 0.4rem;
  align-self: stretch;
}

/* Bouton global tous les produits */

.products-all {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}

.products-all-link {
  min-width: 230px;
  justify-content: center;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.products-page-hero {
  background: radial-gradient(circle at top left, rgba(137, 192, 214, 0.2) 0, transparent 55%);
}

.page-hero-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.6vw + 1.4rem, 2.6rem);
  letter-spacing: 0.04em;
}

.page-hero-subtitle {
  margin: 0;
  max-width: 640px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}


.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-item-info {
  flex: 1;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(195, 202, 214, 0.6);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease, color 0.25s ease;
  text-decoration: underline;
}

.cart-item-remove:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.cart-item-qty-wrapper {
  margin-top: 0.3rem;
}

.cart-item-qty {
  width: 55px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.product-wrapper {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 3rem 0;
}

.product-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.product-slider img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.55);
}

.slider-prev {
  left: 10px;
}
.slider-next {
  right: 10px;
}

.product-details .product-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.2vw + 1rem, 2.7rem);
}

.product-quantity {
  margin: 1.2rem 0;
}

.product-quantity input {
  width: 70px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.confirmation-hero {
  background: radial-gradient(
      circle at top left,
      rgba(137, 192, 214, 0.16) 0,
      transparent 55%
    ),
    linear-gradient(180deg, #020816 0, #020816 100%);
}

.confirmation-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.confirmation-subtitle {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.confirmation-left {
  max-width: 640px;
}

.confirmation-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.confirmation-helper {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Récap commande */

.confirmation-right {
  max-width: 420px;
  margin-left: auto;
}

.order-summary-card {
  border-radius: 20px;
  background: rgba(7, 17, 32, 0.98);
  border: 1px solid var(--color-border-subtle);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.order-summary-items {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-item-main {
  flex: 1;
}

.order-item-title {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.order-item-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.order-item-subtotal {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.8rem;
  margin-top: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.96rem;
}

.order-summary-total-amount {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.order-summary-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.order-empty {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Responsive */

@media (max-width: 960px) {
  .confirmation-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .confirmation-right {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .confirmation-form .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Responsive produits */

@media (max-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card {
    border-radius: 24px;
  }
}



