/* =============================================================================
   KÉLÈR — Override stylesheet
   Appliqué après theme.css. Source de vérité = src/scss/_variables.scss
   ============================================================================= */

:root {
  /* Tokens marque — THÈME CLAIR (mapping inversé : "noir" sert de fond clair, "ivoire" sert de texte sombre) */
  --keler-noir: #FAFAF7;            /* fond principal — ivoire très clair */
  --keler-anthracite: #F1ECE0;      /* fond secondaire — beige doux */
  --keler-gris-pierre: #D8D3C5;     /* bordures fines */
  --keler-gris-lave: #7A7670;       /* texte secondaire */
  --keler-ivoire: #1B1B1D;          /* texte principal sombre */
  --keler-blanc: #0F0F10;           /* très sombre (titres) */
  --keler-or: #A88341;              /* or contrasté pour fond clair */
  --keler-or-clair: #C9A961;        /* or moyen */
  --keler-or-sombre: #6E5828;       /* or très foncé */

  /* Bootstrap remap */
  --bs-body-bg: var(--keler-noir);
  --bs-body-color: var(--keler-ivoire);
  --bs-body-secondary-bg: var(--keler-anthracite);
  --bs-body-tertiary-bg: var(--keler-anthracite);
  --bs-body-tertiary-color: var(--keler-gris-lave);
  --bs-border-color: var(--keler-gris-pierre);
  --bs-border-color-translucent: rgba(245, 241, 232, 0.1);
  --bs-primary: var(--keler-or);
  --bs-primary-rgb: 201, 169, 97;
  --bs-link-color: var(--keler-or);
  --bs-link-color-rgb: 201, 169, 97;
  --bs-link-hover-color: var(--keler-or-clair);
  --bs-link-hover-color-rgb: 228, 204, 138;
  --bs-emphasis-color: var(--keler-ivoire);
  --bs-secondary-color: var(--keler-gris-lave);
  --bs-tertiary-color: var(--keler-gris-lave);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-pill: 0;

  /* Typo */
  --bs-body-font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --bs-body-font-weight: 400;
}

/* -----------------------------------------------------------------------------
   Base
   ----------------------------------------------------------------------------- */

body {
  background-color: var(--keler-noir);
  color: var(--keler-ivoire);
  font-family: var(--bs-body-font-family);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper,
#main,
.page-wrapper,
.page-home {
  background-color: var(--keler-noir);
}

/* -----------------------------------------------------------------------------
   Typographie
   ----------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.product-title,
.h1-product-title,
.h2-product-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--keler-ivoire);
  line-height: 1.2;
}

h1, .h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 300; }
h2, .h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; }

/* Détails techniques uppercase tracking */
.text-uppercase,
.product-flag,
.section-title,
small.label,
.btn,
.title-block {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.15em;
}

/* Liens hors boutons */
a:not(.btn) {
  color: var(--keler-or);
  transition: color 600ms ease;
}
a:not(.btn):hover,
a:not(.btn):focus {
  color: var(--keler-or-clair);
}

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

#header,
.header-top,
.header-nav,
.header__nav,
.menu,
.top-menu {
  background-color: var(--keler-noir) !important;
  border-bottom: 1px solid var(--keler-gris-pierre);
}

.header-nav .header-nav__icon,
.header-top .header-nav__icon,
#header .header__logo img {
  filter: brightness(0) invert(1);
}

.header-nav a,
.top-menu a,
.menu a {
  color: var(--keler-ivoire) !important;
}
.header-nav a:hover,
.top-menu a:hover,
.menu a:hover {
  color: var(--keler-or) !important;
}

/* -----------------------------------------------------------------------------
   Cards / produits
   ----------------------------------------------------------------------------- */

.card,
.product-miniature,
.product-miniature__card,
.js-product-miniature {
  background-color: var(--keler-anthracite);
  border: 1px solid var(--keler-gris-pierre);
  border-radius: 0;
  color: var(--keler-ivoire);
  transition: border-color 600ms ease, transform 600ms ease;
}
.card:hover,
.product-miniature:hover,
.product-miniature__card:hover {
  border-color: var(--keler-or);
}

.product-title a,
.product-miniature__title a {
  color: var(--keler-ivoire) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}
.product-price,
.price {
  color: var(--keler-or);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.regular-price {
  color: var(--keler-gris-lave);
  text-decoration: line-through;
}

/* -----------------------------------------------------------------------------
   Boutons
   ----------------------------------------------------------------------------- */

.btn {
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  padding: 0.875rem 2rem;
  transition: all 600ms ease;
}

.btn-primary,
.btn-secondary,
.btn--primary {
  background-color: transparent;
  border: 1px solid var(--keler-or);
  color: var(--keler-or);
}
.btn-primary:hover,
.btn-secondary:hover,
.btn--primary:hover,
.btn-primary:focus,
.btn-secondary:focus {
  background-color: var(--keler-or);
  border-color: var(--keler-or);
  color: var(--keler-noir);
}

.btn-tertiary,
.btn-light {
  background-color: transparent;
  border: 1px solid var(--keler-ivoire);
  color: var(--keler-ivoire);
}
.btn-tertiary:hover,
.btn-light:hover {
  background-color: var(--keler-ivoire);
  color: var(--keler-noir);
}

/* -----------------------------------------------------------------------------
   Forms / inputs
   ----------------------------------------------------------------------------- */

.form-control,
.input-group-text,
select.form-control {
  background-color: var(--keler-anthracite);
  border: 1px solid var(--keler-gris-pierre);
  border-radius: 0;
  color: var(--keler-ivoire);
}
.form-control:focus {
  background-color: var(--keler-anthracite);
  border-color: var(--keler-or);
  color: var(--keler-ivoire);
  box-shadow: 0 0 0 1px var(--keler-or);
}
.form-control::placeholder {
  color: var(--keler-gris-lave);
}

/* -----------------------------------------------------------------------------
   Sections / containers
   ----------------------------------------------------------------------------- */

.elementor-section,
.featured-products,
.products-section-title-wrapper,
section[class*="section"],
.featured-categories {
  padding-block: clamp(3rem, 8vw, 8rem);
}

.section-title,
.products-section-title {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--keler-ivoire);
  margin-bottom: 3rem;
}

/* Séparateur signature ◆ */
.section-title::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.625em;
  margin-top: 1rem;
  letter-spacing: 0;
}

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

#footer,
.footer-container,
.l-footer {
  background-color: var(--keler-noir);
  border-top: 1px solid var(--keler-gris-pierre);
  color: var(--keler-ivoire);
  padding-block: 4rem 2rem;
}
#footer h3,
#footer .h3,
.footer-container h3,
.l-footer h3 {
  color: var(--keler-or);
  font-size: 0.8125rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
#footer a,
.footer-container a,
.l-footer a {
  color: var(--keler-ivoire);
  font-size: 0.875rem;
}
#footer a:hover,
.footer-container a:hover,
.l-footer a:hover {
  color: var(--keler-or);
}

/* -----------------------------------------------------------------------------
   Misc
   ----------------------------------------------------------------------------- */

.alert {
  border-radius: 0;
  border-width: 1px;
}

hr {
  border-color: var(--keler-gris-pierre);
  opacity: 1;
}

::selection {
  background: var(--keler-or);
  color: var(--keler-noir);
}

/* Scrollbar (WebKit) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--keler-noir);
}
::-webkit-scrollbar-thumb {
  background: var(--keler-gris-pierre);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--keler-or-sombre);
}

/* =============================================================================
   FICHE PRODUIT
   ============================================================================= */

/* Container produit : aération max */
.product__container,
.product-container,
[id="main"] .product {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

/* Breadcrumb minimaliste */
.breadcrumb,
.breadcrumb-wrapper {
  background: transparent !important;
  border: none !important;
  padding: 1.5rem 0 !important;
  margin-bottom: 0 !important;
}
.breadcrumb a,
.breadcrumb__item a,
.breadcrumb-item a {
  color: var(--keler-gris-lave) !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.breadcrumb a:hover,
.breadcrumb__item a:hover,
.breadcrumb-item a:hover {
  color: var(--keler-or) !important;
}

/* Galerie produit : pleine largeur, fond noir, sans cadre */
.product-cover,
.product-images,
.product__cover,
.product-images-wrapper {
  background-color: var(--keler-noir) !important;
  border: none !important;
  padding: 0 !important;
}
.product-cover img,
.product__cover img,
.images-container img {
  background-color: var(--keler-noir);
  mix-blend-mode: normal;
}

/* Miniatures de la galerie */
.product-thumb,
.thumb-container,
.product-images__thumb {
  border: 1px solid var(--keler-gris-pierre) !important;
  border-radius: 0 !important;
  background: var(--keler-anthracite) !important;
  transition: border-color 600ms ease;
}
.product-thumb:hover,
.product-thumb.selected,
.product-images__thumb:hover,
.product-images__thumb.is-active {
  border-color: var(--keler-or) !important;
}

/* Titre produit : très grand Cormorant léger */
h1.product-title,
h1.h1-product-title,
.product__title,
.product-information h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--keler-ivoire);
}

/* Référence produit : tracking large, petit, gris */
.product__reference,
.product-reference,
.product-information .product__reference {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--keler-gris-lave);
  margin-bottom: 2rem;
}
.product__reference label,
.product-reference label {
  display: none; /* le mot "Référence" est superflu */
}

/* Description courte : tagline en italique Cormorant */
.product-description-short,
.product__description-short,
.product__short-description {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--keler-ivoire);
  margin: 1.5rem 0 2.5rem;
  padding: 0 !important;
  border: none !important;
}
.product-description-short p,
.product__description-short p {
  margin-bottom: 0;
}

/* Bloc prix : or, propre, généreux */
.product-prices,
.product__prices,
.current-price,
.product-information .price {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.75rem !important;
  color: var(--keler-or) !important;
  letter-spacing: 0.05em;
  margin: 2rem 0;
}
.tax-shipping-delivery-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--keler-gris-lave);
}

/* Quantité : minimal */
.product__quantity,
.product-quantity .quantity-button {
  border: 1px solid var(--keler-gris-pierre);
  background: transparent;
}
.product__quantity input,
.product-quantity input {
  background: transparent !important;
  color: var(--keler-ivoire) !important;
  border: none !important;
}

/* CTA Add to cart : pleine largeur, élégant */
.product__add-to-cart .btn,
.product-add-to-cart .btn,
.btn.add-to-cart,
button[data-button-action="add-to-cart"] {
  width: 100%;
  padding: 1.25rem 2rem !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.25em !important;
  background: transparent !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-or) !important;
  font-weight: 500;
  text-transform: uppercase;
}
.product__add-to-cart .btn:hover,
.product-add-to-cart .btn:hover,
.btn.add-to-cart:hover,
button[data-button-action="add-to-cart"]:hover {
  background: var(--keler-or) !important;
  color: var(--keler-noir) !important;
}

/* Caractéristiques (features) en grid */
.product__features,
.product-features,
.data-sheet,
.product__features .product-features-list {
  margin-top: 3rem;
}
.product__features dl,
.data-sheet,
.product-features {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--keler-gris-pierre);
}
@media (min-width: 576px) {
  .product__features dl,
  .data-sheet,
  .product-features {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
}
.product__features dt,
.data-sheet .name,
.product-features .name {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--keler-gris-lave) !important;
  font-weight: 500 !important;
  background: transparent !important;
  border: none !important;
  padding: 1.25rem 0 0.25rem !important;
  margin: 0 !important;
}
.product__features dd,
.data-sheet .value,
.product-features .value {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: var(--keler-ivoire) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 0 1.25rem !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--keler-gris-pierre);
}

