﻿/* ROUTE D'OR - Theme Principal Consolide */

/* === _variables.css === */
/* ============================================
   ROUTE D'OR — Variables CSS Custom Properties
   N°1 de l'Apiculture en ligne
   ============================================ */

:root {
  /* ── Couleurs principales ── */
  --ro-brown:         #392d24;
  --ro-brown-light:   #5a4a3e;
  --ro-brown-dark:    #2a1f18;
  --ro-beige:         #ece6da;
  --ro-beige-light:   #f5f0e8;
  --ro-beige-dark:    #d9d0c0;
  --ro-gold:          #ffd304;
  --ro-gold-light:    #ffe14d;
  --ro-gold-dark:     #e6bc00;
  --ro-orange:        #e28f3b;
  --ro-orange-light:  #f0a85c;
  --ro-orange-dark:   #c47a2e;
  --ro-gray-light:    #f5f5f5;
  --ro-gray:          #878787;
  --ro-gray-dark:     #555555;
  --ro-blue:          #2a629d;
  --ro-blue-light:    #3a7bc0;
  --ro-white:         #ffffff;
  --ro-black:         #1a1a1a;

  /* ── Couleurs sémantiques ── */
  --ro-text:          var(--ro-brown);
  --ro-text-light:    var(--ro-gray);
  --ro-text-muted:    var(--ro-gray-dark);
  --ro-heading:       var(--ro-brown);
  --ro-link:          var(--ro-brown);
  --ro-link-hover:    var(--ro-orange);
  --ro-bg-body:       var(--ro-gray-light);
  --ro-bg-header:     var(--ro-beige);
  --ro-bg-footer:     var(--ro-brown);
  --ro-bg-card:       var(--ro-white);
  --ro-border:        #e0dbd3;
  --ro-border-light:  #eeebe5;

  /* ── Boutons ── */
  --ro-btn-primary-bg:      var(--ro-gold);
  --ro-btn-primary-text:    var(--ro-brown);
  --ro-btn-primary-hover:   var(--ro-gold-dark);
  --ro-btn-secondary-bg:    var(--ro-beige);
  --ro-btn-secondary-text:  var(--ro-brown);
  --ro-btn-secondary-hover: var(--ro-beige-dark);

  /* ── Typographie ── */
  --ro-font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --ro-font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ro-font-mono:     'JetBrains Mono', 'Fira Code', monospace;

  /* ── Tailles de police ── */
  --ro-text-xs:    0.75rem;    /* 12px */
  --ro-text-sm:    0.875rem;   /* 14px */
  --ro-text-base:  1rem;       /* 16px */
  --ro-text-md:    1.125rem;   /* 18px */
  --ro-text-lg:    1.25rem;    /* 20px */
  --ro-text-xl:    1.5rem;     /* 24px */
  --ro-text-2xl:   1.875rem;   /* 30px */
  --ro-text-3xl:   2.25rem;    /* 36px */
  --ro-text-4xl:   3rem;       /* 48px */
  --ro-text-5xl:   3.75rem;    /* 60px */

  /* ── Line heights ── */
  --ro-leading-tight:   1.2;
  --ro-leading-snug:    1.35;
  --ro-leading-normal:  1.6;
  --ro-leading-relaxed: 1.75;

  /* ── Font weights ── */
  --ro-font-light:     300;
  --ro-font-regular:   400;
  --ro-font-medium:    500;
  --ro-font-semibold:  600;
  --ro-font-bold:      700;

  /* ── Espacements ── */
  --ro-space-xs:   0.25rem;   /* 4px */
  --ro-space-sm:   0.5rem;    /* 8px */
  --ro-space-md:   1rem;      /* 16px */
  --ro-space-lg:   1.5rem;    /* 24px */
  --ro-space-xl:   2rem;      /* 32px */
  --ro-space-2xl:  3rem;      /* 48px */
  --ro-space-3xl:  4rem;      /* 64px */
  --ro-space-4xl:  6rem;      /* 96px */

  /* ── Conteneur ── */
  --ro-container-sm:   640px;
  --ro-container-md:   768px;
  --ro-container-lg:   1024px;
  --ro-container-xl:   1200px;
  --ro-container-2xl:  1400px;
  --ro-container-padding: 1rem;

  /* ── Bordures ── */
  --ro-radius-sm:   4px;
  --ro-radius-md:   8px;
  --ro-radius-lg:   12px;
  --ro-radius-xl:   16px;
  --ro-radius-2xl:  24px;
  --ro-radius-full: 9999px;

  /* ── Ombres ── */
  --ro-shadow-xs:    0 1px 2px rgba(57, 45, 36, 0.05);
  --ro-shadow-sm:    0 1px 3px rgba(57, 45, 36, 0.08), 0 1px 2px rgba(57, 45, 36, 0.06);
  --ro-shadow-md:    0 4px 6px rgba(57, 45, 36, 0.07), 0 2px 4px rgba(57, 45, 36, 0.06);
  --ro-shadow-lg:    0 10px 15px rgba(57, 45, 36, 0.08), 0 4px 6px rgba(57, 45, 36, 0.05);
  --ro-shadow-xl:    0 20px 25px rgba(57, 45, 36, 0.10), 0 8px 10px rgba(57, 45, 36, 0.04);
  --ro-shadow-2xl:   0 25px 50px rgba(57, 45, 36, 0.15);
  --ro-shadow-inner: inset 0 2px 4px rgba(57, 45, 36, 0.06);

  /* ── Transitions ── */
  --ro-transition-fast:   150ms ease;
  --ro-transition-base:   250ms ease;
  --ro-transition-slow:   350ms ease;
  --ro-transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-index ── */
  --ro-z-dropdown:  100;
  --ro-z-sticky:    200;
  --ro-z-fixed:     300;
  --ro-z-overlay:   400;
  --ro-z-modal:     500;
  --ro-z-toast:     600;

  /* ── Header ── */
  --ro-header-height:       70px;
  --ro-header-height-mobile: 60px;
  --ro-topbar-height:       36px;
}


/* === _base.css === */
/* ============================================
   ROUTE D'OR — Base & Reset
   Styles fondamentaux et normalisation
   ============================================ */

/* ── Reset minimal (complète normalize.css de classic) ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-regular);
  line-height: var(--ro-leading-normal);
  color: var(--ro-text);
  background-color: var(--ro-bg-body);
  overflow-x: hidden;
}

/* ── Liens ── */
a {
  color: var(--ro-link);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

a:hover,
a:focus {
  color: var(--ro-link-hover);
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--ro-gold);
  outline-offset: 2px;
  border-radius: var(--ro-radius-sm);
}

/* ── Images ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Listes ── */
ul, ol {
  padding: 0;
  margin: 0;
}

/* ── Formulaires ── */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ── Tableaux ── */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ── Conteneur principal ── */
.ro-container,
#wrapper .container {
  width: 100%;
  max-width: var(--ro-container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ro-container-padding);
  padding-right: var(--ro-container-padding);
}

/* ── Wrapper PrestaShop ── */
#wrapper {
  background-color: var(--ro-bg-body);
  padding-top: 0;
}

#content-wrapper {
  padding-top: var(--ro-space-xs);
  padding-bottom: var(--ro-space-3xs);
}

/* ── Colonnes PrestaShop ── */
#left-column {
  padding-right: var(--ro-space-lg);
}

#right-column {
  padding-left: var(--ro-space-lg);
}

/* ── Page d'accueil : pas de padding top ── */
#index #content-wrapper {
  padding-top: 0;
}

/* ── Breadcrumb ── */
#wrapper .breadcrumb {
  background: transparent;
  padding: var(--ro-space-md) 0;
  margin-bottom: 0;
  font-size: var(--ro-text-sm);
}

#wrapper .breadcrumb li {
  display: inline-flex;
  align-items: center;
}

#wrapper .breadcrumb li::after {
  content: '›';
  margin: 0 var(--ro-space-sm);
  color: var(--ro-gray);
}

#wrapper .breadcrumb li:last-child::after {
  display: none;
}

#wrapper .breadcrumb li a {
  color: var(--ro-gray);
}

#wrapper .breadcrumb li a:hover {
  color: var(--ro-orange);
}

#wrapper .breadcrumb li:last-child a,
#wrapper .breadcrumb li:last-child span {
  color: var(--ro-brown);
  font-weight: var(--ro-font-medium);
}

/* ── Sélection texte ── */
::selection {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
}

::-moz-selection {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
}

/* ── Scrollbar personnalisée ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ro-beige-light);
}

::-webkit-scrollbar-thumb {
  background: var(--ro-beige-dark);
  border-radius: var(--ro-radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ro-brown-light);
}

/* ── Focus visible pour accessibilité ── */
:focus-visible {
  outline: 2px solid var(--ro-gold);
  outline-offset: 2px;
}

/* ── Skip to content (accessibilité) ── */
.ro-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: var(--ro-z-toast);
  padding: var(--ro-space-sm) var(--ro-space-md);
  background: var(--ro-gold);
  color: var(--ro-brown);
  font-weight: var(--ro-font-bold);
  transition: top var(--ro-transition-fast);
}

.ro-skip-link:focus {
  top: 0;
}

/* ── Masquer visuellement (accessibilité) ── */
.sr-only,
.ro-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* === _typography.css === */
/* ============================================
   ROUTE D'OR — Typographie
   Playfair Display (titres) + Inter (corps)
   ============================================ */

/* ── Titres ── */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ro-font-heading);
  font-weight: var(--ro-font-bold);
  line-height: var(--ro-leading-tight);
  color: var(--ro-heading);
  margin-top: 0;
  margin-bottom: var(--ro-space-md);
}

h1, .h1 {
  font-size: var(--ro-text-4xl);
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: var(--ro-text-3xl);
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-size: var(--ro-text-2xl);
}

h4, .h4 {
  font-size: var(--ro-text-xl);
}

h5, .h5 {
  font-size: var(--ro-text-lg);
}

h6, .h6 {
  font-size: var(--ro-text-md);
}

/* ── Paragraphes ── */
p {
  margin-top: 0;
  margin-bottom: var(--ro-space-md);
  line-height: var(--ro-leading-normal);
}

/* ── Texte d'accroche ── */
.ro-lead,
.lead {
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-light);
  line-height: var(--ro-leading-relaxed);
  color: var(--ro-text-muted);
}

/* ── Petits textes ── */
small,
.small,
.ro-small {
  font-size: var(--ro-text-sm);
}

.ro-text-xs {
  font-size: var(--ro-text-xs);
}

/* ── Texte en gras ── */
strong, b {
  font-weight: var(--ro-font-semibold);
}

/* ── Titres de section avec ligne décorative ── */
.ro-section-title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-3xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  text-align: center;
  margin-bottom: var(--ro-space-2xl);
  position: relative;
  padding-bottom: var(--ro-space-md);
}

.ro-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ro-gold), var(--ro-orange));
  border-radius: var(--ro-radius-full);
}

/* ── Sous-titre de section ── */
.ro-section-subtitle {
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-md);
  font-weight: var(--ro-font-regular);
  color: var(--ro-text-light);
  text-align: center;
  max-width: 600px;
  margin: calc(-1 * var(--ro-space-lg)) auto var(--ro-space-2xl);
  line-height: var(--ro-leading-relaxed);
}

/* ── Titre avec icône abeille ── */
.ro-section-title--bee::before {
  content: '🐝';
  display: block;
  font-size: var(--ro-text-2xl);
  margin-bottom: var(--ro-space-sm);
}

/* ── Lien avec flèche ── */
.ro-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-xs);
  font-weight: var(--ro-font-medium);
  color: var(--ro-orange);
  transition: all var(--ro-transition-base);
}

.ro-link-arrow::after {
  content: '→';
  transition: transform var(--ro-transition-base);
}

.ro-link-arrow:hover {
  color: var(--ro-orange-dark);
}

.ro-link-arrow:hover::after {
  transform: translateX(4px);
}

/* ── Prix ── */
.ro-price {
  font-family: var(--ro-font-body);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
}

.ro-price--old {
  text-decoration: line-through;
  color: var(--ro-gray);
  font-weight: var(--ro-font-regular);
  font-size: var(--ro-text-sm);
}

.ro-price--discount {
  color: #c0392b;
  font-weight: var(--ro-font-bold);
}

.ro-price--large {
  font-size: var(--ro-text-2xl);
}

/* ── Badge / Tag ── */
.ro-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--ro-radius-full);
  line-height: 1.6;
}

.ro-badge--new {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
}

.ro-badge--promo {
  background-color: #c0392b;
  color: var(--ro-white);
}

.ro-badge--stock {
  background-color: #27ae60;
  color: var(--ro-white);
}

.ro-badge--france {
  background-color: var(--ro-blue);
  color: var(--ro-white);
}

/* ── Overrides PrestaShop classic ── */
#wrapper h1,
.page-header h1 {
  font-family: var(--ro-font-heading);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  font-size: var(--ro-text-3xl);
  text-transform: none;
  border-bottom: none;
  margin-bottom: var(--ro-space-lg);
}

.page-heading {
  font-family: var(--ro-font-heading);
}


/* === _buttons.css === */
/* ============================================
   ROUTE D'OR — Boutons
   Styles de boutons cohérents et modernes
   ============================================ */

/* ── Bouton de base ── */
.btn,
.ro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ro-space-sm);
  padding: 12px 28px;
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--ro-radius-md);
  cursor: pointer;
  transition: all var(--ro-transition-base);
  position: relative;
  overflow: hidden;
}

.btn:focus-visible,
.ro-btn:focus-visible {
  outline: 2px solid var(--ro-gold);
  outline-offset: 2px;
}

/* ── Bouton primaire (doré) ── */
.btn-primary,
.ro-btn--primary {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  border-color: var(--ro-gold);
}

.btn-primary:hover,
.ro-btn--primary:hover {
  background-color: var(--ro-gold-dark);
  border-color: var(--ro-gold-dark);
  color: var(--ro-brown);
  transform: translateY(-1px);
  box-shadow: var(--ro-shadow-md);
}

.btn-primary:active,
.ro-btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Bouton secondaire (beige) ── */
.btn-secondary,
.ro-btn--secondary {
  background-color: var(--ro-beige);
  color: var(--ro-brown);
  border-color: var(--ro-beige);
}

.btn-secondary:hover,
.ro-btn--secondary:hover {
  background-color: var(--ro-beige-dark);
  border-color: var(--ro-beige-dark);
  color: var(--ro-brown);
  transform: translateY(-1px);
  box-shadow: var(--ro-shadow-md);
}

/* ── Bouton outline (contour marron) ── */
.btn-outline,
.ro-btn--outline {
  background-color: transparent;
  color: var(--ro-brown);
  border-color: var(--ro-brown);
}

.btn-outline:hover,
.ro-btn--outline:hover {
  background-color: var(--ro-brown);
  color: var(--ro-white);
  transform: translateY(-1px);
  box-shadow: var(--ro-shadow-md);
}

/* ── Bouton outline blanc (pour fonds sombres) ── */
.ro-btn--outline-white {
  background-color: transparent;
  color: var(--ro-white);
  border-color: var(--ro-white);
}

.ro-btn--outline-white:hover {
  background-color: var(--ro-white);
  color: var(--ro-brown);
  transform: translateY(-1px);
}

/* ── Bouton orange (CTA fort) ── */
.ro-btn--cta {
  background-color: var(--ro-orange);
  color: var(--ro-white);
  border-color: var(--ro-orange);
  font-size: var(--ro-text-base);
  padding: 14px 36px;
}

.ro-btn--cta:hover {
  background-color: var(--ro-orange-dark);
  border-color: var(--ro-orange-dark);
  color: var(--ro-white);
  transform: translateY(-2px);
  box-shadow: var(--ro-shadow-lg);
}

/* ── Tailles ── */
.btn-sm,
.ro-btn--sm {
  padding: 8px 18px;
  font-size: var(--ro-text-xs);
}

.btn-lg,
.ro-btn--lg {
  padding: 16px 36px;
  font-size: var(--ro-text-base);
}

.btn-xl,
.ro-btn--xl {
  padding: 18px 48px;
  font-size: var(--ro-text-md);
  border-radius: var(--ro-radius-lg);
}

/* ── Bouton pleine largeur ── */
.btn-block,
.ro-btn--block {
  display: flex;
  width: 100%;
}

/* ── Bouton rond (icône) ── */
.ro-btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--ro-radius-full);
}

.ro-btn--icon-sm {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--ro-radius-full);
}

/* ── Bouton avec icône ── */
.ro-btn .ro-btn__icon {
  font-size: 1.1em;
  line-height: 1;
}

/* ── Override PrestaShop classic ── */
.btn-primary {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
  color: var(--ro-brown);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: var(--ro-gold-dark);
  border-color: var(--ro-gold-dark);
  color: var(--ro-brown);
}

.btn-secondary {
  background-color: var(--ro-beige);
  border-color: var(--ro-beige);
  color: var(--ro-brown);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--ro-beige-dark);
  border-color: var(--ro-beige-dark);
  color: var(--ro-brown);
}

.btn-tertiary {
  background-color: transparent;
  border-color: var(--ro-brown);
  color: var(--ro-brown);
}

.btn-tertiary:hover {
  background-color: var(--ro-brown);
  color: var(--ro-white);
}

/* ── Ajouter au panier ── */
.add-to-cart,
.btn.add-to-cart {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  border-color: var(--ro-gold);
  font-weight: var(--ro-font-bold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--ro-radius-md);
  transition: all var(--ro-transition-base);
}

.add-to-cart:hover,
.btn.add-to-cart:hover {
  background-color: var(--ro-orange);
  border-color: var(--ro-orange);
  color: var(--ro-white);
  transform: translateY(-1px);
  box-shadow: var(--ro-shadow-md);
}

.add-to-cart .material-icons {
  margin-right: var(--ro-space-xs);
}


/* === _forms.css === */
/* ============================================
   ROUTE D'OR — Formulaires
   Inputs, selects, checkboxes, etc.
   ============================================ */

/* ── Input / Textarea ── */
.form-control,
.ro-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
  background-color: var(--ro-white);
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  transition: all var(--ro-transition-fast);
  outline: none;
}

.form-control:focus,
.ro-input:focus {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 3px rgba(255, 211, 4, 0.15);
}

.form-control::placeholder,
.ro-input::placeholder {
  color: var(--ro-gray);
}

/* ── Textarea ── */
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ── Select ── */
select.form-control,
.ro-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23392d24' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ── Label ── */
label,
.ro-label {
  display: block;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-xs);
}

/* ── Groupe de formulaire ── */
.form-group,
.ro-form-group {
  margin-bottom: var(--ro-space-lg);
}

/* ── Checkbox custom ── */
.custom-checkbox {
  position: relative;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox span {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-sm);
  cursor: pointer;
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
}

.custom-checkbox span::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-sm);
  flex-shrink: 0;
  transition: all var(--ro-transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox input[type="checkbox"]:checked + span::before {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
}

.custom-checkbox input[type="checkbox"]:checked + span::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
}

/* ── Radio custom ── */
.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.custom-radio span::before {
  border-radius: var(--ro-radius-full);
}

.custom-radio input[type="radio"]:checked + span::before {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
  box-shadow: inset 0 0 0 3px var(--ro-white);
}

/* ── Messages d'erreur / succès ── */
.alert,
.ro-alert {
  padding: var(--ro-space-md) var(--ro-space-lg);
  border-radius: var(--ro-radius-md);
  font-size: var(--ro-text-sm);
  margin-bottom: var(--ro-space-lg);
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* ── Quantité produit ── */
.product-quantity .qty,
.input-group.bootstrap-touchspin {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  overflow: hidden;
}

.product-quantity .qty input,
.bootstrap-touchspin input.form-control {
  width: 50px;
  text-align: center;
  border: none;
  padding: 8px 4px;
  font-weight: var(--ro-font-semibold);
  font-size: var(--ro-text-base);
}

.product-quantity .qty .btn,
.bootstrap-touchspin .btn-touchspin {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ro-beige-light);
  border: none;
  color: var(--ro-brown);
  font-size: var(--ro-text-lg);
  cursor: pointer;
  transition: background-color var(--ro-transition-fast);
  padding: 0;
  border-radius: 0;
}

.product-quantity .qty .btn:hover,
.bootstrap-touchspin .btn-touchspin:hover {
  background-color: var(--ro-beige);
}


/* === _header.css === */
/* ============================================
   ROUTE D'OR — Header & Navigation v2.0
   3 niveaux : topbar + header principal + nav
   Menu mobile slide-in panel
   ============================================ */

/* ── TOPBAR (barre supérieure marron) ── */
.ro-topbar {
  background-color: var(--ro-brown);
  color: var(--ro-beige);
  padding: 6px 0;
  font-size: var(--ro-text-xs);
  line-height: 1.4;
}

.ro-topbar a,
.ro-topbar span,
.ro-topbar button {
  color: var(--ro-beige);
}

.ro-topbar svg {
  color: var(--ro-beige);
  stroke: var(--ro-beige);
  opacity: 0.85;
}

.ro-topbar a:hover {
  color: var(--ro-gold);
}

.ro-topbar a:hover svg {
  color: var(--ro-gold);
  stroke: var(--ro-gold);
}

.ro-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ro-space-md);
}

.ro-topbar__left {
  display: flex;
  align-items: center;
  gap: var(--ro-space-lg);
}

.ro-topbar__right {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
}

/* Items topbar */
.ro-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ro-beige);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
  white-space: nowrap;
}

a.ro-topbar__item:hover {
  color: var(--ro-gold);
}

.ro-topbar__item svg {
  flex-shrink: 0;
}


.ro-topbar__separator {
  color: rgba(236, 230, 218, 0.3);
  font-size: 10px;
}

/* Modules dans la topbar (displayNav2) */
.ro-topbar__right .user-info,
.ro-topbar__right .blockcart,
.ro-topbar__right .language-selector,
.ro-topbar__right .currency-selector {
  display: inline-flex;
  align-items: center;
}

.ro-topbar__right a,
.ro-topbar__right span,
.ro-topbar__right button {
  color: var(--ro-beige);
  font-size: var(--ro-text-xs);
  text-decoration: none;
}

.ro-topbar__right a:hover {
  color: var(--ro-gold);
}

.ro-topbar__right .material-icons {
  font-size: 16px;
  color: var(--ro-beige);
}

.ro-topbar__right .language-selector button,
.ro-topbar__right .currency-selector button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  color: var(--ro-beige);
  font-size: var(--ro-text-xs);
}

.ro-topbar__right .language-selector .dropdown-menu,
.ro-topbar__right .currency-selector .dropdown-menu {
  background-color: var(--ro-white);
  border: 1px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  box-shadow: var(--ro-shadow-md);
  min-width: auto;
}

/* Cart count dans topbar */
.ro-topbar__right .cart-products-count {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  font-weight: var(--ro-font-bold);
  font-size: 10px;
  border-radius: var(--ro-radius-full);
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  margin-left: 4px;
}

/* ── HEADER PRINCIPAL (logo + recherche + actions) ── */
.ro-header {
  background-color: var(--ro-beige);
  padding: var(--ro-space-sm) 0;
  border-bottom: 1px solid var(--ro-border);
  position: relative;
  z-index: var(--ro-z-sticky);
}

.ro-header__inner {
  display: flex;
  align-items: center;
  gap: var(--ro-space-lg);
}

/* Logo */
.ro-header__logo {
  flex-shrink: 0;
}

