/* ==========================================================================
   REDESIGN afloredeau.com — Charte graphique 2026
   Abril Fatface / Cinzel / Montserrat · Accent rouge koi #E30613
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --rouge: #E30613;
  --rouge-dark: #c70510;
  --noir: #181818;
  --noir-light: #232323;
  --gris-bg: #f5f5f3;
  --gris-card: #f9f9f7;
  --gris-border: #e5e5e3;
  --gris-text: #6b6b6b;
  --blanc: #ffffff;
  --ff-display: 'Abril Fatface', serif;
  --ff-heading: 'Cinzel', serif;
  --ff-body: 'Montserrat', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0,0,0,.06);
  --shadow-hover: 0 8px 28px rgba(0,0,0,.10);
  --transition: .25s ease;
  --wrap: 1260px;
}

/* --- Reset & Base --- */
body {
  font-family: var(--ff-body);
  color: var(--noir-light);
  background: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--noir);
}
a { color: var(--noir-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rouge); }

/* --- Utilities --- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.pill { border-radius: var(--radius-pill); }
.section-pad { padding: 64px 0; }
.section-title-center {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}
.section-subtitle-center {
  text-align: center;
  color: var(--gris-text);
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: .95rem;
}

/* --- Buttons --- */
.btn-rouge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--rouge);
  color: var(--blanc);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-rouge:hover { background: var(--rouge-dark); color: var(--blanc); transform: translateY(-1px); }

.btn-noir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-noir:hover { background: #333; color: var(--blanc); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  background: transparent;
  color: var(--noir);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid var(--noir);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--noir); color: var(--blanc); }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.ann {
  background: var(--rouge);
  color: var(--blanc);
  text-align: center;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.ann a { color: var(--blanc); text-decoration: underline; }
.ann a:hover { color: #ffd4d4; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: var(--noir);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  padding: 6px 0;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: var(--blanc); }
.topbar .topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar .topbar-right .user-info { white-space: nowrap; }

/* ==========================================================================
   HEADER STICKY — Glassmorphism
   ========================================================================== */

/* #header is the outer wrapper from layout-both-columns.tpl.
   It contains .ann + .topbar + .header-main.
   Negative top makes ann+topbar scroll away while header-main sticks. */
#header {
  position: sticky;
  top: calc(-1 * (var(--ann-h, 36px) + var(--topbar-h, 38px)));
  z-index: 1000;
}

/* The glassmorphism bar — logo, nav, icons */
.header-main {
  position: relative;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
  transition: box-shadow .3s;
}
.header-main.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* Hide language & currency selectors in topbar (FR-only site) */
.topbar .language-selector,
.topbar .currency-selector { display: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* Override theme.css "#header .logo{height:auto}" with higher specificity */
#header .header-logo img,
#header .header-logo .logo {
  height: 46px;
  width: auto;
  max-height: 46px;
}
.header-logo .wordmark {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--noir);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* Nav */
.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
/* ps_mainmenu restyle */
#header .top-menu[data-depth="0"] {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header .top-menu a[data-depth="0"],
#header .header-top a[data-depth="0"] {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .78rem;
  color: var(--noir-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px clamp(6px, .6vw, 12px);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
#header .top-menu a[data-depth="0"]::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rouge);
  transition: width .3s, left .3s;
}
#header .top-menu a[data-depth="0"]:hover { color: var(--rouge); }
#header .top-menu a[data-depth="0"]:hover::after { width: 60%; left: 20%; }

/* Sub-menus */
.top-menu .sub-menu {
  background: var(--blanc);
  border-top: 2px solid var(--rouge);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-hover);
}

/* Icons group */
.header-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background var(--transition);
  cursor: pointer;
  position: relative;
  color: var(--noir-light);
}
.ico:hover { background: var(--gris-bg); }
.ico svg { width: 22px; height: 22px; }
.ico .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--rouge);
  color: var(--blanc);
  font-size: .65rem;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Search overlay panel (inside .header-main, position: relative) */