/* Accordion description / specs : flat épuré */
.product__accordion .accordion-button,
.product__tabs .nav-link {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--keler-gris-pierre) !important;
  border-radius: 0 !important;
  color: var(--keler-ivoire) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500 !important;
  padding: 1.5rem 0 !important;
  box-shadow: none !important;
}
.product__accordion .accordion-button::after {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}
.product__accordion .accordion-button:not(.collapsed) {
  color: var(--keler-or) !important;
}
.product__accordion .accordion-body {
  padding: 0 0 2rem !important;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--keler-ivoire);
}

/* Reassurance block : icônes + texte propres */
.blockreassurance--product,
.block-reassurance,
[class*="reassurance"] {
  background: transparent !important;
  border: 1px solid var(--keler-gris-pierre) !important;
  margin-top: 3rem;
  padding: 2rem !important;
}
.blockreassurance--product .item-product,
.block-reassurance .item {
  background: transparent !important;
}
.blockreassurance--product img,
.block-reassurance img {
  filter: brightness(0) invert(0.85) sepia(0.5) saturate(2) hue-rotate(15deg);
  max-width: 28px;
  max-height: 28px;
}
.blockreassurance--product p,
.block-reassurance p {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--keler-ivoire);
}

/* Boutons share : minimaux */
.social-sharing,
.ps-share-buttons {
  margin-top: 2rem;
}
.social-sharing a,
.ps-share-buttons a {
  background: transparent !important;
  border: 1px solid var(--keler-gris-pierre) !important;
  border-radius: 0 !important;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  filter: brightness(0) invert(0.85);
  transition: all 600ms ease;
}
.social-sharing a:hover,
.ps-share-buttons a:hover {
  border-color: var(--keler-or) !important;
  filter: brightness(0) invert(0.85) sepia(0.5) saturate(2) hue-rotate(15deg);
}

/* Séparateur ◆ après le titre produit */
.product-information h1.product-title::after,
.product__title::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.5em;
  margin-top: 1.5rem;
  letter-spacing: 0;
  font-weight: 400;
}

/* Layout : on force une mise en page large et aérée */
@media (min-width: 992px) {
  .product__container .row,
  .product-container > .row {
    gap: 3rem 0;
  }
}

/* =============================================================================
   FICHE PRODUIT KÉLÈR — layout custom (templates/catalog/product.tpl)
   ============================================================================= */

.keler-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
@media (min-width: 992px) {
  .keler-product {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    padding: 5rem 2rem 8rem;
  }
}

/* Galerie (colonne gauche) */
.keler-product .product__left {
  position: sticky;
  top: 2rem;
  align-self: start;
}

/* Colonne droite : pile aérée */
.keler-product .product__right {
  display: flex;
  flex-direction: column;
}

/* Référence en haut */
.keler-product__reference {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--keler-or);
  margin-bottom: 1.25rem;
}

/* Nom du produit */
.keler-product__name {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--keler-ivoire);
  margin: 0 0 1.5rem !important;
}
.keler-product__name::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.4em;
  margin-top: 1.25rem;
  font-weight: 400;
}

/* Tagline */
.keler-product__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--keler-ivoire);
  margin-bottom: 2.5rem;
}
.keler-product__tagline p {
  margin: 0;
}

/* Spécifications grid */
.keler-product__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--keler-gris-pierre);
  border-bottom: 1px solid var(--keler-gris-pierre);
}
@media (min-width: 540px) {
  .keler-product__features {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
  }
}
.keler-product__features dt {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--keler-gris-lave) !important;
  font-weight: 500 !important;
  margin: 1rem 0 0.25rem !important;
  padding: 0 !important;
}
.keler-product__features dd {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  line-height: 1.4;
}

/* Bloc prix : centré largeur, or, séparé */
.keler-product .product__prices {
  margin: 1rem 0 2rem !important;
  padding: 1.5rem 0;
}
.keler-product .product__price-tax-shipping-delivery-block,
.keler-product .product__prices-inline {
  font-family: "Inter", sans-serif !important;
  font-size: 1.875rem !important;
  font-weight: 300 !important;
  color: var(--keler-or) !important;
  letter-spacing: 0.04em;
}

/* Quantité minimale */
.keler-product .product-quantity,
.keler-product .product__quantity {
  margin-bottom: 1.5rem;
}
.keler-product .product-quantity .quantity-button,
.keler-product .product__quantity {
  border: 1px solid var(--keler-gris-pierre) !important;
  background: transparent !important;
  border-radius: 0 !important;
}

/* Add to cart */
.keler-product__actions .btn,
.keler-product .product__add-to-cart .btn {
  width: 100%;
  padding: 1.25rem 2rem !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.3em !important;
}

/* Réassurance dans la colonne droite */
.keler-product__reassurance {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--keler-gris-pierre);
}
.keler-product__reassurance .blockreassurance--product,
.keler-product__reassurance .block-reassurance {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}
.keler-product__reassurance > div {
  display: grid;
  gap: 1.25rem;
}

/* Bottom — description en accordéon, largeur lisible */
.keler-product__bottom {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}
.keler-product__story .accordion-button {
  font-family: "Inter", sans-serif !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500 !important;
}
.keler-product__story .accordion-body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--keler-ivoire);
}
.keler-product__story .product__description {
  max-width: 65ch;
}

/* Disable sticky on small */
@media (max-width: 991px) {
  .keler-product .product__left {
    position: static;
  }
}

/* =============================================================================
   PRODUCT CARD KÉLÈR — produit en star
   ============================================================================= */

.keler-card {
  background: transparent !important;
  border: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.keler-card a {
  color: inherit;
  text-decoration: none;
}

/* Image — la star : aspect 4/5 portrait, object-fit contain, fond subtil */
.keler-card__media-link {
  display: block;
  position: relative;
}
.keler-card__media {
  position: relative;
  background: var(--keler-anthracite);
  border: 1px solid var(--keler-gris-pierre);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 800ms ease;
}
.keler-card:hover .keler-card__media {
  border-color: var(--keler-or);
}
.keler-card__media img,
.keler-card__media .product-image,
.keler-card__media picture,
.keler-card__media picture img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  padding: 1.5rem;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.keler-card:hover .keler-card__media img {
  transform: scale(1.04);
}

/* Drapeaux produits (NEW, PROMO, etc.) si présents */
.keler-card .product-flags,
.keler-card .product-flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: transparent !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-or) !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0 !important;
  margin: 0 !important;
  z-index: 2;
}

/* Body de la card */
.keler-card__body {
  padding: 1.5rem 0.25rem 0.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.keler-card__reference {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--keler-or);
  margin: 0;
}

.keler-card__title-link {
  display: inline-block;
}
.keler-card__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  color: var(--keler-ivoire) !important;
  margin: 0 !important;
  line-height: 1.2;
  transition: color 600ms ease;
}
.keler-card:hover .keler-card__title {
  color: var(--keler-or) !important;
}

.keler-card__price {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--keler-or);
  letter-spacing: 0.05em;
  margin: 0;
}
.keler-card__regular-price {
  text-decoration: line-through;
  color: var(--keler-gris-lave);
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

/* CTA add to cart — sous le prix, fond transparent bordure or */
.keler-card__form {
  margin: 1rem 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.keler-card__cta {
  display: inline-block;
  background: transparent !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-or) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.875rem 1.75rem !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: all 600ms ease;
  cursor: pointer;
  min-width: 200px;
}
.keler-card__cta:hover,
.keler-card__cta:focus {
  background: var(--keler-or) !important;
  color: var(--keler-noir) !important;
  text-decoration: none !important;
}

/* Layout grille des miniatures */
.products,
.products-grid,
.featured-products__list,
.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 576px) {
  .products,
  .products-grid,
  .featured-products__list,
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.5rem;
  }
}
@media (min-width: 992px) {
  .products,
  .products-grid,
  .featured-products__list,
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 3rem;
  }
}

/* Section "Produits phares" sur home : titre centré, espace généreux */
.featured-products,
.products-section-title-wrapper {
  padding: 6rem 1.5rem !important;
  background: transparent;
}
@media (min-width: 992px) {
  .featured-products,
  .products-section-title-wrapper {
    padding: 8rem 2rem !important;
  }
}

/* =============================================================================
   QUANTITÉ — sélecteur fiche produit en bordure fine épurée
   ============================================================================= */

/* Wrapper minimal */
.product__actions-qty-add,
.product-quantity {
  margin-bottom: 1.5rem;
}

/* Le groupe est inline avec le bouton add to cart côte à côte */
.product__actions-qty-add {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .product__actions-qty-add {
    flex-direction: row;
    align-items: stretch;
  }
  .product__actions-qty-add .quantity-button {
    flex: 0 0 auto;
  }
  .product__actions-qty-add .product__add-to-cart {
    flex: 1 1 auto;
  }
}

/* Le selector lui-même */
.quantity-button,
.quantity-button__group,
.product__quantity {
  background: transparent !important;
  border: 1px solid var(--keler-gris-pierre) !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: stretch;
  height: 56px;
  width: auto;
  min-width: 140px;
  transition: border-color 600ms ease;
}
.quantity-button:hover,
.quantity-button__group:hover,
.product__quantity:hover {
  border-color: var(--keler-or) !important;
}

/* Boutons +/- : transparents, pas d'icon material, on utilise pseudo-elements */
.quantity-button .btn,
.quantity-button .js-decrement-button,
.quantity-button .js-increment-button,
button.decrement,
button.increment {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--keler-ivoire) !important;
  width: 48px;
  padding: 0 !important;
  position: relative;
  font-size: 0;
  box-shadow: none !important;
  transition: color 600ms ease;
}
.quantity-button .btn:hover,
button.decrement:hover,
button.increment:hover {
  color: var(--keler-or) !important;
  background: transparent !important;
}

/* Cache les material icons */
.quantity-button .material-icons,
.quantity-button .spinner-border {
  display: none !important;
}

/* Symboles − et + via pseudo-elements */
.quantity-button .js-decrement-button::before,
button.decrement::before {
  content: "−";
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}
.quantity-button .js-increment-button::before,
button.increment::before {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}

/* Input central */
.quantity-button input,
.quantity-button__group input,
.js-quantity-wanted {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid var(--keler-gris-pierre) !important;
  border-right: 1px solid var(--keler-gris-pierre) !important;
  border-radius: 0 !important;
  color: var(--keler-ivoire) !important;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.25rem !important;
  font-weight: 400;
  width: 60px;
  padding: 0 !important;
  box-shadow: none !important;
  -moz-appearance: textfield;
}
.quantity-button input:focus {
  outline: none;
  background: transparent !important;
  border-color: var(--keler-gris-pierre) !important;
  box-shadow: none !important;
  color: var(--keler-or) !important;
}
.quantity-button input::-webkit-outer-spin-button,
.quantity-button input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* =============================================================================
   AFFINEMENTS — bordure card et footer luxe
   ============================================================================= */

/* Bordure card quasi-invisible au repos, or au hover */
.keler-card__media {
  border: 1px solid rgba(245, 241, 232, 0.06) !important;
}
.keler-card:hover .keler-card__media {
  border-color: var(--keler-or) !important;
}

/* Footer luxe : fond noir profond (pas anthracite), filets fins, espacement */
#footer,
.l-footer,
.footer-container,
.page-footer {
  background-color: var(--keler-noir) !important;
  border-top: 1px solid var(--keler-gris-pierre);
  padding-block: 5rem 2.5rem;
}
.l-footer .container,
#footer .container {
  max-width: 1400px;
}