.ro-header__logo-heading {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.ro-header__logo-img {
  height: 55px;
  width: auto;
  max-width: 180px;
  display: block;
  transition: opacity var(--ro-transition-fast);
}

.ro-header__logo-img:hover {
  opacity: 0.85;
}

/* Mega Menu container */
.ro-header__megamenu {
  flex-shrink: 0;
}

/* Téléphone mobile (icône + numéro, à droite du burger) */
.ro-header__phone-mobile {
  display: none; /* Affiché en responsive */
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--ro-radius-full);
  color: var(--ro-brown);
  text-decoration: none;
  transition: all var(--ro-transition-fast);
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: var(--ro-font-semibold);
  white-space: nowrap;
}

.ro-header__phone-mobile:hover {
  background-color: rgba(57, 45, 36, 0.08);
  color: var(--ro-orange);
}

.ro-header__phone-mobile svg {
  flex-shrink: 0;
}

.ro-header__phone-number {
  line-height: 1;
}

/* Barre de recherche */
.ro-header__search {
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.ro-header__search #search_widget {
  width: 100%;
  max-width: none;
  margin: 0;
}

.ro-header__search #search_widget form {
  position: relative;
  display: flex;
}

.ro-header__search #search_widget form input[type="text"] {
  width: 100%;
  padding: 11px 50px 11px 20px;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-full);
  background-color: var(--ro-white);
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
  transition: all var(--ro-transition-base);
  outline: none;
}

.ro-header__search #search_widget form input[type="text"]:focus {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 3px rgba(255, 211, 4, 0.2);
}

.ro-header__search #search_widget form input[type="text"]::placeholder {
  color: var(--ro-gray);
}

.ro-header__search #search_widget form button[type="submit"] {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--ro-radius-full);
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ro-transition-fast);
  border: none;
  cursor: pointer;
}

.ro-header__search #search_widget form button[type="submit"]:hover {
  background-color: var(--ro-gold-dark);
}

.ro-header__search #search_widget form button[type="submit"] i {
  font-size: var(--ro-text-md);
}

/* Actions (compte + panier) */
.ro-header__actions {
  display: flex;
  align-items: center;
  gap: var(--ro-space-md);
  flex-shrink: 0;
}

.ro-header__action {
  position: relative;
}

/* Compte client dans header */
.ro-header__account .user-info {
  display: flex;
  align-items: center;
  gap: var(--ro-space-xs);
}

.ro-header__account .user-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
  white-space: nowrap;
}

.ro-header__account .user-info a:hover {
  color: var(--ro-orange);
}

.ro-header__account .user-info .material-icons {
  font-size: 22px;
  color: var(--ro-brown);
}

/* Panier dans header */
.ro-header__cart .blockcart {
  background: none;
  padding: 0;
}

.ro-header__cart .blockcart .header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ro-brown);
  cursor: pointer;
  transition: color var(--ro-transition-fast);
  position: relative;
  text-decoration: none;
}

.ro-header__cart .blockcart .header:hover {
  color: var(--ro-orange);
}

.ro-header__cart .blockcart .header .material-icons {
  font-size: 24px;
}

.ro-header__cart .blockcart .header .cart-products-count {
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  font-size: 11px;
  font-weight: var(--ro-font-bold);
  border-radius: var(--ro-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── BOUTON MENU MOBILE (pill "Menu") ── */
.ro-header__mobile-burger {
  display: none; /* Affiché en responsive via _responsive.css */
  align-items: center;
  gap: 6px;
  background: var(--ro-brown);
  color: var(--ro-white);
  border: none;
  border-radius: var(--ro-radius-full);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: var(--ro-font-semibold);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--ro-transition-fast);
  font-family: var(--ro-font-body);
  line-height: 1;
}

.ro-header__mobile-burger:hover,
.ro-header__mobile-burger:active {
  background: var(--ro-orange);
}

.ro-header__mobile-burger svg {
  flex-shrink: 0;
  stroke: currentColor;
}

/* ── NAVIGATION PRINCIPALE (barre sous le header) ── */
.ro-nav {
  background-color: var(--ro-white);
  border-bottom: 2px solid var(--ro-gold);
  position: relative;
  z-index: calc(var(--ro-z-sticky) - 1);
}

.ro-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu horizontal (rendu par ps_mainmenu) */
.ro-nav #top-menu,
.ro-nav .top-menu[data-depth="0"] {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.ro-nav .top-menu[data-depth="0"] > li {
  position: relative;
}

.ro-nav .top-menu[data-depth="0"] > li > a {
  display: flex;
  align-items: center;
  padding: var(--ro-space-sm) var(--ro-space-md);
  color: var(--ro-brown);
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all var(--ro-transition-fast);
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.ro-nav .top-menu[data-depth="0"] > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--ro-gold);
  transition: all var(--ro-transition-base);
  transform: translateX(-50%);
}

.ro-nav .top-menu[data-depth="0"] > li > a:hover,
.ro-nav .top-menu[data-depth="0"] > li.current > a,
.ro-nav .top-menu[data-depth="0"] > li.sfHoverForce > a {
  color: var(--ro-orange);
}

.ro-nav .top-menu[data-depth="0"] > li > a:hover::after,
.ro-nav .top-menu[data-depth="0"] > li.current > a::after {
  width: 100%;
}

/* ── Sous-menu (dropdown) ── */
.ro-nav .top-menu .sub-menu,
.ro-nav .top-menu .popover {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--ro-white);
  border: 1px solid var(--ro-border-light);
  border-top: 2px solid var(--ro-gold);
  border-radius: 0 0 var(--ro-radius-md) var(--ro-radius-md);
  box-shadow: var(--ro-shadow-lg);
  padding: var(--ro-space-sm) 0;
  z-index: var(--ro-z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ro-transition-base);
}

.ro-nav .top-menu[data-depth="0"] > li:hover > .sub-menu,
.ro-nav .top-menu[data-depth="0"] > li:hover > .popover,
.ro-nav .top-menu .sub-menu.collapse.in,
.ro-nav .top-menu .sub-menu.collapse.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ro-nav .top-menu .sub-menu ul[data-depth="1"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ro-nav .top-menu .sub-menu ul[data-depth="1"] li a {
  display: block;
  padding: var(--ro-space-sm) var(--ro-space-lg);
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-regular);
  text-transform: none;
  letter-spacing: 0;
  transition: all var(--ro-transition-fast);
  text-decoration: none;
}

.ro-nav .top-menu .sub-menu ul[data-depth="1"] li a:hover {
  background-color: var(--ro-beige-light);
  color: var(--ro-orange);
  padding-left: calc(var(--ro-space-lg) + 4px);
}

/* ── MENU MOBILE (slide-in panel) ── */
.ro-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--ro-z-modal);
  pointer-events: none;
  visibility: hidden;
}

.ro-mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* Overlay */
.ro-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--ro-transition-base);
}

.ro-mobile-menu.is-open .ro-mobile-menu__overlay {
  opacity: 1;
}

/* Panel */
.ro-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background-color: var(--ro-white);
  box-shadow: var(--ro-shadow-xl);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ro-transition-base);
  overflow-y: auto;
}

.ro-mobile-menu.is-open .ro-mobile-menu__panel {
  transform: translateX(0);
}

/* Header du panel mobile */
.ro-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--ro-space-md) var(--ro-space-lg);
  border-bottom: 1px solid var(--ro-border-light);
  flex-shrink: 0;
}

.ro-mobile-menu__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
}

.ro-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ro-brown);
  border-radius: var(--ro-radius-md);
  transition: background-color var(--ro-transition-fast);
}

.ro-mobile-menu__close:hover {
  background-color: var(--ro-beige-light);
}

/* Recherche dans le menu mobile */
.ro-mobile-menu__search {
  padding: var(--ro-space-md) var(--ro-space-lg);
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-mobile-menu__search #search_widget {
  width: 100%;
  max-width: none;
  margin: 0;
}

.ro-mobile-menu__search #search_widget form input[type="text"] {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-full);
  font-size: var(--ro-text-sm);
}

.ro-mobile-menu__search #search_widget form button[type="submit"] {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: var(--ro-radius-full);
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation dans le menu mobile */
.ro-mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
  padding: var(--ro-space-sm) 0;
}

/* Conteneur du menu cloné */
.ro-mobile-menu__nav > .menu {
  display: block;
}

.ro-mobile-menu__nav .clearfix {
  display: none;
}

.ro-mobile-menu__nav .top-menu,
.ro-mobile-menu__nav #top-menu_mobile,
.ro-mobile-menu__nav #top-menu_mob,
.ro-mobile-menu__nav #top-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ro-mobile-menu__nav .top-menu > li {
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-mobile-menu__nav .top-menu > li > a {
  display: flex;
  align-items: center;
  padding: var(--ro-space-md) var(--ro-space-lg);
  color: var(--ro-brown);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-medium);
  text-decoration: none;
  transition: all var(--ro-transition-fast);
  position: relative;
}

.ro-mobile-menu__nav .top-menu > li > a:hover,
.ro-mobile-menu__nav .top-menu > li > a:active {
  background-color: var(--ro-beige-light);
  color: var(--ro-orange);
}

/* Flèche pour les liens avec sous-menu */
.ro-mobile-menu__nav .top-menu > li > a.has-submenu::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ro-brown);
  border-bottom: 2px solid var(--ro-brown);
  transform: rotate(45deg);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ro-mobile-menu__nav .top-menu > li > a.has-submenu.is-open::after {
  transform: rotate(-135deg);
}

/* Icônes expand/collapse de ps_mainmenu (material-icons) */
.ro-mobile-menu__nav .float-xs-right {
  margin-left: auto;
  padding: 4px 0 4px 12px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ro-mobile-menu__nav .collapse-icons .material-icons {
  font-size: 20px;
  color: var(--ro-brown);
  transition: color var(--ro-transition-fast);
}

.ro-mobile-menu__nav .collapse-icons .material-icons.remove {
  display: none;
}

.ro-mobile-menu__nav .collapse-icons.is-open .material-icons.add {
  display: none;
}

.ro-mobile-menu__nav .collapse-icons.is-open .material-icons.remove {
  display: inline;
}

/* Sous-menus mobile (accordion) */
.ro-mobile-menu__nav .top-menu .sub-menu,
.ro-mobile-menu__nav .top-menu .popover,
.ro-mobile-menu__nav .top-menu .collapse {
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background-color: var(--ro-beige-light);
  min-width: 0 !important;
  width: 100% !important;
  float: none !important;
}

.ro-mobile-menu__nav .top-menu .sub-menu ul,
.ro-mobile-menu__nav .top-menu .popover ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ro-mobile-menu__nav .top-menu .sub-menu ul li a,
.ro-mobile-menu__nav .top-menu .popover ul li a {
  padding: var(--ro-space-sm) var(--ro-space-lg) var(--ro-space-sm) var(--ro-space-2xl);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-regular);
  color: var(--ro-brown);
  display: block;
  text-decoration: none;
  transition: all var(--ro-transition-fast);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ro-mobile-menu__nav .top-menu .sub-menu ul li:last-child a,
.ro-mobile-menu__nav .top-menu .popover ul li:last-child a {
  border-bottom: none;
}

.ro-mobile-menu__nav .top-menu .sub-menu ul li a:hover,
.ro-mobile-menu__nav .top-menu .popover ul li a:hover {
  color: var(--ro-orange);
  padding-left: calc(var(--ro-space-2xl) + 4px);
}

/* Masquer les images dans le menu mobile */
.ro-mobile-menu__nav .top-menu img {
  display: none;
}

/* Masquer le texte "hidden-md-up" qui est visible en mobile dans le template original */
.ro-mobile-menu__nav .hidden-md-up {
  display: inline-flex !important;
}

.ro-mobile-menu__nav .hidden-sm-down {
  display: block !important;
}

/* Footer du menu mobile */
.ro-mobile-menu__footer {
  padding: var(--ro-space-md) var(--ro-space-lg);
  border-top: 1px solid var(--ro-border-light);
  background-color: var(--ro-beige-light);
  flex-shrink: 0;
}

.ro-mobile-menu__contact {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
  color: var(--ro-brown);
  font-weight: var(--ro-font-semibold);
  font-size: var(--ro-text-base);
  text-decoration: none;
  margin-bottom: var(--ro-space-md);
}

.ro-mobile-menu__contact:hover {
  color: var(--ro-orange);
}

.ro-mobile-menu__selectors {
  display: flex;
  gap: var(--ro-space-md);
}

/* ── HEADER STICKY (desktop — comportement classique) ── */
.ro-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--ro-z-sticky);
  box-shadow: var(--ro-shadow-md);
}

.ro-header.is-sticky .ro-header__logo-img {
  max-height: 40px;
}

/* Placeholder pour éviter le saut de contenu */
.ro-header-placeholder {
  display: none;
}

body.has-sticky-header .ro-header-placeholder {
  display: block;
}

/* ── HEADER STICKY MOBILE (scroll direction-aware) ── */

/* État : header fixé en haut (commun scroll-up et scroll-down) */
.ro-header.is-sticky-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--ro-z-sticky);
  box-shadow: var(--ro-shadow-md);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll DOWN : mode compact — on cache la ligne 1 (burger, téléphone), on garde logo + recherche + actions */
.ro-header.is-sticky-mobile.ro-header--compact .ro-header__mobile-burger,
.ro-header.is-sticky-mobile.ro-header--compact .ro-header__phone-mobile,
.ro-header.is-sticky-mobile.ro-header--compact .ro-header__inner::before {
  display: none !important;
}

.ro-header.is-sticky-mobile.ro-header--compact .ro-header__logo img {
  max-height: 32px;
}

.ro-header.is-sticky-mobile.ro-header--compact .ro-header__inner {
  gap: 0.5rem;
}

/* En mode compact, logo + recherche + actions sur une seule ligne */
.ro-header.is-sticky-mobile.ro-header--compact .ro-header__logo {
  order: 1;
  flex-shrink: 0;
}

.ro-header.is-sticky-mobile.ro-header--compact .ro-header__search {
  order: 2;
  flex: 1 1 0;
  width: auto;
}

.ro-header.is-sticky-mobile.ro-header--compact .ro-header__actions {
  order: 3;
}

/* Scroll UP : header complet visible */
.ro-header.is-sticky-mobile.ro-header--full {
  transform: translateY(0);
}

/* Animation d'entrée du sticky mobile */
@keyframes ro-slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.ro-header.is-sticky-mobile.ro-header--animate-in {
  animation: ro-slideDown 0.3s ease forwards;
}

/* ── ACTIONS DANS LE MENU MOBILE (compte + panier) ── */
.ro-mobile-menu__actions {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: var(--ro-space-md) var(--ro-space-lg);
  border-top: 1px solid var(--ro-border-light);
  border-bottom: 1px solid var(--ro-border-light);
  background-color: var(--ro-beige-light);
}

.ro-mobile-menu__action-item {
  flex: 1;
}

.ro-mobile-menu__action-item .user-info a,
.ro-mobile-menu__action-item .blockcart .header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
  text-decoration: none;
  padding: var(--ro-space-sm) var(--ro-space-md);
  border-radius: var(--ro-radius-md);
  transition: all var(--ro-transition-fast);
}

.ro-mobile-menu__action-item .user-info a:hover,
.ro-mobile-menu__action-item .blockcart .header:hover {
  background-color: var(--ro-white);
  color: var(--ro-orange);
}

.ro-mobile-menu__action-item .material-icons {
  font-size: 20px;
}

.ro-mobile-menu__action-item .cart-products-count {
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  font-size: 10px;
  font-weight: var(--ro-font-bold);
  border-radius: var(--ro-radius-full);
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  margin-left: auto;
}

/* ── MASQUER les éléments du thème parent classic ── */
#header .header-nav,
#header .header-top,
#header .header-bottom,
.header-banner {
  display: none;
}


/* ── Utilitaires d'affichage ── */
/* .ro-hidden-mobile et .ro-hidden-desktop sont gérés dans _responsive.css via media queries */

/* ── Catégories sidebar (left-column) ── */
#left-column .block-categories,
#search_filters_wrapper {
  position: static;
  background: var(--ro-white);
  border: 1px solid var(--ro-border-light);
  border-radius: var(--ro-radius-md);
  padding: var(--ro-space-md);
  margin-bottom: var(--ro-space-md);
}

#left-column .block-categories .category-top-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

#left-column .block-categories .category-top-menu a {
  display: block;
  padding: var(--ro-space-xs) 0;
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
  transition: color var(--ro-transition-fast);
  text-decoration: none;
}

#left-column .block-categories .category-top-menu a:hover {
  color: var(--ro-orange);
}

.block-categories .collapse-icons,
.block-categories .arrows .material-icons {
  color: var(--ro-gray);
  cursor: pointer;
  font-size: 18px;
}


/* === _hero.css === */
/* ============================================
   ROUTE D'OR — Hero Section v2.0
   Bannière principale + Trust bar
   ============================================ */

/* ── Hero principale ── */
.ro-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ro-brown);
}

/* Background avec gradient */
.ro-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('/img/hero-apiculture.jpg') center/cover no-repeat;
}

.ro-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(57, 45, 36, 0.92) 0%,
    rgba(57, 45, 36, 0.7) 40%,
    rgba(57, 45, 36, 0.4) 70%,
    rgba(57, 45, 36, 0.2) 100%
  );
}

/* Contenu hero */
.ro-hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--ro-container-xl);
  margin: 0 auto;
  padding: var(--ro-space-xl) clamp(2rem, 5vw, 4rem) var(--ro-space-4xl);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ro-space-3xl);
}

.ro-hero__text {
  max-width: 600px;
  flex: 1;
}

/* Badge */
.ro-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: 8px 18px;
  background-color: rgba(255, 211, 4, 0.12);
  border: 1px solid rgba(255, 211, 4, 0.25);
  border-radius: var(--ro-radius-full);
  color: var(--ro-gold);
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--ro-space-lg);
  backdrop-filter: blur(4px);
}

.ro-hero__badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--ro-gold);
  border-radius: var(--ro-radius-full);
  flex-shrink: 0;
  animation: ro-pulse 2s ease-in-out infinite;
}

@keyframes ro-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Titre hero — spécificité renforcée pour overrider #wrapper h1 */
.ro-hero .ro-hero__title,
#wrapper .ro-hero__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-5xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-white);
  line-height: var(--ro-leading-tight);
  margin-bottom: var(--ro-space-lg);
  letter-spacing: -0.02em;
}

.ro-hero__title-accent {
  color: var(--ro-gold);
  font-style: italic;
}

/* Sous-titre */
.ro-hero__subtitle {
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-light);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--ro-leading-relaxed);
  margin-bottom: var(--ro-space-xl);
  max-width: 500px;
}

/* CTA buttons */
.ro-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ro-space-md);
}

/* ── Image hero (côté droit) ── */
.ro-hero__image {
  position: relative;
  flex-shrink: 0;
  max-width: 420px;
  width: 100%;
}

.ro-hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--ro-radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Badge flottant sur l'image */
.ro-hero__image-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  padding: 12px 20px;
  border-radius: var(--ro-radius-lg);
  text-align: center;
  box-shadow: var(--ro-shadow-lg);
  z-index: 2;
}

.ro-hero__stat-number {
  display: block;
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  line-height: 1.1;
  margin-bottom: 2px;
}

.ro-hero__stat-label {
  display: block;
  font-size: var(--ro-text-xs);
  color: var(--ro-brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--ro-font-medium);
  opacity: 0.8;
}

/* ── Vague décorative ── */
.ro-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.ro-hero__wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ══════════════════════════════════════════
   TRUST BAR — Bande de réassurance
   ══════════════════════════════════════════ */
.ro-trust-bar {
  padding: var(--ro-space-xl) 0;
  background-color: var(--ro-white);
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-space-lg);
}

.ro-trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--ro-space-md);
  padding: var(--ro-space-sm);
}

.ro-trust-bar__icon {
  width: 48px;
  height: 48px;
  background-color: var(--ro-beige);
  border-radius: var(--ro-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ro-transition-base);
}

.ro-trust-bar__icon svg {
  color: var(--ro-brown);
}

.ro-trust-bar__flag {
  font-size: var(--ro-text-xl);
  line-height: 1;
}

.ro-trust-bar__item:hover .ro-trust-bar__icon {
  background-color: var(--ro-gold);
  transform: scale(1.05);
}

.ro-trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ro-trust-bar__text strong {
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

.ro-trust-bar__text span {
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
}

/* ══════════════════════════════════════════
   SECTIONS — Styles communs
   ══════════════════════════════════════════ */
.ro-section {
  padding: var(--ro-space-3xl) 0;
}

.ro-section--gray {
  background-color: var(--ro-gray-light);
}

.ro-section--why {
  background-color: var(--ro-brown);
  color: var(--ro-white);
}

/* Section header */
.ro-section__header {
  text-align: center;
  margin-bottom: var(--ro-space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ro-section__eyebrow {
  display: inline-block;
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ro-orange);
  margin-bottom: var(--ro-space-sm);
}

.ro-section__eyebrow--light {
  color: var(--ro-gold);
}

.ro-section__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-3xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  margin-bottom: var(--ro-space-sm);
  line-height: var(--ro-leading-tight);
}

.ro-section__title--light,
#wrapper .ro-section__title--light {
  color: var(--ro-white);
}

.ro-section__desc {
  font-size: var(--ro-text-base);
  color: var(--ro-text-muted);
  line-height: var(--ro-leading-relaxed);
}

/* ── Boutons hero ── */
.ro-btn--cta {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: 14px 28px;
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  border: 2px solid var(--ro-gold);
  border-radius: var(--ro-radius-full);
  font-weight: var(--ro-font-bold);
  font-size: var(--ro-text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ro-transition-base);
  white-space: nowrap;
}

.ro-btn--cta:hover {
  background-color: var(--ro-gold-dark);
  border-color: var(--ro-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--ro-shadow-md);
}

.ro-btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: 14px 28px;
  background-color: transparent;
  color: var(--ro-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--ro-radius-full);
  font-weight: var(--ro-font-semibold);
  font-size: var(--ro-text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ro-transition-base);
  white-space: nowrap;
}

.ro-btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--ro-white);
}

.ro-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: 14px 28px;
  background-color: transparent;
  color: var(--ro-brown);
  border: 2px solid var(--ro-brown);
  border-radius: var(--ro-radius-full);
  font-weight: var(--ro-font-semibold);
  font-size: var(--ro-text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ro-transition-base);
  white-space: nowrap;
}

.ro-btn--outline:hover {
  background-color: var(--ro-brown);
  color: var(--ro-white);
}

.ro-btn--lg {
  padding: 16px 32px;
  font-size: var(--ro-text-base);
}


/* === _products.css === */
/* ============================================
   ROUTE D'OR — Cards Produits v2.0
   Design harmonisé avec le module Produits de saison
   Classes : .ro-card-*, .ro-products-section, .product-miniature
   ============================================ */

/* ══════════════════════════════════════════════
   SECTION PRODUITS (wrapper modules)
   ══════════════════════════════════════════════ */

.ro-products-section {
  padding: 0;
}

.ro-products-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.ro-products-section__title {
  font-family: var(--ro-font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  margin: 0;
  line-height: 1.3;
}

.ro-products-section__footer {
  text-align: center;
  margin-top: var(--ro-space-xl);
}

.ro-products-section__all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ro-orange);
  font-weight: var(--ro-font-semibold);
  font-size: var(--ro-text-base);
  text-decoration: none;
  transition: all var(--ro-transition-base);
  padding: 8px 20px;
  border-radius: var(--ro-radius-full);
  border: 1px solid transparent;
}