.header-search {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--blanc);
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 100;
  border-top: 1px solid var(--gris-border);
}
.header-search.active { display: block; }
/* Search widget form inside the panel */
.header-search #search_widget form {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}
.header-search #search_widget .search-icon {
  position: absolute;
  left: 16px;
  color: var(--noir-light);
  pointer-events: none;
}
.header-search #search_widget input[type="text"] {
  width: 100%;
  padding: 14px 48px 14px 48px;
  border: 2px solid var(--gris-border);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color var(--transition);
  background: var(--gris-bg);
}
.header-search #search_widget input[type="text"]:focus {
  border-color: var(--rouge);
  background: var(--blanc);
}
.header-search #search_widget .search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--noir-light);
  padding: 4px;
  display: flex;
  opacity: .5;
  transition: opacity var(--transition);
}
.header-search #search_widget .search-clear:hover { opacity: 1; }
/* Active state on search toggle button */
.ico-search.active { background: var(--gris-bg); }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--noir);
  transition: all .3s;
  border-radius: 2px;
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2000;
  opacity: 0;
  transition: opacity .3s;
}
.drawer-overlay.active { display: block; opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--blanc);
  z-index: 2001;
  overflow-y: auto;
  transition: left .3s ease;
  padding: 24px;
}
.drawer.active { left: 0; }
.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gris-bg);
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
  margin-left: auto;
}
.drawer-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid var(--gris-border);
}
.drawer-nav a:hover { color: var(--rouge); }

/* ==========================================================================
   HERO SECTION (ps_imageslider restyle)
   ========================================================================== */
#carousel.hero-slider {
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}
#carousel.hero-slider .carousel-item figure {
  position: relative;
}
#carousel.hero-slider .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  aspect-ratio: auto;
}
#carousel.hero-slider .carousel-item .caption {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px clamp(24px, 5vw, 80px) !important;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%) !important;
  text-align: left !important;
}
#carousel.hero-slider .caption h2.display-1 {
  font-family: var(--ff-display) !important;
  font-size: clamp(1.6rem, 3.5vw, 3rem) !important;
  font-weight: 400 !important;
  color: var(--blanc) !important;
  text-transform: none !important;
  margin-bottom: 12px !important;
  max-width: 500px;
}
#carousel.hero-slider .caption .caption-description {
  font-size: clamp(.9rem, 1.2vw, 1.1rem) !important;
  color: rgba(255,255,255,.9) !important;
  max-width: 440px;
  margin-bottom: 20px;
  line-height: 1.5 !important;
}
#carousel.hero-slider .caption .caption-description h3,
#carousel.hero-slider .caption .caption-description p,
#carousel.hero-slider .caption .caption-description h3 span,
#carousel.hero-slider .caption .caption-description p span {
  color: rgba(255,255,255,.9) !important;
  font-size: inherit !important;
}
#carousel.hero-slider .carousel-indicators {
  bottom: 24px;
}
#carousel.hero-slider .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: 2px solid var(--blanc);
  background: transparent;
  border-radius: 50%;
  opacity: .6;
  transition: all .3s;
}
#carousel.hero-slider .carousel-indicators li.active {
  background: var(--blanc);
  opacity: 1;
}
#carousel.hero-slider .carousel-control {
  opacity: 0;
  transition: opacity .3s;
}
#carousel.hero-slider:hover .carousel-control { opacity: 1; }
#carousel.hero-slider .carousel-control .material-icons {
  font-size: 36px;
  color: var(--blanc);
}

/* ==========================================================================
   TRUST STRIP (blockreassurance restyle)
   ========================================================================== */
#block-reassurance {
  background: var(--gris-bg);
  padding: 20px 0;
}
#block-reassurance ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
}
#block-reassurance li {
  text-align: center;
}
#block-reassurance .block-reassurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#block-reassurance .block-reassurance-item img {
  width: 28px;
  height: 28px;
  opacity: .7;
}
#block-reassurance .block-reassurance-item .h6 {
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--noir-light);
  margin: 0;
}

/* PDP context — trust grid */
.product-information #block-reassurance {
  background: transparent;
  padding: 16px 0 0;
}
.product-information #block-reassurance ul {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
}
.product-information #block-reassurance .block-reassurance-item {
  background: var(--gris-bg);
  padding: 12px;
  border-radius: var(--radius-sm);
  justify-content: flex-start;
}

/* ==========================================================================
   CATEGORY GRID (homepage)
   ========================================================================== */
.cats {
  padding: 64px 0;
  background: var(--blanc);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-card .cat-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--blanc);
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 700;
}