/* Titres des blocs footer en label or fin */
#footer h3,
.l-footer h3,
.footer-container h3,
.block-contact-title,
.block-social-title,
[class*="footer"] h3,
[class*="footer"] .h3 {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.25em !important;
  color: var(--keler-or) !important;
  margin-bottom: 1.5rem !important;
}

/* Liens du footer : ivoire, hover or, transition douce */
#footer a,
.l-footer a,
.footer-container a {
  color: var(--keler-ivoire) !important;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2;
  transition: color 600ms ease;
}
#footer a:hover,
.l-footer a:hover,
.footer-container a:hover {
  color: var(--keler-or) !important;
}

/* Listes du footer : pas de puces */
#footer ul,
.l-footer ul,
.footer-container ul,
.block-contact ul,
.linklist ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
#footer ul li,
.l-footer ul li {
  margin-bottom: 0.4rem;
}

/* Bloc contact : aérer, retirer les icônes lourdes ou les styler */
.block-contact .material-icons,
[class*="contact-rich"] svg,
[class*="contact-rich"] .material-icons {
  color: var(--keler-or) !important;
  margin-right: 0.5rem;
  font-size: 1rem !important;
}

/* Réassurance dans le footer (si présente) : minimaliste */
.l-footer .blockreassurance,
.footer-container .blockreassurance,
[class*="footer"] .block-reassurance {
  background: transparent !important;
  border-top: 1px solid var(--keler-gris-pierre) !important;
  border-bottom: 1px solid var(--keler-gris-pierre) !important;
  padding: 2.5rem 0 !important;
  margin-bottom: 4rem !important;
}
.l-footer .blockreassurance .item-product,
.l-footer .blockreassurance .item {
  text-align: center;
  padding: 0 1rem;
}

/* Social icons : fines bordures or */
.ps-social-follow ul,
.social-icons,
.block-social ul {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ps-social-follow li,
.social-icons li,
.block-social li {
  margin: 0 !important;
}
.ps-social-follow a,
.social-icons a,
.block-social a {
  width: 40px;
  height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--keler-gris-pierre) !important;
  border-radius: 0 !important;
  filter: brightness(0) invert(0.85);
  background: transparent !important;
  transition: all 600ms ease;
}
.ps-social-follow a:hover,
.social-icons a:hover,
.block-social a:hover {
  border-color: var(--keler-or) !important;
  filter: brightness(0) invert(0.75) sepia(1) saturate(3) hue-rotate(15deg);
}

/* Copyright bas de page — petit, aéré */
#footer .copyright,
.copyright,
[class*="copyright"] {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  color: var(--keler-gris-lave) !important;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4rem !important;
  padding-top: 2.5rem !important;
  border-top: 1px solid var(--keler-gris-pierre);
}

/* =============================================================================
   FIX flags : la <ul> doit être un wrapper transparent, le badge <li> = pill or
   ============================================================================= */
.keler-card .product-flags,
.keler-card ul.product-flags {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  right: 1rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 2;
}

.keler-card .product-flags li,
.keler-card .product-flags li.badge {
  display: inline-block !important;
  background: transparent !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-or) !important;
  padding: 0.35rem 0.75rem !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0 !important;
  margin: 0 !important;
  line-height: 1;
}

/* Photo produit en pleine card : edge-to-edge, cover (zéro padding) */
.keler-card__media img,
.keler-card__media .product-image,
.keler-card__media picture,
.keler-card__media picture img {
  padding: 0 !important;
  object-fit: cover !important;
}


/* Fill : forcer la chaîne de wrappers à 100% pour que object-fit:cover puisse remplir */
.keler-card__media > .product-miniature__image-container,
.keler-card__media .product-miniature__image-link,
.keler-card__media picture {
  width: 100% !important;
  height: 100% !important;
}
.keler-card__media .product-miniature__image-link {
  display: flex !important;
  align-items: stretch;
  justify-content: stretch;
}
.keler-card__media picture {
  display: flex !important;
  flex: 1 1 100%;
}
.keler-card__media img.product-miniature__image,
.keler-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  flex: 1 1 100%;
}

/* TRUE edge-to-edge : nuke padding/margin/border de TOUS les wrappers internes */
.keler-card__media,
.keler-card__media * {
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
}
.keler-card__media > *,
.keler-card__media > * > *,
.keler-card__media > * > * > *,
.keler-card__media > * > * > * > * {
  padding: 0 !important;
  margin: 0 !important;
}
/* =============================================================================
   PRODUCT MEDIA — absolute fill (canonical)
   ============================================================================= */
.keler-card__media {
  position: relative !important;
  background: var(--keler-anthracite) !important;
  border: 1px solid rgba(245, 241, 232, 0.06) !important;
  aspect-ratio: 4 / 5 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.keler-card:hover .keler-card__media {
  border-color: var(--keler-or) !important;
}

/* Tous les wrappers internes : position absolute fill */
.keler-card__media > .product-miniature__image-container,
.keler-card__media .thumbnail-container,
.keler-card__media .product-miniature__image-link,
.keler-card__media picture {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
}

/* Image : absolute fill aussi */
.keler-card__media img,
.keler-card__media .product-miniature__image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  display: block !important;
}

/* =============================================================================
   KÉLÈR — REDESIGN LUXE v2
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. RESET & BASE — atmosphere (thème clair)
   ----------------------------------------------------------------------------- */

body {
  background:
    radial-gradient(ellipse at top, rgba(168, 131, 65, 0.05) 0%, transparent 60%),
    var(--keler-noir);
  background-attachment: fixed;
  color: var(--keler-ivoire);
}

.page-content--home {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
.page-content--home > section {
  width: 100% !important;
  display: block;
}
.page-content--home > .keler-hero {
  display: flex !important;
}

/* Tuer les bordures/résidus de container sur la home */
.page-home #wrapper > .container,
.page-home .l-wrapper,
body.page-index #wrapper {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* -----------------------------------------------------------------------------
   2. HEADER — épure & espacement luxe
   ----------------------------------------------------------------------------- */

.header {
  background: rgba(250, 250, 247, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 131, 65, 0.18) !important;
}

.header-top {
  padding: 0.5rem 0 !important;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08) !important;
}
.header-top a {
  color: var(--keler-gris-lave) !important;
  font-size: 0.7rem;
}
.header-top a:hover {
  color: var(--keler-or) !important;
}

.header-bottom {
  padding: 1.25rem 0 !important;
}
@media (min-width: 768px) {
  .header-bottom {
    padding: 1.75rem 0 !important;
  }
}
.header-bottom__container {
  max-width: 1440px !important;
  padding-inline: 1.5rem !important;
}
@media (min-width: 992px) {
  .header-bottom__container {
    padding-inline: 3rem !important;
  }
}

/* -----------------------------------------------------------------------------
   3. LOGOTYPE KÉLÈR — wordmark sublime
   ----------------------------------------------------------------------------- */

.keler-logo__h1 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.keler-logo__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  color: var(--keler-ivoire) !important;
}
.keler-logo__link:hover {
  color: var(--keler-or) !important;
}

/* On masque l'image PrestaShop renderLogo */
.keler-logo__visual {
  display: none !important;
}
.keler-logo__visual img,
.keler-logo .logo {
  display: none !important;
}

.keler-logo__wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}
.keler-logo__brand {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  color: inherit;
  display: block;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .keler-logo__brand {
    font-size: 2.25rem;
  }
}
.keler-logo__tagline {
  font-family: "Inter", sans-serif !important;
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--keler-or);
  display: block;
  margin-top: 0.1rem;
}
@media (max-width: 575px) {
  .keler-logo__tagline {
    display: none;
  }
  .keler-logo__brand {
    font-size: 1.5rem;
    letter-spacing: 0.22em;
  }
}

/* Header icons (panier / connexion) — minimal */
.header-block__action-btn,
.header-block .btn,
.header-block a {
  color: var(--keler-ivoire) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem !important;
  background: transparent !important;
  border: none !important;
}
.header-block__action-btn:hover,
.header-block a:hover {
  color: var(--keler-or) !important;
}
.header-block__icon,
.header-block .material-icons {
  font-size: 1.25rem !important;
  color: var(--keler-or) !important;
}
.header-block__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0;
  background: var(--keler-or) !important;
  color: var(--keler-noir) !important;
  border-radius: 999px !important;
  padding: 0 0.35rem;
  margin-left: 0.25rem;
}

/* Search dans le header — sobre */
.header-bottom .search-widget input,
.header-bottom .form-control,
.header-bottom input[type="search"] {
  background: rgba(245, 241, 232, 0.04) !important;
  border: 1px solid rgba(245, 241, 232, 0.1) !important;
  color: var(--keler-ivoire) !important;
  letter-spacing: 0.05em;
  padding: 0.65rem 1rem !important;
  font-size: 0.8rem;
  min-width: 220px;
}
.header-bottom .search-widget input::placeholder {
  color: var(--keler-gris-lave) !important;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Menu principal — espacement luxe */
.menu, .top-menu, .header-nav__menu, .ps-mainmenu {
  display: flex;
  gap: 2.5rem;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}
.menu li, .top-menu li, .ps-mainmenu li {
  margin: 0 !important;
  padding: 0 !important;
}
.menu a, .top-menu a, .ps-mainmenu a {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.5rem 0 !important;
  color: var(--keler-ivoire) !important;
  position: relative;
}
.menu a::after, .top-menu a::after, .ps-mainmenu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--keler-or);
  transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1), left 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.menu a:hover::after, .top-menu a:hover::after, .ps-mainmenu a:hover::after {
  width: 100%;
  left: 0;
}

/* -----------------------------------------------------------------------------
   4. HERO — pleine largeur, dramatique
   ----------------------------------------------------------------------------- */

.keler-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  margin: 0;
  padding: 6rem 1.5rem 5rem;
  background: var(--keler-noir);
}
@media (min-width: 768px) {
  .keler-hero {
    min-height: 90vh;
    padding: 8rem 2rem 6rem;
  }
}

.keler-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(168, 131, 65, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(216, 211, 197, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, #FAFAF7 0%, #F1ECE0 50%, #FAFAF7 100%);
}
.keler-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,0,0,0.012) 2px, rgba(0,0,0,0.012) 3px);
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.keler-hero__media::after {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(28rem, 60vw, 50rem);
  color: rgba(168, 131, 65, 0.04);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.8;
  pointer-events: none;
  z-index: -1;
}
.keler-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250,250,247,0.55) 0%, rgba(250,250,247,0.15) 35%, rgba(250,250,247,0.7) 100%);
}

.keler-hero__inner {
  position: relative;
  text-align: center;
  max-width: 920px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.keler-hero__eyebrow {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--keler-or);
  margin: 0;
  padding-bottom: 0.5rem;
  position: relative;
}
.keler-hero__eyebrow::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--keler-or);
  margin: 1.25rem auto 0;
}

.keler-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--keler-ivoire);
  margin: 0;
  max-width: 14ch;
}
.keler-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--keler-or-clair);
  display: inline-block;
  margin-top: 0.2rem;
}

.keler-hero__lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--keler-ivoire);
  opacity: 0.82;
  margin: 0;
  max-width: 60ch;
}

.keler-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-top: 1rem;
}

.keler-hero__btn {
  display: inline-block;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--keler-noir) !important;
  background: var(--keler-or);
  padding: 0.95rem 2rem;
  border: 1px solid var(--keler-or);
  text-decoration: none !important;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.keler-hero__btn:hover {
  background: var(--keler-or-clair);
  border-color: var(--keler-or-clair);
  color: var(--keler-noir) !important;
  letter-spacing: 0.28em;
}

.keler-hero__link {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--keler-ivoire) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid transparent;
  transition: all 500ms ease;
}
.keler-hero__link:hover {
  color: var(--keler-or) !important;
  border-bottom-color: var(--keler-or);
  gap: 0.75rem;
}