.ro-products-section__all-link:hover {
  color: var(--ro-orange-dark);
  border-color: var(--ro-orange);
  background: rgba(226, 143, 59, 0.05);
}

.ro-products-section__all-link svg {
  transition: transform var(--ro-transition-base);
}

.ro-products-section__all-link:hover svg {
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   GRILLE PRODUITS
   Utilisée par : featured products, catégorie listing,
   category products, et tout module utilisant .products
   ══════════════════════════════════════════════ */

.ro-products-section__grid,
.products:not(.ro-category__grid) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Page catégorie : géré par .ro-category__grid dans _category-grid.css */
/* Ne pas redéfinir grid-template-columns ici, c'est _category-grid.css qui gère */

/* Section produits même catégorie (fiche produit) : 4 colonnes */
.ro-products-section--category .ro-products-section__grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ══════════════════════════════════════════════
   CARTE PRODUIT — Design identique au module saisonnier
   ══════════════════════════════════════════════ */

.product-miniature {
  background: var(--ro-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ro-border-light, #f0ebe3);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-miniature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(57, 45, 36, 0.12);
  border-color: var(--ro-gold);
}

/* ── Lien carte (enveloppe tout) ── */
.ro-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
}

/* ── Image produit ── */
.ro-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fafaf8;
}

.ro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.product-miniature:hover .ro-card-img img {
  transform: scale(1.05);
}

/* ── Badges produit (promo, nouveau, pack, etc.) ── */
.ro-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.ro-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ro-card-badge--new {
  background: var(--ro-gold);
  color: var(--ro-brown);
}

.ro-card-badge--discount,
.ro-card-badge--on-sale {
  background: #e74c3c;
  color: #fff;
}

.ro-card-badge--pack {
  background: var(--ro-blue);
  color: #fff;
}

.ro-card-badge--online-only {
  background: var(--ro-brown);
  color: #fff;
}

/* ── Overlay hover (Voir le produit) ── */
.ro-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(57, 45, 36, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-miniature:hover .ro-card-overlay {
  opacity: 1;
}

.ro-card-view {
  background: var(--ro-brown);
  color: var(--ro-white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
  letter-spacing: 0.02em;
}

.product-miniature:hover .ro-card-view {
  transform: translateY(0);
}

/* ── Infos produit ── */
.ro-card-info {
  padding: 14px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* ── Nom du produit ── */
.ro-card-name {
  font-family: var(--ro-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ro-brown);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.45em;
}

/* ── Prix ── */
.ro-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.ro-card-price-current {
  font-family: var(--ro-font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ro-brown);
}

.ro-card-price-old {
  font-size: 0.85rem;
  color: var(--ro-gray);
  text-decoration: line-through;
  font-weight: 400;
}

/* ── Quick view (bouton JS caché) ── */
.ro-card-quickview {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Commentaires / étoiles ── */
.ro-card-info .star-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.star-content .star {
  color: var(--ro-gold);
  font-size: 14px;
}

.star-content .star-off {
  color: var(--ro-border);
}

/* ══════════════════════════════════════════════
   COMPATIBILITÉ — Ancien markup PrestaShop
   Pour les modules qui n'utilisent pas encore
   le nouveau template (fallback)
   ══════════════════════════════════════════════ */

/* Si un module utilise encore l'ancien markup avec .thumbnail-container */
.product-miniature .thumbnail-container {
  position: relative;
  overflow: hidden;
  background: #fafaf8;
  aspect-ratio: 1;
}

.product-miniature .thumbnail-container a.product-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
}

.product-miniature .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.product-miniature:hover .thumbnail-container img {
  transform: scale(1.05);
}

/* Ancien markup : highlighted-informations */
.product-miniature .highlighted-informations {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: rgba(57, 45, 36, 0.05);
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-miniature:hover .highlighted-informations {
  opacity: 1;
}

.highlighted-informations .quick-view {
  background: var(--ro-brown);
  color: var(--ro-white);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--ro-transition-fast);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.highlighted-informations .quick-view:hover {
  background: var(--ro-brown-light);
}

/* Ancien markup : product-description */
.product-miniature .product-description {
  padding: 14px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-miniature .product-title,
.product-miniature .product-title a {
  font-family: var(--ro-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ro-brown);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  min-height: 2.45em;
}

.product-miniature .product-title a:hover {
  color: var(--ro-orange);
}

.product-miniature .product-price-and-shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-miniature .price {
  font-family: var(--ro-font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ro-brown);
}

.product-miniature .regular-price {
  font-size: 0.85rem;
  color: var(--ro-gray);
  text-decoration: line-through;
  font-weight: 400;
}

.product-miniature .discount-percentage,
.product-miniature .discount-amount {
  display: none; /* Déjà affiché via le badge, pas besoin en double */
}

/* Ancien markup : product-flags */
.product-miniature .product-flags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-miniature .product-flag,
.product-flags li {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  line-height: 1.3;
}

.product-flag.new {
  background: var(--ro-gold);
  color: var(--ro-brown);
}

.product-flag.on-sale,
.product-flag.discount {
  background: #e74c3c;
  color: #fff;
}

.product-flag.pack {
  background: var(--ro-blue);
  color: #fff;
}

.product-flag.online-only {
  background: var(--ro-brown);
  color: #fff;
}

/* Variantes couleur (ancien markup) */
.product-miniature .variant-links {
  display: none; /* Masqué dans le nouveau design épuré */
}

/* ══════════════════════════════════════════════
   SECTION PRODUITS — Page d'accueil
   Titres de section (hérité du thème)
   ══════════════════════════════════════════════ */

.featured-products .products-section-title,
.ro-section-products-title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-3xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  text-align: center;
  margin-bottom: var(--ro-space-2xl);
  position: relative;
  padding-bottom: var(--ro-space-md);
}

.featured-products .products-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ro-gold), var(--ro-orange));
  border-radius: var(--ro-radius-full);
}

.featured-products .all-product-link {
  text-align: center;
  margin-top: var(--ro-space-xl);
}

.featured-products .all-product-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ro-orange);
  font-weight: var(--ro-font-semibold);
  font-size: var(--ro-text-base);
  transition: all var(--ro-transition-base);
}

.featured-products .all-product-link a::after {
  content: '→';
  transition: transform var(--ro-transition-base);
}

.featured-products .all-product-link a:hover {
  color: var(--ro-orange-dark);
}

.featured-products .all-product-link a:hover::after {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   TRI & PAGINATION — Pages catégories
   ══════════════════════════════════════════════ */

.products-sort-order {
  margin-bottom: var(--ro-space-lg);
}

.products-sort-order .select-title {
  border: 1px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  padding: var(--ro-space-sm) var(--ro-space-md);
  background-color: var(--ro-white);
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
}

/* Pagination */
.pagination {
  margin-top: var(--ro-space-2xl);
}

.pagination .page-list {
  display: flex;
  justify-content: center;
  gap: var(--ro-space-xs);
  list-style: none;
  padding: 0;
}

.pagination .page-list li a,
.pagination .page-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--ro-space-sm);
  border: 1px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
  transition: all var(--ro-transition-fast);
}

.pagination .page-list li.current a,
.pagination .page-list li.current span {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
  color: var(--ro-brown);
  font-weight: var(--ro-font-bold);
}

.pagination .page-list li a:hover {
  background-color: var(--ro-beige);
  border-color: var(--ro-beige-dark);
}


/* === _category-header.css === */
/* ============================================
   ROUTE D'OR — Catégorie Header v3.0
   Bannière, titre H1, compteur, description
   ============================================ */

.ro-category {
  padding-bottom: var(--ro-space-2xl);
}

/* ── Bannière image catégorie ── */
.ro-category__header {
  margin-bottom: var(--ro-space-xl);
}

.ro-category__banner {
  position: relative;
  border-radius: var(--ro-radius-lg);
  overflow: hidden;
  margin-bottom: var(--ro-space-lg);
  max-height: 220px;
}

.ro-category__banner-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ro-category__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(57, 45, 36, 0.15) 100%);
  pointer-events: none;
}

/* ── Contenu header ── */
.ro-category__header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Titre H1 catégorie (SEO) ── */
.ro-category__title {
  font-family: var(--ro-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  margin: 0 0 0.5rem;
  line-height: var(--ro-leading-tight);
  position: relative;
  padding-bottom: var(--ro-space-md);
}

.ro-category__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ro-gold), var(--ro-orange));
  border-radius: var(--ro-radius-full);
}

/* ── Compteur produits ── */
.ro-category__count {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
  margin: var(--ro-space-sm) 0 0;
  font-weight: var(--ro-font-regular);
}

.ro-category__count-number {
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
}

/* ── Description catégorie (SEO) ── */
.ro-category__description {
  margin-top: var(--ro-space-md);
  position: relative;
}

.ro-category__description-text {
  font-size: var(--ro-text-sm);
  line-height: var(--ro-leading-normal);
  color: var(--ro-text-muted);
  max-height: 4.8em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ro-category__description-text p {
  margin: 0 0 0.5em;
}

.ro-category__description-text p:last-child {
  margin-bottom: 0;
}

.ro-category__description.is-expanded .ro-category__description-text {
  max-height: 1000px;
}

.ro-category__description-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--ro-orange);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  cursor: pointer;
  padding: var(--ro-space-xs) 0;
  margin-top: var(--ro-space-xs);
  transition: color var(--ro-transition-fast);
}

.ro-category__description-toggle:hover {
  color: var(--ro-orange-dark);
}

.ro-category__description-toggle .material-icons {
  font-size: 18px;
  transition: transform var(--ro-transition-base);
}

.ro-category__description-toggle-less {
  display: none;
}

.ro-category__description.is-expanded .ro-category__description-toggle-more {
  display: none;
}

.ro-category__description.is-expanded .ro-category__description-toggle-less {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════════════
   DESCRIPTION SEO — Bas de page catégorie
   ══════════════════════════════════════════════ */

.ro-category__seo-description {
  margin-top: var(--ro-space-3xl);
  padding-top: var(--ro-space-2xl);
  border-top: 1px solid var(--ro-border-light);
}

.ro-category__seo-description-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ro-category__seo-title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  margin: 0 0 var(--ro-space-md);
  line-height: var(--ro-leading-tight);
}

.ro-category__seo-text {
  font-size: var(--ro-text-sm);
  line-height: 1.7;
  color: var(--ro-text-muted);
  max-height: 12em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ro-category__seo-text p {
  margin: 0 0 0.75em;
}

.ro-category__seo-text p:last-child {
  margin-bottom: 0;
}

.ro-category__seo-text h2,
.ro-category__seo-text h3 {
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin: 1em 0 0.5em;
}

.ro-category__seo-text ul,
.ro-category__seo-text ol {
  padding-left: 1.5em;
  margin: 0.5em 0;
}

.ro-category__seo-text li {
  margin-bottom: 0.25em;
}

.ro-category__seo-text a {
  color: var(--ro-orange);
  text-decoration: underline;
}

.ro-category__seo-text a:hover {
  color: var(--ro-brown);
}

.ro-category__seo-description.is-expanded .ro-category__seo-text {
  max-height: 5000px;
}

.ro-category__seo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--ro-orange);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  cursor: pointer;
  padding: var(--ro-space-xs) 0;
  margin-top: var(--ro-space-sm);
  transition: color var(--ro-transition-fast);
}

.ro-category__seo-toggle:hover {
  color: var(--ro-orange-dark);
}

.ro-category__seo-toggle .material-icons {
  font-size: 18px;
  transition: transform var(--ro-transition-base);
}

.ro-category__seo-toggle-less {
  display: none;
}

.ro-category__seo-description.is-expanded .ro-category__seo-toggle-more {
  display: none;
}

.ro-category__seo-description.is-expanded .ro-category__seo-toggle-less {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ro-category__header {
    margin-bottom: var(--ro-space-lg);
  }
  .ro-category__banner {
    border-radius: var(--ro-radius-md);
    max-height: 160px;
    margin-bottom: var(--ro-space-md);
  }
  .ro-category__banner-img {
    height: 160px;
  }
  .ro-category__title {
    font-size: 1.5rem;
  }
  .ro-category__seo-description {
    margin-top: var(--ro-space-2xl);
    padding-top: var(--ro-space-lg);
  }
  .ro-category__seo-title {
    font-size: var(--ro-text-lg);
  }
  .ro-category__seo-text {
    max-height: 8em;
  }
}

@media (max-width: 576px) {
  .ro-category__header-content {
    text-align: left;
    padding: 0 var(--ro-space-sm);
  }
  .ro-category__title {
    font-size: 1.25rem;
    text-align: left;
  }
  .ro-category__title::after {
    left: 0;
    transform: none;
  }
  .ro-category__description-text {
    max-height: 3.2em;
  }
  .ro-category__seo-description {
    margin-top: var(--ro-space-xl);
    padding-top: var(--ro-space-md);
  }
  .ro-category__seo-title {
    font-size: var(--ro-text-base);
  }
  .ro-category__seo-text {
    max-height: 6em;
    font-size: var(--ro-text-xs);
  }
}

@media (max-width: 375px) {
  .ro-category__title {
    font-size: 1.15rem;
  }
}


/* === _category-subcats.css === */
/* ============================================
   ROUTE D'OR — Sous-catégories v4.0
   Cartes visuelles avec grandes images de catégorie
   Design e-commerce moderne
   ============================================ */

.ro-subcats {
  margin-bottom: var(--ro-space-xl);
}

.ro-subcats__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin: 0 0 var(--ro-space-md);
}

/* ── Grille des cartes ── */
.ro-subcats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

/* ── Carte sous-catégorie ── */
.ro-subcats__card {
  display: flex;
  flex-direction: column;
  background: var(--ro-white);
  border-radius: var(--ro-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ro-brown);
  transition: all 0.3s ease;
  border: 1px solid var(--ro-border-light);
  position: relative;
}

.ro-subcats__card:hover {
  border-color: var(--ro-gold);
  box-shadow: 0 8px 24px rgba(57, 45, 36, 0.12);
  transform: translateY(-3px);
  color: var(--ro-brown);
  text-decoration: none;
}

/* ── Wrapper image ── */
.ro-subcats__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ro-beige-light);
}

.ro-subcats__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ro-subcats__card:hover .ro-subcats__img {
  transform: scale(1.06);
}

/* ── Placeholder quand pas d'image ── */
.ro-subcats__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ro-beige-light) 0%, var(--ro-beige) 100%);
}

.ro-subcats__placeholder .material-icons {
  font-size: 36px;
  color: var(--ro-orange);
  opacity: 0.4;
}

/* ── Label (nom + flèche) ── */
.ro-subcats__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  gap: 6px;
  background: var(--ro-white);
}

.ro-subcats__name {
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-semibold);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--ro-brown);
}

.ro-subcats__arrow {
  font-size: 20px;
  color: var(--ro-gray);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ro-subcats__card:hover .ro-subcats__arrow {
  color: var(--ro-orange);
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Tablette (max 992px)
   ══════════════════════════════════════════════ */

@media (max-width: 992px) {
  .ro-subcats__grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile (max 768px)
   Slider horizontal pour les sous-catégories
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .ro-subcats {
    margin-bottom: var(--ro-space-md);
    /* Permettre au slider de déborder du container */
    overflow: visible;
  }

  .ro-subcats__title {
    font-size: var(--ro-text-base);
    margin-bottom: var(--ro-space-sm);
  }

  /* ── Slider horizontal ── */
  .ro-subcats__grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 10px;
    padding-bottom: 8px;

    /* Masquer la scrollbar tout en gardant le scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .ro-subcats__grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  /* ── Cards en largeur fixe pour le slider ── */
  .ro-subcats__card {
    flex: 0 0 120px;
    min-width: 120px;
    scroll-snap-align: start;
  }

  .ro-subcats__label {
    padding: 6px 8px;
  }

  .ro-subcats__name {
    font-size: var(--ro-text-xs);
    font-weight: var(--ro-font-medium);
    /* Afficher le nom complet sans troncature */
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    word-break: break-word;
  }

  .ro-subcats__arrow {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Petit mobile (max 576px)
   Cards plus petites
   ══════════════════════════════════════════════ */

@media (max-width: 576px) {
  .ro-subcats__card {
    flex: 0 0 105px;
    min-width: 105px;
  }

  .ro-subcats__label {
    padding: 5px 7px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Très petit mobile (max 375px)
   ══════════════════════════════════════════════ */

@media (max-width: 375px) {
  .ro-subcats__card {
    flex: 0 0 95px;
    min-width: 95px;
  }
}


/* === _category-toolbar.css === */
/* ============================================
   ROUTE D'OR — Catégorie Toolbar v3.0
   Barre de tri, filtres, compteur
   ============================================ */

.ro-toolbar {
  margin-bottom: var(--ro-space-lg);
  padding: var(--ro-space-md) var(--ro-space-lg);
  background: var(--ro-white);
  border: 1px solid var(--ro-border-light);
  border-radius: var(--ro-radius-lg);
  overflow: visible;
}

.ro-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ro-space-md);
}

/* ── Compteur ── */
.ro-toolbar__count {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
  white-space: nowrap;
}

.ro-toolbar__count-number {
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
}

/* ── Tri ── */
.ro-toolbar__sort {
  margin-left: auto;
}

.ro-sort {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
}

.ro-sort__label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
  white-space: nowrap;
  margin: 0;
  font-weight: var(--ro-font-regular);
}

.ro-sort__label .material-icons {
  font-size: 18px;
}

.ro-sort__dropdown {
  position: relative;
}

.ro-sort__button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ro-beige-light);
  border: 1px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  font-size: var(--ro-text-sm);
  color: var(--ro-brown);
  font-weight: var(--ro-font-medium);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
  white-space: nowrap;
}

.ro-sort__button:hover {
  border-color: var(--ro-gold);
  background: var(--ro-beige);
}

.ro-sort__arrow {
  font-size: 18px;
  color: var(--ro-gray);
  transition: transform var(--ro-transition-fast);
}

.ro-sort__button[aria-expanded="true"] .ro-sort__arrow {
  transform: rotate(180deg);
}

.ro-sort__menu {
  min-width: 220px;
  max-width: calc(100vw - 2rem);
  padding: var(--ro-space-xs) 0;
  border: 1px solid var(--ro-border-light);
  border-radius: var(--ro-radius-md);
  box-shadow: var(--ro-shadow-lg);
  background: var(--ro-white);
  position: absolute;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  margin-top: 4px;
  z-index: 1000;
}

.ro-sort__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: var(--ro-text-sm);
  color: var(--ro-brown);
  text-decoration: none;
  transition: background var(--ro-transition-fast);
}

.ro-sort__option:hover {
  background: var(--ro-beige-light);
  color: var(--ro-brown);
  text-decoration: none;
}

.ro-sort__option.current {
  font-weight: var(--ro-font-semibold);
  color: var(--ro-orange);
  background: rgba(226, 143, 59, 0.05);
}

.ro-sort__option .material-icons {
  font-size: 16px;
  color: var(--ro-orange);
}

/* ── Bouton filtre mobile ── */
.ro-toolbar__filter-btn {
  display: none;
}

.ro-filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--ro-brown);
  color: var(--ro-white);
  border: none;
  border-radius: var(--ro-radius-md);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  cursor: pointer;
  transition: background var(--ro-transition-fast);
}

.ro-filter-toggle:hover {
  background: var(--ro-brown-light);
}

.ro-filter-toggle .material-icons {
  font-size: 18px;
}

/* ── Indicateur pagination mobile ── */
.ro-toolbar__showing {
  display: none;
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
  text-align: center;
  margin-top: var(--ro-space-sm);
}

/* ── Filtres actifs ── */
.ro-category__active-filters {
  margin-bottom: var(--ro-space-md);
}

.ro-category__active-filters:empty {
  display: none;
}

#js-active-search-filters .active-filter-title {
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-sm);
}

#js-active-search-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#js-active-search-filters li {
  display: inline-flex;
}

#js-active-search-filters li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--ro-beige-light);
  border: 1px solid var(--ro-border);
  border-radius: var(--ro-radius-full);
  font-size: var(--ro-text-xs);
  color: var(--ro-brown);
  text-decoration: none;
  transition: all var(--ro-transition-fast);
}

#js-active-search-filters li a:hover {
  background: #fde8e8;
  border-color: #e74c3c;
  color: #e74c3c;
}

#js-active-search-filters li a .material-icons,
#js-active-search-filters li a i {
  font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .ro-toolbar__filter-btn {
    display: block;
  }
  .ro-toolbar__showing {
    display: block;
  }
}

@media (max-width: 768px) {
  .ro-toolbar {
    padding: var(--ro-space-sm) var(--ro-space-md);
    border-radius: var(--ro-radius-md);
  }
  .ro-toolbar__count {
    display: none;
  }
  .ro-sort__label {
    display: none;
  }
}

@media (max-width: 576px) {
  .ro-toolbar {
    padding: var(--ro-space-sm);
    margin-bottom: var(--ro-space-md);
    border-radius: var(--ro-radius-md);
  }
  .ro-toolbar__inner {
    gap: var(--ro-space-sm);
  }
  .ro-sort__button {
    padding: 6px 10px;
    font-size: var(--ro-text-xs);
  }
  .ro-sort__menu {
    min-width: 200px;
    width: max-content;
    max-width: calc(100vw - 2rem);
  }
  .ro-filter-toggle {
    padding: 6px 12px;
    font-size: var(--ro-text-xs);
  }
}


/* === _category-grid.css === */
/* ============================================
   ROUTE D'OR — Catégorie Grille v4.0
   Grille 4 colonnes desktop — cards même dimension
   Layout Amazon-style mobile (50% image / 50% infos)
   Pagination, état vide, retour en haut
   ============================================ */

/* ══════════════════════════════════════════════
   GRILLE — 4 colonnes desktop, cards même hauteur
   ══════════════════════════════════════════════ */

#products .products.ro-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  /* Reset du display:flex du thème parent classic (#products .products = spécificité 110) */
  flex-wrap: initial;
  justify-content: initial;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Forcer toutes les cards à la même hauteur dans la grille */
.ro-category__grid > .js-product {
  display: flex;
  flex-direction: column;
  /* Largeur identique pour toutes les cards — pas de dépendance au contenu */
  min-width: 0;
  width: 100%;
}

.ro-category__grid > .js-product > .product-miniature {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* Empêcher le contenu de forcer une largeur différente */
  min-width: 0;
  width: 100%;
}

.ro-category__grid .ro-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Image : ratio fixe pour uniformité */
.ro-category__grid .ro-card-img {
  aspect-ratio: 1;
  flex-shrink: 0;
}

/* Info : prend tout l'espace restant, pousse le prix vers le bas */
.ro-category__grid .ro-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* La marque prend une hauteur fixe même si absente (via min-height) */
.ro-category__grid .ro-card-brand {
  min-height: 1.2em;
}

/* Le nom prend une hauteur fixe (2 lignes max) */
.ro-category__grid .ro-card-name {
  min-height: 2.8em;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

/* Le prix est poussé vers le bas */
.ro-category__grid .ro-card-price {
  margin-top: auto;
  padding-top: 6px;
}

/* Stock et livraison : hauteur fixe pour alignement parfait */
.ro-category__grid .ro-card-stock {
  justify-content: center;
  min-height: 1.3em;
}

.ro-category__grid .ro-card-delivery {
  justify-content: center;
  min-height: 1.3em;
}

/* ══════════════════════════════════════════════
   PAGINATION BOTTOM
   ══════════════════════════════════════════════ */

.ro-pagination-bottom {
  text-align: center;
  padding-top: var(--ro-space-md);
}

.ro-pagination-bottom__summary {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
}

/* ══════════════════════════════════════════════
   BOUTON RETOUR EN HAUT (mobile)
   ══════════════════════════════════════════════ */

.ro-category__back-top {
  display: none;
  text-align: center;
  margin-top: var(--ro-space-xl);
}

.ro-category__back-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--ro-beige);
  color: var(--ro-brown);
  border-radius: var(--ro-radius-full);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
  text-decoration: none;
  transition: all var(--ro-transition-base);
}