/* ==========================================================================
   KOI SECTION (homepage)
   ========================================================================== */
.koi {
  padding: 80px 0;
  background: var(--noir);
  color: var(--blanc);
  text-align: center;
}
.koi .section-title-center { color: var(--blanc); }
.koi p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   PROMO STRIP
   ========================================================================== */
.strip {
  padding: 40px 0;
  background: var(--rouge);
  color: var(--blanc);
  text-align: center;
}
.strip h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--blanc);
  margin-bottom: 8px;
}
.strip p {
  font-size: .95rem;
  opacity: .9;
  margin-bottom: 20px;
}

/* ==========================================================================
   NEWSLETTER (ps_emailsubscription restyle)
   ========================================================================== */
.block_newsletter {
  text-align: center;
  padding: 48px 24px;
  width: 100%;
  max-width: 100%;
  flex: none;
}
.block_newsletter #block-newsletter-label {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  flex: none;
  padding: 0;
}
.block_newsletter form .row { justify-content: center; }
.block_newsletter .input-wrapper {
  display: inline-flex;
  overflow: hidden;
}
.block_newsletter .input-wrapper input[name="email"] {
  padding: 14px 20px;
  border: 2px solid var(--gris-border);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: .95rem;
  font-family: var(--ff-body);
  min-width: 280px;
  outline: none;
  border-right: none;
}
.block_newsletter .input-wrapper input[name="email"]:focus {
  border-color: var(--rouge);
}
.block_newsletter input[type="submit"] {
  background: var(--rouge);
  color: var(--blanc);
  border: 2px solid var(--rouge);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition);
  float: none;
}
.block_newsletter input[type="submit"]:hover { background: var(--rouge-dark); border-color: var(--rouge-dark); }

/* ==========================================================================
   PRODUCT CARDS (miniatures)
   ========================================================================== */
.product-miniature .thumbnail-container {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gris-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.product-miniature .thumbnail-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Image container */
.product-miniature .thumbnail-top {
  position: relative;
  overflow: hidden;
}
.product-miniature .product-thumbnail {
  display: block;
}
.product-miniature .product-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.product-miniature .thumbnail-container:hover .product-thumbnail img {
  transform: scale(1.04);
}

/* Product flags as overlays */
.product-miniature .product-flags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-miniature .product-flags li.product-flag {
  position: static;
  display: inline-block;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--rouge);
  color: var(--blanc);
}
.product-miniature .product-flags li.product-flag.discount,
.product-miniature .product-flags li.product-flag.discount-amount,
.product-miniature .product-flags li.product-flag.discount-percentage,
.product-miniature .product-flags li.product-flag.on-sale {
  background: var(--noir);
}

/* Quick view hover */
.product-miniature .highlighted-informations {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.3));
  transform: translateY(100%);
  transition: transform .3s;
  text-align: center;
}
.product-miniature .thumbnail-container:hover .highlighted-informations {
  transform: translateY(0);
}
.product-miniature .quick-view {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blanc);
  border-radius: var(--radius-pill);
  color: var(--noir);
  font-size: .75rem;
  font-weight: 600;
}

/* Product body */
.product-miniature .product-description {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-miniature .product-miniature-cat {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gris-text);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-miniature .product-title {
  margin: 0;
}
.product-miniature .product-title a {
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--noir-light);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-miniature .product-title a:hover { color: var(--rouge); }

/* Prices */
.product-miniature .product-price-and-shipping {
  margin-top: auto;
  padding-top: 4px;
}
.product-miniature .product-price-and-shipping .price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--noir);
}
.product-miniature .product-price-and-shipping .regular-price {
  text-decoration: line-through;
  color: var(--gris-text);
  font-size: .85rem;
}
.product-miniature .product-price-and-shipping .discount-percentage,
.product-miniature .product-price-and-shipping .discount-amount {
  background: var(--rouge);
  color: var(--blanc);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: .7rem;
  font-weight: 700;
}

/* Add to cart button on miniature */
.product-miniature .card-add-cart {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
}
.product-miniature .card-add-cart:hover { background: var(--rouge-dark); }

/* Product grid — 4 columns homepage, 3 columns category */
.page-home .featured-products .products.row,
.page-home .prods .products.row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.page-home .featured-products .products.row > .js-product,
.page-home .prods .products.row > .js-product {
  width: 100%;
  max-width: 100%;
  flex: none;
  padding: 0;
  float: none;
}