.keler-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.keler-hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--keler-or));
  position: relative;
}
.keler-hero__scroll span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--keler-or);
  animation: keler-scroll 2.4s ease-in-out infinite;
}
@keyframes keler-scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-30px); opacity: 0.3; }
}

/* -----------------------------------------------------------------------------
   5. FEATURED PRODUCTS — section "Produits phares" reine
   ----------------------------------------------------------------------------- */

.ps-featuredproducts,
.featured-products {
  position: relative;
  padding: 7rem 1.5rem 8rem !important;
  max-width: 1500px;
  margin: 0 auto !important;
  background: transparent !important;
}
@media (min-width: 992px) {
  .ps-featuredproducts,
  .featured-products {
    padding: 10rem 3rem 12rem !important;
  }
}

/* Titre de section custom — large, serif, centré */
.ps-featuredproducts .h2,
.ps-featuredproducts h2,
.featured-products .h2,
.featured-products h2,
.products-section-title,
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  font-weight: 300 !important;
  text-align: center;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 0.75rem !important;
  padding: 0 !important;
  position: relative;
}

/* Eyebrow before section title — généré */
.ps-featuredproducts::before,
.featured-products::before {
  content: "Collection";
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--keler-or);
  margin-bottom: 1.25rem;
}

/* Diamant signature après le titre */
.section-title::after,
.products-section-title::after,
.ps-featuredproducts h2::after,
.featured-products h2::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.45rem;
  margin: 1.5rem auto 4rem;
  letter-spacing: 0;
  font-weight: 400;
  width: 100%;
}

/* Grille produits — 1 col → 2 col xl, GROSSES IMAGES */
.ps-featuredproducts .products,
.featured-products .products,
.featured-products__list,
.layout-full-width .products {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 4rem 0 !important;
  margin: 0 auto !important;
  max-width: 1300px;
}
@media (min-width: 768px) {
  .ps-featuredproducts .products,
  .featured-products .products,
  .featured-products__list,
  .layout-full-width .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5rem 3rem !important;
  }
}
@media (min-width: 1200px) {
  .ps-featuredproducts .products,
  .featured-products .products,
  .featured-products__list,
  .layout-full-width .products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6rem 2.5rem !important;
  }
}

/* CTA "All featured products" — masqué (collection ciblée par le menu) */
.featured-products__list-link,
.ps-featuredproducts__more {
  display: none !important;
}

/* -----------------------------------------------------------------------------
   6. KELER CARD v2 — produit MAJESTUEUX
   ----------------------------------------------------------------------------- */

/* =============================================================================
   KELER CARD — image en background plein, infos superposées (luxe immersif)
   ============================================================================= */

.keler-card {
  position: relative !important;
  aspect-ratio: 3 / 4 !important;
  display: block !important;
  overflow: hidden !important;
  background: var(--keler-anthracite) !important;
  isolation: isolate;
}

/* Image — couvre toute la card, derrière tout le reste */
.keler-card__media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  aspect-ratio: auto !important;
  background: var(--keler-anthracite) !important;
  border: none !important;
  outline: none !important;
  overflow: hidden !important;
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.keler-card__media img,
.keler-card__media .product-miniature__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.keler-card:hover .keler-card__media img,
.keler-card:hover .keler-card__media .product-miniature__image {
  transform: scale(1.06) !important;
}

/* Plus de gradient sombre — l'image est pure, le texte tient via un panneau glass en bas */
.keler-card::before {
  content: none;
}

/* Outline or fin au hover */
.keler-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color 600ms ease;
}
.keler-card:hover::after {
  border-color: var(--keler-or);
}

/* Body : par-dessus l'image, en bas — panneau glass clair pour lisibilité */
.keler-card__body {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0 !important;
  padding: 1.25rem 1.5rem 1.5rem !important;
  color: var(--keler-ivoire);
  background: rgba(250, 250, 247, 0.92) !important;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-top: 1px solid rgba(168, 131, 65, 0.28) !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

/* Référence cachée sur les cards de listing (gardée pour SEO) */
.keler-card__reference {
  display: none !important;
}

/* Titre serif sombre sur panneau glass clair */
.keler-card__title-link {
  display: inline-block;
  margin: 0;
}
.keler-card__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 0.4rem !important;
  line-height: 1.15;
  text-shadow: none;
  position: relative;
  display: inline-block;
}
.keler-card a,
.keler-card__title-link {
  color: var(--keler-ivoire) !important;
}
.keler-card__title::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--keler-or);
  margin: 0.5rem auto 0;
  transition: width 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.keler-card:hover .keler-card__title::after {
  width: 32px;
}

/* Prix or sur panneau glass clair */
.keler-card__price {
  font-family: "Inter", sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: var(--keler-or) !important;
  letter-spacing: 0.08em !important;
  margin: 0 !important;
  text-shadow: none;
}
.keler-card__regular-price {
  text-decoration: line-through;
  color: var(--keler-gris-lave) !important;
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

/* CTA Add to cart sur card : texte or, fond panneau */
.keler-card__cta {
  background: transparent !important;
  border-color: var(--keler-or) !important;
  color: var(--keler-or) !important;
  backdrop-filter: none;
  text-shadow: none;
}
.keler-card__cta:hover,
.keler-card__cta:focus {
  background: var(--keler-or) !important;
  border-color: var(--keler-or) !important;
  color: var(--keler-noir) !important;
}

/* CTA Add to cart — apparaît au hover, sur l'image en bas */
.keler-card__form {
  position: relative;
  width: 100%;
  margin: 1rem 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition:
    max-height 500ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 400ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.keler-card:hover .keler-card__form,
.keler-card:focus-within .keler-card__form {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
}

.keler-card__cta {
  width: 100%;
  background: rgba(10, 10, 11, 0.65) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.7) !important;
  color: var(--keler-or-clair) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.28em !important;
  padding: 0.75rem 1.25rem !important;
  min-width: 0;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.keler-card__cta:hover,
.keler-card__cta:focus {
  background: var(--keler-or) !important;
  border-color: var(--keler-or) !important;
  color: var(--keler-noir) !important;
  text-shadow: none;
}

/* Lien wrapper — toute la card cliquable */
.keler-card a {
  color: inherit;
  text-decoration: none !important;
}

/* Badge "NEUF" : top-right luxe (pas en haut-gauche pour pas chevaucher la ref) */
.keler-card .product-flags {
  position: absolute !important;
  top: 1.25rem !important;
  right: 1.25rem !important;
  left: auto !important;
  z-index: 3 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  gap: 0.4rem;
}
.keler-card .product-flags li,
.keler-card .product-flags li.badge {
  background: rgba(10, 10, 11, 0.65) !important;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 169, 97, 0.45) !important;
  color: var(--keler-or-clair) !important;
  padding: 0.3rem 0.65rem !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.55rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase;
  border-radius: 0 !important;
  margin: 0 !important;
  line-height: 1;
}

/* Mobile / pointeur grossier : on garde le CTA toujours visible */
@media (hover: none) and (pointer: coarse) {
  .keler-card__form {
    max-height: 60px !important;
    opacity: 1 !important;
    transform: none !important;
    overflow: visible !important;
  }
}

/* Badge produit (NEW, etc.) — discret */
.keler-card .product-flags li,
.keler-card .product-flags li.badge,
.keler-card .product-flag {
  background: rgba(10, 10, 11, 0.85) !important;
  border: 1px solid rgba(201, 169, 97, 0.6) !important;
  color: var(--keler-or-clair) !important;
  padding: 0.35rem 0.85rem !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.3em !important;
  backdrop-filter: blur(4px);
}

/* -----------------------------------------------------------------------------
   7. PILLARS — 3 colonnes savoir-faire
   ----------------------------------------------------------------------------- */

.keler-pillars {
  padding: 6rem 1.5rem;
  background:
    linear-gradient(180deg, var(--keler-noir) 0%, var(--keler-anthracite) 50%, var(--keler-noir) 100%);
  border-top: 1px solid rgba(168, 131, 65, 0.15);
  border-bottom: 1px solid rgba(168, 131, 65, 0.15);
}
@media (min-width: 992px) {
  .keler-pillars {
    padding: 9rem 3rem;
  }
}
.keler-pillars__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 3rem;
}
@media (min-width: 768px) {
  .keler-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.keler-pillar {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
}
.keler-pillar__icon {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--keler-or);
  line-height: 1;
  opacity: 0.85;
}
.keler-pillar__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  color: var(--keler-ivoire) !important;
  margin: 0 !important;
  line-height: 1.2;
}
.keler-pillar__text {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--keler-ivoire);
  opacity: 0.7;
  margin: 0;
  max-width: 30ch;
}

/* -----------------------------------------------------------------------------
   8. MANIFESTO — citation luxe
   ----------------------------------------------------------------------------- */

.keler-manifesto {
  padding: 8rem 1.5rem;
  background: var(--keler-noir);
  text-align: center;
}
@media (min-width: 992px) {
  .keler-manifesto {
    padding: 11rem 3rem;
  }
}
.keler-manifesto__inner {
  max-width: 880px;
  margin: 0 auto;
}
.keler-manifesto__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--keler-or);
  margin: 0 0 2rem;
}
.keler-manifesto__text {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--keler-ivoire);
  margin: 0 0 2.5rem;
  letter-spacing: 0.005em;
}
.keler-manifesto__sign {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--keler-or);
  margin: 0;
}
.keler-manifesto__sign::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--keler-or);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

/* -----------------------------------------------------------------------------
   9. PAGE CATÉGORIE — épure totale, sidebar masquée
   ----------------------------------------------------------------------------- */

/* Force layout full-width visuel : on cache la sidebar */
.page-category #left-column,
.page-category .sidebar,
.page-category [class*="left-column"]:not(.layout-left-column) {
  display: none !important;
}
.page-category #content-wrapper,
.page-category .center-column,
.page-category #center-column {
  width: 100% !important;
  max-width: none !important;
  flex: 1 1 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-category .row,
.page-category .l-content > .row,
.page-category #wrapper > .container > .row {
  margin: 0 !important;
}
.page-category #wrapper {
  padding: 0 !important;
}

/* Container catégorie : pleine largeur, padding contrôlé */
.page-category #content,
.page-category .page-content {
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 1rem 1.5rem 6rem !important;
}
@media (min-width: 992px) {
  .page-category #content,
  .page-category .page-content {
    padding: 2rem 3rem 8rem !important;
  }
}

/* Header catégorie luxueux */
.page-category .category__cover-image,
.page-category .category-cover,
.page-category .category-cover-image {
  display: none !important;
}
.page-category .category__description,
.page-category .category-description,
.page-category .block-category {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 4rem !important;
  text-align: center;
}
.page-category .category__description h1,
.page-category .category-name,
.page-category h1.h1,
.page-category .page-title-section h1,
.page-category .breadcrumb__wrapper + .row h1,
.page-category .page-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.75rem, 6vw, 5rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  color: var(--keler-ivoire) !important;
  margin: 1.5rem 0 0.5rem !important;
  padding: 0 !important;
  text-align: center;
  line-height: 1;
}
.page-category .category__description h1::before,
.page-category .category-name::before,
.page-category .page-content h1::before {
  content: "Collection";
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--keler-or);
  margin-bottom: 1rem;
}
.page-category .category__description h1::after,
.page-category .category-name::after,
.page-category .page-content h1::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.45rem;
  margin: 1.5rem auto 0;
  font-weight: 400;
}
.page-category .category__description p,
.page-category .category-description p {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.75);
  max-width: 60ch;
  margin: 1.5rem auto 0 !important;
}