.ro-category__back-top-btn:hover {
  background: var(--ro-beige-dark);
  color: var(--ro-brown);
  text-decoration: none;
}

.ro-category__back-top-btn .material-icons {
  font-size: 18px;
}

/* ══════════════════════════════════════════════
   ÉTAT VIDE — Aucun produit
   ══════════════════════════════════════════════ */

.ro-category__empty {
  text-align: center;
  padding: var(--ro-space-4xl) var(--ro-space-xl);
}

.ro-category__empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--ro-space-lg);
  background: var(--ro-beige-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ro-category__empty-icon .material-icons {
  font-size: 36px;
  color: var(--ro-gray);
}

.ro-category__empty-title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  color: var(--ro-brown);
  margin: 0 0 var(--ro-space-sm);
}

.ro-category__empty-text {
  font-size: var(--ro-text-base);
  color: var(--ro-gray);
  max-width: 400px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Tablette (max 1200px) → 3 colonnes
   ══════════════════════════════════════════════ */

@media (max-width: 1200px) {
  #products .products.ro-category__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile paysage (max 768px) → 2 colonnes
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {
  #products .products.ro-category__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .ro-category__back-top {
    display: block;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile portrait (max 576px)
   LAYOUT AMAZON-STYLE : 50% image / 50% infos
   Toutes les cards ont la même largeur (100%)
   ══════════════════════════════════════════════ */

@media (max-width: 576px) {

  /* ── Grille : 1 colonne, toutes les cards même largeur ── */
  #products .products.ro-category__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ── Carte produit : bordures liste ── */
  .ro-category__grid .product-miniature {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--ro-border-light);
    border-top: none;
  }

  .ro-category__grid .product-miniature:first-child {
    border-top: 1px solid var(--ro-border-light);
  }

  .ro-category__grid .product-miniature:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--ro-border-light);
    background: var(--ro-beige-light);
  }

  /* ── Lien carte : direction row (horizontal) ── */
  .ro-category__grid .ro-card-link {
    flex-direction: row;
    align-items: stretch;
    padding: 12px;
    gap: 14px;
  }

  /* ── Image : 50% à gauche, taille fixe ── */
  .ro-category__grid .ro-card-img {
    width: 50%;
    min-width: 0;
    max-width: 50%;
    aspect-ratio: 1;
    border-radius: var(--ro-radius-md);
    flex-shrink: 0;
    background: var(--ro-white);
    border: 1px solid var(--ro-border-light);
  }

  .ro-category__grid .ro-card-img img {
    padding: 6px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Masquer overlay en mobile horizontal */
  .ro-category__grid .ro-card-overlay {
    display: none;
  }

  /* Badges : repositionnés */
  .ro-category__grid .ro-card-badges {
    top: 4px;
    left: 4px;
  }

  .ro-category__grid .ro-card-badge {
    font-size: 9px;
    padding: 2px 5px;
  }

  /* ── Infos : 50% à droite, alignées à gauche ── */
  .ro-category__grid .ro-card-info {
    text-align: left;
    padding: 0;
    flex: 1;
    min-width: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  /* Marque : pas de min-height en mobile */
  .ro-category__grid .ro-card-brand {
    min-height: auto;
  }

  /* ── Nom produit ── */
  .ro-category__grid .ro-card-name {
    font-size: 0.875rem;
    font-weight: var(--ro-font-medium);
    -webkit-line-clamp: 2;
    margin-bottom: 2px;
    min-height: auto;
  }

  /* ── Prix : aligné à gauche ── */
  .ro-category__grid .ro-card-price {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 0;
  }

  .ro-category__grid .ro-card-price-current {
    font-size: 1.1rem;
    font-weight: var(--ro-font-bold);
    color: var(--ro-brown);
  }

  .ro-category__grid .ro-card-price-old {
    font-size: 0.8rem;
  }

  /* ── Stock et livraison : alignés à gauche ── */
  .ro-category__grid .ro-card-stock,
  .ro-category__grid .ro-card-delivery {
    justify-content: flex-start;
  }

  /* ── Avis ── */
  .ro-category__grid .ro-card-info .star-content {
    justify-content: flex-start;
  }

  /* ── Pagination mobile ── */
  .pagination {
    flex-direction: column;
    gap: var(--ro-space-sm);
  }

  .pagination .col-md-4 {
    text-align: center;
    font-size: var(--ro-text-xs);
  }

  .pagination .page-list li a,
  .pagination .page-list li span {
    min-width: 34px;
    height: 34px;
    font-size: var(--ro-text-xs);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Très petit mobile (max 375px)
   ══════════════════════════════════════════════ */

@media (max-width: 375px) {
  .ro-category__grid .ro-card-link {
    padding: 10px;
    gap: 10px;
  }

  .ro-category__grid .ro-card-name {
    font-size: 0.8rem;
  }

  .ro-category__grid .ro-card-price-current {
    font-size: 1rem;
  }
}


/* === _category-cards.css === */
/* ============================================
   ROUTE D'OR — Cards produit extras v4.0
   Marque, badge promo, stock warning, livraison
   Styles additionnels pour les miniatures produit
   Affichés sur TOUTES les tailles d'écran
   ============================================ */

/* ══════════════════════════════════════════════
   MARQUE (Brand)
   ══════════════════════════════════════════════ */

.ro-card-brand {
  display: block;
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  line-height: 1.2;
}

/* ══════════════════════════════════════════════
   BADGE PROMO (pourcentage de réduction)
   ══════════════════════════════════════════════ */

.ro-card-discount {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--ro-font-bold);
  color: var(--ro-white);
  background: #e74c3c;
  padding: 1px 6px;
  border-radius: var(--ro-radius-sm);
  line-height: 1.4;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════
   STOCK WARNING (< 5 articles)
   Toujours visible (desktop + mobile)
   ══════════════════════════════════════════════ */

.ro-card-stock {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--ro-text-xs);
  line-height: 1.3;
  margin-top: 4px;
}

.ro-card-stock .material-icons {
  font-size: 14px;
  flex-shrink: 0;
}

.ro-card-stock--low {
  color: #e67e22;
  font-weight: var(--ro-font-medium);
}

/* ══════════════════════════════════════════════
   ESTIMATION LIVRAISON
   Toujours visible (desktop + mobile)
   ══════════════════════════════════════════════ */

.ro-card-delivery {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--ro-text-xs);
  color: #27ae60;
  line-height: 1.3;
  margin-top: 2px;
}

.ro-card-delivery .material-icons {
  font-size: 14px;
  flex-shrink: 0;
}

.ro-card-delivery--out {
  color: var(--ro-gray);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile (max 576px)
   Ajustements taille dans le layout horizontal
   ══════════════════════════════════════════════ */

@media (max-width: 576px) {
  /* Marque en mobile */
  .ro-category__grid .ro-card-brand {
    font-size: 0.65rem;
    margin-bottom: 1px;
  }

  /* Stock warning en mobile */
  .ro-category__grid .ro-card-stock {
    font-size: 0.7rem;
    margin-top: 3px;
  }

  .ro-category__grid .ro-card-stock .material-icons {
    font-size: 12px;
  }

  /* Livraison en mobile */
  .ro-category__grid .ro-card-delivery {
    font-size: 0.7rem;
  }

  .ro-category__grid .ro-card-delivery .material-icons {
    font-size: 12px;
  }

  /* Discount badge en mobile */
  .ro-category__grid .ro-card-discount {
    font-size: 0.65rem;
    padding: 1px 4px;
  }
}

@media (max-width: 375px) {
  .ro-category__grid .ro-card-brand {
    font-size: 0.6rem;
  }

  .ro-category__grid .ro-card-stock,
  .ro-category__grid .ro-card-delivery {
    font-size: 0.65rem;
  }
}


/* === _categories.css === */
/* ============================================
   ROUTE D'OR — Catégories v2.0
   Bento grid + Pills + Sidebar
   ============================================ */

/* ══════════════════════════════════════════
   BENTO GRID — Grille catégories principale
   Layout : 1 grande carte à gauche + 4 petites à droite
   ══════════════════════════════════════════ */
.ro-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--ro-space-md);
}

/* Grande carte (occupe 2 lignes à gauche) */
.ro-cat-card--large {
  grid-row: 1 / 3;
}

/* ── Card catégorie ── */
.ro-cat-card {
  position: relative;
  border-radius: var(--ro-radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  text-decoration: none;
  color: var(--ro-white);
  transition: all var(--ro-transition-base);
}

.ro-cat-card--large {
  min-height: 460px;
}

/* Background image */
.ro-cat-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ro-cat-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ro-transition-slow);
}

.ro-cat-card:hover .ro-cat-card__bg img {
  transform: scale(1.06);
}

/* Overlay gradient */
.ro-cat-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(57, 45, 36, 0.85) 0%,
    rgba(57, 45, 36, 0.3) 50%,
    rgba(57, 45, 36, 0.05) 100%
  );
  transition: background var(--ro-transition-base);
}

.ro-cat-card:hover .ro-cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(57, 45, 36, 0.9) 0%,
    rgba(57, 45, 36, 0.4) 50%,
    rgba(57, 45, 36, 0.1) 100%
  );
}

/* Contenu */
.ro-cat-card__content {
  position: relative;
  z-index: 3;
  padding: var(--ro-space-lg);
  width: 100%;
}

.ro-cat-card--large .ro-cat-card__content {
  padding: var(--ro-space-xl);
}

.ro-cat-card__icon {
  display: inline-block;
  font-size: var(--ro-text-xl);
  margin-bottom: var(--ro-space-sm);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ro-cat-card--large .ro-cat-card__icon {
  font-size: var(--ro-text-2xl);
}

.ro-cat-card__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-md);
  font-weight: var(--ro-font-bold);
  color: var(--ro-white);
  margin-bottom: 4px;
  line-height: var(--ro-leading-tight);
}

.ro-cat-card--large .ro-cat-card__title {
  font-size: var(--ro-text-xl);
  margin-bottom: var(--ro-space-xs);
}

.ro-cat-card__desc {
  font-size: var(--ro-text-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--ro-space-sm);
}

.ro-cat-card--large .ro-cat-card__desc {
  font-size: var(--ro-text-sm);
}

.ro-cat-card__link {
  display: inline-flex;
  align-items: center;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-gold);
  transition: all var(--ro-transition-fast);
}

.ro-cat-card:hover .ro-cat-card__link {
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   PILLS — Catégories secondaires (row style)
   ══════════════════════════════════════════ */
.ro-cat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ro-space-md);
}

.ro-cat-pill {
  display: flex;
  align-items: center;
  gap: var(--ro-space-md);
  padding: var(--ro-space-md) var(--ro-space-lg);
  background-color: var(--ro-white);
  border: 1px solid var(--ro-border-light);
  border-radius: var(--ro-radius-xl);
  text-decoration: none;
  color: var(--ro-brown);
  transition: all var(--ro-transition-base);
}

.ro-cat-pill:hover {
  border-color: var(--ro-gold);
  box-shadow: var(--ro-shadow-md);
  transform: translateY(-2px);
}

/* Image pill */
.ro-cat-pill__img {
  width: 64px;
  height: 64px;
  border-radius: var(--ro-radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--ro-beige-light);
}

.ro-cat-pill__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ro-cat-pill__img--gift {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ro-gold), var(--ro-orange));
}

.ro-cat-pill__img--gift span {
  font-size: var(--ro-text-2xl);
}

/* Info pill */
.ro-cat-pill__info {
  flex: 1;
  min-width: 0;
}

.ro-cat-pill__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: 2px;
}

.ro-cat-pill__desc {
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
}

/* Arrow pill */
.ro-cat-pill__arrow {
  flex-shrink: 0;
  color: var(--ro-gray);
  transition: all var(--ro-transition-fast);
}

.ro-cat-pill:hover .ro-cat-pill__arrow {
  color: var(--ro-gold);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   CATÉGORIE PAGE — Header catégorie
   ══════════════════════════════════════════ */
#category #content-wrapper .block-category {
  margin-bottom: var(--ro-space-xl);
  padding: var(--ro-space-xl);
  background-color: var(--ro-white);
  border-radius: var(--ro-radius-lg);
  border: 1px solid var(--ro-border-light);
}

#category .block-category .category-cover {
  border-radius: var(--ro-radius-md);
  overflow: hidden;
  margin-bottom: var(--ro-space-md);
}

#category .block-category .category-cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#category .block-category h1 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-3xl);
  color: var(--ro-heading);
  margin-bottom: var(--ro-space-sm);
}

#category .block-category #category-description {
  font-size: var(--ro-text-base);
  color: var(--ro-text-muted);
  line-height: var(--ro-leading-relaxed);
}

/* ══════════════════════════════════════════
   SIDEBAR — Catégories colonne gauche
   ══════════════════════════════════════════ */
#left-column .block-categories,
.block-categories {
  background-color: var(--ro-white);
  border-radius: var(--ro-radius-lg);
  border: 1px solid var(--ro-border-light);
  overflow: hidden;
}

.block-categories .category-top-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-categories .category-top-menu li {
  border-bottom: 1px solid var(--ro-border-light);
}

.block-categories .category-top-menu li:last-child {
  border-bottom: none;
}

.block-categories .category-top-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--ro-space-sm) var(--ro-space-md);
  color: var(--ro-brown);
  font-size: var(--ro-text-sm);
  transition: all var(--ro-transition-fast);
  text-decoration: none;
}

.block-categories .category-top-menu li a:hover {
  background-color: var(--ro-beige-light);
  color: var(--ro-orange);
  padding-left: calc(var(--ro-space-md) + 4px);
}

.block-categories .category-top-menu li.current a {
  background-color: var(--ro-beige);
  color: var(--ro-orange);
  font-weight: var(--ro-font-semibold);
}

/* Titre bloc sidebar */
#left-column .block-categories .h6,
#left-column .facet-title,
.block-categories .h6 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  padding: var(--ro-space-md);
  margin: 0;
  background-color: var(--ro-beige-light);
  border-bottom: 2px solid var(--ro-gold);
}

/* ══════════════════════════════════════════
   FILTRES — Faceted search
   ══════════════════════════════════════════ */
#search_filters {
  background-color: var(--ro-white);
  border-radius: var(--ro-radius-lg);
  border: 1px solid var(--ro-border-light);
  overflow: hidden;
}

#search_filters .facet {
  border-bottom: 1px solid var(--ro-border-light);
  padding: var(--ro-space-md);
}

#search_filters .facet:last-child {
  border-bottom: none;
}

#search_filters .facet .facet-title {
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-sm);
  cursor: pointer;
}

#search_filters .facet .facet-label {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: 4px 0;
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
  cursor: pointer;
}

#search_filters .facet .facet-label .custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-sm);
  flex-shrink: 0;
  transition: all var(--ro-transition-fast);
}

#search_filters .facet .facet-label:hover .custom-checkbox {
  border-color: var(--ro-gold);
}

#search_filters .facet .facet-label .magnitude {
  color: var(--ro-gray);
  font-size: var(--ro-text-xs);
  margin-left: auto;
}

/* ══════════════════════════════════════════
   SOUS-CATÉGORIES
   ══════════════════════════════════════════ */
.subcategories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--ro-space-md);
  margin-bottom: var(--ro-space-xl);
}

.subcategories .subcategory-image {
  text-align: center;
  padding: var(--ro-space-md);
  background-color: var(--ro-white);
  border-radius: var(--ro-radius-md);
  border: 1px solid var(--ro-border-light);
  transition: all var(--ro-transition-base);
}

.subcategories .subcategory-image:hover {
  border-color: var(--ro-gold);
  box-shadow: var(--ro-shadow-sm);
}

.subcategories .subcategory-image img {
  max-width: 80px;
  margin: 0 auto var(--ro-space-sm);
}

.subcategories .subcategory-name {
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
  color: var(--ro-brown);
}


/* === _product-page.css === */
/* ============================================
   ROUTE D'OR — Page Produit v2.0
   Design moderne e-commerce premium
   
   Architecture modulaire :
   - _product-page.css (ce fichier) : layout, galerie, sections, produits associés
   - _product-info.css : infos produit (prix, badges, desc, CTA, stock, réassurance)
   - _product-sections.css : sections empilées (détails, description, pièces jointes)
   ============================================ */

/* ══════════════════════════════════════════════
   RESET — Override du thème parent classic
   ══════════════════════════════════════════════ */

#main.ro-product-page {
  max-width: var(--ro-container-xl);
  margin: 0 auto;
  padding: 0 var(--ro-container-padding);
}

#main.ro-product-page .product-container {
  all: unset;
}

/* Masquer le bouton wishlist et le partage social */
#main.ro-product-page .wishlist-button-add,
#main.ro-product-page .social-sharing {
  display: none !important;
}

/* ══════════════════════════════════════════════
   RETOUR CATÉGORIE (mobile uniquement)
   ══════════════════════════════════════════════ */

.ro-product__back {
  display: none; /* Visible uniquement sur mobile */
}

/* ══════════════════════════════════════════════
   MOBILE HEADER (titre au-dessus de l'image — mobile uniquement)
   ══════════════════════════════════════════════ */

.ro-product__mobile-header {
  display: none; /* Visible uniquement sur mobile */
}

/* ══════════════════════════════════════════════
   DESKTOP HEADER (dans la colonne info — desktop uniquement)
   ══════════════════════════════════════════════ */

.ro-product__desktop-header {
  display: block;
}

/* Cacher le H1 dupliqué desktop pour les lecteurs d'écran */
.ro-product__title--desktop {
  /* Pas de display:none pour garder le SEO, mais on le masque visuellement sur mobile */
}

/* ══════════════════════════════════════════════
   LAYOUT PRINCIPAL — Galerie + Infos (2 colonnes)
   ══════════════════════════════════════════════ */

.ro-product__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ro-space-2xl);
  align-items: start;
  margin-bottom: var(--ro-space-2xl);
  padding-top: var(--ro-space-lg);
}

/* ══════════════════════════════════════════════
   GALERIE IMAGES
   ══════════════════════════════════════════════ */

/* Override du parent classic : #product #content { max-width: 452px; margin: 0 auto } */
#main.ro-product-page #content {
  position: static;
  max-width: none;
  margin: 0;
}

.ro-product__gallery {
  position: sticky;
  top: calc(var(--ro-header-height) + var(--ro-space-lg));
}

#main.ro-product-page .images-container {
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-md);
}

#main.ro-product-page .product-cover {
  position: relative;
  background: var(--ro-white);
  border-radius: var(--ro-radius-lg);
  border: 1px solid var(--ro-border-light);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main.ro-product-page .product-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--ro-space-lg);
  transition: transform 0.4s ease;
}

#main.ro-product-page .product-cover:hover img {
  transform: scale(1.08);
}

/* Icône zoom */
#main.ro-product-page .product-cover .layer {
  position: absolute;
  bottom: var(--ro-space-md);
  right: var(--ro-space-md);
  width: 40px;
  height: 40px;
  background: var(--ro-white);
  border-radius: var(--ro-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ro-shadow-md);
  opacity: 0;
  transition: opacity var(--ro-transition-base);
  cursor: pointer;
}

#main.ro-product-page .product-cover:hover .layer {
  opacity: 1;
}

#main.ro-product-page .product-cover .layer .zoom-in {
  font-size: 20px;
  color: var(--ro-brown);
}

/* Thumbnails */
#main.ro-product-page .js-qv-mask {
  overflow: hidden;
  position: relative;
}

#main.ro-product-page .product-images {
  display: flex;
  gap: var(--ro-space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ro-beige-dark) transparent;
}

#main.ro-product-page .product-images::-webkit-scrollbar {
  height: 4px;
}

#main.ro-product-page .product-images::-webkit-scrollbar-track {
  background: transparent;
}

#main.ro-product-page .product-images::-webkit-scrollbar-thumb {
  background: var(--ro-beige-dark);
  border-radius: var(--ro-radius-full);
}

#main.ro-product-page .thumb-container {
  flex: 0 0 72px;
  scroll-snap-align: start;
}

#main.ro-product-page .thumb-container .thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 4px;
  border: 2px solid var(--ro-border-light);
  border-radius: var(--ro-radius-md);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
  background: var(--ro-white);
}

#main.ro-product-page .thumb-container .thumb:hover {
  border-color: var(--ro-orange);
}

#main.ro-product-page .thumb-container .thumb.selected,
#main.ro-product-page .thumb-container .thumb.js-thumb-selected {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 2px rgba(255, 211, 4, 0.3);
}

#main.ro-product-page .scroll-box-arrows {
  display: none;
}

/* Badges sur la galerie (flags produit du parent) */
#main.ro-product-page .product-flags {
  position: absolute;
  top: var(--ro-space-md);
  left: var(--ro-space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#main.ro-product-page .product-flag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--ro-radius-sm);
  line-height: 1.3;
}

#main.ro-product-page .product-flag.new {
  background: var(--ro-gold);
  color: var(--ro-brown);
}

#main.ro-product-page .product-flag.on-sale,
#main.ro-product-page .product-flag.discount {
  background: #e74c3c;
  color: #fff;
}

#main.ro-product-page .product-flag.pack {
  background: var(--ro-blue);
  color: #fff;
}

/* ══════════════════════════════════════════════
   PRODUITS ASSOCIÉS
   ══════════════════════════════════════════════ */

.ro-product__accessories {
  margin-top: var(--ro-space-2xl);
  padding-top: var(--ro-space-2xl);
  border-top: 1px solid var(--ro-border-light);
}

.ro-product__section-title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
  margin-bottom: var(--ro-space-xl);
  padding-bottom: var(--ro-space-md);
  border-bottom: 2px solid var(--ro-border-light);
  position: relative;
}

.ro-product__section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--ro-gold), var(--ro-orange));
  border-radius: var(--ro-radius-full);
}

.ro-product__section-title svg {
  flex-shrink: 0;
  color: var(--ro-gold-dark);
}

.ro-product__accessories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-space-lg);
}

/* ══════════════════════════════════════════════
   MODAL IMAGES (ZOOM)
   ══════════════════════════════════════════════ */

#main.ro-product-page .modal.js-product-images-modal .modal-content {
  border-radius: var(--ro-radius-lg);
  border: none;
  box-shadow: var(--ro-shadow-2xl);
}

#main.ro-product-page .modal .product-cover-modal {
  max-height: 70vh;
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   "AUTRES PRODUITS DANS LA MÊME CATÉGORIE" (ps_categoryproducts)
   Structure : section.ro-products-section > .ro-products-section__header > h2 + .ro-products-section__grid > cards
   ══════════════════════════════════════════════ */

#main.ro-product-page .ro-products-section--category {
  margin-top: var(--ro-space-2xl);
  padding-top: var(--ro-space-2xl);
  border-top: 1px solid var(--ro-border-light);
}

#main.ro-product-page .ro-products-section--category .ro-products-section__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  margin-bottom: var(--ro-space-xl);
  padding-bottom: var(--ro-space-md);
  border-bottom: 2px solid var(--ro-border-light);
  position: relative;
  width: 100%;
  text-align: center;
}

#main.ro-product-page .ro-products-section--category .ro-products-section__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--ro-gold), var(--ro-orange));
  border-radius: var(--ro-radius-full);
}