/* Category listing — 3 columns */
#js-product-list .products.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#js-product-list .products.row > .js-product {
  width: 100%;
  max-width: 100%;
  flex: none;
  padding: 0;
  float: none;
}

/* Featured products section heading */
.featured-products .products-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  text-transform: none;
}
.featured-products .all-product-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--rouge);
  float: none !important;
  margin: 20px auto 0;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.featured-products .all-product-link:hover { color: var(--rouge-dark); }

/* ==========================================================================
   CATEGORY PAGE
   ========================================================================== */

/* Category banner */
.block-category {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--noir);
  margin-bottom: 24px;
  padding: 0;
  border: none;
}
.block-category .block-category-inner {
  display: flex;
  align-items: center;
}
.block-category .category-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.block-category .category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
.block-category .h1 {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--blanc);
  padding: 40px 30px 12px;
  margin: 0;
}
.block-category #category-description {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.8);
  padding: 0 30px 30px;
  font-size: .92rem;
  max-width: 700px;
}

/* Category footer - SEO block */
.category-additional-description {
  background: var(--gris-bg);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gris-text);
}
#js-product-list-footer .card {
  border: none;
  background: none;
}

/* Products toolbar */
#js-product-list-top.products-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gris-border);
}
#js-product-list-top .total-products {
  font-size: .85rem;
  color: var(--gris-text);
}
#js-product-list-top .sort-by-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
#js-product-list-top .products-sort-order .select-title {
  border: 1px solid var(--gris-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: .85rem;
}

/* Faceted search sidebar */
#search_filters {
  position: sticky;
  top: 90px;
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--blanc);
}
#search_filters .facet {
  border-bottom: 1px solid var(--gris-border);
  padding: 16px 0;
}
#search_filters .facet:last-child { border-bottom: none; }
#search_filters .facet .facet-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 10px;
}
#search_filters .facet .facet-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--noir-light);
  padding: 4px 0;
  cursor: pointer;
}
#search_filters .facet .custom-checkbox input[type="checkbox"] + span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gris-border);
  border-radius: 4px;
}
#search_filters .facet .custom-checkbox input[type="checkbox"]:checked + span {
  background: var(--rouge);
  border-color: var(--rouge);
}

/* Color swatches in facets */
#search_filters .facet .color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gris-border);
  display: inline-block;
}
#search_filters .facet .color.active {
  border-color: var(--noir);
  box-shadow: 0 0 0 2px var(--blanc), 0 0 0 4px var(--noir);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 24px 0;
}
.pagination .page-list li {
  display: inline-block;
}
.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 8px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--noir-light);
  border: 1px solid var(--gris-border);
  transition: all var(--transition);
}
.pagination .page-list li.current a,
.pagination .page-list li.current span {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}
.pagination .page-list li a:hover {
  background: var(--gris-bg);
  border-color: var(--noir-light);
}
.pagination .previous,
.pagination .next {
  font-weight: 600;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP)
   ========================================================================== */
.page-product #wrapper {
  background: var(--gris-bg);
  padding-top: 24px;
}

/* Grid layout */
.page-product .product-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: start;
}
.page-product .product-container > .col-md-6 {
  width: 100%;
  max-width: 100%;
  flex: none;
  float: none;
  padding: 0;
}

/* Image gallery */
.page-product .images-container {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.page-product .product-cover {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.page-product .product-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.page-product .product-images {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
}
.page-product .product-images .thumb-container {
  flex: 0 0 72px;
}
.page-product .product-images .thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.page-product .product-images .thumb.selected,
.page-product .product-images .thumb:hover {
  border-color: var(--rouge);
}
.page-product .product-cover .layer {
  border-radius: var(--radius-sm);
}

/* Info column wrapper */
.page-product .product-information {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.page-product .product-container > .col-md-6:last-child > .h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--noir);
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Prices on PDP */
.page-product .product-prices {
  margin-bottom: 16px;
}
.page-product .product-prices .current-price .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rouge);
}
.page-product .product-prices .regular-price {
  text-decoration: line-through;
  color: var(--gris-text);
  font-size: 1rem;
}
.page-product .product-prices .discount {
  display: inline-block;
  background: var(--rouge);
  color: var(--blanc);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 700;
}