/* Breadcrumb sur fond noir, fin */
.page-category .breadcrumb__wrapper,
.breadcrumb__wrapper {
  background: transparent !important;
  border: none !important;
  padding: 1.5rem 0 !important;
  margin-bottom: 2rem !important;
}
.breadcrumb__wrapper .breadcrumb,
.breadcrumb {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.breadcrumb-item a,
.breadcrumb__item a,
.breadcrumb a {
  color: var(--keler-gris-lave) !important;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: "Inter", sans-serif !important;
}
.breadcrumb-item a:hover,
.breadcrumb__item a:hover,
.breadcrumb a:hover {
  color: var(--keler-or) !important;
}
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb__item + .breadcrumb__item::before {
  content: "/" !important;
  color: var(--keler-gris-pierre);
  margin: 0 0.5rem;
}
.breadcrumb-item.active,
.breadcrumb__item.active,
.breadcrumb-item:last-child {
  color: var(--keler-or) !important;
}

/* Toolbar produits-top : "il y a X produits" + tri */
.products-selection,
.products__selection,
#products .products-top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 0 4rem !important;
  padding: 1.5rem 0 !important;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}
.products-selection .total-products,
.products__count,
.products__total {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--keler-gris-lave) !important;
  margin: 0 !important;
}
.products__sort-label,
.products-sort-order .select-title,
.sort-by-row label {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--keler-gris-lave) !important;
}
.products-sort-order .select-title,
.sort-by-row .form-select,
.products__sort-dropdown-button {
  background: transparent !important;
  border: 1px solid rgba(201, 169, 97, 0.25) !important;
  color: var(--keler-ivoire) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem !important;
}

/* Grille catégorie : 1/2/3 cols selon viewport */
.page-category .products,
.page-category .product-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 4rem 0 !important;
  margin: 0 auto !important;
  max-width: none !important;
}
@media (min-width: 768px) {
  .page-category .products,
  .page-category .product-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5rem 3rem !important;
  }
}
@media (min-width: 1200px) {
  .page-category .products,
  .page-category .product-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6rem 2.5rem !important;
  }
}

/* Cache le filter button mobile pour l'instant si pas dispo */
.products__filter-button {
  background: transparent !important;
  border: 1px solid rgba(201, 169, 97, 0.4) !important;
  color: var(--keler-or) !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.75rem 1.25rem !important;
}

/* -----------------------------------------------------------------------------
   10. PAGE-TITLE-SECTION (search, listing) — luxueuse
   ----------------------------------------------------------------------------- */

.page-title-section {
  background: transparent !important;
  border: none !important;
  padding: 3rem 0 !important;
  margin: 0 0 2rem !important;
  text-align: center;
}
.page-title-section h1,
.page-title-section .h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 300 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 !important;
  letter-spacing: 0.01em;
}

/* -----------------------------------------------------------------------------
   11. FICHE PRODUIT — image GIGANTESQUE, contenu épuré
   ----------------------------------------------------------------------------- */

/* Sortir la fiche produit du container par défaut pour pleine largeur */
.page-product #wrapper > .container,
.page-product .l-wrapper {
  max-width: 1500px !important;
}
.page-product #content-wrapper,
.page-product .center-column {
  width: 100% !important;
  max-width: none !important;
}

/* Layout principal — galerie XXL à gauche (60%) */
.page-product .keler-product,
.page-product .product__container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 3rem !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 3rem 1.5rem 6rem !important;
}
@media (min-width: 992px) {
  .page-product .keler-product,
  .page-product .product__container {
    grid-template-columns: 1.4fr 1fr !important;
    gap: 5rem !important;
    padding: 4rem 3rem 9rem !important;
    align-items: start;
  }
}

/* Galerie : sticky, énorme */
.page-product .product__left {
  position: relative;
}
@media (min-width: 992px) {
  .page-product .product__left {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

/* Cover image = ULTRA GROS */
.page-product .product__cover,
.page-product .product-cover,
.page-product .product__images {
  background: var(--keler-anthracite) !important;
  border: 1px solid rgba(245, 241, 232, 0.04) !important;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.page-product .product__cover img,
.page-product .product-cover img,
.page-product .product__images img,
.page-product .product__cover picture img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

/* Thumbnails : barre horizontale fine */
.page-product .product__thumbnails-list,
.page-product .product__thumbnails {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page-product .product__thumbnail,
.page-product .product-thumb {
  background: var(--keler-anthracite) !important;
  border: 1px solid rgba(245, 241, 232, 0.04) !important;
  padding: 0 !important;
  aspect-ratio: 1;
  cursor: pointer;
  transition: border-color 600ms ease;
}
.page-product .product__thumbnail.active,
.page-product .product__thumbnail:hover {
  border-color: var(--keler-or) !important;
  outline: none !important;
}
.page-product .product__thumbnail img,
.page-product .product-thumb img,
.page-product .product__thumbnail-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Right column : pile aérée */
.page-product .product__right {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 !important;
}

/* Référence en eyebrow */
.keler-product__reference,
.page-product .product__reference,
.page-product .product-reference {
  font-family: "Inter", sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.4em !important;
  color: var(--keler-or) !important;
  margin: 0 0 1.5rem !important;
}

/* Nom : très grand serif */
.keler-product__name,
.page-product h1.product-title,
.page-product .product__name {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  line-height: 1.05 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 1.5rem !important;
}
.keler-product__name::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.35rem;
  margin: 1.5rem 0;
  font-weight: 400;
}

/* Tagline : italique serif */
.keler-product__tagline,
.page-product .product__description-short,
.page-product .product-description-short {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.375rem !important;
  font-weight: 300 !important;
  line-height: 1.5;
  color: rgba(245, 241, 232, 0.85) !important;
  margin: 0 0 2.5rem !important;
  border: none !important;
  padding: 0 !important;
}

/* Caractéristiques : grid sobre */
.keler-product__features,
.page-product .data-sheet,
.page-product .product__features {
  margin: 1rem 0 2.5rem !important;
  padding: 2rem 0 !important;
  border-top: 1px solid rgba(201, 169, 97, 0.18) !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18) !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  column-gap: 2.5rem !important;
  row-gap: 0 !important;
}
.keler-product__features dt,
.page-product .data-sheet .name {
  font-family: "Inter", sans-serif !important;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.32em !important;
  color: var(--keler-gris-lave) !important;
  font-weight: 500 !important;
  margin: 1.25rem 0 0.35rem !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
.keler-product__features dd,
.page-product .data-sheet .value {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 1.25rem !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  line-height: 1.4;
}

/* Prix */
.page-product .product__prices,
.page-product .product-prices,
.keler-product .product__prices {
  margin: 1rem 0 2rem !important;
  padding: 1.5rem 0 !important;
  border: none !important;
}
.page-product .current-price,
.page-product .product-price,
.page-product .product__price-tax-shipping-delivery-block,
.keler-product .product__prices-inline {
  font-family: "Inter", sans-serif !important;
  font-size: 2rem !important;
  font-weight: 300 !important;
  color: var(--keler-or) !important;
  letter-spacing: 0.04em !important;
  display: block;
}
.page-product .product__tax-infos,
.page-product .tax-shipping-delivery-label {
  font-family: "Inter", sans-serif !important;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em !important;
  color: var(--keler-gris-lave) !important;
  margin-top: 0.5rem;
}

/* Availability — discret, en or */
.page-product .product__availability,
.page-product .product-availability {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em !important;
  color: var(--keler-or) !important;
  margin: 0 0 2rem !important;
}

/* Add to cart : pleine largeur, élégant */
.page-product .product__add-to-cart,
.page-product .product-add-to-cart {
  margin: 1.5rem 0 !important;
}
.page-product .product__add-to-cart .btn,
.page-product button[data-button-action="add-to-cart"] {
  width: 100% !important;
  background: var(--keler-or) !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-noir) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  padding: 1rem 1.5rem !important;
  transition: all 500ms ease !important;
}
.page-product .product__add-to-cart .btn:hover,
.page-product button[data-button-action="add-to-cart"]:hover {
  background: var(--keler-or-clair) !important;
  border-color: var(--keler-or-clair) !important;
}

/* Cacher complètement les blocs reassurance partout (icônes/textes placeholders cassés) */
.blockreassurance--product,
.block-reassurance,
[class*="blockreassurance"],
.ps-blockreassurance,
[id*="reassurance"] {
  display: none !important;
}
.keler-product__reassurance:empty,
.keler-product__reassurance:has(.blockreassurance--product) {
  display: none !important;
}

/* Share buttons : minimaux */
.page-product .social-sharing,
.page-product .ps-share-buttons {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 0 !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
}
.page-product .social-sharing .h6,
.page-product .ps-share-buttons__title {
  font-family: "Inter", sans-serif !important;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em !important;
  color: var(--keler-gris-lave) !important;
  margin: 0 1rem 0 0 !important;
  font-weight: 500 !important;
}

/* Description (accordéon) — en bas, pleine largeur */
.page-product .product__bottom,
.page-product .keler-product__bottom {
  max-width: 880px !important;
  margin: 0 auto !important;
  padding: 4rem 1.5rem 8rem !important;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
}
.page-product .accordion-button {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18) !important;
  border-radius: 0 !important;
  color: var(--keler-ivoire) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em !important;
  font-weight: 500 !important;
  padding: 1.75rem 0 !important;
  box-shadow: none !important;
}
.page-product .accordion-button:not(.collapsed) {
  color: var(--keler-or) !important;
}
.page-product .accordion-body {
  padding: 1.5rem 0 2rem !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: rgba(245, 241, 232, 0.85) !important;
}

/* -----------------------------------------------------------------------------
   12. FOOTER — déjà bien stylé, mini affinements
   ----------------------------------------------------------------------------- */

.footer__main {
  padding-block: 5rem 2rem !important;
  background: var(--keler-noir) !important;
  border-top: 1px solid rgba(201, 169, 97, 0.12) !important;
}
.footer-block__title,
.footer__main h3,
.footer__main .h3 {
  font-family: "Inter", sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.35em !important;
  color: var(--keler-or) !important;
  margin-bottom: 1.5rem !important;
}
.footer-block a,
.footer__main a {
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  font-weight: 300 !important;
  color: rgba(245, 241, 232, 0.8) !important;
}
.footer-block a:hover {
  color: var(--keler-or) !important;
}

.copyright,
[class*="copyright"] {
  text-align: center;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.35em !important;
  color: var(--keler-gris-lave) !important;
  padding: 2.5rem 0 !important;
  margin-top: 4rem !important;
  border-top: 1px solid rgba(201, 169, 97, 0.08) !important;
  background: var(--keler-noir);
}

/* -----------------------------------------------------------------------------
   13. UTILITAIRES — small fixes
   ----------------------------------------------------------------------------- */

/* Force la fluidité des images partout */
img {
  max-width: 100%;
}

/* Fix container padding sur la home (qui doit être 0) */
.page-home .l-content,
.page-index .l-content {
  padding: 0 !important;
}

/* Cache le breadcrumb sur la home */
.page-home .breadcrumb,
.page-index .breadcrumb,
.page-home .breadcrumb__wrapper,
.page-index .breadcrumb__wrapper {
  display: none !important;
}

/* Animation reveal au scroll (fallback discret) */
.keler-card,
.keler-pillar,
.keler-manifesto__inner > * {
  opacity: 1;
}

/* Smooth scroll global */
html {
  scroll-behavior: smooth;
}

/* Body sans bordure latérale parasite */
#wrapper, body, html {
  overflow-x: hidden;
}

/* -----------------------------------------------------------------------------
   13b. SUBCATEGORIES — tiles luxueuses
   ----------------------------------------------------------------------------- */