#main.ro-product-page .ro-products-section--category .ro-products-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-space-lg);
}

/* ══════════════════════════════════════════════
   HOOKS & FOOTER PRODUIT
   ══════════════════════════════════════════════ */

#main.ro-product-page .page-footer {
  margin-top: var(--ro-space-2xl);
}

#main.ro-product-page #block-reassurance {
  margin-top: var(--ro-space-xl);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Page produit
   ══════════════════════════════════════════════ */

@media (max-width: 992px) {
  .ro-product__top {
    grid-template-columns: 1fr;
    gap: var(--ro-space-lg);
  }

  .ro-product__gallery {
    position: static;
  }

  .ro-product__accessories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ro-space-md);
  }
}

@media (max-width: 768px) {
  /* Réduire le padding du content-wrapper sur mobile pour la page produit */
  #product #content-wrapper {
    padding-top: var(--ro-space-xs);
    padding-bottom: var(--ro-space-xs);
  }

  #main.ro-product-page {
    padding: 0 var(--ro-space-md);
  }

  /* ── Retour catégorie visible ── */
  .ro-product__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: var(--ro-space-xs) 0;
    margin-bottom: 0;
    font-size: var(--ro-text-sm);
    font-weight: var(--ro-font-medium);
    color: var(--ro-orange);
    text-decoration: none;
    transition: color var(--ro-transition-fast);
  }

  .ro-product__back:hover {
    color: var(--ro-orange-dark);
  }

  .ro-product__back svg {
    flex-shrink: 0;
  }

  /* ── Mobile header visible, desktop header caché ── */
  .ro-product__mobile-header {
    display: block;
    margin-bottom: var(--ro-space-xs);
  }

  .ro-product__desktop-header {
    display: none;
  }

  /* ── Layout ── */
  .ro-product__top {
    grid-template-columns: 1fr;
    gap: var(--ro-space-xs);
    padding-top: 0;
    margin-bottom: var(--ro-space-lg);
  }

  /* ── Galerie ── */
  #main.ro-product-page .product-cover {
    border-radius: var(--ro-radius-md);
  }

  #main.ro-product-page .product-cover img {
    padding: var(--ro-space-md);
  }

  #main.ro-product-page .product-cover .layer {
    opacity: 0.7;
    width: 36px;
    height: 36px;
    bottom: var(--ro-space-sm);
    right: var(--ro-space-sm);
  }

  #main.ro-product-page .images-container {
    gap: var(--ro-space-sm);
  }

  #main.ro-product-page .thumb-container {
    flex: 0 0 60px;
  }

  #main.ro-product-page .thumb-container .thumb {
    width: 60px;
    height: 60px;
  }

  /* ── Produits associés — slide horizontal ── */
  .ro-product__accessories {
    margin-top: var(--ro-space-xl);
    padding-top: var(--ro-space-lg);
    overflow: hidden;
  }

  .ro-product__accessories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--ro-space-sm);
    padding-bottom: var(--ro-space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ro-product__accessories-grid::-webkit-scrollbar {
    display: none;
  }

  .ro-product__accessories-grid > * {
    flex: 0 0 45%;
    scroll-snap-align: start;
    min-width: 0;
  }

  .ro-product__section-title {
    font-size: var(--ro-text-lg);
    margin-bottom: var(--ro-space-md);
    padding-bottom: var(--ro-space-sm);
  }

  .ro-product__section-title svg {
    width: 20px;
    height: 20px;
  }

  /* ── "Autres produits dans la même catégorie" (ps_categoryproducts) — slide horizontal ── */
  #main.ro-product-page .ro-products-section--category .ro-products-section__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--ro-space-sm);
    padding-bottom: var(--ro-space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #main.ro-product-page .ro-products-section--category .ro-products-section__grid::-webkit-scrollbar {
    display: none;
  }

  #main.ro-product-page .ro-products-section--category .ro-products-section__grid > * {
    flex: 0 0 45%;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* ── Footer ── */
  #main.ro-product-page .page-footer {
    margin-top: var(--ro-space-lg);
  }

  #main.ro-product-page #block-reassurance {
    margin-top: var(--ro-space-md);
  }
}

@media (max-width: 576px) {
  #main.ro-product-page {
    padding: 0 var(--ro-space-sm);
  }

  .ro-product__top {
    gap: var(--ro-space-sm);
    margin-bottom: var(--ro-space-md);
  }

  #main.ro-product-page .product-cover img {
    padding: var(--ro-space-sm);
  }

  #main.ro-product-page .thumb-container {
    flex: 0 0 52px;
  }

  #main.ro-product-page .thumb-container .thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--ro-radius-sm);
  }

  /* Slide horizontal — items plus larges */
  .ro-product__accessories-grid > * {
    flex: 0 0 55%;
  }

  /* ps_categoryproducts — items plus larges */
  #main.ro-product-page .ro-products-section--category .ro-products-section__grid > * {
    flex: 0 0 55%;
  }

  .ro-product__section-title {
    font-size: var(--ro-text-md);
    gap: var(--ro-space-xs);
  }

  .ro-product__section-title svg {
    width: 18px;
    height: 18px;
  }

  #main.ro-product-page .ro-products-section--category .ro-products-section__title {
    font-size: var(--ro-text-md);
  }
}

@media (max-width: 375px) {
  #main.ro-product-page {
    padding: 0 var(--ro-space-xs);
  }

  #main.ro-product-page .thumb-container {
    flex: 0 0 46px;
  }

  #main.ro-product-page .thumb-container .thumb {
    width: 46px;
    height: 46px;
  }

  .ro-product__accessories-grid > * {
    flex: 0 0 65%;
  }

  /* ps_categoryproducts — items encore plus larges */
  #main.ro-product-page .ro-products-section--category .ro-products-section__grid > * {
    flex: 0 0 65%;
  }
}


/* === _product-info.css === */
/* ============================================
   ROUTE D'OR — Page Produit : Infos v2.0
   Colonne droite : badges, marque, titre, prix,
   description courte, déclinaisons, CTA, stock inline,
   livraison, réassurance
   ============================================ */

/* ══════════════════════════════════════════════
   COLONNE INFO — Container
   ══════════════════════════════════════════════ */

.ro-product__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ══════════════════════════════════════════════
   BADGES (flags) — Stylisés
   ══════════════════════════════════════════════ */

.ro-product__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--ro-space-sm);
}

.ro-product__flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 20px;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ro-product__flag--new {
  background: linear-gradient(135deg, var(--ro-gold), #ffe066);
  color: var(--ro-brown);
}

.ro-product__flag--discount,
.ro-product__flag--on-sale {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
}

.ro-product__flag--pack {
  background: linear-gradient(135deg, var(--ro-blue), #1e5080);
  color: #fff;
}

.ro-product__flag--online-only {
  background: linear-gradient(135deg, var(--ro-brown), #5a4a3a);
  color: #fff;
}

/* ══════════════════════════════════════════════
   MARQUE
   ══════════════════════════════════════════════ */

.ro-product__brand {
  margin-bottom: var(--ro-space-xs);
}

.ro-product__brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ro-orange);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--ro-transition-fast);
}

.ro-product__brand a:hover {
  color: var(--ro-orange-dark);
}

.ro-product__brand-logo {
  max-height: 30px;
  width: auto;
}

/* ══════════════════════════════════════════════
   TITRE H1
   ══════════════════════════════════════════════ */

.ro-product__title {
  font-family: var(--ro-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  line-height: var(--ro-leading-tight);
  margin: 0 0 var(--ro-space-sm);
}

/* ══════════════════════════════════════════════
   META (référence + condition)
   ══════════════════════════════════════════════ */

.ro-product__meta {
  display: flex;
  align-items: center;
  gap: var(--ro-space-md);
  margin-bottom: var(--ro-space-md);
}

.ro-product__ref {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
  font-family: var(--ro-font-mono);
}

.ro-product__condition {
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   PRIX — Override du parent classic
   ══════════════════════════════════════════════ */

#main.ro-product-page .product-prices {
  margin-top: 0;
  margin-bottom: var(--ro-space-md);
  padding: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--ro-space-xs);
}

#main.ro-product-page .product-price {
  margin: 0;
}

#main.ro-product-page .current-price {
  display: flex;
  align-items: baseline;
  gap: var(--ro-space-sm);
  flex-wrap: wrap;
}

#main.ro-product-page .current-price-value {
  font-family: var(--ro-font-body);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  line-height: 1;
}

#main.ro-product-page .product-discount {
  margin-bottom: var(--ro-space-xs);
}

#main.ro-product-page .product-discount .regular-price {
  font-size: var(--ro-text-lg);
  color: var(--ro-gray);
  text-decoration: line-through;
  font-weight: var(--ro-font-regular);
}

#main.ro-product-page .discount {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-bold);
  padding: 3px 8px;
  border-radius: var(--ro-radius-sm);
  text-transform: uppercase;
}

#main.ro-product-page .product-unit-price {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
  margin-top: 2px;
}

#main.ro-product-page .tax-shipping-delivery-label {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
  margin-top: 0;
  white-space: nowrap;
}

#main.ro-product-page .delivery-information {
  color: var(--ro-text-muted);
}

/* ══════════════════════════════════════════════
   DESCRIPTION COURTE
   ══════════════════════════════════════════════ */

.ro-product__short-desc {
  font-size: var(--ro-text-base);
  color: var(--ro-text);
  line-height: var(--ro-leading-normal);
  margin-bottom: var(--ro-space-sm);
}

/* Version mobile : cachée par défaut, visible sur mobile */
.ro-product__short-desc--mobile {
  display: none;
}

/* Version desktop : visible par défaut */
.ro-product__short-desc--desktop {
  display: block;
}

.ro-product__more-link--desktop {
  display: inline-flex;
}

.ro-product__short-desc p {
  margin: 0 0 var(--ro-space-sm);
}

.ro-product__short-desc p:last-child {
  margin-bottom: 0;
}

.ro-product__short-desc ul,
.ro-product__short-desc ol {
  padding-left: 1.25em;
  margin: var(--ro-space-sm) 0;
}

.ro-product__short-desc li {
  margin-bottom: 4px;
}

.ro-product__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ro-orange);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  text-decoration: none;
  transition: all var(--ro-transition-base);
  margin-top: var(--ro-space-xs);
  padding: 4px 0;
}

.ro-product__more-link:hover {
  color: var(--ro-orange-dark);
  gap: 8px;
}

.ro-product__more-link svg {
  transition: transform var(--ro-transition-base);
}

.ro-product__more-link:hover svg {
  transform: translateY(2px);
}

/* ══════════════════════════════════════════════
   SÉPARATEUR
   ══════════════════════════════════════════════ */

.ro-product__divider {
  border: none;
  border-top: 1px solid var(--ro-border-light);
  margin: var(--ro-space-md) 0;
}

/* ══════════════════════════════════════════════
   DÉCLINAISONS — Override du parent
   ══════════════════════════════════════════════ */

#main.ro-product-page .product-variants {
  margin-bottom: var(--ro-space-md);
}

#main.ro-product-page .product-variants-item {
  margin-bottom: var(--ro-space-md);
}

#main.ro-product-page .product-variants-item .control-label {
  display: block;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-xs);
}

#main.ro-product-page .product-variants-item select {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 48px;
  padding: 10px 40px 10px 14px;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  font-size: var(--ro-text-base);
  color: var(--ro-brown);
  background: var(--ro-white);
  transition: border-color var(--ro-transition-fast);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23392d24' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}

#main.ro-product-page .product-variants-item select:focus {
  border-color: var(--ro-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 211, 4, 0.2);
}

#main.ro-product-page .product-variants-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#main.ro-product-page .product-variants-item .input-container {
  float: none;
}

#main.ro-product-page .product-variants-item .color {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: var(--ro-radius-full);
  border: 2px solid var(--ro-border);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
}

#main.ro-product-page .product-variants-item .color:hover {
  border-color: var(--ro-orange);
  transform: scale(1.1);
}

#main.ro-product-page .product-variants-item .input-color:checked + .color {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 3px rgba(255, 211, 4, 0.3);
}

#main.ro-product-page .product-variants-item .radio-label {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--ro-border);
  border-radius: var(--ro-radius-md);
  font-size: var(--ro-text-sm);
  color: var(--ro-brown);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
}

#main.ro-product-page .product-variants-item .radio-label:hover {
  border-color: var(--ro-orange);
}

#main.ro-product-page .product-variants-item .input-radio:checked + .radio-label {
  border-color: var(--ro-gold);
  background: rgba(255, 211, 4, 0.08);
  font-weight: var(--ro-font-semibold);
}

#main.ro-product-page .product-variants-item .input-radio,
#main.ro-product-page .product-variants-item .input-color {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* ══════════════════════════════════════════════
   QUANTITÉ + BOUTON AJOUT PANIER + STOCK INLINE
   ══════════════════════════════════════════════ */

#main.ro-product-page .product-add-to-cart {
  margin-bottom: var(--ro-space-md);
}

#main.ro-product-page .product-add-to-cart .control-label {
  display: block;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-xs);
}

/* Row : quantité + stock sur une ligne, bouton en dessous */
.ro-product__qty-row {
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-sm);
}

.ro-product__qty-stock {
  display: flex;
  align-items: center;
  gap: var(--ro-space-md);
}

#main.ro-product-page .product-quantity {
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-xs);
}

#main.ro-product-page .product-quantity .qty {
  flex: 0 0 auto;
  margin-bottom: 0;
  margin-right: 0;
}

#main.ro-product-page .product-quantity .add {
  flex: 1;
  margin-bottom: 0;
}

#main.ro-product-page .product-quantity .qty input {
  width: 70px;
  height: 48px;
  text-align: center;
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  border: 1px solid var(--ro-border-light);
  border-radius: var(--ro-radius-md);
  background: var(--ro-gray-light, #f8f8f8);
  transition: all var(--ro-transition-fast);
  -moz-appearance: textfield;
}

#main.ro-product-page .product-quantity .qty input::-webkit-inner-spin-button,
#main.ro-product-page .product-quantity .qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#main.ro-product-page .product-quantity .qty input:focus {
  border-color: var(--ro-gold);
  background: var(--ro-white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 211, 4, 0.15);
}
.ro-product__stock-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-medium);
}

.ro-product__stock-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--ro-radius-full);
  flex-shrink: 0;
}

.ro-product__stock-dot--available {
  background: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.ro-product__stock-dot--last {
  background: var(--ro-orange);
  box-shadow: 0 0 0 3px rgba(226, 143, 59, 0.2);
}

.ro-product__stock-dot--unavailable {
  background: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.ro-product__stock-text {
  color: var(--ro-text-muted);
  font-size: var(--ro-text-sm);
}

/* Bouton Ajouter au panier */

#main.ro-product-page .product-quantity .add .add-to-cart {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ro-gold);
  color: var(--ro-brown);
  border: none;
  border-radius: var(--ro-radius-md);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-bold);
  cursor: pointer;
  transition: all var(--ro-transition-base);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#main.ro-product-page .product-quantity .add .add-to-cart:hover {
  background: var(--ro-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--ro-shadow-md);
}

#main.ro-product-page .product-quantity .add .add-to-cart:active {
  transform: translateY(0);
}

#main.ro-product-page .product-quantity .add .add-to-cart:disabled {
  background: var(--ro-beige-dark);
  color: var(--ro-gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#main.ro-product-page .product-quantity .add .add-to-cart .shopping-cart {
  font-size: 20px;
}

/* Ancien #product-availability caché (remplacé par stock inline) */
#main.ro-product-page #product-availability:not(.ro-product__stock-inline) {
  display: none;
}

/* Quantité minimale */
#main.ro-product-page .product-minimal-quantity {
  font-size: var(--ro-text-sm);
  color: var(--ro-orange);
  margin-top: var(--ro-space-xs);
}

/* Remises volume */
#main.ro-product-page .product-discounts {
  margin-bottom: var(--ro-space-md);
}

#main.ro-product-page .product-discounts .product-discounts-title {
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-xs);
}

#main.ro-product-page .product-discounts table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--ro-text-sm);
}

#main.ro-product-page .product-discounts table th,
#main.ro-product-page .product-discounts table td {
  padding: 8px 12px;
  border: 1px solid var(--ro-border-light);
  text-align: center;
}

#main.ro-product-page .product-discounts table th {
  background: var(--ro-beige-light);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

/* Infos additionnelles — réduire l'espace quand le contenu est masqué */
#main.ro-product-page .product-additional-info {
  margin-top: 0;
}

/* Quantité minimale vide — pas d'espace */
#main.ro-product-page .product-minimal-quantity:empty,
#main.ro-product-page .product-minimal-quantity:blank {
  display: none;
}

#main.ro-product-page .product-minimal-quantity {
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════════
   ESTIMATION LIVRAISON
   ══════════════════════════════════════════════ */

.ro-product__delivery {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
  padding: var(--ro-space-md);
  background: #f0faf0;
  border: 1px solid #c8e6c9;
  border-radius: var(--ro-radius-md);
  margin-top: var(--ro-space-md);
}

.ro-product__delivery svg {
  flex-shrink: 0;
  color: #27ae60;
}

.ro-product__delivery span {
  font-size: var(--ro-text-sm);
  color: var(--ro-brown);
  line-height: 1.4;
}

.ro-product__delivery strong {
  color: #27ae60;
}

/* ══════════════════════════════════════════════
   RÉASSURANCE INLINE
   ══════════════════════════════════════════════ */

.ro-product__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ro-space-md);
  margin-top: var(--ro-space-lg);
  padding-top: var(--ro-space-md);
  border-top: 1px solid var(--ro-border-light);
}

.ro-product__reassurance-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ro-text-sm);
  color: var(--ro-text-muted);
}

.ro-product__reassurance-item svg {
  flex-shrink: 0;
  color: var(--ro-gold-dark);
}

/* ══════════════════════════════════════════════
   PACK
   ══════════════════════════════════════════════ */

.ro-product__pack {
  margin-bottom: var(--ro-space-md);
  padding: var(--ro-space-md);
  background: var(--ro-beige-light);
  border-radius: var(--ro-radius-md);
}

.ro-product__pack-title {
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-sm);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Infos produit
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

  .ro-product__info {
    padding-top: var(--ro-space-sm);
  }

  /* Badges */
  .ro-product__flags {
    margin-bottom: var(--ro-space-xs);
  }

  .ro-product__flag {
    padding: 4px 12px;
    font-size: 10px;
  }

  /* Marque */
  .ro-product__brand {
    margin-bottom: 2px;
  }

  .ro-product__brand a {
    font-size: var(--ro-text-xs);
  }

  .ro-product__brand-logo {
    max-height: 24px;
  }

  /* Titre */
  .ro-product__title {
    font-size: 1.4rem;
    margin-bottom: var(--ro-space-xs);
  }

  /* Meta */
  .ro-product__meta {
    gap: var(--ro-space-sm);
    margin-bottom: var(--ro-space-sm);
  }

  .ro-product__ref {
    font-size: var(--ro-text-xs);
  }

  /* Prix */
  #main.ro-product-page .product-prices {
    margin-bottom: var(--ro-space-sm);
  }

  #main.ro-product-page .current-price-value {
    font-size: 1.75rem;
  }

  #main.ro-product-page .product-discount .regular-price {
    font-size: var(--ro-text-base);
  }

  /* Description courte : sur mobile, cacher la version desktop et afficher la version mobile */
  .ro-product__short-desc--desktop,
  .ro-product__more-link--desktop {
    display: none !important;
  }

  .ro-product__short-desc--mobile {
    display: block;
    margin-top: var(--ro-space-lg);
    padding-top: var(--ro-space-md);
    border-top: 1px solid var(--ro-border-light);
  }

  .ro-product__short-desc {
    font-size: var(--ro-text-sm);
    margin-bottom: var(--ro-space-xs);
  }

  .ro-product__more-link {
    font-size: var(--ro-text-sm);
    padding: var(--ro-space-xs) 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Séparateur */
  .ro-product__divider {
    margin: var(--ro-space-sm) 0;
  }

  /* Déclinaisons */
  #main.ro-product-page .product-variants {
    margin-bottom: var(--ro-space-sm);
  }

  #main.ro-product-page .product-variants-item {
    margin-bottom: var(--ro-space-sm);
  }

  #main.ro-product-page .product-variants-item select {
    max-width: 100%;
    padding: 12px 40px 12px 14px;
    font-size: var(--ro-text-base);
    min-height: 48px;
  }

  #main.ro-product-page .product-variants-item .color {
    width: 36px;
    height: 36px;
  }

  #main.ro-product-page .product-variants-item .radio-label {
    padding: 10px 16px;
    font-size: var(--ro-text-sm);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Quantité + Stock + Bouton */
  #main.ro-product-page .product-add-to-cart {
    margin-bottom: 0;
  }

  .ro-product__qty-stock {
    gap: var(--ro-space-sm);
  }

  #main.ro-product-page .product-quantity .qty input {
    width: 70px;
    height: 50px;
    min-height: 50px;
    font-size: var(--ro-text-md);
  }

  #main.ro-product-page .product-quantity .add .add-to-cart {
    height: 52px;
    min-height: 52px;
    font-size: var(--ro-text-base);
  }

  .ro-product__stock-inline {
    font-size: var(--ro-text-xs);
  }

  /* Livraison */
  .ro-product__delivery {
    padding: var(--ro-space-sm) var(--ro-space-md);
    margin-top: var(--ro-space-sm);
  }

  .ro-product__delivery svg {
    width: 18px;
    height: 18px;
  }

  .ro-product__delivery span {
    font-size: var(--ro-text-xs);
  }

  /* Réassurance */
  .ro-product__reassurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ro-space-sm);
    margin-top: var(--ro-space-md);
    padding-top: var(--ro-space-sm);
  }

  .ro-product__reassurance-item {
    font-size: var(--ro-text-xs);
    gap: 5px;
  }

  .ro-product__reassurance-item svg {
    width: 16px;
    height: 16px;
  }

  /* Pack */
  .ro-product__pack {
    padding: var(--ro-space-sm);
  }

  /* Remises volume */
  #main.ro-product-page .product-discounts table th,
  #main.ro-product-page .product-discounts table td {
    padding: 6px 8px;
    font-size: var(--ro-text-xs);
  }

  #main.ro-product-page .product-additional-info {
    margin-top: var(--ro-space-xs);
  }
}

@media (max-width: 576px) {

  .ro-product__title {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  #main.ro-product-page .current-price-value {
    font-size: 1.5rem;
  }

  #main.ro-product-page .discount {
    font-size: 10px;
    padding: 2px 6px;
  }

  .ro-product__short-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Bouton pleine largeur */
  #main.ro-product-page .product-quantity .add .add-to-cart {
    height: 52px;
    font-size: var(--ro-text-base);
    letter-spacing: 0.02em;
  }

  /* Livraison */
  .ro-product__delivery {
    padding: var(--ro-space-sm);
    border-radius: var(--ro-radius-sm);
  }

  /* Réassurance */
  .ro-product__reassurance {
    gap: var(--ro-space-xs) var(--ro-space-sm);
  }

  .ro-product__reassurance-item {
    font-size: 11px;
    gap: 4px;
  }

  .ro-product__reassurance-item svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 375px) {

  .ro-product__title {
    font-size: 1.1rem;
  }

  #main.ro-product-page .current-price-value {
    font-size: 1.35rem;
  }

  .ro-product__reassurance {
    grid-template-columns: 1fr;
    gap: var(--ro-space-xs);
  }

  .ro-product__reassurance-item {
    font-size: var(--ro-text-xs);
  }

  .ro-product__reassurance-item svg {
    width: 15px;
    height: 15px;
  }
}