/* Variants as chips */
.page-product .product-variants .product-variants-item {
  margin-bottom: 12px;
}
.page-product .product-variants .control-label {
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 8px;
  color: var(--noir);
}
.page-product .product-variants .input-color,
.page-product .product-variants .color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gris-border);
  cursor: pointer;
}
.page-product .product-variants .input-color:hover,
.page-product .product-variants .color:hover,
.page-product .product-variants .input-color.selected,
.page-product .product-variants .color.selected {
  border-color: var(--noir);
  box-shadow: 0 0 0 2px var(--blanc), 0 0 0 4px var(--noir);
}
.page-product .product-variants select {
  border: 2px solid var(--gris-border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: var(--ff-body);
  font-size: .9rem;
}

/* Quantity pill + Add to cart */
.page-product .product-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.page-product .product-quantity .qty {
  display: flex;
  align-items: center;
  border: 2px solid var(--gris-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.page-product .product-quantity .qty input {
  width: 52px;
  height: 44px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ff-body);
  background: transparent;
  -moz-appearance: textfield;
}
.page-product .product-quantity .qty input::-webkit-inner-spin-button,
.page-product .product-quantity .qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.page-product .product-quantity .qty .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 44px;
  background: var(--gris-bg);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background var(--transition);
}
.page-product .product-quantity .qty .qty-btn:hover { background: var(--gris-border); }

.page-product .product-quantity .add .btn.add-to-cart {
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 32px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--transition);
}
.page-product .product-quantity .add .btn.add-to-cart:hover { background: var(--rouge-dark); }

/* Availability */
.page-product #product-availability {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .85rem;
}
.page-product .product-available { color: #16a34a; }
.page-product .product-last-items { color: #d97706; }
.page-product .product-unavailable { color: var(--rouge); }

/* Product desc details (existing grid) */
.product-desc-details .desc-col,
.product-desc-details .details-col {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
}
.product-desc-details .desc-col .section-title,
.product-desc-details .details-col .section-title {
  border-bottom-color: var(--rouge);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
  background: var(--noir);
  color: rgba(255,255,255,.8);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px 24px 40px;
}
.footer-main a { color: rgba(255,255,255,.7); }
.footer-main a:hover { color: var(--blanc); }

.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand .footer-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--rouge); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--blanc); }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blanc);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blanc); }

/* Footer existing modules restyle */
.footer-container {
  background: var(--noir) !important;
  color: rgba(255,255,255,.7);
  padding: 0;
}
.footer-container .row { margin: 0; }
.footer-container li a { color: rgba(255,255,255,.6); }
.footer-container li a:hover { color: var(--blanc); }
.footer-container .text-sm-center,
.footer-container .text-xs-center { color: rgba(255,255,255,.5); }

/* PS linklist restyle */
.footer-container .links .title {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blanc);
}

/* Reassurance strip (above copyright) */
.footer-reassurance {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 28px 24px;
}
.footer-reassurance .blockreassurance {
  padding: 0;
}
.footer-reassurance .blockreassurance .row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0;
}
.footer-reassurance .blockreassurance .row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  width: auto;
  max-width: none;
  padding: 0;
}
.footer-reassurance .block-icon {
  flex-shrink: 0;
}
.footer-reassurance .block-icon img {
  height: 28px;
  width: 28px;
  opacity: .7;
  filter: brightness(0) invert(1);
  visibility: visible !important;
}
.footer-reassurance .block-title {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8) !important;
  white-space: nowrap;
}
.footer-reassurance .blockreassurance p {
  display: none;
}

/* Copyright bar */
.footer-copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* Override PS default footer */
.footer-container > .container > .row:last-child p.text-sm-center a {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}

/* ==========================================================================
   SHOPPING CART (header icon + badge)
   ========================================================================== */
#_desktop_cart .blockcart {
  background: transparent;
  border-radius: 0;
  height: auto;
  padding: 0;
}
#_desktop_cart .blockcart .header {
  display: flex;
  align-items: center;
}
#_desktop_cart .blockcart .header a {
  color: var(--noir-light);
}
#_desktop_cart .blockcart .shopping-cart {
  color: var(--noir-light);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
