/* ================================
   MH CERAMICA - DESIGN SYSTEM
================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  /* Couleurs principales - MH Ceramica */
  --mhc-bg: #F5F1EA;              /* Ivory Clay / fond principal */
  --mhc-beige: #F5F1EA;           /* Compatibilité ancienne variable */
  --mhc-sand: #D8C7B2;            /* Sand Beige / blocs doux */
  --mhc-brown: #A8643F;           /* Terracotta Clay / couleur principale */
  --mhc-dark-brown: #8B4E32;      /* Terracotta foncé / hover */
  --mhc-olive: #8B7A6A;           /* Ancien effet olive remplacé par Warm Taupe */
  --mhc-muted: #8B7A6A;           /* Warm Taupe / texte secondaire */
  --mhc-charcoal: #2B2A27;        /* Charcoal Soft / texte premium */

  /* Texte */
  --mhc-text: #2B2A27;
  --mhc-text-light: #8B7A6A;
  --mhc-white: #ffffff;
  --mhc-light: #FAF7F2;
  --mhc-border: rgba(43, 42, 39, 0.10);

  /* Typographies */
  --mhc-font-title: "Cormorant Garamond", Georgia, serif;
  --mhc-font-body: "Montserrat", Arial, sans-serif;

  /* Container global */
  --mhc-container: 1240px;
  --mhc-container-large: 1320px;
  --mhc-gutter: 32px;

  /* Design */
  --mhc-radius-sm: 8px;
  --mhc-radius-md: 16px;
  --mhc-radius-lg: 28px;

  --mhc-shadow-soft: 0 12px 35px rgba(43, 42, 39, 0.08);
  --mhc-shadow-hover: 0 18px 45px rgba(43, 42, 39, 0.14);
}

/* ================================
   GLOBAL
================================ */

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100% !important;
}

body {
  font-family: var(--mhc-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--mhc-text);
  background-color: var(--mhc-bg);
  margin: 0;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
}