/* === _product-sections.css === */
/* ============================================
   ROUTE D'OR — Page Produit : Sections v2.0
   Sections empilées (plus de tabs) :
   Détails du produit, Description, Pièces jointes
   ============================================ */

/* ══════════════════════════════════════════════
   SECTION CONTAINER
   ══════════════════════════════════════════════ */

.ro-product__section {
  margin-top: var(--ro-space-2xl);
  padding-top: var(--ro-space-xl);
  border-top: 1px solid var(--ro-border-light);
}

.ro-product__section-content {
  padding: var(--ro-space-md) 0 0;
}

/* ══════════════════════════════════════════════
   DESCRIPTION LONGUE
   ══════════════════════════════════════════════ */

.ro-product__description {
  font-size: var(--ro-text-base);
  color: var(--ro-text);
  line-height: var(--ro-leading-relaxed);
}

.ro-product__description h2 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  margin: var(--ro-space-xl) 0 var(--ro-space-md);
}

.ro-product__description h2:first-child {
  margin-top: 0;
}

.ro-product__description h3 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-heading);
  margin: var(--ro-space-lg) 0 var(--ro-space-sm);
}

.ro-product__description h4 {
  font-size: var(--ro-text-md);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-heading);
  margin: var(--ro-space-md) 0 var(--ro-space-sm);
}

.ro-product__description p {
  margin: 0 0 var(--ro-space-md);
}

.ro-product__description p:last-child {
  margin-bottom: 0;
}

.ro-product__description ul,
.ro-product__description ol {
  padding-left: 1.5em;
  margin: var(--ro-space-md) 0;
}

.ro-product__description li {
  margin-bottom: var(--ro-space-xs);
  line-height: var(--ro-leading-normal);
}

.ro-product__description img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ro-radius-md);
  margin: var(--ro-space-md) 0;
}

.ro-product__description table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ro-space-md) 0;
  font-size: var(--ro-text-sm);
}

.ro-product__description table th,
.ro-product__description table td {
  padding: 10px 14px;
  border: 1px solid var(--ro-border-light);
  text-align: left;
}

.ro-product__description table th {
  background: var(--ro-beige-light);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

.ro-product__description table tr:nth-child(even) td {
  background: var(--ro-gray-light);
}

.ro-product__description a {
  color: var(--ro-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ro-transition-fast);
}

.ro-product__description a:hover {
  color: var(--ro-orange-dark);
}

.ro-product__description blockquote {
  border-left: 4px solid var(--ro-gold);
  padding: var(--ro-space-md) var(--ro-space-lg);
  margin: var(--ro-space-lg) 0;
  background: var(--ro-beige-light);
  border-radius: 0 var(--ro-radius-md) var(--ro-radius-md) 0;
  font-style: italic;
  color: var(--ro-text-muted);
}

.ro-product__description strong {
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

/* ══════════════════════════════════════════════
   CARACTÉRISTIQUES (features table)
   ══════════════════════════════════════════════ */

.ro-product__features {
  margin-bottom: var(--ro-space-lg);
}

.ro-product__features-table {
  width: 100%;
  border-collapse: collapse;
}

.ro-product__features-table tr {
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-product__features-table tr:last-child {
  border-bottom: none;
}

.ro-product__features-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  background: var(--ro-beige-light);
  width: 35%;
  vertical-align: top;
}

.ro-product__features-table td {
  padding: 12px 16px;
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
  line-height: var(--ro-leading-normal);
}

.ro-product__features-table tr:nth-child(even) th {
  background: var(--ro-gray-light);
}

.ro-product__features-table tr:nth-child(even) td {
  background: rgba(245, 245, 245, 0.5);
}

/* ══════════════════════════════════════════════
   DÉTAILS PRODUIT (grille label/value)
   ══════════════════════════════════════════════ */

.ro-product__details-grid {
  display: flex;
  flex-direction: column;
}

.ro-product__detail-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-product__detail-row:last-child {
  border-bottom: none;
}

.ro-product__detail-label {
  flex: 0 0 35%;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

.ro-product__detail-value {
  flex: 1;
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
}

.ro-product__detail-value a {
  color: var(--ro-orange);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

.ro-product__detail-value a:hover {
  color: var(--ro-orange-dark);
  text-decoration: underline;
}

/* Icône inline dans les labels (poids, dimensions) */
.ro-product__detail-icon {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--ro-orange);
  flex-shrink: 0;
}

/* Hint (L × P × H) */
.ro-product__detail-hint {
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
  font-weight: var(--ro-font-normal);
  margin-left: 4px;
}

/* Séparateur entre features et details */
.ro-product__features + .ro-product__details-grid {
  padding-top: var(--ro-space-md);
  border-top: 1px solid var(--ro-border-light);
}

/* ══════════════════════════════════════════════
   PIÈCES JOINTES
   ══════════════════════════════════════════════ */

.ro-product__attachments {
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-md);
}

.ro-product__attachment {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-space-md);
  padding: var(--ro-space-md);
  background: var(--ro-beige-light);
  border-radius: var(--ro-radius-md);
  transition: background var(--ro-transition-fast);
}

.ro-product__attachment:hover {
  background: var(--ro-beige);
}

.ro-product__attachment svg {
  flex-shrink: 0;
  color: var(--ro-orange);
  margin-top: 2px;
}

.ro-product__attachment-name {
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

.ro-product__attachment-name:hover {
  color: var(--ro-orange);
}

.ro-product__attachment-desc {
  font-size: var(--ro-text-sm);
  color: var(--ro-text-muted);
  margin: 4px 0;
}

.ro-product__attachment-size {
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
  font-family: var(--ro-font-mono);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Sections
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

  .ro-product__section {
    margin-top: var(--ro-space-lg);
    padding-top: var(--ro-space-md);
  }

  .ro-product__section-content {
    padding: var(--ro-space-sm) 0 0;
  }

  /* Description */
  .ro-product__description {
    font-size: var(--ro-text-sm);
    line-height: 1.65;
  }

  .ro-product__description h2 {
    font-size: var(--ro-text-lg);
    margin: var(--ro-space-lg) 0 var(--ro-space-sm);
  }

  .ro-product__description h3 {
    font-size: var(--ro-text-md);
    margin: var(--ro-space-md) 0 var(--ro-space-xs);
  }

  .ro-product__description h4 {
    font-size: var(--ro-text-base);
    margin: var(--ro-space-sm) 0 var(--ro-space-xs);
  }

  .ro-product__description p {
    margin: 0 0 var(--ro-space-sm);
  }

  .ro-product__description ul,
  .ro-product__description ol {
    padding-left: 1.25em;
    margin: var(--ro-space-sm) 0;
  }

  .ro-product__description img {
    margin: var(--ro-space-sm) 0;
    border-radius: var(--ro-radius-sm);
  }

  .ro-product__description table {
    font-size: var(--ro-text-xs);
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ro-product__description table th,
  .ro-product__description table td {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .ro-product__description blockquote {
    padding: var(--ro-space-sm) var(--ro-space-md);
    margin: var(--ro-space-md) 0;
  }

  /* Caractéristiques */
  .ro-product__features-table th,
  .ro-product__features-table td {
    padding: 10px 12px;
    font-size: var(--ro-text-xs);
  }

  .ro-product__features-table th {
    width: 40%;
  }

  /* Détails */
  .ro-product__detail-row {
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
  }

  .ro-product__detail-label {
    flex: none;
    font-size: var(--ro-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ro-gray);
  }

  .ro-product__detail-value {
    font-size: var(--ro-text-sm);
  }

  /* Pièces jointes */
  .ro-product__attachment {
    padding: var(--ro-space-sm);
    gap: var(--ro-space-sm);
  }

  .ro-product__attachment svg {
    width: 18px;
    height: 18px;
  }

  .ro-product__attachment-name {
    font-size: var(--ro-text-sm);
  }

  .ro-product__attachment-desc {
    font-size: var(--ro-text-xs);
  }
}

@media (max-width: 576px) {

  .ro-product__section {
    margin-top: var(--ro-space-md);
    padding-top: var(--ro-space-sm);
  }

  .ro-product__section-content {
    padding: var(--ro-space-xs) 0 0;
  }

  /* Description */
  .ro-product__description {
    font-size: 13px;
  }

  .ro-product__description h2 {
    font-size: var(--ro-text-md);
  }

  .ro-product__description h3 {
    font-size: var(--ro-text-base);
  }

  /* Caractéristiques — layout empilé */
  .ro-product__features-table,
  .ro-product__features-table thead,
  .ro-product__features-table tbody,
  .ro-product__features-table tr,
  .ro-product__features-table th,
  .ro-product__features-table td {
    display: block;
    width: 100%;
  }

  .ro-product__features-table tr {
    padding: var(--ro-space-sm) 0;
  }

  .ro-product__features-table th {
    width: 100%;
    padding: 4px 0;
    background: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ro-gray);
  }

  .ro-product__features-table td {
    padding: 2px 0 0;
    font-size: var(--ro-text-sm);
    color: var(--ro-brown);
    font-weight: var(--ro-font-medium);
  }

  .ro-product__features-table tr:nth-child(even) th,
  .ro-product__features-table tr:nth-child(even) td {
    background: none;
  }

  /* Détails */
  .ro-product__detail-row {
    padding: var(--ro-space-xs) 0;
  }

  .ro-product__detail-label {
    font-size: 11px;
  }

  .ro-product__detail-value {
    font-size: var(--ro-text-sm);
    font-weight: var(--ro-font-medium);
    color: var(--ro-brown);
  }
}

@media (max-width: 375px) {

  .ro-product__section-content {
    padding: 0;
  }
}


/* === _product-tabs.css === */
/* ============================================
   ROUTE D'OR — Page Produit : Tabs v1.0
   Système de tabs custom pour description,
   caractéristiques, détails, pièces jointes
   ============================================ */

/* ══════════════════════════════════════════════
   CONTAINER TABS
   ══════════════════════════════════════════════ */

.ro-product__tabs {
  margin-top: var(--ro-space-2xl);
  background: var(--ro-white);
  border-radius: var(--ro-radius-lg);
  border: 1px solid var(--ro-border-light);
  overflow: hidden;
}

/* ══════════════════════════════════════════════
   NAVIGATION TABS
   ══════════════════════════════════════════════ */

.ro-product__tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--ro-border-light);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ro-product__tabs-nav::-webkit-scrollbar {
  display: none;
}

.ro-product__tab-btn {
  flex: 0 0 auto;
  padding: var(--ro-space-md) var(--ro-space-xl);
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-medium);
  color: var(--ro-gray);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--ro-transition-base);
  white-space: nowrap;
  position: relative;
}

.ro-product__tab-btn:hover {
  color: var(--ro-brown);
  background: var(--ro-beige-light);
}

.ro-product__tab-btn.is-active {
  color: var(--ro-brown);
  font-weight: var(--ro-font-semibold);
  border-bottom-color: var(--ro-gold);
}

/* ══════════════════════════════════════════════
   CONTENU TABS
   ══════════════════════════════════════════════ */

.ro-product__tabs-content {
  padding: var(--ro-space-xl);
}

.ro-product__tab-panel {
  display: none;
  animation: roTabFadeIn 0.3s ease;
}

.ro-product__tab-panel.is-active {
  display: block;
}

@keyframes roTabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   TAB : DESCRIPTION LONGUE
   ══════════════════════════════════════════════ */

.ro-product__description {
  font-size: var(--ro-text-base);
  color: var(--ro-text);
  line-height: var(--ro-leading-relaxed);
}

.ro-product__description h2 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  margin: var(--ro-space-xl) 0 var(--ro-space-md);
}

.ro-product__description h3 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-heading);
  margin: var(--ro-space-lg) 0 var(--ro-space-sm);
}

.ro-product__description h4 {
  font-size: var(--ro-text-md);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-heading);
  margin: var(--ro-space-md) 0 var(--ro-space-sm);
}

.ro-product__description p {
  margin: 0 0 var(--ro-space-md);
}

.ro-product__description p:last-child {
  margin-bottom: 0;
}

.ro-product__description ul,
.ro-product__description ol {
  padding-left: 1.5em;
  margin: var(--ro-space-md) 0;
}

.ro-product__description li {
  margin-bottom: var(--ro-space-xs);
  line-height: var(--ro-leading-normal);
}

.ro-product__description img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ro-radius-md);
  margin: var(--ro-space-md) 0;
}

.ro-product__description table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ro-space-md) 0;
  font-size: var(--ro-text-sm);
}

.ro-product__description table th,
.ro-product__description table td {
  padding: 10px 14px;
  border: 1px solid var(--ro-border-light);
  text-align: left;
}

.ro-product__description table th {
  background: var(--ro-beige-light);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

.ro-product__description table tr:nth-child(even) td {
  background: var(--ro-gray-light);
}

.ro-product__description a {
  color: var(--ro-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ro-transition-fast);
}

.ro-product__description a:hover {
  color: var(--ro-orange-dark);
}

.ro-product__description blockquote {
  border-left: 4px solid var(--ro-gold);
  padding: var(--ro-space-md) var(--ro-space-lg);
  margin: var(--ro-space-lg) 0;
  background: var(--ro-beige-light);
  border-radius: 0 var(--ro-radius-md) var(--ro-radius-md) 0;
  font-style: italic;
  color: var(--ro-text-muted);
}

.ro-product__description strong {
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

/* ══════════════════════════════════════════════
   TAB : CARACTÉRISTIQUES (features)
   ══════════════════════════════════════════════ */

.ro-product__features-table {
  width: 100%;
  border-collapse: collapse;
}

.ro-product__features-table tr {
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-product__features-table tr:last-child {
  border-bottom: none;
}

.ro-product__features-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  background: var(--ro-beige-light);
  width: 35%;
  vertical-align: top;
}

.ro-product__features-table td {
  padding: 12px 16px;
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
  line-height: var(--ro-leading-normal);
}

.ro-product__features-table tr:nth-child(even) th {
  background: var(--ro-gray-light);
}

.ro-product__features-table tr:nth-child(even) td {
  background: rgba(245, 245, 245, 0.5);
}

/* ══════════════════════════════════════════════
   TAB : DÉTAILS PRODUIT
   ══════════════════════════════════════════════ */

.ro-product__details-grid {
  display: flex;
  flex-direction: column;
}

.ro-product__detail-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--ro-border-light);
}

.ro-product__detail-row:last-child {
  border-bottom: none;
}

.ro-product__detail-label {
  flex: 0 0 35%;
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
}

.ro-product__detail-value {
  flex: 1;
  font-size: var(--ro-text-sm);
  color: var(--ro-text);
}

.ro-product__detail-value a {
  color: var(--ro-orange);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

.ro-product__detail-value a:hover {
  color: var(--ro-orange-dark);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════
   TAB : PIÈCES JOINTES
   ══════════════════════════════════════════════ */

.ro-product__attachments {
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-md);
}

.ro-product__attachment {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-space-md);
  padding: var(--ro-space-md);
  background: var(--ro-beige-light);
  border-radius: var(--ro-radius-md);
  transition: background var(--ro-transition-fast);
}

.ro-product__attachment:hover {
  background: var(--ro-beige);
}

.ro-product__attachment svg {
  flex-shrink: 0;
  color: var(--ro-orange);
  margin-top: 2px;
}

.ro-product__attachment-name {
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-brown);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

.ro-product__attachment-name:hover {
  color: var(--ro-orange);
}

.ro-product__attachment-desc {
  font-size: var(--ro-text-sm);
  color: var(--ro-text-muted);
  margin: 4px 0;
}

.ro-product__attachment-size {
  font-size: var(--ro-text-xs);
  color: var(--ro-gray);
  font-family: var(--ro-font-mono);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Tabs
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Container tabs ── */
  .ro-product__tabs {
    border-radius: var(--ro-radius-md);
    margin-top: var(--ro-space-lg);
  }

  /* ── Navigation tabs — scroll horizontal ── */
  .ro-product__tabs-nav {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .ro-product__tab-btn {
    padding: var(--ro-space-sm) var(--ro-space-md);
    font-size: var(--ro-text-sm);
    scroll-snap-align: start;
    min-height: 44px;
  }

  /* ── Contenu tabs ── */
  .ro-product__tabs-content {
    padding: var(--ro-space-md);
  }

  /* ── Description longue ── */
  .ro-product__description {
    font-size: var(--ro-text-sm);
    line-height: 1.65;
  }

  .ro-product__description h2 {
    font-size: var(--ro-text-lg);
    margin: var(--ro-space-lg) 0 var(--ro-space-sm);
  }

  .ro-product__description h3 {
    font-size: var(--ro-text-md);
    margin: var(--ro-space-md) 0 var(--ro-space-xs);
  }

  .ro-product__description h4 {
    font-size: var(--ro-text-base);
    margin: var(--ro-space-sm) 0 var(--ro-space-xs);
  }

  .ro-product__description p {
    margin: 0 0 var(--ro-space-sm);
  }

  .ro-product__description ul,
  .ro-product__description ol {
    padding-left: 1.25em;
    margin: var(--ro-space-sm) 0;
  }

  .ro-product__description img {
    margin: var(--ro-space-sm) 0;
    border-radius: var(--ro-radius-sm);
  }

  .ro-product__description table {
    font-size: var(--ro-text-xs);
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ro-product__description table th,
  .ro-product__description table td {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .ro-product__description blockquote {
    padding: var(--ro-space-sm) var(--ro-space-md);
    margin: var(--ro-space-md) 0;
  }

  /* ── Caractéristiques ── */
  .ro-product__features-table th,
  .ro-product__features-table td {
    padding: 10px 12px;
    font-size: var(--ro-text-xs);
  }

  .ro-product__features-table th {
    width: 40%;
  }

  /* ── Détails produit ── */
  .ro-product__detail-row {
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
  }

  .ro-product__detail-label {
    flex: none;
    font-size: var(--ro-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ro-gray);
  }

  .ro-product__detail-value {
    font-size: var(--ro-text-sm);
  }

  /* ── Pièces jointes ── */
  .ro-product__attachment {
    padding: var(--ro-space-sm);
    gap: var(--ro-space-sm);
  }

  .ro-product__attachment svg {
    width: 18px;
    height: 18px;
  }

  .ro-product__attachment-name {
    font-size: var(--ro-text-sm);
  }

  .ro-product__attachment-desc {
    font-size: var(--ro-text-xs);
  }
}

@media (max-width: 576px) {

  /* ── Container tabs ── */
  .ro-product__tabs {
    margin-top: var(--ro-space-md);
    border-radius: var(--ro-radius-sm);
  }

  /* ── Navigation tabs — compact ── */
  .ro-product__tabs-nav {
    gap: 0;
  }

  .ro-product__tab-btn {
    padding: var(--ro-space-sm);
    font-size: var(--ro-text-xs);
    min-height: 40px;
  }

  /* ── Contenu tabs ── */
  .ro-product__tabs-content {
    padding: var(--ro-space-sm);
  }

  /* ── Description ── */
  .ro-product__description {
    font-size: 13px;
  }

  .ro-product__description h2 {
    font-size: var(--ro-text-md);
  }

  .ro-product__description h3 {
    font-size: var(--ro-text-base);
  }

  /* ── Caractéristiques — layout empilé ── */
  .ro-product__features-table,
  .ro-product__features-table thead,
  .ro-product__features-table tbody,
  .ro-product__features-table tr,
  .ro-product__features-table th,
  .ro-product__features-table td {
    display: block;
    width: 100%;
  }

  .ro-product__features-table tr {
    padding: var(--ro-space-sm) 0;
  }

  .ro-product__features-table th {
    width: 100%;
    padding: 4px 0;
    background: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ro-gray);
  }

  .ro-product__features-table td {
    padding: 2px 0 0;
    font-size: var(--ro-text-sm);
    color: var(--ro-brown);
    font-weight: var(--ro-font-medium);
  }

  .ro-product__features-table tr:nth-child(even) th,
  .ro-product__features-table tr:nth-child(even) td {
    background: none;
  }

  /* ── Détails ── */
  .ro-product__detail-row {
    padding: var(--ro-space-xs) 0;
  }

  .ro-product__detail-label {
    font-size: 11px;
  }

  .ro-product__detail-value {
    font-size: var(--ro-text-sm);
    font-weight: var(--ro-font-medium);
    color: var(--ro-brown);
  }
}

@media (max-width: 375px) {

  .ro-product__tab-btn {
    padding: 6px var(--ro-space-xs);
    font-size: 11px;
  }

  .ro-product__tabs-content {
    padding: var(--ro-space-xs);
  }
}


/* === _reassurance.css === */
/* ============================================
   ROUTE D'OR — Réassurance v2.0
   Why us cards + CTA banner + Newsletter
   Module blockreassurance overrides
   ============================================ */

/* ══════════════════════════════════════════
   POURQUOI NOUS CHOISIR — Section sombre
   ══════════════════════════════════════════ */
.ro-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ro-space-xl);
}

.ro-why__card {
  text-align: center;
  padding: var(--ro-space-xl);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ro-radius-xl);
  transition: all var(--ro-transition-base);
}

.ro-why__card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 211, 4, 0.2);
  transform: translateY(-4px);
}

.ro-why__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--ro-space-lg);
  background-color: rgba(255, 211, 4, 0.12);
  border: 1px solid rgba(255, 211, 4, 0.25);
  border-radius: var(--ro-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ro-transition-base);
}

.ro-why__icon svg {
  color: var(--ro-gold);
}

.ro-why__card:hover .ro-why__icon {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
}

.ro-why__card:hover .ro-why__icon svg {
  color: var(--ro-brown);
}

.ro-why__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-bold);
  color: var(--ro-white);
  margin-bottom: var(--ro-space-sm);
}

.ro-why__text {
  font-size: var(--ro-text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--ro-leading-relaxed);
}

/* ══════════════════════════════════════════
   CTA BANNER — Bandeau d'appel à l'action
   ══════════════════════════════════════════ */
.ro-cta-banner {
  padding: var(--ro-space-3xl) 0;
  background: linear-gradient(135deg, var(--ro-beige) 0%, var(--ro-beige-light) 100%);
  border-top: 1px solid var(--ro-border-light);
}

.ro-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ro-space-2xl);
}

.ro-cta-banner__text {
  flex: 1;
}

.ro-cta-banner__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-2xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  margin-bottom: var(--ro-space-sm);
}

.ro-cta-banner__desc {
  font-size: var(--ro-text-base);
  color: var(--ro-text-muted);
  line-height: var(--ro-leading-relaxed);
  max-width: 500px;
}

.ro-cta-banner__actions {
  display: flex;
  gap: var(--ro-space-md);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MODULE BLOCKREASSURANCE — Overrides
   (rendu par le hook displayFooterBefore)
   ══════════════════════════════════════════ */
.blockreassurance {
  padding: var(--ro-space-2xl) 0;
  background-color: var(--ro-beige-light);
  border-top: 1px solid var(--ro-border-light);
  border-bottom: 1px solid var(--ro-border-light);
}

.blockreassurance .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-space-lg);
  max-width: var(--ro-container-xl);
  margin: 0 auto;
  padding: 0 var(--ro-container-padding);
}

.blockreassurance .block-reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: none;
  padding: var(--ro-space-lg);
  gap: var(--ro-space-sm);
}

.blockreassurance .block-reassurance-item img,
.blockreassurance .block-reassurance-item svg {
  width: 40px;
  height: 40px;
  margin-bottom: var(--ro-space-xs);
}