#wrapper .breadcrumb {
  font-size: .82rem;
  color: var(--gris-text);
  padding: 0;
  margin-bottom: 16px;
}
#wrapper .breadcrumb a { color: var(--gris-text); }
#wrapper .breadcrumb a:hover { color: var(--rouge); }

/* ==========================================================================
   WRAPPER OVERRIDE
   ========================================================================== */
#wrapper {
  background: var(--blanc);
  padding-top: 0;
}
.page-category #wrapper,
.page-search #wrapper {
  background: var(--gris-bg);
}

/* ==========================================================================
   FORMS & MISC OVERRIDES
   ========================================================================== */
.form-control {
  border: 2px solid var(--gris-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  background: var(--blanc);
  padding: 10px 14px;
  transition: border-color var(--transition);
}
.form-control:focus {
  border-color: var(--rouge);
  outline: none;
  box-shadow: 0 0 0 3px rgba(227,6,19,.1);
}

.btn-primary {
  background: var(--rouge);
  border-color: var(--rouge);
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--rouge-dark);
  border-color: var(--rouge-dark);
}

/* Cart modal restyle */
.blockcart-modal .modal-header {
  background: var(--gris-bg);
  border-bottom: 1px solid var(--gris-border);
}
.blockcart-modal .modal-body {
  padding: 24px;
}
.blockcart-modal .cart-content .btn {
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Narrow desktop — hide wordmark when nav doesn't fit */
@media (max-width: 1200px) {
  .header-logo .wordmark { display: none; }
}

/* Tablet <= 920px */
@media (max-width: 920px) {
  /* Header */
  .topbar { display: none; }
  .ann { font-size: .75rem; padding: 6px 12px; }
  #header { top: calc(-1 * var(--ann-h, 36px)); } /* only ann to scroll off */
  .header-nav-menu { display: none; }
  .burger { display: flex; }
  .header-inner { height: 60px; }

  /* Grids to 2 columns */
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-home .featured-products .products.row,
  .page-home .prods .products.row {
    grid-template-columns: repeat(2, 1fr);
  }
  #js-product-list .products.row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* PDP single column */
  .page-product .product-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Trust strip 2 columns */
  #block-reassurance ul {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer 2 columns */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 24px 30px;
  }
  .footer-copyright { text-align: center; }
  .footer-reassurance .blockreassurance .row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Hero */
  #carousel.hero-slider .carousel-item img { height: 350px; }
}

/* Mobile <= 540px */
@media (max-width: 540px) {
  /* Single column grids */
  .cats-grid { grid-template-columns: 1fr; }
  .page-home .featured-products .products.row,
  .page-home .prods .products.row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #js-product-list .products.row {
    grid-template-columns: 1fr;
  }

  /* Newsletter stacked */
  .block_newsletter .input-wrapper input[name="email"] {
    min-width: 0;
    width: 100%;
  }

  /* Trust strip single */
  #block-reassurance ul {
    grid-template-columns: 1fr;
  }

  /* Footer single column */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px 20px;
  }

  /* Hero smaller */
  #carousel.hero-slider .carousel-item img { height: 260px; }
  #carousel.hero-slider .caption h2.display-1 { font-size: 1.3rem !important; }

  /* Section padding reduction */
  .section-pad { padding: 40px 0; }
  .cats { padding: 40px 0; }
  .koi { padding: 48px 0; }
}

/* ==========================================================================
   MOBILE SEARCH PANEL — adapt dropdown for small screens
   ========================================================================== */
@media (max-width: 920px) {
  .header-search {
    padding: 12px 16px;
  }
  .header-search #search_widget form {
    max-width: 100%;
  }
  .header-search #search_widget input[type="text"] {
    font-size: .92rem;
    padding: 12px 44px 12px 44px;
  }
}

/* ==========================================================================
   MOBILE DRAWER — slide-in + improved UX
   ========================================================================== */