p,
span,
li,
a,
button,
input,
textarea,
select {
  font-family: var(--mhc-font-body);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================================
   GLOBAL CONTAINERS
================================ */

.mhc-container {
  width: min(var(--mhc-container), calc(100% - var(--mhc-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

.mhc-container-large {
  width: min(var(--mhc-container-large), calc(100% - var(--mhc-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

/* Elementor container helper */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--mhc-container);
}

.e-con {
  --container-max-width: var(--mhc-container);
}

/* ================================
   TITLES
================================ */

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
  font-family: var(--mhc-font-title);
  color: var(--mhc-text);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 48px;
  font-weight: 600;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 28px;
  font-weight: 400;
}

h4 {
  font-size: 22px;
  font-weight: 500;
}

h5 {
  font-size: 21px;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  font-weight: 400;
}

/* ================================
   TOP BAR
================================ */

.mhc-topbar {
  position: relative;
  width: 100%;
  min-height: 42px;
  background-image: url("http://mhceramica.local/wp-content/uploads/2026/05/navbar1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: var(--mhc-white);
  font-family: var(--mhc-font-body);
  z-index: 20;
}

.mhc-topbar-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(139, 78, 50, 0.95),
      rgba(168, 100, 63, 0.78)
    );
  z-index: 1;
}

.mhc-topbar-inner {
  position: relative;
  z-index: 2;
  width: min(var(--mhc-container-large), calc(100% - var(--mhc-gutter) * 2));
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mhc-topbar-left,
.mhc-topbar-right,
.mhc-topbar-socials {
  display: flex;
  align-items: center;
}

.mhc-topbar-left {
  gap: 22px;
}

.mhc-topbar-right {
  gap: 18px;
}

.mhc-topbar-item,
.mhc-topbar-link,
.mhc-social-link {
  color: var(--mhc-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.25s ease;
}

.mhc-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.95;
}

.mhc-topbar-link {
  position: relative;
  opacity: 0.95;
}

.mhc-topbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--mhc-beige);
  transition: width 0.25s ease;
}

.mhc-topbar-link:hover::after {
  width: 100%;
}

.mhc-topbar-item:hover,
.mhc-topbar-link:hover,
.mhc-social-link:hover {
  color: var(--mhc-beige);
  opacity: 1;
}

.mhc-topbar-icon,
.mhc-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mhc-topbar-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mhc-topbar-socials {
  gap: 10px;
}

.mhc-social-link {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(216, 199, 178, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mhc-social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mhc-social-link:hover {
  background: var(--mhc-sand);
  color: var(--mhc-dark-brown);
  border-color: var(--mhc-beige);
  transform: translateY(-1px);
}

/* ================================
   LOGO SECTION
================================ */

.mhc-logo-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 26px 0 22px;
  border-bottom: 1px solid rgba(43, 42, 39, 0.08);
  z-index: 19;
}

.mhc-logo-inner {
  width: min(var(--mhc-container-large), calc(100% - var(--mhc-gutter) * 2));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mhc-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mhc-logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.mhc-logo-img {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 150px;
  object-fit: contain;
}

.mhc-logo-text {
  font-family: var(--mhc-font-title);
  font-size: 38px;
  font-weight: 600;
  color: var(--mhc-brown);
  line-height: 1;
  letter-spacing: 0.03em;
}

/* ================================
   MENU SECTION
================================ */

.mhc-menu-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(43, 42, 39, 0.08);
  z-index: 18;
}

.mhc-menu-inner {
  width: min(var(--mhc-container-large), calc(100% - var(--mhc-gutter) * 2));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.mhc-menu-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mhc-menu-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mhc-menu-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

/* ================================
   HEADER CTA BUTTON - POTTERY
================================ */

.mhc-new-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 24px;
  border: 1px solid rgba(168, 100, 63, 0.42);
  border-radius: 100px;
  background: transparent;
  color: var(--mhc-brown);
  font-family: var(--mhc-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.mhc-new-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background: var(--mhc-brown);
  border-radius: inherit;
  z-index: -1;
  transition: width 0.35s ease-in-out;
}

.mhc-new-btn:hover::before {
  width: 100%;
}

.mhc-new-btn:hover {
  color: var(--mhc-white);
  border-color: var(--mhc-brown);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(168, 100, 63, 0.28);
}

.mhc-new-btn-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.mhc-new-btn-icon {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--mhc-brown);
  color: var(--mhc-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.mhc-new-btn-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease-in-out;
}

.mhc-new-btn:hover .mhc-new-btn-icon {
  background: var(--mhc-beige);
  color: var(--mhc-brown);
}

.mhc-new-btn:hover .mhc-new-btn-icon svg {
  transform: scale(1.08) rotate(-6deg);
}

/* ================================
   PRIMARY MENU
================================ */

.mhc-primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mhc-primary-menu li {
  position: relative;
  margin: 0;
  padding: 0;
}

.mhc-primary-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  color: var(--mhc-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.mhc-primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--mhc-dark-brown);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.mhc-primary-menu > li:hover > a,
.mhc-primary-menu > li.current-menu-item > a,
.mhc-primary-menu > li.current_page_item > a {
  color: var(--mhc-dark-brown);
}

.mhc-primary-menu > li:hover > a::after,
.mhc-primary-menu > li.current-menu-item > a::after,
.mhc-primary-menu > li.current_page_item > a::after {
  width: 100%;
}

/* Sub menu */
.mhc-primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 230px;
  list-style: none;
  padding: 12px;
  margin: 0;
  background: var(--mhc-white);
  border: 1px solid var(--mhc-border);
  border-radius: 16px;
  box-shadow: var(--mhc-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: all 0.25s ease;
  z-index: 50;
}

.mhc-primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mhc-primary-menu .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--mhc-text);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.mhc-primary-menu .sub-menu li a:hover {
  background: var(--mhc-light);
  color: var(--mhc-dark-brown);
  transform: translateX(3px);
}

/* ================================
   HEADER ICONS
================================ */

.mhc-header-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(43, 42, 39, 0.1);
  border-radius: 999px;
  background: var(--mhc-light);
  color: var(--mhc-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mhc-header-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mhc-header-icon:hover {
  background: var(--mhc-dark-brown);
  color: var(--mhc-white);
  border-color: var(--mhc-dark-brown);
  transform: translateY(-2px);
}

.mhc-search-icon svg {
  width: 18px;
  height: 18px;
}

.mhc-cart-icon svg {
  width: 21px;
  height: 21px;
}

.mhc-wishlist-icon svg {
  width: 20px;
  height: 20px;
}

.mhc-cart-icon svg,
.mhc-wishlist-icon svg {
  transition: transform 0.25s ease;
}

.mhc-cart-icon:hover svg,
.mhc-wishlist-icon:hover svg {
  transform: scale(1.05);
}

.mhc-cart-count,
.mhc-wishlist-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--mhc-brown);
  color: var(--mhc-white);
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.mhc-cart-count.is-empty,
.mhc-wishlist-count.is-empty {
  display: none;
}

/* ================================
   BURGER ICON
================================ */

.mhc-side-menu-toggle {
  display: none;
  border: none !important;
  background: transparent !important;
  color: var(--mhc-dark-brown) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.mhc-side-menu-toggle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mhc-side-menu-toggle:hover {
  background: transparent !important;
  color: var(--mhc-brown) !important;
  transform: translateY(-1px);
}

.mhc-side-menu-toggle:focus {
  outline: none;
  box-shadow: none;
}

/* ================================
   SIDE DRAWER
================================ */

body.mhc-menu-open {
  overflow: hidden;
}

.mhc-side-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.mhc-side-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mhc-side-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 42, 39, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mhc-side-drawer.is-open .mhc-side-drawer-overlay {
  opacity: 1;
}

.mhc-side-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100%;
  background: var(--mhc-white);
  box-shadow: -20px 0 60px rgba(43, 42, 39, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel {
  transform: translateX(0);
}

.mhc-side-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mhc-side-title {
  font-family: var(--mhc-font-title);
  font-size: 30px;
  color: var(--mhc-dark-brown);
}

.mhc-side-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(43, 42, 39, 0.1);
  border-radius: 999px;
  background: var(--mhc-light);
  color: var(--mhc-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mhc-side-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mhc-side-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mhc-side-menu-list li {
  border-bottom: 1px solid rgba(43, 42, 39, 0.08);
}

.mhc-side-menu-list li a {
  display: flex;
  padding: 15px 0;
  color: var(--mhc-text);
  font-size: 16px;
  font-weight: 500;
}

.mhc-side-menu-list li a:hover {
  color: var(--mhc-dark-brown);
}

.mhc-side-contact {
  margin-top: auto;
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(43, 42, 39, 0.08);
}

.mhc-side-contact a {
  color: var(--mhc-text-light);
  font-size: 14px;
}

.mhc-side-contact a:hover {
  color: var(--mhc-dark-brown);
}

/* ================================
   SITE FOOTER
================================ */

.mhc-footer {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--mhc-white);
  overflow: hidden;
  margin-top: 70px;
}

.mhc-footer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(139, 78, 50, 0.89),
      rgba(43, 42, 39, 0.88)
    );
  z-index: 1;
}

.mhc-footer-content {
  position: relative;
  z-index: 2;
  width: min(var(--mhc-container-large), calc(100% - var(--mhc-gutter) * 2));
  margin: 0 auto;
}

/* Newsletter */
.mhc-footer-newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
  padding: 62px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mhc-footer-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--mhc-beige);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mhc-footer-newsletter h2 {
  margin: 0 0 12px;
  color: var(--mhc-white);
  font-size: 38px;
  font-weight: 600;
}

.mhc-footer-newsletter p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.mhc-newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(216, 199, 178, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.mhc-newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--mhc-white);
  padding: 0 18px;
  font-size: 14px;
}

.mhc-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.mhc-newsletter-form button {
  height: 46px;
  border: none;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--mhc-beige);
  color: var(--mhc-dark-brown);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mhc-newsletter-form button svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.mhc-newsletter-form button:hover {
  background: var(--mhc-white);
  transform: translateY(-1px);
}

.mhc-newsletter-form button:hover svg {
  transform: translateX(3px);
}

/* Main footer */
.mhc-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1.15fr;
  gap: 46px;
  padding: 58px 0 48px;
}

.mhc-footer-brand {
  max-width: 380px;
}

.mhc-footer-logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.mhc-footer-logo img {
  max-width: 160px;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mhc-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.85;
}

.mhc-footer-column h3,
.mhc-footer-collections h3 {
  margin: 0 0 20px;
  color: var(--mhc-white);
  font-size: 24px;
  font-weight: 500;
}

.mhc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.mhc-footer-links li {
  margin: 0;
  padding: 0;
}

.mhc-footer-links a {
  position: relative;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s ease;
}

.mhc-footer-links a:hover {
  color: var(--mhc-beige);
  transform: translateX(4px);
}

/* Collections */
.mhc-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.mhc-collection-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(216, 199, 178, 0.22);
}

.mhc-collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mhc-collection-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.mhc-collection-item span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(216, 199, 178, 0.18),
      rgba(255, 255, 255, 0.08)
    );
}