.subcategory,
.subcategories,
.subcategory__list {
  background: transparent !important;
  border: none !important;
  margin: 0 0 4rem !important;
  padding: 0 !important;
}
.subcategory__list,
.subcategory__list--with-images {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
  list-style: none !important;
  background: transparent !important;
}
@media (min-width: 576px) {
  .subcategory__list,
  .subcategory__list--with-images {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}
.subcategory__item {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.subcategory__link,
.subcategory__link--with-image,
a.subcategory__link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06) 0%, transparent 70%),
    var(--keler-anthracite) !important;
  border: 1px solid rgba(245, 241, 232, 0.06) !important;
  padding: 2.5rem 1.5rem !important;
  text-decoration: none !important;
  transition: all 800ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100%;
  min-height: 180px;
  text-align: center;
}
.subcategory__link:hover,
.subcategory__link--with-image:hover,
a.subcategory__link:hover {
  border-color: rgba(201, 169, 97, 0.5) !important;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12) 0%, transparent 70%),
    var(--keler-anthracite) !important;
}
.subcategory__link picture,
.subcategory__link--with-image picture,
.subcategory__image {
  display: block;
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(0.85) sepia(0.6) saturate(2) hue-rotate(15deg);
  opacity: 0.7;
  transition: opacity 600ms ease;
}
.subcategory__link:hover picture,
.subcategory__link--with-image:hover picture {
  opacity: 1;
}
.subcategory__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.subcategory__name {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  color: var(--keler-ivoire) !important;
  margin: 0 !important;
  transition: color 600ms ease;
}
.subcategory__link:hover .subcategory__name {
  color: var(--keler-or) !important;
}

/* -----------------------------------------------------------------------------
   14. AUTRES PAGES — contact, login, etc. (fallback luxueux)
   ----------------------------------------------------------------------------- */

main, #main, #wrapper {
  background: transparent !important;
}
.page-wrapper--page,
.page-wrapper--cms,
.page-wrapper--contact,
.page-wrapper--customer-account {
  padding: 4rem 1.5rem 6rem !important;
}
.page-wrapper--page h1,
.page-wrapper--cms h1,
.page-wrapper--contact h1,
.page-wrapper--customer-account h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  font-weight: 300 !important;
  text-align: center;
  margin: 0 0 3rem !important;
}

/* =============================================================================
   THÈME CLAIR — surcharges des rgba codés en dur
   ============================================================================= */

/* Search bar input — fond beige clair, contraste */
.ps-searchbar__form {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}
.header-bottom .search-widget input,
.header-bottom .form-control,
.header-bottom input[type="search"] {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: var(--keler-ivoire) !important;
}

/* Cards : le gradient overlay sur l'image reste sombre (pour lisibilité du texte clair sur photo) */
/* Pas de changement nécessaire pour .keler-card::before */

/* Bordures translucides : noires au lieu de blanches */
.keler-card__media {
  border-color: rgba(0, 0, 0, 0.08) !important;
}
.subcategory__link,
.subcategory__link--with-image,
a.subcategory__link {
  background:
    radial-gradient(ellipse at center, rgba(168, 131, 65, 0.08) 0%, transparent 70%),
    var(--keler-anthracite) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Forms : fonds clairs */
.page-checkout input[type="text"],
.page-checkout input[type="email"],
.page-checkout input[type="tel"],
.page-checkout input[type="password"],
.page-checkout select,
.page-checkout textarea,
.page-cart input,
.page-customer-account input,
.page-contact input,
.page-contact textarea,
.page-contact select,
.form-control {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: var(--keler-ivoire) !important;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: var(--keler-or) !important;
  box-shadow: 0 0 0 1px var(--keler-or) !important;
  color: var(--keler-ivoire) !important;
}
.form-control::placeholder {
  color: rgba(122, 118, 112, 0.7) !important;
}

/* Footer copyright bg/border */
.copyright,
[class*="copyright"] {
  border-top: 1px solid rgba(168, 131, 65, 0.18) !important;
  background: var(--keler-noir);
}

/* Hero btn light : ajout d'une ombre subtile pour contraste */
.keler-hero__btn {
  box-shadow: 0 8px 24px rgba(168, 131, 65, 0.18);
}
.keler-hero__btn:hover {
  box-shadow: 0 12px 32px rgba(168, 131, 65, 0.28);
}

/* Pillar text & manifesto text — meilleur contraste sur fond clair */
.keler-pillar__text {
  color: rgba(27, 27, 29, 0.7);
}
.keler-manifesto__text {
  color: var(--keler-ivoire);
}
.keler-hero__lede,
.keler-product__tagline,
.page-product .product__description-short {
  color: rgba(27, 27, 29, 0.78) !important;
}

/* Accordion description : couleur lisible */
.page-product .accordion-body {
  color: rgba(27, 27, 29, 0.85) !important;
}

/* Header top border */
.header-top {
  border-bottom-color: rgba(168, 131, 65, 0.15) !important;
}

/* Cart summary box (checkout) */
.cart-summary,
.cart-grid-right,
.checkout-summary,
.cart__summary,
.cart-detailed,
.cart-detailed-totals {
  border-color: rgba(168, 131, 65, 0.25) !important;
}

/* Checkout stepper */
.checkout-steps,
.checkout-process,
.checkout-step,
.steps {
  border-color: rgba(168, 131, 65, 0.18) !important;
}

/* Notifications border */
.notification-warning,
.notification-success,
.notification-info,
.alert-warning,
.alert-success,
.alert-info,
.alert-danger {
  border-color: rgba(168, 131, 65, 0.3);
  background: rgba(168, 131, 65, 0.05) !important;
}

/* Footer */
.footer__main {
  border-top-color: rgba(168, 131, 65, 0.18) !important;
}
.footer-block a,
.footer__main a {
  color: rgba(27, 27, 29, 0.78) !important;
}

/* Toolbar produits-top : "il y a X produits" */
.products-selection,
.products__selection,
#products .products-top {
  border-color: rgba(168, 131, 65, 0.2) !important;
}

/* Page produit : container reassurance */
.keler-product__guarantees {
  border-top-color: rgba(168, 131, 65, 0.18);
}
.keler-product__guarantees li {
  color: rgba(27, 27, 29, 0.78);
}

/* Quantité selector */
.quantity-button,
.quantity-button__group,
.product__quantity {
  border-color: rgba(168, 131, 65, 0.3) !important;
}
.quantity-button input {
  border-color: rgba(168, 131, 65, 0.3) !important;
}

/* Smooth selection */
::selection {
  background: var(--keler-or);
  color: var(--keler-noir);
}

/* Scrollbar */
::-webkit-scrollbar-track {
  background: var(--keler-anthracite);
}
::-webkit-scrollbar-thumb {
  background: var(--keler-gris-pierre);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--keler-or);
}

/* Search clear button hover : light bg */
.ps-searchbar__clear:hover,
.js-search-clear:hover {
  border-color: var(--keler-or) !important;
  color: var(--keler-or) !important;
}

/* =============================================================================
   FIXES — bleus, header, footer, description produit
   ============================================================================= */

/* 1. Bleu Bootstrap → or KÉLÈR partout */
.btn-primary,
.btn-outline-primary,
.btn-secondary,
.btn-outline-secondary,
.btn-info,
.btn-link,
a.btn-primary,
a.btn-outline-primary {
  background: transparent !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-or) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  padding: 0.75rem 1.75rem !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: all 500ms ease !important;
}
.btn-primary:hover, .btn-primary:focus,
.btn-outline-primary:hover, .btn-outline-primary:focus,
.btn-secondary:hover, .btn-secondary:focus,
.btn-link:hover, .btn-link:focus,
a.btn-outline-primary:hover {
  background: var(--keler-or) !important;
  border-color: var(--keler-or) !important;
  color: var(--keler-noir) !important;
}

/* Tout texte ou bordure stylé en --bs-primary par défaut → forcer or */
.text-primary, [class*="text-primary"] {
  color: var(--keler-or) !important;
}
.border-primary, [class*="border-primary"] {
  border-color: var(--keler-or) !important;
}
.bg-primary, [class*="bg-primary"] {
  background-color: transparent !important;
}

/* Tout lien dans hero/featured/product-area : pas de bleu Bootstrap */
.featured-products a,
.ps-featuredproducts a,
.page-content a:not(.btn):not(.keler-card__cta):not(.keler-card__media-link) {
  color: var(--keler-or);
}
.featured-products a:hover,
.ps-featuredproducts a:hover {
  color: var(--keler-or-clair);
}

/* 2. HEADER layout — flex grid précis, plus de chevauchement */
.header-bottom__row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0.5rem !important;
  width: 100%;
}
@media (min-width: 768px) {
  .header-bottom__row {
    gap: 2rem !important;
  }
}
.header-bottom__logo {
  flex: 1 1 auto !important;
  margin-right: 0 !important;
  min-width: 0;
}
@media (max-width: 767px) {
  .header-bottom__logo {
    text-align: center;
    justify-content: center;
    flex: 1 1 auto !important;
    order: 1;
  }
}

/* Menu desktop : la <nav> hidden mobile, mais on garde le burger toggle */
.ps-mainmenu__desktop {
  display: none !important;
}
@media (min-width: 1200px) {
  .ps-mainmenu__desktop {
    display: block !important;
  }
  .ps-mainmenu__mobile-toggle {
    display: none !important;
  }
}

.ps-mainmenu,
.ps-mainmenu--desktop,
.header-bottom .ps-mainmenu {
  flex: 0 0 auto !important;
}
@media (min-width: 1200px) {
  .ps-mainmenu,
  .ps-mainmenu--desktop {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
  }
}
.ps-mainmenu__tree,
#top-menu {
  display: flex !important;
  justify-content: center !important;
  gap: 2.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ps-mainmenu__tree-item {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.ps-mainmenu__tree-link,
.ps-mainmenu__tree-link[data-depth="1"] {
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--keler-ivoire) !important;
  padding: 0.75rem 0 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  position: relative !important;
}
.ps-mainmenu__tree-link:focus,
.ps-mainmenu__tree-link:focus-visible,
.ps-mainmenu__tree-link:active,
.ps-mainmenu__tree-link.outline,
.ps-mainmenu__tree-link.outline--rounded {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* PS theme defines .outline / .outline--rounded which adds a focus ring — virer partout dans le header */
.header .outline,
.header .outline--rounded,
.header-bottom .outline,
.header-bottom .outline--rounded,
.header-top .outline,
.header-top .outline--rounded,
.ps-mainmenu .outline,
.ps-mainmenu .outline--rounded,
.menu .outline,
.menu .outline--rounded,
a.outline,
a.outline--rounded,
.outline,
.outline--rounded {
  outline: none !important;
  box-shadow: none !important;
}

/* Focus visible : remplacer la bordure or par un underline subtil */
a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
.btn:focus,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
/* Garder un focus-visible accessible mais discret pour les inputs */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid var(--keler-or) !important;
  outline-offset: 2px !important;
}

/* Logo cliquable sur tout le wordmark */
.keler-logo__link {
  display: inline-flex !important;
  align-items: center;
  text-decoration: none !important;
  color: var(--keler-ivoire) !important;
  outline: none !important;
}
.keler-logo__link:hover {
  color: var(--keler-or) !important;
}
.keler-logo__link:hover .keler-logo__brand {
  color: var(--keler-or) !important;
}
.keler-logo__link:focus,
.keler-logo__link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.ps-mainmenu__tree-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--keler-or);
  transition: width 500ms ease, left 500ms ease;
}
.ps-mainmenu__tree-link:hover {
  color: var(--keler-or) !important;
}
.ps-mainmenu__tree-link:hover::after {
  width: 100%;
  left: 0;
}