.blockreassurance .block-reassurance-item .h6,
.blockreassurance .block-reassurance-item p {
  margin: 0;
}

.blockreassurance .block-reassurance-item .h6 {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  margin-bottom: 4px;
}

.blockreassurance .block-reassurance-item p {
  font-size: var(--ro-text-sm);
  color: var(--ro-gray);
}

/* ══════════════════════════════════════════
   NEWSLETTER — Styles déplacés dans _newsletter.css
   ══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   PREFOOTER — Container hooks
   ══════════════════════════════════════════ */
.ro-prefooter {
  background-color: var(--ro-beige-light);
}

/* ══════════════════════════════════════════
   BANDEAU "FABRIQUÉ EN FRANCE"
   ══════════════════════════════════════════ */
.ro-france-banner {
  background-color: var(--ro-blue);
  padding: var(--ro-space-md) 0;
  text-align: center;
}

.ro-france-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ro-space-md);
  color: var(--ro-white);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-semibold);
}

.ro-france-banner__flag {
  font-size: var(--ro-text-xl);
}


/* === _newsletter.css === */
/* ============================================
   ROUTE D'OR — Newsletter v3.0
   Bloc newsletter compact horizontal — displayFooterBefore
   Convention BEM : .ro-newsletter__*
   ============================================ */

/* ══════════════════════════════════════════
   CONTENEUR PRINCIPAL
   Fond beige léger, bordure subtile
   ══════════════════════════════════════════ */
.ro-newsletter {
  position: relative;
  padding: var(--ro-space-lg) 0;
  background-color: var(--ro-beige-light);
  border-top: 2px solid var(--ro-beige-dark);
  border-bottom: 1px solid var(--ro-beige-dark);
}

/* ══════════════════════════════════════════
   INNER — Layout horizontal
   ══════════════════════════════════════════ */
.ro-newsletter__inner {
  display: flex;
  align-items: center;
  gap: var(--ro-space-2xl);
  max-width: var(--ro-container-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--ro-container-padding);
}

/* ══════════════════════════════════════════
   PARTIE GAUCHE — Icône + texte
   ══════════════════════════════════════════ */
.ro-newsletter__left {
  display: flex;
  align-items: center;
  gap: var(--ro-space-md);
  flex-shrink: 0;
}

/* ── Icône enveloppe ── */
.ro-newsletter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 211, 4, 0.2) 0%, rgba(255, 211, 4, 0.08) 100%);
  border: 1px solid rgba(255, 211, 4, 0.35);
  border-radius: var(--ro-radius-full);
  color: var(--ro-brown);
  flex-shrink: 0;
  transition: all var(--ro-transition-base);
}

.ro-newsletter__icon svg {
  width: 22px;
  height: 22px;
}

.ro-newsletter:hover .ro-newsletter__icon {
  background: linear-gradient(135deg, rgba(255, 211, 4, 0.3) 0%, rgba(255, 211, 4, 0.15) 100%);
  border-color: var(--ro-gold);
  transform: scale(1.05);
}

/* ── Contenu texte ── */
.ro-newsletter__content {
  margin: 0;
}

.ro-newsletter__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-lg);
  font-weight: var(--ro-font-bold);
  color: var(--ro-brown);
  margin: 0 0 2px;
  line-height: var(--ro-leading-tight);
}

.ro-newsletter__subtitle {
  font-size: var(--ro-text-sm);
  color: var(--ro-brown-light);
  line-height: var(--ro-leading-normal);
  margin: 0;
  opacity: 0.8;
}

/* ══════════════════════════════════════════
   PARTIE DROITE — Formulaire
   ══════════════════════════════════════════ */
.ro-newsletter__right {
  flex: 1;
  min-width: 0;
}

/* ══════════════════════════════════════════
   ALERTES (succès / erreur)
   ══════════════════════════════════════════ */
.ro-newsletter__alert {
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-xs);
  padding: var(--ro-space-xs) var(--ro-space-md);
  border-radius: var(--ro-radius-full);
  font-size: var(--ro-text-xs);
  font-weight: var(--ro-font-medium);
  margin-bottom: var(--ro-space-sm);
  animation: ro-newsletter-fadeIn 0.4s ease;
}

.ro-newsletter__alert--success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.25);
  color: #28a745;
}

.ro-newsletter__alert--error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #dc3545;
}

.ro-newsletter__alert-icon {
  display: flex;
  flex-shrink: 0;
}

@keyframes ro-newsletter-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   FORMULAIRE
   ══════════════════════════════════════════ */
.ro-newsletter__form {
  margin-bottom: 0;
}

/* ── Ligne input + bouton ── */
.ro-newsletter__form-row {
  display: flex;
  gap: 0;
  background-color: var(--ro-white);
  border: 1.5px solid var(--ro-beige-dark);
  border-radius: var(--ro-radius-full);
  padding: 4px;
  transition: all var(--ro-transition-base);
}

.ro-newsletter__form-row:focus-within {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 3px rgba(255, 211, 4, 0.15);
}

/* ── Input wrapper ── */
.ro-newsletter__input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.ro-newsletter__input {
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  color: var(--ro-brown);
}

.ro-newsletter__input::placeholder {
  color: var(--ro-brown-light);
  opacity: 0.5;
}

/* ── Bouton S'abonner ── */
.ro-newsletter__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--ro-gold) 0%, var(--ro-gold-light) 100%);
  color: var(--ro-brown);
  border: none;
  border-radius: var(--ro-radius-full);
  font-family: var(--ro-font-body);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-bold);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--ro-transition-base);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ro-newsletter__btn:hover {
  background: linear-gradient(135deg, var(--ro-gold-light) 0%, var(--ro-gold) 100%);
  box-shadow: 0 2px 8px rgba(255, 211, 4, 0.35);
}

.ro-newsletter__btn:active {
  transform: scale(0.98);
}

.ro-newsletter__btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--ro-transition-fast);
}

.ro-newsletter__btn:hover .ro-newsletter__btn-arrow {
  transform: translateX(2px);
}

/* Bouton désactivé quand checkbox non cochée */
.ro-newsletter__btn[disabled],
.ro-newsletter__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   CHECKBOXES RGPD
   Style unifié pour gdprpro + psgdpr
   ══════════════════════════════════════════ */
.ro-newsletter__consent {
  margin-top: var(--ro-space-sm);
  text-align: left;
}

/* ── Checkbox gdprpro (ps-17-newsletter-checkbox) ── */
.ro-newsletter__consent .ps-17-newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-space-xs);
  margin-bottom: var(--ro-space-xs);
  cursor: pointer;
}

.ro-newsletter__consent .ps-17-newsletter-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--ro-beige-dark);
  border-radius: 3px;
  background: var(--ro-white);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
  margin-top: 1px;
  position: relative;
}

.ro-newsletter__consent .ps-17-newsletter-checkbox input[type="checkbox"]:checked {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
}

.ro-newsletter__consent .ps-17-newsletter-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 900;
  color: var(--ro-brown);
  line-height: 1;
}

.ro-newsletter__consent .ps-17-newsletter-checkbox input[type="checkbox"]:focus {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 2px rgba(255, 211, 4, 0.15);
}

.ro-newsletter__consent .ps-17-newsletter-checkbox label {
  font-size: 11px;
  color: var(--ro-brown-light);
  line-height: var(--ro-leading-normal);
  cursor: pointer;
  margin: 0;
  opacity: 0.7;
}

.ro-newsletter__consent .ps-17-newsletter-checkbox label p {
  margin: 0;
  font-size: inherit;
  color: inherit;
}

/* ── Checkbox psgdpr (gdpr_consent) ── */
.ro-newsletter__consent .gdpr_consent {
  margin-bottom: var(--ro-space-xs);
}

.ro-newsletter__consent .ro-consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-space-xs);
  font-size: 11px;
  color: var(--ro-brown-light);
  line-height: var(--ro-leading-normal);
  cursor: pointer;
  margin: 0;
  opacity: 0.7;
}

.ro-newsletter__consent .ro-consent-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--ro-beige-dark);
  border-radius: 3px;
  background: var(--ro-white);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
  margin-top: 1px;
  position: relative;
  flex-shrink: 0;
}

.ro-newsletter__consent .ro-consent-checkbox:checked {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
}

.ro-newsletter__consent .ro-consent-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 900;
  color: var(--ro-brown);
  line-height: 1;
}

.ro-newsletter__consent .ro-consent-checkbox:focus {
  border-color: var(--ro-gold);
  box-shadow: 0 0 0 2px rgba(255, 211, 4, 0.15);
}

.ro-newsletter__consent .ro-consent-text {
  flex: 1;
}

/* Style des liens dans le message RGPD */
.ro-newsletter__consent .ro-consent-text a {
  color: var(--ro-brown);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: var(--ro-font-medium);
}

.ro-newsletter__consent .ro-consent-text a:hover {
  color: var(--ro-gold);
}

/* Masquer l'icône material-icons du psgdpr */
.ro-newsletter__consent .gdpr_consent .psgdpr_consent_icon {
  display: none;
}

/* Masquer le span décoratif du custom-checkbox psgdpr */
.ro-newsletter__consent .gdpr_consent .psgdpr_consent_message > span:first-of-type {
  display: none;
}

/* ══════════════════════════════════════════
   CONDITIONS
   ══════════════════════════════════════════ */
.ro-newsletter__conditions {
  font-size: 11px;
  color: var(--ro-brown-light);
  opacity: 0.6;
  margin: var(--ro-space-xs) 0 0;
  text-align: left;
  line-height: var(--ro-leading-relaxed);
}

.ro-newsletter__conditions a {
  color: var(--ro-brown);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ro-newsletter__conditions a:hover {
  color: var(--ro-gold);
}

/* ══════════════════════════════════════════
   GARANTIE (cadenas + texte)
   ══════════════════════════════════════════ */
.ro-newsletter__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--ro-brown-light);
  opacity: 0.5;
  margin-top: var(--ro-space-xs);
}

.ro-newsletter__guarantee svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablette (max 992px)
   ══════════════════════════════════════════ */
@media (max-width: 992px) {
  .ro-newsletter__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--ro-space-lg);
  }

  .ro-newsletter__left {
    justify-content: center;
  }

  .ro-newsletter__right {
    width: 100%;
    max-width: 480px;
  }

  .ro-newsletter__consent {
    text-align: center;
  }

  .ro-newsletter__consent .ro-consent-label,
  .ro-newsletter__consent .ps-17-newsletter-checkbox {
    justify-content: center;
  }

  .ro-newsletter__guarantee {
    justify-content: center;
    width: 100%;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (max 576px)
   ══════════════════════════════════════════ */
@media (max-width: 576px) {
  .ro-newsletter {
    padding: var(--ro-space-md) 0;
  }

  .ro-newsletter__left {
    flex-direction: column;
    gap: var(--ro-space-sm);
  }

  .ro-newsletter__icon {
    width: 40px;
    height: 40px;
  }

  .ro-newsletter__icon svg {
    width: 18px;
    height: 18px;
  }

  .ro-newsletter__title {
    font-size: var(--ro-text-base);
  }

  .ro-newsletter__subtitle {
    font-size: var(--ro-text-xs);
  }

  /* Formulaire en colonne */
  .ro-newsletter__form-row {
    flex-direction: column;
    border-radius: var(--ro-radius-lg);
    padding: var(--ro-space-xs);
    gap: var(--ro-space-xs);
  }

  .ro-newsletter__input {
    padding: 10px 12px;
    text-align: center;
  }

  .ro-newsletter__btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--ro-radius-md);
  }

  .ro-newsletter__btn-text {
    font-size: var(--ro-text-xs);
  }
}


/* === _footer.css === */
/* ============================================
   ROUTE D'OR — Footer v2.0
   Footer professionnel avec grid 3 colonnes
   ============================================ */

/* ── Footer principal ── */
.ro-footer {
  background-color: var(--ro-brown);
  color: var(--ro-beige);
  font-size: var(--ro-text-sm);
}

/* ── Footer main container ── */
.ro-footer__main {
  padding: var(--ro-space-3xl) 0 var(--ro-space-xl);
}

/* ── Grid 3 colonnes ── */
.ro-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1.3fr;
  gap: var(--ro-space-2xl);
}

/* ══════════════════════════════════════════
   COLONNE 1 — Marque + Réseaux sociaux
   ══════════════════════════════════════════ */
.ro-footer__col--brand {
  display: flex;
  flex-direction: column;
}

.ro-footer__brand {
  margin-bottom: var(--ro-space-lg);
}

.ro-footer__logo-link {
  display: inline-block;
  margin-bottom: var(--ro-space-md);
}

.ro-footer__logo {
  height: 80px;
  width: auto;
  max-width: 250px;
  display: block;
  /* Rendre le logo visible sur fond sombre : inverser les couleurs sombres en clair */
  filter: invert(1) hue-rotate(180deg) brightness(1.8) contrast(0.9);
  transition: opacity var(--ro-transition-fast);
}

.ro-footer__logo:hover {
  opacity: 0.8;
}

.ro-footer__tagline {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-semibold);
  color: var(--ro-gold);
  margin-bottom: var(--ro-space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ro-footer__desc {
  font-size: var(--ro-text-sm);
  color: rgba(236, 230, 218, 0.65);
  line-height: var(--ro-leading-relaxed);
  max-width: 300px;
}

/* Réseaux sociaux */
.ro-footer__social {
  display: flex;
  gap: var(--ro-space-sm);
  margin-top: auto;
}

.ro-footer__social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--ro-radius-full);
  background-color: rgba(236, 230, 218, 0.08);
  border: 1px solid rgba(236, 230, 218, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ro-beige);
  transition: all var(--ro-transition-base);
  text-decoration: none;
}

.ro-footer__social-btn:hover {
  background-color: var(--ro-gold);
  border-color: var(--ro-gold);
  color: var(--ro-brown);
}

.ro-footer__social-btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════
   COLONNE 2 — Liens (hooks displayFooter)
   Utilise la structure Bootstrap de ps_linklist :
   .links > .row > .col-md-6.wrapper × 2
   ══════════════════════════════════════════ */
.ro-footer__col--links {
  display: block;
}

/* Le bloc .links prend toute la largeur */
.ro-footer__col--links .links {
  width: 100%;
}

/* La .row Bootstrap fait les 2 colonnes côte à côte */
.ro-footer__col--links .links > .row {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}

/* Chaque .wrapper = une sous-colonne */
.ro-footer__col--links .links > .row > .wrapper {
  flex: 1;
  padding: 0 var(--ro-space-lg);
  min-width: 0;
}

.ro-footer__col--links .links > .row > .wrapper:first-child {
  padding-left: 0;
}

.ro-footer__col--links .links > .row > .wrapper:last-child {
  padding-right: 0;
}

/* Titres des colonnes de liens */
.ro-footer__col--links .links .hidden-sm-down,
.ro-footer__heading {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-base);
  font-weight: var(--ro-font-bold);
  color: var(--ro-white);
  margin-bottom: var(--ro-space-lg);
  padding-bottom: var(--ro-space-sm);
  position: relative;
}

/* Masquer le titre mobile (doublon) */
.ro-footer__col--links .links .title.hidden-md-up {
  display: none;
}

.ro-footer__heading::after,
.ro-footer__col--links .links .hidden-sm-down::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--ro-gold);
  border-radius: var(--ro-radius-full);
}

/* Collapse icons masqués en desktop */
.ro-footer__col--links .links .collapse-icons {
  display: none;
}

/* Listes de liens — toujours visibles */
.ro-footer__col--links .links .collapse {
  display: block;
}

.ro-footer__col--links .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-xs);
}

.ro-footer__col--links .links ul li a {
  color: rgba(236, 230, 218, 0.65);
  font-size: var(--ro-text-sm);
  transition: all var(--ro-transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--ro-space-xs);
  text-decoration: none;
  padding: 3px 0;
}

.ro-footer__col--links .links ul li a:hover {
  color: var(--ro-gold);
  padding-left: 4px;
}

/* Masquer entièrement le block-contact du hook (doublon avec colonne "Nous contacter") */
.ro-footer__col--links .block-contact {
  display: none;
}

/* ══════════════════════════════════════════
   COLONNE 3 — Contact + Horaires
   ══════════════════════════════════════════ */
.ro-footer__col--contact {
  display: flex;
  flex-direction: column;
}

/* Liste de contacts */
.ro-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--ro-space-sm);
  margin-bottom: var(--ro-space-lg);
}

.ro-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-space-sm);
  color: rgba(236, 230, 218, 0.65);
  font-size: var(--ro-text-sm);
  line-height: var(--ro-leading-normal);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

.ro-footer__contact-row:hover {
  color: var(--ro-gold);
}

.ro-footer__contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--ro-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Horaires */
.ro-footer__hours {
  margin-top: auto;
}

.ro-footer__hours-title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-sm);
  font-weight: var(--ro-font-bold);
  color: var(--ro-white);
  margin-bottom: var(--ro-space-sm);
}

.ro-footer__hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ro-footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--ro-text-xs);
  color: rgba(236, 230, 218, 0.6);
  padding: 5px 0;
  border-bottom: 1px solid rgba(236, 230, 218, 0.06);
}

.ro-footer__hours-row:last-child {
  border-bottom: none;
}

.ro-footer__hours-row span:first-child {
  font-weight: var(--ro-font-medium);
  color: rgba(236, 230, 218, 0.8);
  margin-right: var(--ro-space-md);
}

.ro-footer__hours-row--closed span:last-child {
  color: var(--ro-orange);
  font-weight: var(--ro-font-medium);
}

/* ══════════════════════════════════════════
   BARRE COPYRIGHT
   ══════════════════════════════════════════ */
.ro-footer__bottom {
  background-color: rgba(0, 0, 0, 0.15);
  padding: var(--ro-space-md) 0;
  border-top: 1px solid rgba(236, 230, 218, 0.08);
}

.ro-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ro-space-md);
}

.ro-footer__copyright {
  font-size: var(--ro-text-xs);
  color: rgba(236, 230, 218, 0.45);
}

.ro-footer__legal {
  display: flex;
  align-items: center;
  gap: var(--ro-space-sm);
  font-size: var(--ro-text-xs);
}

.ro-footer__legal a {
  color: rgba(236, 230, 218, 0.45);
  text-decoration: none;
  transition: color var(--ro-transition-fast);
}

.ro-footer__legal a:hover {
  color: var(--ro-gold);
}

.ro-footer__legal span {
  color: rgba(236, 230, 218, 0.2);
}

/* ══════════════════════════════════════════
   BOUTON RETOUR EN HAUT
   ══════════════════════════════════════════ */
.ro-back-to-top {
  position: fixed;
  bottom: var(--ro-space-xl);
  right: var(--ro-space-xl);
  width: 48px;
  height: 48px;
  background-color: var(--ro-gold);
  color: var(--ro-brown);
  border: none;
  border-radius: var(--ro-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--ro-shadow-lg);
  z-index: var(--ro-z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--ro-transition-base);
}

.ro-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ro-back-to-top:hover {
  background-color: var(--ro-orange);
  color: var(--ro-white);
  transform: translateY(-2px);
}

.ro-back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════════
   OVERRIDES PRESTASHOP CLASSIC FOOTER
   (au cas où des éléments du parent passent)
   ══════════════════════════════════════════ */
#footer .footer-container .btn,
#footer .footer-container button.btn {
  background-color: rgba(236, 230, 218, 0.08);
  border: 1px solid rgba(236, 230, 218, 0.2);
  color: var(--ro-beige);
  font-size: var(--ro-text-sm);
  padding: var(--ro-space-sm) var(--ro-space-md);
  border-radius: var(--ro-radius-md);
  cursor: pointer;
  transition: all var(--ro-transition-fast);
}

#footer .footer-container .btn:hover,
#footer .footer-container button.btn:hover {
  background-color: rgba(236, 230, 218, 0.15);
  color: var(--ro-white);
}


/* === _animations.css === */
/* ============================================
   ROUTE D'OR — Animations
   Animations subtiles et performantes
   ============================================ */

/* ── Animations d'entrée (scroll reveal) ── */
.ro-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ro-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ro-animate--delay-1 { transition-delay: 0.1s; }
.ro-animate--delay-2 { transition-delay: 0.2s; }
.ro-animate--delay-3 { transition-delay: 0.3s; }
.ro-animate--delay-4 { transition-delay: 0.4s; }

/* ── Fade in depuis la gauche ── */
.ro-animate--left {
  opacity: 0;
  transform: translateX(-30px);
}

.ro-animate--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Fade in depuis la droite ── */
.ro-animate--right {
  opacity: 0;
  transform: translateX(30px);
}

.ro-animate--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Scale in ── */
.ro-animate--scale {
  opacity: 0;
  transform: scale(0.9);
}

.ro-animate--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Pulse (pour badges, notifications) ── */
@keyframes ro-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.ro-pulse {
  animation: ro-pulse 2s ease-in-out infinite;
}

/* ── Shimmer (loading placeholder) ── */
@keyframes ro-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.ro-shimmer {
  background: linear-gradient(
    90deg,
    var(--ro-beige-light) 25%,
    var(--ro-beige) 50%,
    var(--ro-beige-light) 75%
  );
  background-size: 200% 100%;
  animation: ro-shimmer 1.5s ease-in-out infinite;
}

/* ── Spin (loading) ── */
@keyframes ro-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ro-spin {
  animation: ro-spin 1s linear infinite;
}

/* ── Bounce subtil ── */
@keyframes ro-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ro-bounce {
  animation: ro-bounce 2s ease-in-out infinite;
}

/* ── Hover lift (pour cards) ── */
.ro-hover-lift {
  transition: transform var(--ro-transition-base), box-shadow var(--ro-transition-base);
}

.ro-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--ro-shadow-lg);
}

/* ── Hover glow (pour boutons) ── */
.ro-hover-glow {
  transition: box-shadow var(--ro-transition-base);
}

.ro-hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 211, 4, 0.4);
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ro-animate {
    opacity: 1;
    transform: none;
  }
}


/* === _utilities.css === */
/* ============================================
   ROUTE D'OR — Utilitaires
   Classes utilitaires réutilisables
   ============================================ */

/* ── Texte ── */
.ro-text-center { text-align: center; }
.ro-text-left   { text-align: left; }
.ro-text-right  { text-align: right; }

.ro-text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; }
.ro-text-capitalize { text-transform: capitalize; }

.ro-text-brown  { color: var(--ro-brown); }
.ro-text-gold   { color: var(--ro-gold); }
.ro-text-orange { color: var(--ro-orange); }
.ro-text-gray   { color: var(--ro-gray); }
.ro-text-white  { color: var(--ro-white); }
.ro-text-blue   { color: var(--ro-blue); }

.ro-font-heading { font-family: var(--ro-font-heading); }
.ro-font-body    { font-family: var(--ro-font-body); }

.ro-font-light    { font-weight: var(--ro-font-light); }
.ro-font-regular  { font-weight: var(--ro-font-regular); }
.ro-font-medium   { font-weight: var(--ro-font-medium); }
.ro-font-semibold { font-weight: var(--ro-font-semibold); }
.ro-font-bold     { font-weight: var(--ro-font-bold); }

/* ── Backgrounds ── */
.ro-bg-brown      { background-color: var(--ro-brown); }
.ro-bg-beige      { background-color: var(--ro-beige); }
.ro-bg-beige-light { background-color: var(--ro-beige-light); }
.ro-bg-gold       { background-color: var(--ro-gold); }
.ro-bg-white      { background-color: var(--ro-white); }
.ro-bg-gray-light { background-color: var(--ro-gray-light); }