@media (max-width: 920px) {
  #mobile_top_menu_wrapper {
    position: fixed !important;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh !important;
    background: var(--blanc);
    z-index: 2001;
    overflow-y: auto;
    transition: left .3s ease;
    padding: 20px;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    display: block !important;
  }
  #mobile_top_menu_wrapper.open {
    left: 0;
  }
  .drawer-overlay.active ~ #mobile_top_menu_wrapper,
  #mobile_top_menu_wrapper.open {
    left: 0;
  }

  /* -- Drawer search -- */
  .drawer-search {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gris-border);
  }
  .drawer-search form {
    position: relative;
    display: flex;
    align-items: center;
  }
  .drawer-search input[type="text"] {
    width: 100%;
    padding: 11px 44px 11px 14px;
    border: 1px solid var(--gris-border);
    border-radius: var(--radius-pill);
    font-size: .88rem;
    font-family: var(--ff-body);
    background: var(--gris-bg);
    outline: none;
  }
  .drawer-search input[type="text"]:focus {
    border-color: var(--rouge);
    background: var(--blanc);
  }
  .drawer-search button[type="submit"] {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rouge);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
  }

  /* -- Drawer account link -- */
  .drawer-account {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--gris-border);
    font-weight: 600;
    font-size: .9rem;
    color: var(--noir);
  }
  .drawer-account:hover {
    color: var(--rouge);
  }
  .drawer-account svg {
    flex-shrink: 0;
    color: var(--gris-text);
  }

  /* -- Mobile menu — improved touch targets & hierarchy -- */
  #mobile_top_menu_wrapper .js-top-menu.mobile {
    padding: 0;
  }

  /* Top-level list reset */
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Top-level items */
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] > li {
    border-bottom: 1px solid var(--gris-border);
  }
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] > li:last-child {
    border-bottom: none;
  }

  /* Top-level links — 48px min touch target */
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] > li > a,
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] > li > .dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-weight: 700;
    font-size: .92rem;
    color: var(--noir);
    text-transform: uppercase;
    letter-spacing: .03em;
    min-height: 48px;
  }
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] > li > a:hover,
  #mobile_top_menu_wrapper .top-menu[data-depth="0"] > li > .dropdown-item:hover {
    color: var(--rouge);
  }

  /* Collapse toggle icons — large touch zone */
  #mobile_top_menu_wrapper .navbar-toggler,
  #mobile_top_menu_wrapper [data-toggle="collapse"],
  #mobile_top_menu_wrapper .collapse-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    color: var(--gris-text);
    background: none;
    border: none;
    flex-shrink: 0;
    padding: 0;
  }
  #mobile_top_menu_wrapper .collapse-icons .material-icons {
    font-size: 22px;
  }

  /* Sub-menu containers */
  #mobile_top_menu_wrapper .sub-menu {
    background: var(--gris-bg);
    border-radius: var(--radius-sm);
    margin: 0 0 8px;
    padding: 4px 0;
    box-shadow: none;
    border: none;
  }

  /* Depth-1 list reset */
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  /* Depth-1 items — 44px min touch target */
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] > li {
    flex: none;
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] > li > a,
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] > li > .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--noir-light);
    min-height: 44px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: var(--radius-sm);
  }
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] > li > a:hover,
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] > li > .dropdown-item:hover {
    color: var(--rouge);
    background: rgba(227,6,19,.06);
  }

  /* Depth-2+ items */
  #mobile_top_menu_wrapper .top-menu[data-depth="2"] {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #mobile_top_menu_wrapper .top-menu[data-depth="2"] > li > a,
  #mobile_top_menu_wrapper .top-menu[data-depth="2"] > li > .dropdown-item {
    padding: 8px 14px 8px 28px;
    font-size: .82rem;
    color: var(--gris-text);
    min-height: 40px;
    display: flex;
    align-items: center;
  }
  #mobile_top_menu_wrapper .top-menu[data-depth="2"] > li > a:hover,
  #mobile_top_menu_wrapper .top-menu[data-depth="2"] > li > .dropdown-item:hover {
    color: var(--rouge);
  }

  /* Sub-menus inside depth-1 (no absolute positioning) */
  #mobile_top_menu_wrapper .top-menu[data-depth="1"] .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    width: auto;
    border-radius: 0;
  }

  /* Bottom section (contact, etc.) */
  #mobile_top_menu_wrapper .js-top-menu-bottom {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gris-border);
  }
}

/* ==========================================================================
   HIDE LANGUAGE / CURRENCY SELECTORS (FR only site)
   ========================================================================== */
.language-selector-wrapper,
.currency-selector,
#_desktop_language_selector,
#_desktop_currency_selector {
  display: none !important;
}