/* Search widget — taille raisonnable, pas de chevauchement */
.header-bottom #ps_searchbar,
.header-bottom .ps-searchbar,
.header-bottom .js-search-widget {
  flex: 0 1 auto !important;
  max-width: 240px;
  margin-right: 0;
}
.ps-searchbar__form {
  display: block !important;
  position: relative !important;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.12);
  padding: 0;
  height: 42px;
  width: 100%;
}

/* Bouton clear (croix) — toujours dans le ton, jamais blanc */
.ps-searchbar__clear,
.js-search-clear,
.ps-searchbar__clear.btn,
.js-search-clear.btn {
  position: absolute !important;
  top: 50% !important;
  right: 0.5rem !important;
  transform: translateY(-50%) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 50% !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--keler-gris-lave) !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: all 400ms ease !important;
}
.ps-searchbar__clear:hover,
.js-search-clear:hover,
.ps-searchbar__clear:focus,
.js-search-clear:focus,
.ps-searchbar__clear.btn:hover,
.js-search-clear.btn:hover {
  background: transparent !important;
  border-color: var(--keler-or) !important;
  color: var(--keler-or) !important;
  outline: none !important;
  box-shadow: none !important;
}
.ps-searchbar__clear i,
.ps-searchbar__clear .material-icons,
.js-search-clear i,
.js-search-clear .material-icons {
  color: inherit !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  margin: 0 !important;
}
.ps-searchbar__magnifier,
.js-search-icon {
  position: absolute !important;
  top: 50% !important;
  left: 0.875rem !important;
  transform: translateY(-50%) !important;
  display: block !important;
  color: var(--keler-or) !important;
  font-size: 1.125rem !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
  z-index: 1;
}
.js-search-input,
.ps-searchbar input,
.ps-searchbar .form-control,
.ps-searchbar input.ps-searchbar__input {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--keler-ivoire) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em;
  padding: 0 0.875rem 0 2.5rem !important;
  height: 100%;
}
.ps-searchbar input:focus,
.js-search-input:focus,
.ps-searchbar .form-control:focus {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.ps-searchbar input::placeholder {
  color: var(--keler-gris-lave) !important;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.ps-searchbar input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Header desktop blocks (login, cart) align right */
#_desktop_ps_customersignin,
#_desktop_ps_shoppingcart {
  flex: 0 0 auto !important;
}
.header-bottom #_desktop_ps_customersignin .header-block,
.header-bottom #_desktop_ps_shoppingcart .header-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* MOBILE — items header bien compactés et visibles */
@media (max-width: 767px) {
  .header-bottom {
    padding: 0.75rem 0 !important;
  }
  .header-bottom__container {
    padding-inline: 0.75rem !important;
  }
  .ps-searchbar--mobile,
  #_mobile_ps_customersignin,
  #_mobile_ps_shoppingcart,
  .ps-mainmenu__mobile-toggle {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
  }
  .ps-searchbar--mobile {
    order: 3;
  }
  #_mobile_ps_customersignin {
    order: 4;
  }
  #_mobile_ps_shoppingcart {
    order: 5;
  }
  .ps-mainmenu--mobile {
    order: 0;
  }
  .ps-mainmenu__mobile-toggle {
    order: 0;
  }
  /* Boutons mobile : icônes seules, pas de bordure parasite */
  #_mobile_ps_customersignin .header-block,
  #_mobile_ps_shoppingcart .header-block,
  .ps-searchbar--mobile .header-block {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #_mobile_ps_customersignin .header-block__action-btn,
  #_mobile_ps_shoppingcart .header-block__action-btn,
  .ps-searchbar--mobile .header-block__action-btn {
    padding: 0 !important;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--keler-ivoire) !important;
    position: relative;
  }
  #_mobile_ps_customersignin .header-block__icon,
  #_mobile_ps_shoppingcart .header-block__icon,
  .ps-searchbar--mobile .header-block__icon {
    color: var(--keler-or) !important;
    font-size: 1.25rem !important;
  }
  /* Badge cart compact */
  #_mobile_ps_shoppingcart .header-block__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    font-size: 0.55rem;
    padding: 0 0.2rem;
  }
  /* Bouton burger menu : style cohérent */
  .ps-mainmenu__mobile-toggle .menu-toggle,
  .menu-toggle.btn {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--keler-or) !important;
    box-shadow: none !important;
  }
  .ps-mainmenu__mobile-toggle .menu-toggle .material-icons,
  .menu-toggle.btn .material-icons {
    font-size: 1.5rem !important;
    color: var(--keler-or) !important;
  }
  /* Logo : plus compact, centré */
  .keler-logo__brand {
    font-size: 1.25rem !important;
    letter-spacing: 0.18em !important;
  }
  .keler-logo__tagline {
    display: none !important;
  }
  /* Header search desktop : hidden sur mobile */
  #_desktop_ps_searchbar {
    display: none !important;
  }
}

/* TABLET — adapter aussi 768-1199 */
@media (min-width: 768px) and (max-width: 1199px) {
  .header-bottom__row {
    gap: 1rem !important;
  }
  #_desktop_ps_searchbar {
    max-width: 200px;
  }
}

/* 3. FOOTER — centrage horizontal */
.footer__main,
#footer {
  text-align: center;
}
.footer__main .container,
.footer__main .row,
#footer .container,
#footer .row {
  max-width: 1200px !important;
  margin: 0 auto !important;
  justify-content: center;
}
.footer__main .row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 3rem 4rem;
}
.footer__main .row > [class*="col"],
#footer .row > [class*="col"] {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 280px;
  text-align: left;
}
.footer-block,
.footer__main .footer-block,
.footer-block__title,
.footer-block__list {
  text-align: left;
}
@media (min-width: 992px) {
  .footer__main .row {
    justify-content: center !important;
  }
}

/* Si certaines colonnes utilisent un autre wrapper */
.l-footer .container,
.footer-container .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
}
.l-footer > div,
.footer-container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 5rem;
}

/* Copyright bien centré */
.copyright,
[class*="copyright"] {
  text-align: center !important;
}

/* 4. DESCRIPTION PRODUIT — pleine largeur (était limitée à 880px) */
.page-product .product__bottom,
.page-product .keler-product__bottom {
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 4rem 1.5rem 8rem !important;
}
@media (min-width: 992px) {
  .page-product .product__bottom,
  .page-product .keler-product__bottom {
    padding: 6rem 3rem 10rem !important;
  }
}
.page-product .keler-product__story {
  width: 100%;
  max-width: none !important;
}
.page-product .product__description,
.page-product .keler-product__story .product__description,
.page-product .accordion-body .rich-text,
.page-product .accordion-body .rich-text p {
  max-width: none !important;
  width: 100%;
  font-size: 1rem !important;
  line-height: 1.85 !important;
  color: var(--keler-ivoire) !important;
  opacity: 0.92;
}
.page-product .accordion-body {
  max-width: none !important;
  padding: 2rem 0 3rem !important;
}

/* =============================================================================
   FICHE PRODUIT v2 — Hero immersif, hiérarchie luxe
   ============================================================================= */

/* Cacher le bandeau "Votre panier contient X produits" qui pollue le top */
.page-product .alert-info,
.page-product .cart-products-count,
.page-product .product__cart-notification,
.page-product .alert--cart,
.alert.alert-success.cart-content {
  display: none !important;
}

/* Cacher le partager social qui n'apporte rien sur du luxe */
.page-product .ps-share-buttons,
.page-product .social-sharing,
.page-product [class*="sharebuttons"] {
  display: none !important;
}

/* Container : 60/40 avec gros gap */
.page-product .keler-product,
.page-product .product__container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 3rem !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 3rem 1.5rem 5rem !important;
}
@media (min-width: 992px) {
  .page-product .keler-product,
  .page-product .product__container {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) !important;
    gap: 6rem !important;
    padding: 4rem 3rem 7rem !important;
    align-items: start;
  }
}

/* Galerie XXL */
.page-product .product__left {
  position: relative;
}
@media (min-width: 992px) {
  .page-product .product__left {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

/* Image cover : pleine largeur, format portrait 4/5 */
.page-product .product__cover,
.page-product .product-cover,
.page-product .product__images {
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06) 0%, transparent 70%),
    var(--keler-anthracite) !important;
  border: 1px solid rgba(245, 241, 232, 0.04) !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  width: 100%;
  aspect-ratio: 4 / 5 !important;
  position: relative;
  overflow: hidden;
}
.page-product .product__cover img,
.page-product .product-cover img,
.page-product .product__images img,
.page-product .product__cover picture,
.page-product .product__cover picture img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  position: absolute;
  inset: 0;
}

/* Thumbnails plus discrets */
.page-product .product__thumbnails {
  margin-top: 1rem !important;
}
.page-product .product__thumbnails-list {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0.5rem !important;
  margin: 0 !important;
}
.page-product .product__thumbnail {
  background: var(--keler-anthracite) !important;
  border: 1px solid transparent !important;
  outline: none !important;
  padding: 0 !important;
  aspect-ratio: 1;
  cursor: pointer;
  transition: border-color 500ms ease;
}
.page-product .product__thumbnail.active,
.page-product .product__thumbnail:hover {
  border-color: var(--keler-or) !important;
  outline: none !important;
}
.page-product .product__thumbnail-image,
.page-product .product__thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  outline: none !important;
}

/* Colonne droite : pile aérée et hiérarchisée */
.page-product .product__right {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}

/* Eyebrow Édition limitée + référence */
.keler-product__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--keler-or);
  margin: 0 0 1.5rem;
}
.keler-product__sep {
  color: var(--keler-or);
  font-size: 0.5rem;
  opacity: 0.7;
}
.keler-product__eyebrow .keler-product__reference {
  color: var(--keler-gris-lave);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  margin: 0;
  padding: 0;
}

/* Nom produit ULTRA grand serif */
.keler-product__name,
.page-product h1.product-title,
.page-product .product__name {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem) !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 1.25rem !important;
}
.keler-product__name::after {
  display: none !important;
}

/* Tagline italique élégant */
.keler-product__tagline,
.page-product .product__description-short,
.page-product .product-description-short {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  line-height: 1.55 !important;
  color: var(--keler-ivoire) !important;
  opacity: 0.78;
  margin: 0 0 2rem !important;
  border: none !important;
  padding: 0 !important;
}

/* Diviseur ◆ entre identité et prix */
.keler-product__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 97, 0.18);
  margin: 0 0 2rem;
}
.keler-product__divider::after {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--keler-noir);
  padding-right: 0.85rem;
  color: var(--keler-or);
  font-size: 0.5rem;
  letter-spacing: 0;
}

/* Bloc prix gigantesque */
.keler-product__price-wrap {
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
}
.page-product .current-price,
.page-product .product-price,
.page-product .product__price-tax-shipping-delivery-block,
.page-product .product__prices,
.page-product .product__prices-inline,
.keler-product .product__prices,
.keler-product .product__prices-inline {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2rem, 3.5vw, 2.75rem) !important;
  font-weight: 400 !important;
  color: var(--keler-or) !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  display: block !important;
}
.page-product .product__tax-infos,
.page-product .tax-shipping-delivery-label {
  font-family: "Inter", sans-serif !important;
  font-size: 0.55rem !important;
  text-transform: uppercase;
  letter-spacing: 0.3em !important;
  color: var(--keler-gris-lave) !important;
  margin-top: 0.5rem !important;
  display: block;
}