/* ── Espacement ── */
.ro-mt-0  { margin-top: 0; }
.ro-mt-sm { margin-top: var(--ro-space-sm); }
.ro-mt-md { margin-top: var(--ro-space-md); }
.ro-mt-lg { margin-top: var(--ro-space-lg); }
.ro-mt-xl { margin-top: var(--ro-space-xl); }
.ro-mt-2xl { margin-top: var(--ro-space-2xl); }

.ro-mb-0  { margin-bottom: 0; }
.ro-mb-sm { margin-bottom: var(--ro-space-sm); }
.ro-mb-md { margin-bottom: var(--ro-space-md); }
.ro-mb-lg { margin-bottom: var(--ro-space-lg); }
.ro-mb-xl { margin-bottom: var(--ro-space-xl); }
.ro-mb-2xl { margin-bottom: var(--ro-space-2xl); }

.ro-pt-0  { padding-top: 0; }
.ro-pt-md { padding-top: var(--ro-space-md); }
.ro-pt-lg { padding-top: var(--ro-space-lg); }
.ro-pt-xl { padding-top: var(--ro-space-xl); }
.ro-pt-2xl { padding-top: var(--ro-space-2xl); }
.ro-pt-3xl { padding-top: var(--ro-space-3xl); }

.ro-pb-0  { padding-bottom: 0; }
.ro-pb-md { padding-bottom: var(--ro-space-md); }
.ro-pb-lg { padding-bottom: var(--ro-space-lg); }
.ro-pb-xl { padding-bottom: var(--ro-space-xl); }
.ro-pb-2xl { padding-bottom: var(--ro-space-2xl); }
.ro-pb-3xl { padding-bottom: var(--ro-space-3xl); }

.ro-py-md { padding-top: var(--ro-space-md); padding-bottom: var(--ro-space-md); }
.ro-py-lg { padding-top: var(--ro-space-lg); padding-bottom: var(--ro-space-lg); }
.ro-py-xl { padding-top: var(--ro-space-xl); padding-bottom: var(--ro-space-xl); }
.ro-py-2xl { padding-top: var(--ro-space-2xl); padding-bottom: var(--ro-space-2xl); }
.ro-py-3xl { padding-top: var(--ro-space-3xl); padding-bottom: var(--ro-space-3xl); }

/* ── Flexbox ── */
.ro-flex { display: flex; }
.ro-flex-col { flex-direction: column; }
.ro-flex-wrap { flex-wrap: wrap; }
.ro-items-center { align-items: center; }
.ro-items-start { align-items: flex-start; }
.ro-justify-center { justify-content: center; }
.ro-justify-between { justify-content: space-between; }
.ro-gap-sm { gap: var(--ro-space-sm); }
.ro-gap-md { gap: var(--ro-space-md); }
.ro-gap-lg { gap: var(--ro-space-lg); }
.ro-gap-xl { gap: var(--ro-space-xl); }

/* ── Grid ── */
.ro-grid { display: grid; }
.ro-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ro-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ro-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Bordures ── */
.ro-rounded-sm  { border-radius: var(--ro-radius-sm); }
.ro-rounded-md  { border-radius: var(--ro-radius-md); }
.ro-rounded-lg  { border-radius: var(--ro-radius-lg); }
.ro-rounded-xl  { border-radius: var(--ro-radius-xl); }
.ro-rounded-full { border-radius: var(--ro-radius-full); }

/* ── Ombres ── */
.ro-shadow-sm { box-shadow: var(--ro-shadow-sm); }
.ro-shadow-md { box-shadow: var(--ro-shadow-md); }
.ro-shadow-lg { box-shadow: var(--ro-shadow-lg); }
.ro-shadow-xl { box-shadow: var(--ro-shadow-xl); }

/* ── Affichage ── */
.ro-hidden { display: none; }
.ro-block  { display: block; }
.ro-inline { display: inline; }

@media (max-width: 992px) {
  .ro-hidden-mobile { display: none !important; }
  .ro-show-mobile { display: block !important; }
}

@media (min-width: 993px) {
  .ro-hidden-desktop { display: none !important; }
  .ro-show-desktop { display: block !important; }
}

/* ── Overflow ── */
.ro-overflow-hidden { overflow: hidden; }

/* ── Position ── */
.ro-relative { position: relative; }
.ro-absolute { position: absolute; }

/* ── Largeur ── */
.ro-w-full { width: 100%; }
.ro-max-w-sm { max-width: var(--ro-container-sm); }
.ro-max-w-md { max-width: var(--ro-container-md); }
.ro-max-w-lg { max-width: var(--ro-container-lg); }
.ro-max-w-xl { max-width: var(--ro-container-xl); }
.ro-mx-auto { margin-left: auto; margin-right: auto; }

/* ── Séparateur ── */
.ro-divider {
  width: 100%;
  height: 1px;
  background-color: var(--ro-border-light);
  margin: var(--ro-space-xl) 0;
  border: none;
}

.ro-divider--gold {
  background: linear-gradient(90deg, transparent, var(--ro-gold), transparent);
  height: 2px;
}


/* === _seo.css === */
/* ============================================
   ROUTE D'OR — Sections SEO v1.0
   Micro-sections de texte optimisé SEO
   Subtiles, élégantes, non intrusives
   ============================================ */

/* ══════════════════════════════════════════
   SEO INTRO — Paragraphe d'introduction
   Après la trust bar, avant les catégories
   ══════════════════════════════════════════ */
.ro-seo-intro {
  padding: var(--ro-space-xl) 0 var(--ro-space-md);
  background-color: var(--ro-white);
}

.ro-seo-intro__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--ro-text-base);
  line-height: var(--ro-leading-relaxed);
  color: var(--ro-text-muted);
}

.ro-seo-intro__text strong {
  color: var(--ro-brown);
  font-weight: var(--ro-font-semibold);
}

/* ══════════════════════════════════════════
   SEO TIPS — Conseils apiculteur (3 colonnes)
   Entre produits vedettes et "Pourquoi nous"
   ══════════════════════════════════════════ */
.ro-seo-tips {
  padding: var(--ro-space-2xl) 0;
  background-color: var(--ro-white);
}

.ro-seo-tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ro-space-lg);
  max-width: var(--ro-container-xl);
  margin: 0 auto;
}

.ro-seo-tips__item {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-space-md);
  padding: var(--ro-space-lg);
  background-color: var(--ro-beige-light);
  border-radius: var(--ro-radius-lg);
  border: 1px solid var(--ro-border-light);
  transition: all var(--ro-transition-base);
}

.ro-seo-tips__item:hover {
  border-color: var(--ro-gold);
  box-shadow: var(--ro-shadow-sm);
  transform: translateY(-2px);
}

.ro-seo-tips__icon {
  font-size: var(--ro-text-2xl);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.ro-seo-tips__text {
  font-size: var(--ro-text-sm);
  line-height: var(--ro-leading-relaxed);
  color: var(--ro-text-muted);
  margin: 0;
}

.ro-seo-tips__text strong {
  color: var(--ro-brown);
  font-weight: var(--ro-font-semibold);
}

/* ══════════════════════════════════════════
   WHY BANNER — Image horizontale "Pourquoi nous"
   ══════════════════════════════════════════ */
.ro-why__banner {
  margin-bottom: var(--ro-space-2xl);
  border-radius: var(--ro-radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.ro-why__banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 350px;
}

/* ══════════════════════════════════════════
   SEO BLOCK — Bloc texte expertise
   Avant le CTA, section riche en contenu SEO
   ══════════════════════════════════════════ */
.ro-seo-block {
  padding: var(--ro-space-2xl) 0;
  background-color: var(--ro-beige-light);
}

.ro-seo-block__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ro-seo-block__title {
  font-family: var(--ro-font-heading);
  font-size: var(--ro-text-xl);
  font-weight: var(--ro-font-bold);
  color: var(--ro-heading);
  margin-bottom: var(--ro-space-lg);
  line-height: var(--ro-leading-tight);
}

/* Bannière image dans le bloc SEO */
.ro-seo-block__banner {
  margin-bottom: var(--ro-space-lg);
  border-radius: var(--ro-radius-lg);
  overflow: hidden;
}

.ro-seo-block__banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 280px;
  border-radius: var(--ro-radius-lg);
}

.ro-seo-block__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ro-space-xl);
  text-align: left;
}

.ro-seo-block__columns p {
  font-size: var(--ro-text-sm);
  line-height: var(--ro-leading-relaxed);
  color: var(--ro-text-muted);
  margin: 0;
}

.ro-seo-block__columns p strong {
  color: var(--ro-brown);
  font-weight: var(--ro-font-semibold);
}

/* ══════════════════════════════════════════
   RESPONSIVE — Sections SEO
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .ro-seo-intro {
    padding: var(--ro-space-lg) 0 var(--ro-space-sm);
  }

  .ro-seo-intro__text {
    font-size: var(--ro-text-sm);
    padding: 0 var(--ro-space-md);
  }

  .ro-seo-tips {
    padding: var(--ro-space-xl) 0;
  }

  .ro-seo-tips__grid {
    grid-template-columns: 1fr;
    gap: var(--ro-space-md);
  }

  .ro-seo-tips__item {
    padding: var(--ro-space-md);
  }

  .ro-seo-block {
    padding: var(--ro-space-xl) 0;
  }

  .ro-seo-block__title {
    font-size: var(--ro-text-lg);
    padding: 0 var(--ro-space-md);
  }

  .ro-seo-block__columns {
    grid-template-columns: 1fr;
    gap: var(--ro-space-md);
    padding: 0 var(--ro-space-md);
  }
}

@media (max-width: 480px) {
  .ro-seo-tips__icon {
    font-size: var(--ro-text-xl);
  }

  .ro-seo-tips__text {
    font-size: var(--ro-text-xs);
  }

  .ro-seo-block__columns p {
    font-size: var(--ro-text-xs);
  }
}


/* === _responsive.css === */
/* ============================================
   ROUTE D'OR — Responsive
   Media queries pour le nouveau design v2.0
   Classes BEM : .ro-*
   ============================================ */

/* ── Max 1200px (tablette paysage / petit desktop) ── */
@media (max-width: 1200px) {

  /* Header */
  .ro-topbar__inner {
    font-size: 0.8rem;
  }

  .ro-header__inner {
    gap: 1.5rem;
  }

  /* Nav */
  .ro-nav__list > li > a {
    padding: 0.75rem 0.6rem;
    font-size: 0.85rem;
  }

  /* Hero */
  .ro-hero__title {
    font-size: 2.75rem;
  }

  .ro-hero__image {
    max-width: 360px;
  }

  /* Trust bar */
  .ro-trust-bar__grid {
    gap: 1.5rem;
  }

  /* Catégories bento */
  .ro-cat-grid {
    gap: 1rem;
  }

  /* Produits (hors page catégorie — gérée par _category-grid.css) */
  .products:not(.ro-category__grid),
  .ro-products-grid,
  .ro-products-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why us */
  .ro-why__grid {
    gap: 1.5rem;
  }

  /* Cat pills */
  .ro-cat-row {
    gap: 1rem;
  }

  /* Footer */
  .ro-footer__grid {
    gap: 2rem;
  }
}

/* ── Max 992px (tablette portrait) ── */
@media (max-width: 992px) {

  :root {
    --ro-text-4xl: 2.25rem;
    --ro-text-5xl: 2.75rem;
  }

  /* ─ Header : cacher nav desktop, montrer mobile ─ */
  .ro-nav {
    display: none;
  }

  /* Cacher mega menu desktop */
  .ro-hidden-mobile {
    display: none !important;
  }

  /* Topbar : masquer éléments secondaires */
  .ro-topbar__right {
    display: none;
  }

  /* Afficher le téléphone mobile */
  .ro-header__phone-mobile {
    display: flex;
  }

  /* Afficher le bouton Menu pill mobile */
  .ro-header__mobile-burger.ro-hidden-desktop {
    display: flex !important;
  }

  /* ─ Header inner : 2 lignes via flex-wrap ─
     Ligne 1 : Logo | Burger Menu | Téléphone (poussé à droite)
     Ligne 2 : Barre de recherche (pleine largeur)
  */
  .ro-header__inner {
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
  }

  /* Ligne 1 : logo | burger | compte+panier | téléphone */
  .ro-header__logo {
    order: 1;
  }

  .ro-header__mobile-burger {
    order: 2;
    flex-shrink: 0;
  }

  /* Actions (compte + panier) — masquées sur mobile */
  .ro-header__actions {
    display: none !important;
  }

  .ro-header__phone-mobile {
    order: 4;
    margin-left: auto;
  }

  /* Séparateur invisible : force un retour à la ligne APRÈS le téléphone */
  .ro-header__inner::before {
    content: '';
    width: 100%;
    order: 5;
  }

  /* Ligne 2 : recherche seule (pleine largeur) */
  .ro-header__search {
    order: 6;
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
    min-width: 0;
  }

  .ro-header__logo img {
    max-height: 45px;
  }

  /* Hero */
  .ro-hero {
    min-height: 420px;
  }

  .ro-hero__title {
    font-size: 2.25rem;
  }

  .ro-hero__image {
    max-width: 300px;
  }

  /* Trust bar : 2 colonnes */
  .ro-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Catégories bento : 1 colonne, large en haut */
  .ro-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ro-cat-card--large {
    grid-row: span 1;
  }

  /* Produits (hors page catégorie — gérée par _category-grid.css) */
  .products:not(.ro-category__grid),
  .ro-products-grid,
  .ro-products-section__grid,
  .ro-products-section--category .ro-products-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Grille catégorie : gérée par _category-grid.css via .ro-category__grid */
  /* Ne pas écraser ici, les breakpoints sont dans _category-grid.css */

  /* Why us : 2 colonnes */
  .ro-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Cat pills : 1 colonne */
  .ro-cat-row {
    grid-template-columns: 1fr;
  }

  /* CTA banner */
  .ro-cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  /* Colonnes latérales */
  #left-column {
    display: none;
  }

  #content-wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /* Footer : 2 colonnes */
  .ro-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .ro-footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .ro-footer__col--brand .ro-footer__social {
    justify-content: center;
  }

  /* Réassurance module */
  .blockreassurance .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Max 768px (mobile paysage / petite tablette) ── */
@media (max-width: 768px) {

  :root {
    --ro-text-3xl: 1.75rem;
    --ro-text-4xl: 2rem;
    --ro-text-5xl: 2.25rem;
    --ro-space-3xl: 3rem;
    --ro-space-4xl: 4rem;
  }

  /* ─ Header ─ */
  .ro-topbar {
    display: none;
  }

  .ro-header__inner {
    padding: 0.5rem 0;
  }

  .ro-header__logo img {
    max-height: 40px;
  }

  .ro-header__search {
    flex: 1;
    max-width: none;
  }

  #search_widget form input[type="text"] {
    padding: 10px 44px 10px 16px;
    font-size: 0.85rem;
  }

  #search_widget form button[type="submit"] {
    width: 34px;
    height: 34px;
  }

  /* ─ Hero ─ */
  .ro-hero {
    min-height: 350px;
  }

  /* Hero image : passer en colonne sur mobile */
  .ro-hero__content {
    padding: 2rem 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ro-hero__badge {
    font-size: 10px;
    padding: 0.35rem 0.75rem;
  }

  .ro-hero__title {
    font-size: 1.75rem;
  }

  .ro-hero__subtitle {
    font-size: 1rem;
  }

  .ro-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ro-hero__actions .ro-btn--cta,
  .ro-hero__actions .ro-btn--outline-white {
    justify-content: center;
    text-align: center;
  }

  .ro-hero__image {
    max-width: 280px;
    order: -1;
  }

  .ro-hero__image-badge {
    bottom: -8px;
    left: -8px;
    padding: 8px 14px;
  }

  .ro-hero__cta {
    justify-content: center;
  }

  .ro-hero__wave {
    display: none;
  }

  /* ─ Trust bar ─ */
  .ro-trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .ro-trust-bar__item {
    padding: 1rem;
  }

  .ro-trust-bar__icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .ro-trust-bar__title {
    font-size: 0.85rem;
  }

  .ro-trust-bar__desc {
    display: none;
  }

  /* ─ Catégories bento ─ */
  .ro-cat-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ro-cat-card--large {
    grid-row: span 1;
    min-height: 220px;
  }

  .ro-cat-card {
    min-height: 180px;
  }

  .ro-cat-card__title {
    font-size: 1.25rem;
  }

  /* ─ Produits (hors page catégorie — gérée par _category-grid.css) ─ */
  .products:not(.ro-category__grid),
  .ro-products-grid,
  .ro-products-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-miniature .product-description,
  .ro-product-card__info,
  .ro-card-info {
    padding: 10px 12px 14px;
  }

  .product-miniature .price,
  .ro-card-price-current {
    font-size: 1rem;
  }

  .ro-card-name {
    font-size: 0.8rem;
  }

  .ro-card-price-old {
    font-size: 0.75rem;
  }

  /* Masquer overlay sur mobile (touch) */
  .ro-card-overlay {
    display: none;
  }

  /* ─ Why us ─ */
  .ro-why__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ro-why__card {
    padding: 1.5rem;
  }

  /* ─ Cat pills ─ */
  .ro-cat-pill {
    padding: 0.75rem;
  }

  .ro-cat-pill__img {
    width: 50px;
    height: 50px;
  }

  /* ─ CTA banner ─ */
  .ro-cta-banner {
    padding: 2.5rem 0;
  }

  .ro-cta-banner__title {
    font-size: 1.5rem;
  }

  /* ─ Section titles ─ */
  .ro-section__title {
    font-size: 1.5rem;
  }

  .ro-section__eyebrow {
    font-size: 0.7rem;
  }

  .ro-section {
    padding: 2.5rem 0;
  }

  /* ─ Footer ─ */
  .ro-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ro-footer__col--brand {
    grid-column: auto;
    text-align: center;
  }

  .ro-footer__col--brand .ro-footer__social {
    justify-content: center;
  }

  /* Footer links : accordion style */
  .ro-footer__col--links .link-widget .title {
    cursor: pointer;
    position: relative;
  }

  .ro-footer__col--links .link-widget .title .collapse-icons {
    display: inline-block;
  }

  .ro-footer__col--links .link-widget .navbar-toggler {
    display: block;
  }

  /* Contact col */
  .ro-footer__hours {
    font-size: 0.8rem;
  }

  /* Copyright */
  .ro-footer__bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Newsletter — responsive géré dans _newsletter.css */

  /* Breadcrumb */
  #wrapper .breadcrumb {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }

  /* Pagination */
  .pagination .page-list li a,
  .pagination .page-list li span {
    min-width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/* ── Max 576px (mobile portrait) ── */
@media (max-width: 576px) {

  :root {
    --ro-text-2xl: 1.5rem;
    --ro-text-3xl: 1.5rem;
    --ro-text-4xl: 1.75rem;
    --ro-text-5xl: 2rem;
    --ro-container-padding: 0.75rem;
    --ro-space-2xl: 2rem;
    --ro-space-3xl: 2.5rem;
  }

  /* ─ Header mobile compact ─ */
  .ro-header__inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .ro-header__logo img {
    max-height: 35px;
  }

  .ro-header__search {
    order: 6;
    width: 100%;
    flex: none;
  }


  /* ─ Hero mobile ─ */
  .ro-hero {
    min-height: 280px;
  }

  .ro-hero__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .ro-hero__subtitle {
    font-size: 0.9rem;
  }

  .ro-hero__image {
    max-width: 220px;
  }

  .ro-hero__image-badge {
    padding: 6px 12px;
  }

  .ro-hero__stat-number {
    font-size: 1.1rem;
  }

  .ro-hero__stat-label {
    font-size: 0.6rem;
  }

  /* ─ Trust bar ─ */
  .ro-trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .ro-trust-bar__item {
    padding: 0.75rem 0.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .ro-trust-bar__icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .ro-trust-bar__title {
    font-size: 0.75rem;
  }

  /* ─ Catégories ─ */
  .ro-cat-card--large {
    min-height: 180px;
  }

  .ro-cat-card {
    min-height: 150px;
  }

  .ro-cat-card__title {
    font-size: 1.1rem;
  }

  .ro-cat-card__count {
    font-size: 0.7rem;
  }

  /* ─ Produits : 2 colonnes serrées (hors page catégorie, gérée par _category-grid.css) ─ */
  .products:not(.ro-category__grid),
  .ro-products-grid,
  .ro-products-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .product-miniature .thumbnail-container img,
  .product-miniature .thumbnail-container .product-thumbnail,
  .ro-card-img img {
    padding: 0.5rem;
  }

  .product-miniature .product-title,
  .product-miniature .product-title a,
  .ro-card-name {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }

  .product-miniature .price,
  .ro-card-price-current {
    font-size: 0.9rem;
  }

  .product-miniature .regular-price,
  .ro-card-price-old {
    font-size: 0.75rem;
  }

  .ro-card-info {
    padding: 8px 10px 12px;
  }

  /* ─ Why us ─ */
  .ro-why__card {
    padding: 1.25rem;
  }

  .ro-why__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .ro-why__title {
    font-size: 1rem;
  }

  /* ─ Cat pills ─ */
  .ro-cat-pill__img {
    width: 44px;
    height: 44px;
  }

  .ro-cat-pill__name {
    font-size: 0.9rem;
  }

  .ro-cat-pill__count {
    font-size: 0.7rem;
  }

  .ro-cat-pill__arrow {
    display: none;
  }

  /* ─ CTA banner ─ */
  .ro-cta-banner__title {
    font-size: 1.25rem;
  }

  .ro-cta-banner__text {
    font-size: 0.9rem;
  }

  /* ─ Section ─ */
  .ro-section {
    padding: 2rem 0;
  }

  .ro-section__title {
    font-size: 1.25rem;
  }

  /* ─ Boutons ─ */
  .ro-btn--lg {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .ro-btn--cta {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* ─ Back to top ─ */
  .ro-back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
  }

  /* ─ Titres généraux ─ */
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.25rem; }
  h3, .h3 { font-size: 1.1rem; }
}

/* ── Max 375px (très petit mobile) ── */
@media (max-width: 375px) {

  .products:not(.ro-category__grid),
  .ro-products-grid,
  .ro-products-section__grid {
    grid-template-columns: 1fr;
  }

  .ro-card-img img {
    padding: 0.35rem;
  }

  .ro-card-name {
    font-size: 0.75rem;
    min-height: auto;
  }

  .ro-card-price-current {
    font-size: 0.85rem;
  }

  .ro-card-info {
    padding: 6px 8px 10px;
  }

  .ro-trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .ro-hero__title {
    font-size: 1.35rem;
  }

  .ro-hero__actions .ro-btn--cta,
  .ro-hero__actions .ro-btn--outline-white {
    width: 100%;
    justify-content: center;
  }

  .ro-cat-card--large,
  .ro-cat-card {
    min-height: 140px;
  }
}

/* ── Utilitaires responsive ── */
@media (max-width: 992px) {
  .ro-hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .ro-hidden-desktop {
    display: none !important;
  }
}

/* ── Print ── */
@media print {
  .ro-topbar,
  .ro-nav,
  .ro-header__burger,
  .ro-mobile-menu,
  .ro-back-to-top,
  .ro-hero__wave,
  .ro-cta-banner,
  .ro-footer__social,
  #search_widget {
    display: none !important;
  }

  .ro-header {
    position: static !important;
    box-shadow: none !important;
  }

  .ro-footer {
    background: #fff !important;
    color: #000 !important;
  }
}