/* Footer bottom */
.mhc-footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mhc-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.7;
}

.mhc-footer-bottom p span {
  margin-left: 10px;
}

.mhc-footer-bottom a {
  color: var(--mhc-beige);
}

.mhc-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhc-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(216, 199, 178, 0.42);
  color: var(--mhc-white);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mhc-footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mhc-footer-socials a:hover {
  background: var(--mhc-beige);
  border-color: var(--mhc-beige);
  color: var(--mhc-dark-brown);
  transform: translateY(-2px);
}

/* ================================
   RESPONSIVE TYPOGRAPHY
================================ */

@media (max-width: 768px) {
  :root {
    --mhc-gutter: 20px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  body {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  :root {
    --mhc-gutter: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }
}

/* ================================
   RESPONSIVE TOP BAR
================================ */

@media (max-width: 900px) {
  .mhc-topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }

  .mhc-topbar-left,
  .mhc-topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .mhc-topbar-item,
  .mhc-topbar-link {
    font-size: 12px;
  }

  .mhc-topbar-left {
    gap: 10px;
  }

  .mhc-topbar-item:nth-child(1) {
    display: none;
  }
}

/* ================================
   RESPONSIVE LOGO
================================ */

@media (max-width: 768px) {
  .mhc-logo-section {
    padding: 22px 0 18px;
  }

  .mhc-logo-img {
    max-width: 170px;
    max-height: 70px;
  }

  .mhc-logo-text {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .mhc-logo-section {
    padding: 18px 0 16px;
  }

  .mhc-logo-img {
    max-width: 145px;
    max-height: 60px;
  }

  .mhc-logo-text {
    font-size: 28px;
  }
}

/* ================================
   RESPONSIVE HEADER / BURGER
================================ */

@media (max-width: 1100px) {
  .mhc-primary-menu {
    gap: 22px;
  }

  .mhc-primary-menu > li > a {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .mhc-menu-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .mhc-menu-center {
    display: none !important;
  }

  .mhc-side-menu-toggle {
    display: inline-flex !important;
  }

  .mhc-menu-left {
    justify-content: flex-start;
  }

  .mhc-menu-right {
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .mhc-menu-inner {
    gap: 12px;
  }

  .mhc-new-btn {
    padding: 9px 10px 9px 14px;
    gap: 8px;
    font-size: 12px;
  }

  .mhc-new-btn-text {
    font-size: 12px;
  }

  .mhc-new-btn-icon {
    width: 30px;
    height: 30px;
  }

  .mhc-new-btn-icon svg {
    width: 14px;
    height: 14px;
  }

  .mhc-menu-right {
    gap: 6px;
  }

  .mhc-header-icon {
    width: 36px;
    height: 36px;
  }

  .mhc-header-icon svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 430px) {
  .mhc-wishlist-icon {
    display: none;
  }

  .mhc-new-btn-text {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ================================
   RESPONSIVE FOOTER
================================ */

@media (max-width: 1024px) {
  .mhc-footer-newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mhc-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
  }
}

@media (max-width: 768px) {
  .mhc-footer {
    margin-top: 50px;
  }

  .mhc-footer-newsletter {
    padding: 48px 0 38px;
  }

  .mhc-footer-newsletter h2 {
    font-size: 30px;
  }

  .mhc-footer-main {
    grid-template-columns: 1fr;
    padding: 44px 0 38px;
  }

  .mhc-footer-brand {
    max-width: 100%;
  }

  .mhc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mhc-footer-bottom p span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .mhc-newsletter-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 10px;
    gap: 8px;
  }

  .mhc-newsletter-form input,
  .mhc-newsletter-form button {
    width: 100%;
  }

  .mhc-newsletter-form button {
    justify-content: center;
  }

  .mhc-collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

/* ================================
   BURGER VISIBILITY CONTROL
================================ */

/* Desktop : cacher le burger */
.mhc-side-menu-toggle {
  display: none !important;
}

/* Tablette + mobile : afficher le burger */
@media (max-width: 991px) {
  .mhc-side-menu-toggle {
    display: inline-flex !important;
  }
}

/* ================================
   MOBILE / TABLET HEADER CLEAN
================================ */

@media (max-width: 991px) {

  /* Cacher la top bar sur tablette et mobile */
  .mhc-topbar {
    display: none !important;
  }

  /* Logo plus compact */
  .mhc-logo-section {
    padding: 18px 0 14px;
  }

  .mhc-logo-img {
    max-width: 155px;
    max-height: 75px;
  }

  /* Menu mobile propre */
  .mhc-menu-section {
    background: var(--mhc-bg);
    border-top: 1px solid rgba(43, 42, 39, 0.06);
    border-bottom: 1px solid rgba(43, 42, 39, 0.08);
  }

  .mhc-menu-inner {
    width: min(100%, calc(100% - 28px));
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
  }

  /* Cacher le menu desktop */
  .mhc-menu-center {
    display: none !important;
  }

  /* Bouton nouvelle collection à gauche */
  .mhc-menu-left {
    justify-content: flex-start;
    min-width: 0;
  }

  .mhc-new-btn {
    max-width: 190px;
    padding: 9px 10px 9px 16px;
    gap: 8px;
  }

  .mhc-new-btn-text {
    max-width: 115px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
  }

  .mhc-new-btn-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .mhc-new-btn-icon svg {
    width: 14px;
    height: 14px;
  }

  /* Icônes à droite */
  .mhc-menu-right {
    justify-content: flex-end;
    gap: 7px;
  }

  .mhc-header-icon {
    width: 38px;
    height: 38px;
  }

  .mhc-header-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Afficher burger en mobile/tablette */
  .mhc-side-menu-toggle {
    display: inline-flex !important;
  }
}

@media (max-width: 480px) {
  .mhc-menu-inner {
    width: min(100%, calc(100% - 22px));
    gap: 8px;
  }

  .mhc-logo-img {
    max-width: 135px;
    max-height: 65px;
  }

  .mhc-new-btn {
    max-width: 165px;
    padding: 8px 9px 8px 13px;
  }

  .mhc-new-btn-text {
    max-width: 92px;
    font-size: 12px;
  }

  .mhc-menu-right {
    gap: 5px;
  }

  .mhc-header-icon {
    width: 34px;
    height: 34px;
  }

  .mhc-header-icon svg {
    width: 16px;
    height: 16px;
  }

  /* Pour gagner de l’espace sur très petit mobile */
  .mhc-wishlist-icon {
    display: none !important;
  }
}

/* ================================
   MOBILE SIDE DRAWER CONTENT
================================ */

.mhc-side-logo {
  display: inline-flex;
  align-items: center;
}

.mhc-side-logo img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
}

.mhc-side-extra-links {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.mhc-side-extra-links a {
  display: flex;
  align-items: center;
  color: var(--mhc-text);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid rgba(43, 42, 39, 0.08);
}

.mhc-side-extra-links a:hover {
  color: var(--mhc-dark-brown);
}

.mhc-side-contact span {
  color: var(--mhc-text-light);
  font-size: 14px;
}

.mhc-side-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
}

.mhc-side-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(168, 100, 63, 0.16);
  color: var(--mhc-dark-brown);
  background: var(--mhc-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mhc-side-socials a svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.mhc-side-socials a:hover {
  background: var(--mhc-dark-brown);
  color: var(--mhc-white);
  border-color: var(--mhc-dark-brown);
  transform: translateY(-2px);
}

/* ================================
   MOBILE HEADER FINAL VERSION
================================ */

.mhc-mobile-logo {
  display: none;
}

@media (max-width: 991px) {
  /* Supprimer top bar et logo centré sur mobile/tablette */
  .mhc-topbar,
  .mhc-logo-section {
    display: none !important;
  }

  /* Header mobile : logo gauche / icônes droite */
  .mhc-menu-section {
    background: var(--mhc-bg);
    border-bottom: 1px solid rgba(43, 42, 39, 0.08);
  }

  .mhc-menu-inner {
    width: min(100%, calc(100% - 28px));
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
  }

  .mhc-menu-center {
    display: none !important;
  }

  .mhc-menu-left {
    justify-content: flex-start;
    min-width: 0;
  }

  .mhc-menu-right {
    justify-content: flex-end;
    gap: 8px;
  }

  /* Cacher le bouton Nouvelle Collection du header mobile */
  .mhc-desktop-cta {
    display: none !important;
  }

  /* Afficher logo à gauche */
  .mhc-mobile-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }

  .mhc-mobile-logo img {
    display: block;
    width: auto;
    max-width: 118px;
    max-height: 58px;
    object-fit: contain;
  }

  /* Afficher burger */
  .mhc-side-menu-toggle {
    display: inline-flex !important;
  }

  .mhc-header-icon {
    width: 38px;
    height: 38px;
  }

  .mhc-header-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .mhc-menu-inner {
    width: min(100%, calc(100% - 22px));
    min-height: 66px;
    gap: 10px;
  }

  .mhc-mobile-logo img {
    max-width: 98px;
    max-height: 52px;
  }

  .mhc-menu-right {
    gap: 5px;
  }

  .mhc-header-icon {
    width: 34px;
    height: 34px;
  }

  .mhc-header-icon svg {
    width: 16px;
    height: 16px;
  }

  .mhc-wishlist-icon {
    display: none !important;
  }
}

/* ================================
   SIDE DRAWER ANIMATION IMPROVED
================================ */

.mhc-side-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.mhc-side-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mhc-side-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 42, 39, 0.48);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
}

.mhc-side-drawer.is-open .mhc-side-drawer-overlay {
  opacity: 1;
  backdrop-filter: blur(3px);
}

.mhc-side-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100%;
  background: var(--mhc-white);
  box-shadow: -24px 0 70px rgba(43, 42, 39, 0.2);
  transform: translateX(105%) scale(0.98);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel {
  transform: translateX(0) scale(1);
  opacity: 1;
}

/* Animation des éléments internes */
.mhc-side-drawer-panel > * {
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel > * {
  opacity: 1;
  transform: translateX(0);
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel > *:nth-child(1) {
  transition-delay: 0.08s;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel > *:nth-child(2) {
  transition-delay: 0.13s;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel > *:nth-child(3) {
  transition-delay: 0.18s;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel > *:nth-child(4) {
  transition-delay: 0.23s;
}

.mhc-side-drawer.is-open .mhc-side-drawer-panel > *:nth-child(5) {
  transition-delay: 0.28s;
}

/* ================================
   SIDE DRAWER HEADER + CLOSE COLOR
================================ */

.mhc-side-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mhc-side-logo {
  display: inline-flex;
  align-items: center;
}

.mhc-side-logo img {
  max-width: 125px;
  max-height: 68px;
  object-fit: contain;
}

.mhc-side-close {
  width: 42px;
  height: 42px;
  border: none !important;
  border-radius: 999px;
  background: var(--mhc-dark-brown) !important;
  color: var(--mhc-white) !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mhc-side-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mhc-side-close:hover {
  background: var(--mhc-brown) !important;
  color: var(--mhc-white) !important;
  transform: rotate(90deg);
}

/* ================================
   SIDE COLLECTION BUTTON
================================ */

.mhc-side-collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 13px 14px 13px 18px;
  border-radius: 999px;
  background: var(--mhc-light);
  border: 1px solid rgba(168, 100, 63, 0.14);
  color: var(--mhc-dark-brown);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.mhc-side-collection-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--mhc-dark-brown);
  color: var(--mhc-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  transition: all 0.25s ease;
}

.mhc-side-collection-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mhc-side-collection-btn:hover {
  background: var(--mhc-dark-brown);
  color: var(--mhc-white);
  transform: translateY(-2px);
}

.mhc-side-collection-btn:hover .mhc-side-collection-icon {
  background: var(--mhc-beige);
  color: var(--mhc-dark-brown);
}

/* ================================
   CLEAN SIDE MENU LINKS
================================ */

.mhc-side-extra-links {
  display: none !important;
}

.mhc-side-menu-list li a {
  position: relative;
  padding: 15px 0;
  color: var(--mhc-text);
  font-size: 16px;
  font-weight: 500;
}

.mhc-side-menu-list li a:hover {
  color: var(--mhc-dark-brown);
  transform: translateX(4px);
}


/* ================================
   MODERN BURGER ICON
================================ */

.mhc-side-menu-toggle {
  border: none !important;
  background: transparent !important;
  color: var(--mhc-dark-brown) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.mhc-side-menu-toggle svg {
  width: 26px;
  height: 26px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mhc-side-menu-toggle:hover {
  background: transparent !important;
  color: var(--mhc-brown) !important;
  transform: translateY(-1px);
}

.mhc-side-menu-toggle:hover svg path:nth-child(2) {
  transform: translateX(-3px);
}

.mhc-side-menu-toggle svg path {
  transition: transform 0.25s ease;
}

/* ================================
   MH CERAMICA FINAL STYLE NOTES
   Titres: Cormorant Garamond
   Textes / menus / boutons: Montserrat
   Palette: Ivory Clay, Terracotta, Sand Beige, Warm Taupe, Charcoal
================================ */
/* ================================
   MHC BEST SELLING PRODUCTS
   Page accueil
================================ */

.mhc-best-products-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
}

.mhc-best-products-section * {
  box-sizing: border-box;
}

.mhc-best-products-wrap {
  width: min(1220px, 94%);
  margin: 0 auto;
}

.mhc-best-products-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.mhc-best-products-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #813003;
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mhc-best-products-header h2 {
  margin: 0 0 14px;
  color: #222222;
  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.mhc-best-products-header p {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(34, 34, 34, 0.62);
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 15px;
  line-height: 1.75;
}

/* Grid */
.mhc-best-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 30px;
}

/* Card */
.mhc-best-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 24px;
  align-items: center;

  min-height: 230px;
  padding: 20px;

  background: #ffffff;
  border: 1px solid rgba(34, 34, 34, 0.10);
  box-shadow: 0 12px 34px rgba(34, 34, 34, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.mhc-best-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 48, 3, 0.18);
  box-shadow: 0 22px 50px rgba(34, 34, 34, 0.09);
}

/* Image */
.mhc-best-product-image {
  position: relative;
  display: block;
  width: 185px;
  height: 185px;
  overflow: hidden;
  background: #f7f4f0;
  text-decoration: none;
}

.mhc-best-product-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  padding: 0;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.mhc-best-product-card:hover .mhc-best-product-image img {
  transform: scale(1.08);
  filter: brightness(1.03);
}

/* Badge */
.mhc-best-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  border-radius: 0;

  background: #813003;
  color: #ffffff;

  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Content */
.mhc-best-product-content {
  min-width: 0;
}

.mhc-best-product-cats {
  margin-bottom: 8px;
}

.mhc-best-product-cats,
.mhc-best-product-cats a {
  color: #813003;
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
}

.mhc-best-product-card h3 {
  margin: 0 0 12px;
  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.mhc-best-product-card h3 a {
  color: #222222;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mhc-best-product-card:hover h3 a {
  color: #813003;
}

/* Rating */
.mhc-best-product-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.mhc-best-product-rating .star-rating {
  float: none;
  margin: 0;
  color: #f5a400;
  font-size: 13px;
}

.mhc-best-rating-count {
  color: rgba(34, 34, 34, 0.62);
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 500;
}

/* Price */
.mhc-best-product-price {
  margin-bottom: 14px;
  color: #813003;
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 18px;
  font-weight: 700;
}

.mhc-best-product-price del {
  color: rgba(34, 34, 34, 0.38);
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.mhc-best-product-price ins {
  color: #813003;
  text-decoration: none;
}

/* Link */
.mhc-best-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #813003;
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.mhc-best-product-card:hover .mhc-best-product-link {
  opacity: 1;
  transform: translateY(0);
}

.mhc-best-product-link span {
  transition: transform 0.25s ease;
}

.mhc-best-product-link:hover {
  color: #222222;
}

.mhc-best-product-link:hover span {
  transform: translateX(4px);
}

/* CTA */
.mhc-best-products-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.mhc-best-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 12px 14px 12px 26px;
  border-radius: 999px;

  background: #813003;
  color: #ffffff;
  border: 1px solid #813003;

  text-decoration: none;
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 14px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.mhc-best-products-btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #e2d6cf;
  color: #813003;

  transition: transform 0.3s ease;
}

.mhc-best-products-btn:hover {
  background: #222222;
  border-color: #222222;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(34, 34, 34, 0.16);
}

.mhc-best-products-btn:hover span {
  transform: rotate(-12deg) scale(1.05);
}

/* Empty */
.mhc-best-products-empty {
  text-align: center;
  color: rgba(34, 34, 34, 0.62);
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
}

/* Responsive */
@media (max-width: 1180px) {
  .mhc-best-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .mhc-best-products-section {
    padding: 72px 18px;
  }

  .mhc-best-products-grid {
    grid-template-columns: 1fr;
  }

  .mhc-best-product-card {
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }

  .mhc-best-product-image {
    width: 160px;
    height: 160px;
  }

  .mhc-best-product-card h3 {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .mhc-best-products-section {
    padding: 60px 14px;
  }

  .mhc-best-product-card {
    grid-template-columns: 1fr;
  }

  .mhc-best-product-image {
    width: 100%;
    height: 260px;
  }

  .mhc-best-product-link {
    opacity: 1;
    transform: none;
  }
}


/* ================================
   MHC BEST PRODUCTS BACKGROUND TITLE
================================ */

.mhc-best-products-section {
  position: relative;
  overflow: hidden;
}

.mhc-best-products-bg-text {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 0;

  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: clamp(70px, 12vw, 170px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: rgba(129, 48, 3, 0.045);

  white-space: nowrap;
  pointer-events: none;
  user-select: none;

  animation: mhcBestProductsFloat 7s ease-in-out infinite;
}

.mhc-best-products-wrap {
  position: relative;
  z-index: 2;
}

@keyframes mhcBestProductsFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(14px);
  }
}

/* Supprimer le bouton Voir toute la boutique si le HTML existe encore */
.mhc-best-products-cta {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .mhc-best-products-bg-text {
    top: 42px;
    font-size: clamp(50px, 16vw, 100px);
    color: rgba(129, 48, 3, 0.035);
  }
}

@media (max-width: 480px) {
  .mhc-best-products-bg-text {
    display: none;
  }
}

/* ================================
   MHC BLOG EDITORIAL SECTION
   Style magazine - Page accueil
================================ */

.mhc-blog-editorial-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 95px 20px 90px;
  background: #ffffff;
  overflow: hidden;
}

.mhc-blog-editorial-section * {
  box-sizing: border-box;
}

/* Background title */
.mhc-blog-editorial-bg-text {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;

  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: clamp(72px, 12vw, 175px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: rgba(129, 48, 3, 0.045);

  white-space: nowrap;
  pointer-events: none;
  user-select: none;

  animation: mhcBlogEditorialFloat 7s ease-in-out infinite;
}

.mhc-blog-editorial-wrap {
  position: relative;
  z-index: 2;
  width: min(1220px, 94%);
  margin: 0 auto;
}

/* Header */
.mhc-blog-editorial-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.mhc-blog-editorial-kicker {
  display: inline-flex;
  margin-bottom: 14px;

  color: #813003;

  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mhc-blog-editorial-header h2 {
  margin: 0 0 14px;

  color: #222222;

  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.05;
}

.mhc-blog-editorial-header p {
  max-width: 620px;
  margin: 0 auto;

  color: rgba(34, 34, 34, 0.62);

  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 15px;
  line-height: 1.75;
}

/* Grid */
.mhc-blog-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

/* Card */
.mhc-blog-editorial-card {
  position: relative;
  background: transparent;
}

/* Image */
.mhc-blog-editorial-image {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
  background: #f6f0e8;
  text-decoration: none;
}

.mhc-blog-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1.02);
  transition:
    transform 0.75s ease,
    filter 0.75s ease;
}

.mhc-blog-editorial-card:hover .mhc-blog-editorial-image img {
  transform: scale(1.08);
  filter: brightness(1.04);
}

/* Placeholder */
.mhc-blog-editorial-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 50% 45%, rgba(129, 48, 3, 0.08), transparent 42%),
    #f6f0e8;
}

.mhc-blog-editorial-placeholder span {
  color: rgba(129, 48, 3, 0.20);
  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: 64px;
  font-weight: 600;
}

/* Date badge */
.mhc-blog-editorial-date {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 3;

  min-width: 170px;
  padding: 10px 22px;

  background: #ffffff;
  color: #222222;

  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;

  box-shadow: none;
}

/* Content */
.mhc-blog-editorial-content {
  padding-top: 22px;
}

.mhc-blog-editorial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;

  margin-bottom: 10px;

  color: rgba(34, 34, 34, 0.58);

  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.mhc-blog-editorial-content h3 {
  margin: 0 0 28px;

  font-family: var(--mhc-font-title, Georgia, serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.22;
}

.mhc-blog-editorial-content h3 a {
  color: #222222;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mhc-blog-editorial-card:hover h3 a {
  color: #813003;
}

/* Read more */
.mhc-blog-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: #222222;

  font-family: var(--mhc-font-body, "Poppins", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.mhc-blog-editorial-link span {
  width: 52px;
  height: 1px;
  background: #222222;
  display: inline-block;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.mhc-blog-editorial-link:hover {
  color: #813003;
  gap: 18px;
}

.mhc-blog-editorial-link:hover span {
  width: 68px;
  background: #813003;
}

/* Empty */
.mhc-blog-empty {
  text-align: center;
  color: rgba(34, 34, 34, 0.62);
  font-family: var(--mhc-font-body, "Poppins", sans-serif);
}

/* Animation */
@keyframes mhcBlogEditorialFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(14px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .mhc-blog-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhc-blog-editorial-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .mhc-blog-editorial-section {
    padding: 76px 18px;
  }

  .mhc-blog-editorial-header {
    margin-bottom: 38px;
  }

  .mhc-blog-editorial-bg-text {
    top: 42px;
    font-size: clamp(52px, 16vw, 100px);
  }

  .mhc-blog-editorial-date {
    top: 22px;
    min-width: 145px;
    padding: 9px 18px;
    font-size: 16px;
  }

  .mhc-blog-editorial-content h3 {
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  .mhc-blog-editorial-section {
    padding: 62px 14px;
  }

  .mhc-blog-editorial-bg-text {
    display: none;
  }

  .mhc-blog-editorial-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mhc-blog-editorial-image {
    height: 280px;
  }

  .mhc-blog-editorial-content h3 {
    font-size: 27px;
    margin-bottom: 22px;
  }
}