/* Disponibilité courte */
.page-product .product__availability,
.page-product .product-availability {
  font-family: "Inter", sans-serif !important;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.32em !important;
  color: var(--keler-or) !important;
  margin: 0 0 1.5rem !important;
}
.page-product .product__availability-status::before {
  content: "● ";
  color: var(--keler-or);
  font-size: 0.6rem;
}
.page-product .product__availability i,
.page-product .product__availability .material-icons {
  display: none !important;
}

/* Quantité + add to cart sur la même ligne, élégant */
.page-product .product__actions-qty-add,
.page-product .product-add-to-cart .product__actions-qty-add {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  gap: 0.75rem !important;
  margin: 1rem 0 2rem !important;
}
.page-product .product__quantity,
.page-product .quantity-button,
.page-product .product__actions-qty-add .quantity-button {
  flex: 0 0 auto !important;
  height: 56px !important;
  width: 130px !important;
}
.page-product .product__add-to-cart {
  flex: 1 1 auto !important;
}
.page-product .product__add-to-cart .btn,
.page-product button[data-button-action="add-to-cart"] {
  width: 100% !important;
  height: 56px !important;
  background: var(--keler-or) !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-noir) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  padding: 0 1.5rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.page-product .product__add-to-cart .btn .material-icons {
  display: none !important;
}

/* Garanties inline élégantes */
.keler-product__guarantees {
  list-style: none;
  margin: 1.5rem 0 0 !important;
  padding: 1.5rem 0 0 !important;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.keler-product__guarantees li {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--keler-ivoire);
  opacity: 0.78;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.keler-product__guarantee-glyph {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--keler-or);
  font-size: 0.85rem;
}

/* Cacher le bloc reassurance redondant (déjà couvert plus haut) */
.keler-product__reassurance {
  display: none !important;
}

/* SPECS — fiche technique pleine largeur */
.keler-specs {
  background:
    linear-gradient(180deg, var(--keler-noir) 0%, var(--keler-anthracite) 50%, var(--keler-noir) 100%);
  border-top: 1px solid rgba(168, 131, 65, 0.18);
  border-bottom: 1px solid rgba(168, 131, 65, 0.18);
  padding: 6rem 1.5rem;
}
@media (min-width: 992px) {
  .keler-specs {
    padding: 8rem 3rem;
  }
}
.keler-specs__inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.keler-specs__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--keler-or);
  margin: 0 0 1.5rem;
}
.keler-specs__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 300 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 0 4rem !important;
  letter-spacing: 0 !important;
}
.keler-specs__title::after {
  content: "◆";
  display: block;
  color: var(--keler-or);
  font-size: 0.45rem;
  margin: 1.5rem auto 0;
  font-weight: 400;
}
.keler-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  margin: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .keler-specs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 3rem;
  }
}
@media (min-width: 1100px) {
  .keler-specs__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.keler-specs__cell {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(201, 169, 97, 0.25);
}
.keler-specs__name {
  font-family: "Inter", sans-serif !important;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.32em !important;
  color: var(--keler-or) !important;
  margin: 0 0 0.5rem !important;
}
.keler-specs__value {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: var(--keler-ivoire) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* HISTOIRE bottom — narrative centrée */
.page-product .product__bottom,
.page-product .keler-product__bottom {
  max-width: 880px !important;
  margin: 0 auto !important;
  padding: 6rem 1.5rem 8rem !important;
  border-top: none !important;
}
@media (min-width: 992px) {
  .page-product .product__bottom,
  .page-product .keler-product__bottom {
    padding: 8rem 3rem 10rem !important;
  }
}
.page-product .product__accordion .accordion-button,
.page-product .accordion-button {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18) !important;
  border-radius: 0 !important;
  color: var(--keler-or) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.5rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  padding: 1.5rem 0 !important;
  box-shadow: none !important;
  text-align: center;
  justify-content: center;
}
.page-product .accordion-button::after {
  display: none !important;
}
.page-product .accordion-body {
  padding: 2rem 0 0 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 1.125rem !important;
  line-height: 1.85 !important;
  color: var(--keler-ivoire) !important;
  opacity: 0.85;
  text-align: center;
}
.page-product .accordion-body p {
  margin-bottom: 1.25rem !important;
}

/* CHECKOUT — full dark mode */
.page-checkout,
.page-order,
.page-cart,
.page-customer-account,
.page-my-account,
.page-cms,
.page-contact {
  background: var(--keler-noir) !important;
}
.page-checkout #wrapper,
.page-order #wrapper,
.page-cart #wrapper {
  background: var(--keler-noir) !important;
}

/* Stepper checkout - dark style */
.checkout-steps,
.checkout-process,
.checkout-step,
.steps {
  background: var(--keler-anthracite) !important;
  border: 1px solid rgba(201, 169, 97, 0.12) !important;
  padding: 1.5rem !important;
}
.checkout-step .step-title,
.checkout-step .h3,
.checkout-step .h2,
.step-title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: var(--keler-ivoire) !important;
  background: transparent !important;
}
.checkout-step.-current .step-title,
.checkout-step.active .step-title {
  color: var(--keler-or) !important;
}
.checkout-step .step-number,
.step-edit, .step-title {
  color: var(--keler-ivoire) !important;
}
.checkout-step.-complete .step-number {
  color: var(--keler-or) !important;
}

/* Steps numérotés (cercles) */
.steps li,
.checkout-process > .checkout-step,
[class*="step-edit"] {
  background: transparent !important;
  color: var(--keler-ivoire) !important;
}

/* Cards du checkout summary */
.cart-summary,
.cart-grid-right,
.checkout-summary,
.cart__summary,
.cart-detailed,
.cart-detailed-totals {
  background: var(--keler-anthracite) !important;
  border: 1px solid rgba(201, 169, 97, 0.18) !important;
  border-radius: 0 !important;
  color: var(--keler-ivoire) !important;
  padding: 2rem !important;
}
.cart-summary .h2,
.cart-summary .h3,
.cart-summary h2,
.cart-summary h3,
.cart-summary__title,
.checkout-summary__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 400 !important;
  color: var(--keler-ivoire) !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

/* Form labels & inputs */
.page-checkout label,
.page-cart label,
.page-customer-account label,
.page-contact label,
.page-my-account label {
  color: var(--keler-ivoire) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.18em !important;
  margin-bottom: 0.4rem;
}
.page-checkout input[type="text"],
.page-checkout input[type="email"],
.page-checkout input[type="tel"],
.page-checkout input[type="password"],
.page-checkout select,
.page-checkout textarea,
.page-cart input,
.page-customer-account input,
.page-contact input,
.page-contact textarea,
.page-contact select,
.form-control {
  background: rgba(245, 241, 232, 0.04) !important;
  border: 1px solid rgba(245, 241, 232, 0.12) !important;
  color: var(--keler-ivoire) !important;
  border-radius: 0 !important;
  padding: 0.75rem 1rem !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.85rem !important;
}
.form-control:focus {
  border-color: var(--keler-or) !important;
  box-shadow: 0 0 0 1px var(--keler-or) !important;
  background: rgba(245, 241, 232, 0.06) !important;
  color: var(--keler-ivoire) !important;
}
.form-control::placeholder {
  color: rgba(107, 107, 112, 0.7) !important;
}

/* Checkbox & radio styling */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--keler-or);
}

/* Cart items rows */
.cart-item,
.cart-items .cart-item,
.cart__item,
.cart-summary-line {
  background: transparent !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12) !important;
  color: var(--keler-ivoire) !important;
  padding: 1.25rem 0 !important;
}
.cart-item__title a,
.cart-item .product-line-info,
.product-line__title {
  color: var(--keler-ivoire) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
}
.cart-item__price,
.cart-summary__amount,
.product-line-info.value {
  color: var(--keler-or) !important;
  font-weight: 500 !important;
}

/* Total */
.cart-summary-line.cart-total,
.cart-detailed-totals .cart-total,
.cart-summary-products,
.cart__totals--total,
[class*="grand-total"] {
  border-top: 1px solid rgba(201, 169, 97, 0.25) !important;
  padding-top: 1.5rem !important;
  margin-top: 1rem !important;
  font-size: 1.1rem;
}
.cart-total .value,
.cart-summary-line.cart-total .value {
  color: var(--keler-or) !important;
  font-weight: 500 !important;
  font-size: 1.25rem;
}

/* Boutons checkout */
.page-checkout .btn,
.page-cart .btn,
.continue,
.btn-continue,
.process-carrier,
button[name="confirmDeliveryOption"],
.btn--primary {
  background: var(--keler-or) !important;
  border: 1px solid var(--keler-or) !important;
  color: var(--keler-noir) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 0.85rem 1.75rem !important;
}
.page-checkout .btn:hover,
.page-cart .btn:hover {
  background: var(--keler-or-clair) !important;
  border-color: var(--keler-or-clair) !important;
}

/* Mode de livraison / mode de paiement options */
.delivery-option,
.payment-option,
[class*="payment-options"] > div {
  background: rgba(245, 241, 232, 0.03) !important;
  border: 1px solid rgba(201, 169, 97, 0.18) !important;
  padding: 1.5rem !important;
  margin-bottom: 0.75rem;
}
.delivery-option:hover,
.payment-option:hover {
  border-color: var(--keler-or) !important;
}

/* CMS pages (Livraison, Mentions légales, etc.) - lisibilité */
.page-cms #content,
.page-cms .cms-content,
.cms-page-content {
  background: transparent !important;
  color: var(--keler-ivoire) !important;
  max-width: 880px !important;
  margin: 0 auto !important;
  padding: 4rem 1.5rem 6rem !important;
  line-height: 1.85;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.page-cms h1, .page-cms h2, .page-cms h3 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  color: var(--keler-ivoire) !important;
  font-weight: 400 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1rem !important;
}
.page-cms h1 { font-size: clamp(2rem, 4vw, 3rem) !important; text-align: center; margin: 1rem 0 3rem !important; }
.page-cms h2 { font-size: 1.75rem !important; }
.page-cms h3 { font-size: 1.25rem !important; color: var(--keler-or) !important; letter-spacing: 0.05em; }
.page-cms a { color: var(--keler-or) !important; }
.page-cms p { margin-bottom: 1rem !important; }
.page-cms ul, .page-cms ol { padding-left: 1.5rem; }
.page-cms li { margin-bottom: 0.5rem; }

/* My Account dashboard */
.page-customer-account #content,
.page-my-account #content {
  background: transparent !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 4rem 1.5rem 6rem !important;
}
.page-my-account .links a,
.page-customer-account .links a {
  background: var(--keler-anthracite) !important;
  border: 1px solid rgba(245, 241, 232, 0.06) !important;
  color: var(--keler-ivoire) !important;
  text-decoration: none !important;
  padding: 2rem 1.5rem !important;
  display: block;
  text-align: center;
  transition: all 600ms ease;
}
.page-my-account .links a:hover,
.page-customer-account .links a:hover {
  border-color: var(--keler-or) !important;
}

/* Notifications */
.notification-warning,
.notification-success,
.notification-info,
.alert-warning,
.alert-success,
.alert-info,
.alert-danger {
  border-radius: 0 !important;
  border: 1px solid rgba(201, 169, 97, 0.25);
  background: rgba(245, 241, 232, 0.04) !important;
  color: var(--keler-ivoire) !important;
}
.alert-success {
  border-color: var(--keler-or) !important;
}
.alert-danger {
  border-color: var(--keler-lave-orange) !important;
}

/* 5. Bonus : pagination link en or, plus de bleu */
.pagination a,
.pagination .page-link {
  color: var(--keler-ivoire) !important;
  background: transparent !important;
  border-color: rgba(201, 169, 97, 0.25) !important;
}
.pagination a:hover,
.pagination .active .page-link {
  background: var(--keler-or) !important;
  color: var(--keler-noir) !important;
  border-color: var(--keler-or) !important;
}
