/* =========================================================
   MERTI HOME — STYLE PRINCIPAL
   Design sombre, premium, élégant et proche de la maquette
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --red: #f0181d;
  --red-dark: #ba0f13;
  --red-soft: #ff2b30;

  --black: #050505;
  --black-2: #080808;
  --black-3: #0c0c0c;
  --black-4: #111111;
  --black-card: #101010;
  --black-card-2: #151515;

  --white: #ffffff;
  --white-soft: #f4f4f4;

  --gray: #a8a8a8;
  --gray-light: #d2d2d2;
  --gray-dark: #6c6c6c;

  --border: #2f2f2f;
  --border-light: #414141;
  --border-red: rgba(240, 24, 29, 0.75);

  --font-main: "Montserrat", sans-serif;
  --font-title: "Barlow Condensed", sans-serif;

  --container: 1470px;
  --header-height: 92px;

  --radius-small: 6px;
  --radius-medium: 10px;
  --radius-large: 14px;

  --transition: 0.28s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.025),
      transparent 35%
    ),
    var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  outline: 0;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--red);
  color: var(--white);
}


/* =========================================================
   STRUCTURE GÉNÉRALE
========================================================= */

.site-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}

.section-heading {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.99),
      rgba(5, 5, 5, 0.99)
    );
  border-bottom: 1px solid #242424;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  height: 100%;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #dddddd;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.header-btn {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.header-btn:hover {
  transform: translateY(-2px);
}

.header-btn-red {
  background: linear-gradient(135deg, #f32126, #d80f14);
  border: 1px solid var(--red-soft);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(240, 24, 29, 0.13);
}

.header-btn-red:hover {
  background: linear-gradient(135deg, #ff2b30, #e71318);
}

.header-btn-whatsapp {
  background: #0d0d0d;
  border: 1px solid #4b4b4b;
  color: var(--white);
}

.header-btn-whatsapp i {
  font-size: 21px;
}

.header-btn-whatsapp:hover {
  border-color: var(--white);
  background: #141414;
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 47px;
  height: 47px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 28px 24px 40px;
  background:
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0.99),
      rgba(0, 0, 0, 0.99)
    );
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #222222;
  color: var(--gray-light);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  transition:
    color var(--transition),
    padding-left var(--transition),
    background-color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  padding-left: 25px;
  background: rgba(240, 24, 29, 0.06);
  color: var(--red);
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #252525;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter:
    saturate(0.88)
    contrast(1.04)
    brightness(0.86);
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.99) 27%,
      rgba(5, 5, 5, 0.82) 39%,
      rgba(5, 5, 5, 0.22) 58%,
      rgba(5, 5, 5, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.12)
    );
}

.hero-red-lines {
  position: absolute;
  top: 0;
  left: 35%;
  width: 270px;
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
}

.hero-red-lines::before,
.hero-red-lines::after {
  content: "";
  position: absolute;
  border: 2px solid var(--red);
  transform: skewX(-40deg);
  box-shadow:
    0 0 8px rgba(240, 24, 29, 0.4),
    inset 0 0 7px rgba(240, 24, 29, 0.16);
}

.hero-red-lines::before {
  top: -80px;
  left: 5px;
  width: 92px;
  height: 360px;
  border-top: 0;
  border-bottom: 0;
}

.hero-red-lines::after {
  bottom: -110px;
  left: 96px;
  width: 102px;
  height: 410px;
  border-top: 0;
  border-bottom: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  width: 470px;
  padding: 58px 0 45px;
}

.hero-title {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: clamp(54px, 5vw, 70px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title-white {
  color: var(--white);
}

.hero-title-red {
  margin-top: 10px;
  color: var(--red);
}

.hero-description {
  margin-bottom: 28px;
  color: #dddddd;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.62;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-bottom: 30px;
}

.hero-feature {
  position: relative;
  min-height: 100px;
  padding: 0 15px;
  text-align: center;
}

.hero-feature:first-child {
  padding-left: 0;
}

.hero-feature:last-child {
  padding-right: 0;
}

.hero-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 1px;
  height: 78px;
  background: #464646;
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 39px;
}

.hero-feature h2 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-feature p {
  margin-top: 7px;
  color: #bcbcbc;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 17px;
}

.main-btn {
  min-height: 55px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.main-btn:hover {
  transform: translateY(-3px);
}

.main-btn-red {
  color: var(--white);
  background: linear-gradient(135deg, #f12025, #dd1116);
  border: 1px solid var(--red);
  box-shadow: 0 10px 28px rgba(240, 24, 29, 0.14);
}

.main-btn-red:hover {
  box-shadow: 0 12px 35px rgba(240, 24, 29, 0.24);
}

.main-btn-outline {
  color: var(--white);
  background: rgba(6, 6, 6, 0.82);
  border: 1px solid var(--red);
}

.main-btn-outline:hover {
  background: rgba(240, 24, 29, 0.09);
}


/* =========================================================
   CATÉGORIES
========================================================= */

.home-categories {
  padding: 17px 0 10px;
  background:
    linear-gradient(
      180deg,
      #080808,
      #060606
    );
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  background: #0d0d0d;
  border: 1px solid #383838;
  border-radius: 8px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.category-image {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #151515;
}

.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0, 0, 0, 0.35)
    );
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.045);
  filter: brightness(1.06);
}

.category-bottom {
  display: grid;
  grid-template-columns: 48px 1fr 25px;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 13px 15px;
  background:
    linear-gradient(
      180deg,
      #111111,
      #0b0b0b
    );
}

.category-icon {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 4px;
  font-size: 24px;
}

.category-text {
  min-width: 0;
}

.category-text h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.category-text p {
  color: #c7c7c7;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.12;
}

.category-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 24px;
  transition: transform var(--transition);
}

.category-card:hover .category-arrow {
  transform: translateX(4px);
}


/* =========================================================
   PRODUITS EN VEDETTE
========================================================= */

.featured-products {
  padding: 16px 0 15px;
  background: #060606;
}

.section-heading-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
  padding: 0 3px 14px;
  border-bottom: 2px solid var(--red);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition:
    color var(--transition),
    transform var(--transition);
}

.section-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #131313,
      #0d0d0d
    );
  border: 1px solid #393939;
  border-radius: 8px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
}

.product-image {
  position: relative;
  display: block;
  height: 167px;
  overflow: hidden;
  background: #181818;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.product-body {
  padding: 13px 14px 14px;
}

.product-body h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.product-body p {
  min-height: 44px;
  margin-bottom: 10px;
  color: #c8c8c8;
  font-family: var(--font-title);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.22;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1;
}

.product-price i {
  font-size: 17px;
  transition: transform var(--transition);
}

.product-price:hover i {
  transform: translateX(4px);
}


/* =========================================================
   COMMENT ÇA MARCHE
========================================================= */

.home-process {
  padding: 16px 0 18px;
  background: #060606;
}

.process-heading {
  padding-bottom: 13px;
  border-bottom: 2px solid var(--red);
}

.process-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    32px
    minmax(0, 1fr)
    32px
    minmax(0, 1fr)
    32px
    minmax(0, 1fr)
    32px
    minmax(0, 1fr);
  align-items: center;
  margin-top: 13px;
}

.process-card {
  position: relative;
  min-height: 223px;
  padding: 20px 16px 17px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      #151515,
      #0c0c0c
    );
  border: 1px solid #3b3b3b;
  border-radius: 8px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.process-number {
  position: absolute;
  top: 10px;
  left: 13px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
}

.process-icon {
  height: 68px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 50px;
}

.process-card h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.process-card p {
  color: #c9c9c9;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.23;
}

.process-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 27px;
}


/* =========================================================
   BANDE AVANTAGES
========================================================= */

.advantages-strip {
  padding: 0 0 14px;
  background: #060606;
}

.advantages-grid {
  display: grid;
  grid-template-columns:
    0.95fr
    1.05fr
    1.15fr
    1.1fr
    1.25fr;
  overflow: hidden;
  border: 2px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #111111,
      #0b0b0b
    );
}

.advantage-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 105px;
  padding: 17px 20px;
}

.advantage-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: rgba(240, 24, 29, 0.6);
}

.advantage-icon {
  flex: 0 0 auto;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 43px;
}

.advantage-item h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
}

.advantage-item p {
  color: #cccccc;
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.12;
}


/* =========================================================
   BANNIÈRE WHATSAPP
========================================================= */

.home-whatsapp {
  padding: 0 0 15px;
  background: #060606;
}

.whatsapp-banner {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1.35fr;
  align-items: center;
  gap: 32px;
  padding: 24px 38px;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  background: #0d0d0d;
}

.whatsapp-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.98) 0%,
      rgba(8, 8, 8, 0.96) 28%,
      rgba(8, 8, 8, 0.73) 52%,
      rgba(8, 8, 8, 0.42) 75%,
      rgba(8, 8, 8, 0.53) 100%
    );
}

.whatsapp-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.whatsapp-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    brightness(0.72)
    saturate(0.85);
}

.whatsapp-brand,
.whatsapp-copy,
.whatsapp-cta {
  position: relative;
  z-index: 2;
}

.whatsapp-brand img {
  width: 190px;
  margin-bottom: 11px;
}

.whatsapp-brand p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.25;
}

.whatsapp-copy h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.03;
  text-transform: uppercase;
}

.whatsapp-copy h2 span {
  color: var(--red);
}

.whatsapp-copy p {
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.whatsapp-cta {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 29px;
  color: var(--white);
  background: rgba(6, 6, 6, 0.77);
  border: 2px solid var(--red);
  border-radius: 6px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.whatsapp-cta i {
  font-size: 32px;
}

.whatsapp-cta:hover {
  transform: translateY(-3px);
  background: rgba(240, 24, 29, 0.09);
  box-shadow: 0 12px 30px rgba(240, 24, 29, 0.14);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  background:
    linear-gradient(
      180deg,
      #080808,
      #040404
    );
  border-top: 1px solid #202020;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.85fr 1.05fr 1.05fr;
  gap: 54px;
  padding-top: 18px;
  padding-bottom: 17px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 21px;
  padding-left: 34px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-socials a:hover {
  color: var(--red);
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column > a,
.footer-column > p {
  margin-bottom: 5px;
  color: #c3c3c3;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.13;
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-column > a:hover {
  color: var(--red);
  transform: translateX(3px);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact i {
  width: 16px;
  margin-top: 1px;
  color: var(--white);
  font-size: 13px;
  text-align: center;
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 4px 0 8px;
  border-top: 1px solid rgba(240, 24, 29, 0.55);
}

.footer-bottom p {
  position: relative;
  padding: 0 18px;
  color: #a8a8a8;
  background: #040404;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
}


/* =========================================================
   ANIMATIONS ET EFFETS
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  animation: fadeUp 0.75s ease both;
}

.category-card,
.product-card,
.process-card {
  will-change: transform;
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   PAGE CATALOGUE — STYLE COMPLET
========================================================= */


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================================
   HERO CATALOGUE
========================================================= */

.catalogue-hero {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  background: #080808;
  border-bottom: 1px solid #303030;
}

.catalogue-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catalogue-hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      #080808 0%,
      rgba(8, 8, 8, 0.97) 27%,
      rgba(8, 8, 8, 0.67) 46%,
      rgba(8, 8, 8, 0.16) 72%,
      rgba(8, 8, 8, 0.2) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03),
      rgba(0, 0, 0, 0.2)
    );
}

.catalogue-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    brightness(0.8)
    contrast(1.08)
    saturate(1.1);
}

.catalogue-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 66px;
  min-height: 565px;
  padding-top: 34px;
  padding-bottom: 34px;
}


/* =========================================================
   HERO — CONTENU GAUCHE
========================================================= */

.catalogue-hero-content {
  position: relative;
  min-width: 0;
}

.catalogue-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
}

.catalogue-breadcrumb a {
  transition: color var(--transition);
}

.catalogue-breadcrumb a:hover {
  color: var(--red);
}

.catalogue-breadcrumb i {
  color: #8c8c8c;
  font-size: 9px;
}

.catalogue-breadcrumb span {
  color: var(--white);
}

.catalogue-main-title {
  margin-bottom: 22px;
  font-family: var(--font-title);
  font-size: clamp(57px, 5.2vw, 77px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.catalogue-main-title span,
.catalogue-main-title strong {
  display: block;
}

.catalogue-main-title span {
  color: var(--white);
}

.catalogue-main-title strong {
  margin-top: 11px;
  color: var(--red);
  font-weight: 800;
}

.catalogue-hero-description {
  max-width: 560px;
  margin-bottom: 39px;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.catalogue-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 610px;
  gap: 10px;
}

.catalogue-hero-benefit {
  position: relative;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
}

.catalogue-hero-benefit:first-child {
  padding-left: 0;
}

.catalogue-hero-benefit:last-child {
  padding-right: 0;
}

.catalogue-benefit-icon {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 36px;
}

.catalogue-hero-benefit h2 {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.catalogue-hero-benefit p {
  color: #c7c7c7;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
}


/* =========================================================
   HERO — IMAGE DROITE
========================================================= */

.catalogue-hero-image {
  position: relative;
  height: 435px;
  overflow: hidden;
  border: 3px solid var(--red);
  border-radius: 31px;
  background: #111111;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(240, 24, 29, 0.23),
    0 18px 45px rgba(0, 0, 0, 0.4);
}

.catalogue-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      transparent 28%,
      rgba(0, 0, 0, 0.16)
    );
}

.catalogue-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.catalogue-hero-image:hover img {
  transform: scale(1.025);
  filter: brightness(1.04);
}


/* =========================================================
   SECTION RECHERCHE ET FILTRES
========================================================= */

.catalogue-filters-section {
  padding: 24px 0 18px;
  background:
    linear-gradient(
      180deg,
      #080808,
      #050505
    );
}

.catalogue-filter-bar {
  display: grid;
  grid-template-columns:
    1.55fr
    1.05fr
    1fr
    1fr
    0.95fr
    0.95fr;
  gap: 15px;
  margin-bottom: 23px;
}

.catalogue-search,
.catalogue-select {
  position: relative;
  display: block;
  min-width: 0;
}

.catalogue-search input,
.catalogue-select select {
  width: 100%;
  height: 53px;
  border: 1px solid #3b3b3b;
  border-radius: 5px;
  outline: none;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #181818,
      #0f0f0f
    );
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.catalogue-search input {
  padding: 0 48px 0 17px;
}

.catalogue-search input::placeholder {
  color: #b7b7b7;
}

.catalogue-search i {
  position: absolute;
  top: 50%;
  right: 18px;
  color: #efefef;
  font-size: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.catalogue-select select {
  padding: 0 42px 0 16px;
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #bdbdbd 50%
    ),
    linear-gradient(
      135deg,
      #bdbdbd 50%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #181818,
      #0f0f0f
    );
  background-position:
    calc(100% - 19px) 23px,
    calc(100% - 14px) 23px,
    0 0;
  background-size:
    5px 5px,
    5px 5px,
    100% 100%;
  background-repeat: no-repeat;
}

.catalogue-select option {
  color: var(--white);
  background: #111111;
}

.catalogue-search input:focus,
.catalogue-select select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 24, 29, 0.1);
}

.catalogue-filter-submit {
  height: 53px;
  padding: 0 17px;
  border: 1px solid var(--red);
  border-radius: 5px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #f12227,
      #d80f14
    );
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.catalogue-filter-submit:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(
      135deg,
      #ff2c31,
      #e31318
    );
  box-shadow: 0 9px 24px rgba(240, 24, 29, 0.19);
}


/* =========================================================
   ONGLETS CATÉGORIES
========================================================= */

.catalogue-category-tabs {
  display: grid;
  grid-template-columns: 1.04fr repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid #424242;
  border-radius: 7px;
  background: #090909;
}

.catalogue-tab {
  position: relative;
  min-height: 145px;
  padding: 17px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #343434;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #101010,
      #090909
    );
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.catalogue-tab:last-child {
  border-right: 0;
}

.catalogue-tab:hover {
  background:
    linear-gradient(
      180deg,
      #151515,
      #0b0b0b
    );
}

.catalogue-tab.active {
  color: var(--white);
  border: 1px solid var(--red);
  margin: -1px 0 -1px -1px;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      #121212,
      #090909
    );
  box-shadow:
    inset 0 0 25px rgba(240, 24, 29, 0.04),
    0 0 15px rgba(240, 24, 29, 0.05);
}

.catalogue-tab-icon {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #f2f2f2;
  font-size: 39px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.catalogue-tab.active .catalogue-tab-icon,
.catalogue-tab:hover .catalogue-tab-icon {
  color: var(--red);
  transform: translateY(-2px);
}

.catalogue-tab strong {
  margin-bottom: 5px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.catalogue-tab small {
  color: #c2c2c2;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
}


/* =========================================================
   TITRES DES SECTIONS CATALOGUE
========================================================= */

.catalogue-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 0 18px 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.catalogue-section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red) 22%,
      var(--red) 78%,
      transparent
    );
}


/* =========================================================
   CATÉGORIES PRINCIPALES
========================================================= */

.catalogue-main-categories {
  padding: 17px 0 22px;
  background: #050505;
}

.catalogue-main-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}

.catalogue-main-category-card {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0b0b0b
    );
  border: 1px solid #404040;
  border-radius: 8px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.catalogue-main-category-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(240, 24, 29, 0.05);
}

.catalogue-main-category-image {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: #151515;
}

.catalogue-main-category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 56%,
      rgba(0, 0, 0, 0.25)
    );
}

.catalogue-main-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.catalogue-main-category-card:hover
.catalogue-main-category-image img {
  transform: scale(1.045);
  filter: brightness(1.05);
}

.catalogue-main-category-body {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 15px 16px 16px;
  text-align: center;
}

.catalogue-main-category-body h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.catalogue-main-category-body p {
  flex-grow: 1;
  margin-bottom: 15px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
}

.catalogue-main-category-body a {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  background: transparent;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.catalogue-main-category-body a:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}


/* =========================================================
   PRODUITS EN VEDETTE CATALOGUE
========================================================= */

.catalogue-featured-products {
  padding: 16px 0 21px;
  background: #050505;
}

.catalogue-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.catalogue-featured-card {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #131313,
      #0b0b0b
    );
  border: 1px solid #3f3f3f;
  border-radius: 8px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.catalogue-featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.4);
}

.catalogue-featured-image {
  position: relative;
  height: 233px;
  overflow: hidden;
  background: #171717;
}

.catalogue-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.catalogue-featured-card:hover
.catalogue-featured-image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.catalogue-product-badge {
  position: absolute;
  top: 14px;
  left: 13px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.catalogue-featured-body {
  padding: 15px 16px 17px;
  text-align: center;
}

.catalogue-featured-body h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.catalogue-featured-body p {
  min-height: 23px;
  margin-bottom: 7px;
  color: #dddddd;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.catalogue-featured-body strong {
  display: block;
  min-height: 24px;
  margin-bottom: 13px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.catalogue-featured-body a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78%;
  border: 1px solid #555555;
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.catalogue-featured-body a:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(240, 24, 29, 0.08);
}


/* =========================================================
   BLOCS D’AIDE
========================================================= */

.catalogue-help-section {
  padding: 0 0 20px;
  background: #050505;
}

.catalogue-help-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.catalogue-help-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid #414141;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(240, 24, 29, 0.05),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #111111,
      #080808
    );
}

.catalogue-help-whatsapp {
  padding: 0 26px 0 0;
}

.catalogue-help-phone {
  align-self: stretch;
  width: 205px;
  flex: 0 0 205px;
  overflow: hidden;
}

.catalogue-help-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.catalogue-help-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 22px 0;
}

.catalogue-help-content h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.catalogue-help-content h2 span {
  color: var(--red);
}

.catalogue-help-content p {
  max-width: 470px;
  margin-bottom: 15px;
  color: #dedede;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.catalogue-help-content a {
  min-height: 40px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.7);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.catalogue-help-content a i {
  color: var(--red);
  font-size: 19px;
}

.catalogue-help-content a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.09);
  box-shadow: 0 9px 24px rgba(240, 24, 29, 0.1);
}

.catalogue-help-request {
  gap: 32px;
  padding: 25px 41px;
}

.catalogue-help-request-icon {
  flex: 0 0 auto;
  width: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 78px;
}

.catalogue-help-request .catalogue-help-content {
  padding: 0;
}


/* =========================================================
   DESCRIPTION DU FOOTER SUR CATALOGUE
========================================================= */

.footer-brand-description {
  margin-top: -15px;
  margin-bottom: 23px;
  color: #c5c5c5;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}


/* =========================================================
   ÉLÉMENTS MASQUÉS PAR FILTRAGE
========================================================= */

.catalogue-featured-card.is-hidden,
.catalogue-main-category-card.is-hidden {
  display: none;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes catalogueFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalogue-hero-content {
  animation: catalogueFadeUp 0.75s ease both;
}

.catalogue-hero-image {
  animation: catalogueFadeUp 0.85s 0.08s ease both;
}


/* =========================================================
   ÉCRANS ENTRE 1280px ET 1450px
========================================================= */

@media (max-width: 1450px) {

  .catalogue-hero-inner {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 48px;
  }

  .catalogue-main-title {
    font-size: 64px;
  }

  .catalogue-hero-image {
    height: 405px;
  }

  .catalogue-filter-bar {
    grid-template-columns:
      1.4fr
      1fr
      0.95fr
      0.95fr
      0.9fr
      0.95fr;
    gap: 11px;
  }

  .catalogue-main-category-image {
    height: 200px;
  }

  .catalogue-main-category-body {
    min-height: 205px;
    padding-inline: 13px;
  }

  .catalogue-main-category-body h3 {
    font-size: 20px;
  }

  .catalogue-main-category-body p {
    font-size: 13.5px;
  }

  .catalogue-featured-image {
    height: 215px;
  }

}


/* =========================================================
   ÉCRANS ENTRE 1100px ET 1280px
========================================================= */

@media (max-width: 1280px) {

  .catalogue-hero,
  .catalogue-hero-inner {
    min-height: 520px;
  }

  .catalogue-hero-inner {
    gap: 37px;
  }

  .catalogue-main-title {
    font-size: 57px;
  }

  .catalogue-hero-description {
    font-size: 15px;
  }

  .catalogue-hero-benefits {
    gap: 4px;
  }

  .catalogue-benefit-icon {
    font-size: 31px;
  }

  .catalogue-hero-benefit h2 {
    font-size: 16px;
  }

  .catalogue-hero-benefit p {
    font-size: 12px;
  }

  .catalogue-hero-image {
    height: 375px;
    border-radius: 25px;
  }

  .catalogue-filter-bar {
    grid-template-columns:
      1.35fr
      1fr
      1fr;
  }

  .catalogue-filter-submit {
    grid-column: 3;
  }

  .catalogue-category-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .catalogue-tab:nth-child(4) {
    border-right: 0;
  }

  .catalogue-tab:nth-child(-n + 4) {
    border-bottom: 1px solid #343434;
  }

  .catalogue-tab:last-child {
    grid-column: span 2;
  }

  .catalogue-main-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .catalogue-main-category-image {
    height: 245px;
  }

  .catalogue-main-category-body {
    min-height: 190px;
  }

}


/* =========================================================
   TABLETTES ET PETITS ORDINATEURS
========================================================= */

@media (max-width: 1100px) {

  .catalogue-hero {
    min-height: auto;
  }

  .catalogue-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .catalogue-hero-content {
    max-width: 730px;
  }

  .catalogue-main-title {
    font-size: 66px;
  }

  .catalogue-hero-description {
    max-width: 620px;
  }

  .catalogue-hero-benefits {
    max-width: 680px;
  }

  .catalogue-hero-image {
    width: 100%;
    height: 440px;
  }

  .catalogue-filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-filter-submit {
    grid-column: auto;
  }

  .catalogue-category-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalogue-tab {
    border-bottom: 1px solid #343434;
  }

  .catalogue-tab:nth-child(3n) {
    border-right: 0;
  }

  .catalogue-tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .catalogue-tab:last-child {
    grid-column: auto;
  }

  .catalogue-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-featured-image {
    height: 290px;
  }

  .catalogue-help-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-help-card {
    min-height: 205px;
  }

}


/* =========================================================
   TABLETTES VERTICALES
========================================================= */

@media (max-width: 820px) {

  .catalogue-main-title {
    font-size: 57px;
  }

  .catalogue-hero-image {
    height: 380px;
  }

  .catalogue-filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .catalogue-search {
    grid-column: 1 / -1;
  }

  .catalogue-filter-submit {
    grid-column: 1 / -1;
  }

  .catalogue-category-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--red) #151515;
  }

  .catalogue-category-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .catalogue-category-tabs::-webkit-scrollbar-track {
    background: #151515;
  }

  .catalogue-category-tabs::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 20px;
  }

  .catalogue-tab {
    flex: 0 0 31%;
    min-height: 135px;
    scroll-snap-align: start;
    border-bottom: 0;
  }

  .catalogue-main-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-main-category-image {
    height: 260px;
  }

  .catalogue-featured-image {
    height: 250px;
  }

  .catalogue-help-request {
    gap: 25px;
    padding-inline: 30px;
  }

}


/* =========================================================
   TÉLÉPHONES
========================================================= */

@media (max-width: 640px) {

  .catalogue-hero-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .catalogue-breadcrumb {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .catalogue-main-title {
    margin-bottom: 17px;
    font-size: clamp(43px, 13vw, 56px);
  }

  .catalogue-main-title strong {
    margin-top: 7px;
  }

  .catalogue-hero-description {
    margin-bottom: 27px;
    font-size: 14px;
    line-height: 1.55;
  }

  .catalogue-hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
  }

  .catalogue-hero-benefit {
    padding: 12px 7px;
    border: 1px solid #303030;
    border-radius: 6px;
    background: rgba(10, 10, 10, 0.55);
  }

  .catalogue-benefit-icon {
    min-height: 40px;
    font-size: 29px;
  }

  .catalogue-hero-benefit h2 {
    font-size: 16px;
  }

  .catalogue-hero-benefit p {
    font-size: 12px;
  }

  .catalogue-hero-image {
    height: 280px;
    border-width: 2px;
    border-radius: 18px;
  }

  .catalogue-filters-section {
    padding-top: 17px;
  }

  .catalogue-filter-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalogue-search,
  .catalogue-filter-submit {
    grid-column: auto;
  }

  .catalogue-search input,
  .catalogue-select select,
  .catalogue-filter-submit {
    height: 50px;
  }

  .catalogue-tab {
    flex-basis: 44%;
    min-height: 125px;
  }

  .catalogue-tab-icon {
    font-size: 32px;
  }

  .catalogue-tab strong {
    font-size: 14px;
  }

  .catalogue-section-title {
    margin-bottom: 20px;
    font-size: 25px;
  }

  .catalogue-main-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalogue-main-category-card {
    display: grid;
    grid-template-columns: 44% 56%;
  }

  .catalogue-main-category-image {
    height: 100%;
    min-height: 210px;
  }

  .catalogue-main-category-body {
    min-height: 210px;
    padding: 14px 12px;
  }

  .catalogue-main-category-body h3 {
    font-size: 19px;
  }

  .catalogue-main-category-body p {
    font-size: 13px;
  }

  .catalogue-main-category-body a {
    min-height: 39px;
    font-size: 14px;
  }

  .catalogue-featured-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 9px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--red) #151515;
  }

  .catalogue-featured-grid::-webkit-scrollbar {
    height: 5px;
  }

  .catalogue-featured-grid::-webkit-scrollbar-track {
    background: #151515;
  }

  .catalogue-featured-grid::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 20px;
  }

  .catalogue-featured-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .catalogue-featured-image {
    height: 245px;
  }

  .catalogue-help-card {
    min-height: auto;
  }

  .catalogue-help-whatsapp {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding-right: 16px;
  }

  .catalogue-help-phone {
    width: 120px;
    flex-basis: 120px;
  }

  .catalogue-help-content {
    padding: 21px 0;
  }

  .catalogue-help-content h2 {
    font-size: 22px;
  }

  .catalogue-help-content p {
    font-size: 13px;
  }

  .catalogue-help-content a {
    padding-inline: 14px;
    font-size: 13px;
  }

  .catalogue-help-request {
    align-items: flex-start;
    gap: 17px;
    padding: 23px 18px;
  }

  .catalogue-help-request-icon {
    width: 52px;
    padding-top: 3px;
    font-size: 49px;
  }

}


/* =========================================================
   PETITS TÉLÉPHONES
========================================================= */

@media (max-width: 420px) {

  .catalogue-main-title {
    font-size: 42px;
  }

  .catalogue-hero-image {
    height: 235px;
  }

  .catalogue-tab {
    flex-basis: 55%;
  }

  .catalogue-main-category-card {
    grid-template-columns: 1fr;
  }

  .catalogue-main-category-image {
    height: 210px;
    min-height: 0;
  }

  .catalogue-main-category-body {
    min-height: 185px;
  }

  .catalogue-featured-card {
    flex-basis: 89%;
  }

  .catalogue-featured-image {
    height: 225px;
  }

  .catalogue-help-whatsapp {
    display: block;
    padding: 22px 17px;
    text-align: center;
  }

  .catalogue-help-phone {
    width: 135px;
    height: 155px;
    margin: 0 auto -5px;
  }

  .catalogue-help-content {
    padding: 0;
  }

  .catalogue-help-content h2 {
    font-size: 22px;
  }

  .catalogue-help-content a {
    width: 100%;
  }

  .catalogue-help-request {
    display: block;
    padding: 23px 17px;
    text-align: center;
  }

  .catalogue-help-request-icon {
    width: 100%;
    margin-bottom: 13px;
  }

}
/* =========================================================
   PAGE SALONS — STYLE COMPLET
========================================================= */


/* =========================================================
   HERO SALONS
========================================================= */

.salon-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #2f2f2f;
}

.salon-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.salon-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter:
    brightness(0.82)
    contrast(1.05)
    saturate(0.9);
}

.salon-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.98) 25%,
      rgba(5, 5, 5, 0.8) 40%,
      rgba(5, 5, 5, 0.2) 62%,
      rgba(5, 5, 5, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.12)
    );
}

.salon-hero-lines {
  position: absolute;
  top: -40px;
  left: 26%;
  z-index: 2;
  width: 240px;
  height: 510px;
  opacity: 0.9;
  pointer-events: none;
}

.salon-hero-lines::before,
.salon-hero-lines::after {
  content: "";
  position: absolute;
  border: 1px solid var(--red);
  transform: rotate(45deg);
  box-shadow:
    0 0 10px rgba(240, 24, 29, 0.25),
    inset 0 0 8px rgba(240, 24, 29, 0.08);
}

.salon-hero-lines::before {
  top: 35px;
  left: 0;
  width: 175px;
  height: 175px;
}

.salon-hero-lines::after {
  top: 130px;
  left: 70px;
  width: 230px;
  height: 230px;
}

.salon-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 430px;
}

.salon-hero-content {
  width: 470px;
  padding: 42px 0 32px;
}

.salon-hero-content h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 68px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.salon-hero-content > p {
  max-width: 425px;
  margin-bottom: 28px;
  color: #dddddd;
  font-size: 16px;
  line-height: 1.55;
}

.salon-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.salon-hero-benefit {
  min-width: 0;
  text-align: center;
}

.salon-benefit-icon {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 31px;
}

.salon-hero-benefit h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.salon-hero-benefit span {
  display: block;
  color: #bcbcbc;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.12;
}


/* =========================================================
   FILTRES SALONS
========================================================= */

.salon-filters-section {
  padding: 18px 0 14px;
  background:
    linear-gradient(
      180deg,
      #080808,
      #050505
    );
}

.salon-filter-bar {
  display: grid;
  grid-template-columns:
    1.45fr
    0.9fr
    0.9fr
    0.9fr
    0.85fr
    0.85fr;
  gap: 14px;
  margin-bottom: 16px;
}

.salon-search,
.salon-select {
  position: relative;
  display: block;
  min-width: 0;
}

.salon-search input,
.salon-select select {
  width: 100%;
  height: 52px;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  outline: none;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #151515,
      #0c0c0c
    );
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.salon-search input {
  padding: 0 46px 0 16px;
}

.salon-search input::placeholder {
  color: #b8b8b8;
}

.salon-search i {
  position: absolute;
  top: 50%;
  right: 17px;
  color: #eeeeee;
  font-size: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.salon-select select {
  padding: 0 40px 0 15px;
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #bcbcbc 50%
    ),
    linear-gradient(
      135deg,
      #bcbcbc 50%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #151515,
      #0c0c0c
    );
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px,
    0 0;
  background-size:
    5px 5px,
    5px 5px,
    100% 100%;
  background-repeat: no-repeat;
}

.salon-select option {
  color: var(--white);
  background: #101010;
}

.salon-search input:focus,
.salon-select select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 24, 29, 0.09);
}

.salon-filter-submit {
  height: 52px;
  border: 1px solid var(--red);
  border-radius: 5px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #d80f14
    );
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.salon-filter-submit:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(
      135deg,
      #ff2b30,
      #e3151a
    );
  box-shadow: 0 10px 26px rgba(240, 24, 29, 0.17);
}


/* =========================================================
   ONGLETS SALONS
========================================================= */

.salon-category-tabs {
  display: grid;
  grid-template-columns: 1.05fr repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid #3a3a3a;
  border-radius: 7px;
  background: #090909;
}

.salon-tab {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 15px 11px;
  border-right: 1px solid #303030;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #111111,
      #090909
    );
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.salon-tab:last-child {
  border-right: 0;
}

.salon-tab:hover {
  background:
    linear-gradient(
      180deg,
      #161616,
      #0b0b0b
    );
}

.salon-tab.active {
  position: relative;
  z-index: 2;
  border: 1px solid var(--red);
  margin: -1px 0 -1px -1px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0a0a0a
    );
}

.salon-tab-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 34px;
}

.salon-tab-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.salon-tab-content strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
}

.salon-tab-content small {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}


/* =========================================================
   TITRES DE SECTION
========================================================= */

.salon-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 26px;
  padding: 0 16px 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.salon-section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red) 25%,
      var(--red) 75%,
      transparent
    );
}


/* =========================================================
   EXPLORER NOS SALONS
========================================================= */

.salon-categories-section {
  padding: 15px 0 17px;
  background: #050505;
}

.salon-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.salon-category-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #5a493a;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0b0b0b
    );
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.salon-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.42);
}

.salon-category-image {
  height: 170px;
  overflow: hidden;
  background: #151515;
}

.salon-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.salon-category-card:hover .salon-category-image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.salon-category-body {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 13px;
  text-align: center;
}

.salon-category-body h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.05;
}

.salon-category-body p {
  flex-grow: 1;
  margin-bottom: 12px;
  color: #cfcfcf;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
}

.salon-category-body a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0b0b0b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.salon-category-body a:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}


/* =========================================================
   PRODUITS EN VEDETTE
========================================================= */

.salon-featured-section {
  padding: 5px 0 14px;
  background: #050505;
}

.salon-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.salon-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #66523d;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #131313,
      #0a0a0a
    );
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.salon-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.salon-product-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #151515;
}

.salon-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.salon-product-card:hover .salon-product-image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.salon-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.salon-product-body {
  padding: 11px 13px 13px;
  text-align: center;
}

.salon-product-body h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.salon-product-body p {
  min-height: 18px;
  margin-bottom: 6px;
  color: #d3d3d3;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
}

.salon-product-body strong {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.salon-product-body a {
  width: 78%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.salon-product-body a:hover {
  background: rgba(240, 24, 29, 0.1);
}


/* =========================================================
   MATÉRIAUX ET FINITIONS
========================================================= */

.salon-details-section {
  padding: 0 0 13px;
  background: #050505;
}

.salon-details-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid #6a533e;
  border-radius: 8px;
  background: #0c0c0c;
}

.salon-detail-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 118px;
  border-right: 1px solid #4a3d32;
}

.salon-detail-card:last-child {
  border-right: 0;
}

.salon-detail-image {
  overflow: hidden;
  background: #151515;
}

.salon-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salon-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11px 10px;
}

.salon-detail-content h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.05;
}

.salon-detail-content p {
  color: #bfbfbf;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.28;
}


/* =========================================================
   AIDE ET DEMANDE
========================================================= */

.salon-help-section {
  padding: 0 0 12px;
  background: #050505;
}

.salon-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.salon-help-card {
  min-height: 170px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid #5b4837;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #111111,
      #080808
    );
}

.salon-help-whatsapp {
  padding-right: 22px;
}

.salon-help-phone {
  align-self: stretch;
  width: 205px;
  flex: 0 0 205px;
  overflow: hidden;
}

.salon-help-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.salon-help-content {
  min-width: 0;
  padding: 20px 0;
}

.salon-help-content h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.salon-help-content p {
  max-width: 470px;
  margin-bottom: 13px;
  color: #cdcdcd;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.salon-help-content a {
  min-height: 37px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.salon-help-content a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.09);
  box-shadow: 0 8px 22px rgba(240, 24, 29, 0.11);
}

.salon-help-content a i {
  color: var(--white);
  font-size: 18px;
}

.salon-help-request {
  gap: 28px;
  padding: 22px 34px;
}

.salon-help-request-icon {
  flex: 0 0 auto;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 68px;
}

.salon-help-request .salon-help-content {
  padding: 0;
}

.salon-help-request .salon-help-content a {
  min-width: 190px;
  background:
    linear-gradient(
      135deg,
      #ed1e24,
      #c90d12
    );
}


/* =========================================================
   AVANTAGES
========================================================= */

.salon-advantages-section {
  padding: 0 0 14px;
  background: #050505;
}

.salon-advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #111111,
      #0a0a0a
    );
}

.salon-advantage-item {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
}

.salon-advantage-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 1px;
  height: calc(100% - 28px);
  background: rgba(240, 24, 29, 0.55);
}

.salon-advantage-icon {
  flex: 0 0 auto;
  width: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 33px;
}

.salon-advantage-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
}

.salon-advantage-item p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes salonFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.salon-hero-content {
  animation: salonFadeUp 0.75s ease both;
}

.salon-category-card,
.salon-product-card,
.salon-detail-card,
.salon-help-card {
  will-change: transform;
}


/* =========================================================
   ÉTATS DE FILTRAGE
========================================================= */

.salon-product-card.is-hidden,
.salon-category-card.is-hidden {
  display: none;
}
/* =========================================================
   PAGE CHAMBRES — STYLE COMPLET
========================================================= */


/* =========================================================
   HERO CHAMBRES
========================================================= */

.bedroom-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #2d2d2d;
}

.bedroom-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bedroom-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter:
    brightness(0.84)
    contrast(1.05)
    saturate(0.92);
}

.bedroom-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.99) 25%,
      rgba(5, 5, 5, 0.87) 38%,
      rgba(5, 5, 5, 0.32) 57%,
      rgba(5, 5, 5, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.14)
    );
}

.bedroom-hero-lines {
  position: absolute;
  top: -48px;
  left: 30%;
  z-index: 2;
  width: 220px;
  height: 520px;
  opacity: 0.9;
  pointer-events: none;
}

.bedroom-hero-lines::before,
.bedroom-hero-lines::after {
  content: "";
  position: absolute;
  border: 1px solid var(--red);
  transform: skewX(-39deg);
  box-shadow:
    0 0 9px rgba(240, 24, 29, 0.24),
    inset 0 0 8px rgba(240, 24, 29, 0.08);
}

.bedroom-hero-lines::before {
  top: -34px;
  left: 8px;
  width: 76px;
  height: 300px;
  border-top: 0;
  border-bottom: 0;
}

.bedroom-hero-lines::after {
  bottom: -70px;
  left: 105px;
  width: 84px;
  height: 345px;
  border-top: 0;
  border-bottom: 0;
}

.bedroom-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 430px;
}

.bedroom-hero-content {
  width: 505px;
  padding: 39px 0 31px;
}

.bedroom-hero-content h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 67px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.bedroom-hero-content > h2 {
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.bedroom-hero-content > p {
  max-width: 470px;
  margin-bottom: 25px;
  color: #d7d7d7;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.48;
}

.bedroom-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.bedroom-hero-benefit {
  position: relative;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.bedroom-hero-benefit:first-child {
  padding-left: 0;
}

.bedroom-hero-benefit:last-child {
  padding-right: 0;
}

.bedroom-hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 61px;
  background: #3d3d3d;
}

.bedroom-benefit-icon {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 28px;
}

.bedroom-hero-benefit h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-hero-benefit span {
  display: block;
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
}


/* =========================================================
   FILTRES CHAMBRES
========================================================= */

.bedroom-filters-section {
  padding: 17px 0 15px;
  background:
    linear-gradient(
      180deg,
      #080808,
      #050505
    );
}

.bedroom-filter-bar {
  display: grid;
  grid-template-columns:
    1.45fr
    0.88fr
    0.85fr
    0.85fr
    1.18fr;
  gap: 15px;
  margin-bottom: 15px;
}

.bedroom-search,
.bedroom-select {
  position: relative;
  display: block;
  min-width: 0;
}

.bedroom-search input,
.bedroom-select select {
  width: 100%;
  height: 50px;
  border: 1px solid #393939;
  border-radius: 5px;
  outline: none;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #151515,
      #0c0c0c
    );
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.bedroom-search input {
  padding: 0 45px 0 16px;
}

.bedroom-search input::placeholder {
  color: #b6b6b6;
}

.bedroom-search i {
  position: absolute;
  top: 50%;
  right: 17px;
  color: #eeeeee;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.bedroom-select select {
  padding: 0 39px 0 14px;
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #bdbdbd 50%
    ),
    linear-gradient(
      135deg,
      #bdbdbd 50%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #151515,
      #0c0c0c
    );
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px,
    0 0;
  background-size:
    5px 5px,
    5px 5px,
    100% 100%;
  background-repeat: no-repeat;
}

.bedroom-select option {
  color: var(--white);
  background: #101010;
}

.bedroom-search input:focus,
.bedroom-select select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 24, 29, 0.09);
}

.bedroom-sort {
  position: relative;
}

.bedroom-sort-label {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  color: #bdbdbd;
  font-family: var(--font-main);
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.bedroom-sort select {
  padding-left: 76px;
}


/* =========================================================
   ONGLETS CHAMBRES
========================================================= */

.bedroom-category-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid #363636;
  border-radius: 7px;
  background: #090909;
}

.bedroom-tab {
  position: relative;
  min-height: 112px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #303030;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #111111,
      #090909
    );
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.bedroom-tab:last-child {
  border-right: 0;
}

.bedroom-tab:hover {
  background:
    linear-gradient(
      180deg,
      #161616,
      #0b0b0b
    );
}

.bedroom-tab.active {
  z-index: 2;
  border: 1px solid var(--red);
  margin: -1px 0 -1px -1px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0a0a0a
    );
}

.bedroom-tab-icon {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #f0f0f0;
  font-size: 31px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.bedroom-tab.active .bedroom-tab-icon,
.bedroom-tab:hover .bedroom-tab-icon {
  color: var(--red);
  transform: translateY(-2px);
}

.bedroom-tab strong {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.bedroom-tab small {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}


/* =========================================================
   BANDE D’AVANTAGES
========================================================= */

.bedroom-benefits-strip {
  padding: 0 0 14px;
  background: #050505;
}

.bedroom-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 7px;
  background:
    linear-gradient(
      180deg,
      #111111,
      #0a0a0a
    );
}

.bedroom-benefit-item {
  position: relative;
  min-height: 95px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
}

.bedroom-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  width: 1px;
  height: calc(100% - 34px);
  background: rgba(240, 24, 29, 0.52);
}

.bedroom-benefit-item-icon {
  flex: 0 0 auto;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 34px;
}

.bedroom-benefit-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-benefit-item p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
}


/* =========================================================
   TITRES DES SECTIONS
========================================================= */

.bedroom-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 0 16px 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.bedroom-section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red) 25%,
      var(--red) 75%,
      transparent
    );
}


/* =========================================================
   CHAMBRES COMPLÈTES
========================================================= */

.bedroom-complete-section {
  padding: 9px 0 14px;
  background: #050505;
}

.bedroom-complete-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.bedroom-complete-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #5b4a3a;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0b0b0b
    );
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.bedroom-complete-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.bedroom-complete-image {
  height: 200px;
  overflow: hidden;
  background: #151515;
}

.bedroom-complete-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.bedroom-complete-card:hover .bedroom-complete-image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.bedroom-complete-body {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 13px;
}

.bedroom-complete-body h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-complete-body p {
  flex-grow: 1;
  margin-bottom: 8px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.28;
}

.bedroom-complete-body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.bedroom-complete-body a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.bedroom-complete-body a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.1);
}


/* =========================================================
   MEUBLES DE CHAMBRE
========================================================= */

.bedroom-furniture-section {
  padding: 4px 0 14px;
  background: #050505;
}

.bedroom-furniture-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}

.bedroom-furniture-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #493d34;
  border-radius: 7px;
  background: #0c0c0c;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.bedroom-furniture-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.bedroom-furniture-image {
  height: 148px;
  overflow: hidden;
}

.bedroom-furniture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bedroom-furniture-card:hover .bedroom-furniture-image img {
  transform: scale(1.05);
}

.bedroom-furniture-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-top: 1px solid #3b332d;
}

.bedroom-furniture-bottom > i {
  flex: 0 0 auto;
  width: 29px;
  color: #f0f0f0;
  font-size: 23px;
  text-align: center;
}

.bedroom-furniture-bottom h3 {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-furniture-bottom p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}


/* =========================================================
   BANNIÈRE INSPIRATION
========================================================= */

.bedroom-inspiration-section {
  padding: 0 0 15px;
  background: #050505;
}

.bedroom-inspiration-banner {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: #0c0c0c;
}

.bedroom-inspiration-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bedroom-inspiration-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter:
    brightness(0.8)
    saturate(0.9);
}

.bedroom-inspiration-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.99) 0%,
      rgba(7, 7, 7, 0.96) 27%,
      rgba(7, 7, 7, 0.72) 45%,
      rgba(7, 7, 7, 0.14) 68%,
      rgba(7, 7, 7, 0.08) 100%
    );
}

.bedroom-inspiration-content {
  position: relative;
  z-index: 2;
  width: 430px;
  padding: 31px 0 29px 72px;
}

.bedroom-inspiration-content h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-inspiration-content h3 {
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 29px;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.bedroom-inspiration-content p {
  max-width: 355px;
  margin-bottom: 14px;
  color: #d2d2d2;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.bedroom-inspiration-content a {
  min-height: 37px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ed2025,
      #d10f14
    );
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bedroom-inspiration-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(240, 24, 29, 0.17);
}


/* =========================================================
   MATÉRIAUX
========================================================= */

.bedroom-materials-section {
  padding: 1px 0 14px;
  background: #050505;
}

.bedroom-materials-title {
  font-size: 23px;
}

.bedroom-materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.bedroom-material-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #554638;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #131313,
      #0b0b0b
    );
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.bedroom-material-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.bedroom-material-image {
  height: 126px;
  overflow: hidden;
}

.bedroom-material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bedroom-material-card:hover .bedroom-material-image img {
  transform: scale(1.045);
}

.bedroom-material-body {
  min-height: 72px;
  padding: 10px 11px;
  text-align: center;
}

.bedroom-material-body h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-material-body p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.22;
}


/* =========================================================
   AIDE ET DEMANDE
========================================================= */

.bedroom-help-section {
  padding: 0 0 14px;
  background: #050505;
}

.bedroom-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bedroom-help-card {
  min-height: 170px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #111111,
      #080808
    );
}

.bedroom-help-whatsapp {
  padding-right: 21px;
}

.bedroom-help-phone {
  align-self: stretch;
  width: 205px;
  flex: 0 0 205px;
  overflow: hidden;
}

.bedroom-help-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.bedroom-help-content {
  min-width: 0;
  padding: 20px 0;
}

.bedroom-help-content h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bedroom-help-content h2 span {
  color: var(--red);
}

.bedroom-help-content p {
  max-width: 420px;
  margin-bottom: 13px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.28;
}

.bedroom-help-content a {
  min-height: 36px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.bedroom-help-content a i {
  color: var(--white);
  font-size: 17px;
}

.bedroom-help-content a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.09);
  box-shadow: 0 8px 22px rgba(240, 24, 29, 0.11);
}

.bedroom-help-request {
  gap: 28px;
  padding: 22px 34px;
}

.bedroom-help-request-icon {
  flex: 0 0 auto;
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 68px;
}

.bedroom-help-request .bedroom-help-content {
  padding: 0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes bedroomFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bedroom-hero-content {
  animation: bedroomFadeUp 0.75s ease both;
}

.bedroom-complete-card,
.bedroom-furniture-card,
.bedroom-material-card,
.bedroom-help-card {
  will-change: transform;
}


/* =========================================================
   ÉTATS DE FILTRAGE
========================================================= */

.bedroom-complete-card.is-hidden,
.bedroom-furniture-card.is-hidden,
.bedroom-material-card.is-hidden {
  display: none;
}
/* =========================================================
   PAGE CUISINES — STYLE COMPLET
========================================================= */


/* =========================================================
   HERO CUISINES
========================================================= */

.kitchen-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #2d2d2d;
}

.kitchen-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kitchen-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter:
    brightness(0.82)
    contrast(1.06)
    saturate(0.9);
}

.kitchen-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.99) 25%,
      rgba(5, 5, 5, 0.87) 38%,
      rgba(5, 5, 5, 0.3) 57%,
      rgba(5, 5, 5, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.16)
    );
}

.kitchen-hero-lines {
  position: absolute;
  top: -50px;
  left: 30%;
  z-index: 2;
  width: 225px;
  height: 530px;
  opacity: 0.9;
  pointer-events: none;
}

.kitchen-hero-lines::before,
.kitchen-hero-lines::after {
  content: "";
  position: absolute;
  border: 1px solid var(--red);
  transform: skewX(-39deg);
  box-shadow:
    0 0 10px rgba(240, 24, 29, 0.26),
    inset 0 0 8px rgba(240, 24, 29, 0.08);
}

.kitchen-hero-lines::before {
  top: -28px;
  left: 9px;
  width: 78px;
  height: 305px;
  border-top: 0;
  border-bottom: 0;
}

.kitchen-hero-lines::after {
  bottom: -70px;
  left: 108px;
  width: 86px;
  height: 355px;
  border-top: 0;
  border-bottom: 0;
}

.kitchen-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 440px;
}

.kitchen-hero-content {
  width: 520px;
  padding: 40px 0 32px;
}

.kitchen-hero-content h1 {
  margin-bottom: 11px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 68px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.kitchen-hero-content > h2 {
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.kitchen-hero-content > p {
  max-width: 485px;
  margin-bottom: 25px;
  color: #d8d8d8;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
}

.kitchen-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.kitchen-hero-benefit {
  position: relative;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.kitchen-hero-benefit:first-child {
  padding-left: 0;
}

.kitchen-hero-benefit:last-child {
  padding-right: 0;
}

.kitchen-hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 62px;
  background: #3c3c3c;
}

.kitchen-benefit-icon {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 28px;
}

.kitchen-hero-benefit h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-hero-benefit span {
  display: block;
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
}


/* =========================================================
   FILTRES CUISINES
========================================================= */

.kitchen-filters-section {
  padding: 17px 0 15px;
  background:
    linear-gradient(
      180deg,
      #080808,
      #050505
    );
}

.kitchen-filter-bar {
  display: grid;
  grid-template-columns:
    1.45fr
    1fr
    0.9fr
    0.9fr
    1.18fr;
  gap: 15px;
  margin-bottom: 15px;
}

.kitchen-search,
.kitchen-select {
  position: relative;
  display: block;
  min-width: 0;
}

.kitchen-search input,
.kitchen-select select {
  width: 100%;
  height: 50px;
  border: 1px solid #393939;
  border-radius: 5px;
  outline: none;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #151515,
      #0c0c0c
    );
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.kitchen-search input {
  padding: 0 45px 0 16px;
}

.kitchen-search input::placeholder {
  color: #b6b6b6;
}

.kitchen-search i {
  position: absolute;
  top: 50%;
  right: 17px;
  color: #eeeeee;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.kitchen-select select {
  padding: 0 39px 0 14px;
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #bdbdbd 50%
    ),
    linear-gradient(
      135deg,
      #bdbdbd 50%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #151515,
      #0c0c0c
    );
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px,
    0 0;
  background-size:
    5px 5px,
    5px 5px,
    100% 100%;
  background-repeat: no-repeat;
}

.kitchen-select option {
  color: var(--white);
  background: #101010;
}

.kitchen-search input:focus,
.kitchen-select select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 24, 29, 0.09);
}

.kitchen-sort {
  position: relative;
}

.kitchen-sort-label {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  color: #bdbdbd;
  font-family: var(--font-main);
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.kitchen-sort select {
  padding-left: 76px;
}


/* =========================================================
   ONGLETS CUISINES
========================================================= */

.kitchen-category-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid #363636;
  border-radius: 7px;
  background: #090909;
}

.kitchen-tab {
  position: relative;
  min-height: 112px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #303030;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #111111,
      #090909
    );
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.kitchen-tab:last-child {
  border-right: 0;
}

.kitchen-tab:hover {
  background:
    linear-gradient(
      180deg,
      #161616,
      #0b0b0b
    );
}

.kitchen-tab.active {
  z-index: 2;
  border: 1px solid var(--red);
  margin: -1px 0 -1px -1px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0a0a0a
    );
}

.kitchen-tab-icon {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #f0f0f0;
  font-size: 31px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.kitchen-tab.active .kitchen-tab-icon,
.kitchen-tab:hover .kitchen-tab-icon {
  color: var(--red);
  transform: translateY(-2px);
}

.kitchen-tab strong {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.kitchen-tab small {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}


/* =========================================================
   BANDE AVANTAGES
========================================================= */

.kitchen-benefits-strip {
  padding: 0 0 14px;
  background: #050505;
}

.kitchen-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 7px;
  background:
    linear-gradient(
      180deg,
      #111111,
      #0a0a0a
    );
}

.kitchen-benefit-item {
  position: relative;
  min-height: 95px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
}

.kitchen-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  width: 1px;
  height: calc(100% - 34px);
  background: rgba(240, 24, 29, 0.52);
}

.kitchen-benefit-item-icon {
  flex: 0 0 auto;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 34px;
}

.kitchen-benefit-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-benefit-item p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
}


/* =========================================================
   TITRES DE SECTION CUISINES
========================================================= */

.kitchen-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 0 16px 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.kitchen-section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red) 25%,
      var(--red) 75%,
      transparent
    );
}


/* =========================================================
   CUISINES EN VEDETTE
========================================================= */

.kitchen-complete-section {
  padding: 9px 0 14px;
  background: #050505;
}

.kitchen-complete-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.kitchen-complete-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #5b4a3a;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0b0b0b
    );
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.kitchen-complete-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.kitchen-complete-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #151515;
}

.kitchen-complete-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.kitchen-complete-card:hover .kitchen-complete-image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.kitchen-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 3px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-complete-body {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 13px;
}

.kitchen-complete-body h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-complete-body p {
  flex-grow: 1;
  margin-bottom: 8px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.28;
}

.kitchen-complete-body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.kitchen-complete-body a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.kitchen-complete-body a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.1);
}


/* =========================================================
   IMPLANTATIONS
========================================================= */

.kitchen-layouts-section {
  padding: 4px 0 14px;
  background: #050505;
}

.kitchen-layouts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}

.kitchen-layout-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #493d34;
  border-radius: 7px;
  background: #0c0c0c;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.kitchen-layout-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.kitchen-layout-image {
  height: 148px;
  overflow: hidden;
}

.kitchen-layout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kitchen-layout-card:hover .kitchen-layout-image img {
  transform: scale(1.05);
}

.kitchen-layout-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-top: 1px solid #3b332d;
}

.kitchen-layout-bottom > i {
  flex: 0 0 auto;
  width: 29px;
  color: #f0f0f0;
  font-size: 22px;
  text-align: center;
}

.kitchen-layout-bottom h3 {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-layout-bottom p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.15;
}


/* =========================================================
   BANNIÈRE PROJET CUISINE
========================================================= */

.kitchen-project-section {
  padding: 0 0 15px;
  background: #050505;
}

.kitchen-project-banner {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: #0c0c0c;
}

.kitchen-project-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kitchen-project-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter:
    brightness(0.8)
    saturate(0.9);
}

.kitchen-project-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.99) 0%,
      rgba(7, 7, 7, 0.96) 27%,
      rgba(7, 7, 7, 0.72) 45%,
      rgba(7, 7, 7, 0.14) 68%,
      rgba(7, 7, 7, 0.08) 100%
    );
}

.kitchen-project-content {
  position: relative;
  z-index: 2;
  width: 450px;
  padding: 32px 0 29px 72px;
}

.kitchen-project-content h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-project-content h3 {
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.kitchen-project-content p {
  max-width: 365px;
  margin-bottom: 14px;
  color: #d2d2d2;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.kitchen-project-content a {
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ed2025,
      #d10f14
    );
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.kitchen-project-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(240, 24, 29, 0.17);
}


/* =========================================================
   MATÉRIAUX ET FINITIONS CUISINES
========================================================= */

.kitchen-materials-section {
  padding: 1px 0 14px;
  background: #050505;
}

.kitchen-materials-title {
  font-size: 23px;
}

.kitchen-materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.kitchen-material-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #554638;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #131313,
      #0b0b0b
    );
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.kitchen-material-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.kitchen-material-image {
  height: 126px;
  overflow: hidden;
}

.kitchen-material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kitchen-material-card:hover .kitchen-material-image img {
  transform: scale(1.045);
}

.kitchen-material-body {
  min-height: 76px;
  padding: 10px 11px;
  text-align: center;
}

.kitchen-material-body h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-material-body p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.22;
}


/* =========================================================
   CONSEIL ET DEMANDE
========================================================= */

.kitchen-help-section {
  padding: 0 0 14px;
  background: #050505;
}

.kitchen-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kitchen-help-card {
  min-height: 170px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #111111,
      #080808
    );
}

.kitchen-help-whatsapp {
  padding-right: 21px;
}

.kitchen-help-phone {
  align-self: stretch;
  width: 205px;
  flex: 0 0 205px;
  overflow: hidden;
}

.kitchen-help-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.kitchen-help-content {
  min-width: 0;
  padding: 20px 0;
}

.kitchen-help-content h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-help-content h2 span {
  color: var(--red);
}

.kitchen-help-content p {
  max-width: 420px;
  margin-bottom: 13px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.28;
}

.kitchen-help-content a {
  min-height: 36px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.kitchen-help-content a i {
  color: var(--white);
  font-size: 17px;
}

.kitchen-help-content a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.09);
  box-shadow: 0 8px 22px rgba(240, 24, 29, 0.11);
}

.kitchen-help-request {
  gap: 28px;
  padding: 22px 34px;
}

.kitchen-help-request-icon {
  flex: 0 0 auto;
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 68px;
}

.kitchen-help-request .kitchen-help-content {
  padding: 0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes kitchenFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kitchen-hero-content {
  animation: kitchenFadeUp 0.75s ease both;
}

.kitchen-complete-card,
.kitchen-layout-card,
.kitchen-material-card,
.kitchen-help-card {
  will-change: transform;
}


/* =========================================================
   FILTRAGE
========================================================= */

.kitchen-complete-card.is-hidden,
.kitchen-layout-card.is-hidden,
.kitchen-material-card.is-hidden {
  display: none;
}
/* =========================================================
   PAGE PACKS — STYLE COMPLET
========================================================= */


/* =========================================================
   HERO PACKS
========================================================= */

.packs-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #2d2d2d;
}

.packs-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.packs-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter:
    brightness(0.8)
    contrast(1.06)
    saturate(0.88);
}

.packs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.99) 24%,
      rgba(5, 5, 5, 0.87) 39%,
      rgba(5, 5, 5, 0.38) 58%,
      rgba(5, 5, 5, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03),
      rgba(0, 0, 0, 0.18)
    );
}

.packs-hero-lines {
  position: absolute;
  top: -60px;
  left: 31%;
  z-index: 2;
  width: 250px;
  height: 560px;
  opacity: 0.88;
  pointer-events: none;
}

.packs-hero-lines::before,
.packs-hero-lines::after {
  content: "";
  position: absolute;
  border: 1px solid var(--red);
  transform: skewX(-40deg);
  box-shadow:
    0 0 10px rgba(240, 24, 29, 0.24),
    inset 0 0 8px rgba(240, 24, 29, 0.08);
}

.packs-hero-lines::before {
  top: -20px;
  left: 10px;
  width: 84px;
  height: 320px;
  border-top: 0;
  border-bottom: 0;
}

.packs-hero-lines::after {
  right: 15px;
  bottom: -90px;
  width: 92px;
  height: 370px;
  border-top: 0;
  border-bottom: 0;
}

.packs-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 470px;
}

.packs-hero-content {
  width: 590px;
  padding: 44px 0 35px;
}

.packs-hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 12px;
  border: 1px solid rgba(240, 24, 29, 0.72);
  border-radius: 3px;
  color: var(--red);
  background: rgba(240, 24, 29, 0.08);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.packs-hero-content h1 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 67px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.packs-hero-content > h2 {
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-hero-content > p {
  max-width: 515px;
  margin-bottom: 22px;
  color: #d7d7d7;
  font-size: 14.5px;
  line-height: 1.5;
}

.packs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 27px;
}

.packs-hero-btn {
  min-height: 43px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.packs-hero-btn:hover {
  transform: translateY(-2px);
}

.packs-hero-btn-red {
  border: 1px solid var(--red);
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #cf0d12
    );
}

.packs-hero-btn-red:hover {
  box-shadow: 0 10px 25px rgba(240, 24, 29, 0.2);
}

.packs-hero-btn-outline {
  border: 1px solid #d8d8d8;
  color: var(--white);
  background: rgba(8, 8, 8, 0.56);
}

.packs-hero-btn-outline:hover {
  border-color: var(--red);
  background: rgba(240, 24, 29, 0.08);
}

.packs-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 575px;
  border-top: 1px solid #343434;
  padding-top: 18px;
}

.packs-hero-benefit {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
}

.packs-hero-benefit:first-child {
  padding-left: 0;
}

.packs-hero-benefit:last-child {
  padding-right: 0;
}

.packs-hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 43px;
  background: #3b3b3b;
}

.packs-hero-benefit > i {
  flex: 0 0 auto;
  width: 31px;
  color: var(--red);
  font-size: 26px;
  text-align: center;
}

.packs-hero-benefit div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.packs-hero-benefit strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-hero-benefit span {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
}


/* =========================================================
   CATÉGORIES DE PACKS
========================================================= */

.packs-categories-section {
  padding: 16px 0 14px;
  background:
    linear-gradient(
      180deg,
      #080808,
      #050505
    );
}

.packs-category-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid #373737;
  border-radius: 7px;
  background: #090909;
}

.packs-category-tab {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 10px;
  border-right: 1px solid #303030;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #111111,
      #090909
    );
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.packs-category-tab:last-child {
  border-right: 0;
}

.packs-category-tab:hover {
  background:
    linear-gradient(
      180deg,
      #161616,
      #0b0b0b
    );
}

.packs-category-tab.active {
  position: relative;
  z-index: 2;
  margin: -1px 0 -1px -1px;
  border: 1px solid var(--red);
  background:
    linear-gradient(
      180deg,
      #151515,
      #0a0a0a
    );
}

.packs-category-tab i {
  color: #f1f1f1;
  font-size: 27px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.packs-category-tab.active i,
.packs-category-tab:hover i {
  color: var(--red);
  transform: translateY(-2px);
}

.packs-category-tab span {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}


/* =========================================================
   AVANTAGES PACKS
========================================================= */

.packs-benefits-section {
  padding: 0 0 15px;
  background: #050505;
}

.packs-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 7px;
  background:
    linear-gradient(
      180deg,
      #111111,
      #090909
    );
}

.packs-benefit-card {
  position: relative;
  min-height: 95px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 19px;
}

.packs-benefit-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  width: 1px;
  height: calc(100% - 34px);
  background: rgba(240, 24, 29, 0.5);
}

.packs-benefit-icon {
  flex: 0 0 auto;
  width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 33px;
}

.packs-benefit-card h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-benefit-card p {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
}


/* =========================================================
   EN-TÊTES DE SECTION
========================================================= */

.packs-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.packs-section-heading > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.packs-section-heading h2 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-section-heading > p {
  max-width: 470px;
  color: #bfbfbf;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: right;
}

.packs-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 23px;
  padding: 0 16px 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.packs-section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red) 24%,
      var(--red) 76%,
      transparent
    );
}


/* =========================================================
   PACKS PRINCIPAUX
========================================================= */

.packs-main-section {
  padding: 12px 0 18px;
  background: #050505;
}

.packs-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.packs-main-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  border: 1px solid #58493b;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #141414,
      #0a0a0a
    );
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.packs-main-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

.packs-main-card-featured {
  border-color: var(--red);
  box-shadow:
    0 0 0 1px rgba(240, 24, 29, 0.13),
    0 15px 40px rgba(0, 0, 0, 0.28);
}

.packs-main-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #151515;
}

.packs-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.packs-main-card:hover .packs-main-image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.packs-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-main-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.packs-main-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 10px;
}

.packs-main-type {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.packs-main-top h3 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-main-top > strong {
  flex: 0 0 auto;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.packs-main-description {
  margin-bottom: 14px;
  color: #cfcfcf;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.packs-included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 12px;
  margin-bottom: 17px;
}

.packs-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #dddddd;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.packs-included-list li i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--red);
  font-size: 11px;
}

.packs-main-actions {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 9px;
  margin-top: auto;
}

.packs-main-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.packs-main-btn:hover {
  transform: translateY(-2px);
}

.packs-main-btn-red {
  border: 1px solid var(--red);
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #cd0c11
    );
}

.packs-main-btn-outline {
  border: 1px solid #575757;
  color: var(--white);
  background: #0a0a0a;
}

.packs-main-btn-outline:hover {
  border-color: var(--red);
  background: rgba(240, 24, 29, 0.08);
}


/* =========================================================
   PACKS PAR PIÈCE
========================================================= */

.packs-room-section {
  padding: 4px 0 17px;
  background: #050505;
}

.packs-room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.packs-room-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #554637;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #141414,
      #0a0a0a
    );
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.packs-room-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.38);
}

.packs-room-image {
  height: 200px;
  overflow: hidden;
  background: #151515;
}

.packs-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.packs-room-card:hover .packs-room-image img {
  transform: scale(1.045);
}

.packs-room-content {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.packs-room-content > span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.packs-room-content h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-room-content p {
  flex-grow: 1;
  margin-bottom: 8px;
  color: #cccccc;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.28;
}

.packs-room-content strong {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
}

.packs-room-content a {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background var(--transition),
    transform var(--transition);
}

.packs-room-content a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.1);
}


/* =========================================================
   TABLEAU COMPARATIF
========================================================= */

.packs-comparison-section {
  padding: 5px 0 18px;
  background: #050505;
}

.packs-comparison-wrapper {
  overflow-x: auto;
  border: 1px solid #4a3f35;
  border-radius: 8px;
  background: #0b0b0b;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #171717;
}

.packs-comparison-wrapper::-webkit-scrollbar {
  height: 6px;
}

.packs-comparison-wrapper::-webkit-scrollbar-track {
  background: #171717;
}

.packs-comparison-wrapper::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 20px;
}

.packs-comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.packs-comparison-table th,
.packs-comparison-table td {
  padding: 14px 15px;
  border-right: 1px solid #302b27;
  border-bottom: 1px solid #302b27;
  text-align: left;
}

.packs-comparison-table th:last-child,
.packs-comparison-table td:last-child {
  border-right: 0;
}

.packs-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.packs-comparison-table thead {
  background:
    linear-gradient(
      180deg,
      #171717,
      #101010
    );
}

.packs-comparison-table th {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.packs-comparison-table td {
  color: #cccccc;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
}

.packs-comparison-table tbody tr {
  transition: background var(--transition);
}

.packs-comparison-table tbody tr:hover {
  background: rgba(240, 24, 29, 0.045);
}

.packs-comparison-table td:first-child,
.packs-comparison-table td:nth-child(5) {
  color: var(--white);
  font-weight: 700;
}

.packs-comparison-table td:nth-child(5) {
  color: var(--red);
}

.packs-comparison-table td a {
  min-height: 31px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background var(--transition),
    transform var(--transition);
}

.packs-comparison-table td a:hover {
  transform: translateY(-2px);
  background: var(--red);
}


/* =========================================================
   ÉTAPES PACKS
========================================================= */

.packs-process-section {
  padding: 4px 0 18px;
  background: #050505;
}

.packs-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.packs-process-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 25px 19px 20px;
  border: 1px solid #4f4236;
  border-radius: 8px;
  background:
    linear-gradient(
      145deg,
      #141414,
      #090909
    );
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.packs-process-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.packs-process-card > span {
  position: absolute;
  top: -9px;
  right: 8px;
  color: rgba(240, 24, 29, 0.12);
  font-family: var(--font-title);
  font-size: 73px;
  font-weight: 800;
  line-height: 1;
}

.packs-process-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: rgba(240, 24, 29, 0.06);
  font-size: 26px;
}

.packs-process-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-process-card p {
  position: relative;
  z-index: 2;
  color: #c3c3c3;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}


/* =========================================================
   BANNIÈRE INVESTISSEUR
========================================================= */

.packs-investor-section {
  padding: 0 0 16px;
  background: #050505;
}

.packs-investor-banner {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: #0b0b0b;
}

.packs-investor-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.packs-investor-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter:
    brightness(0.78)
    saturate(0.88);
}

.packs-investor-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(6, 6, 6, 0.99) 0%,
      rgba(6, 6, 6, 0.96) 29%,
      rgba(6, 6, 6, 0.72) 47%,
      rgba(6, 6, 6, 0.16) 69%,
      rgba(6, 6, 6, 0.07) 100%
    );
}

.packs-investor-content {
  position: relative;
  z-index: 2;
  width: 570px;
  padding: 37px 0 34px 65px;
}

.packs-investor-content > span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.packs-investor-content h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-investor-content p {
  max-width: 505px;
  margin-bottom: 17px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.packs-investor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.packs-investor-btn {
  min-height: 39px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.packs-investor-btn:hover {
  transform: translateY(-2px);
}

.packs-investor-btn-red {
  border: 1px solid var(--red);
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #cf0d12
    );
}

.packs-investor-btn-outline {
  border: 1px solid #d0d0d0;
  color: var(--white);
  background: rgba(8, 8, 8, 0.55);
}

.packs-investor-btn-outline:hover {
  border-color: var(--red);
  background: rgba(240, 24, 29, 0.08);
}


/* =========================================================
   CONTACT ET AIDE
========================================================= */

.packs-help-section {
  padding: 0 0 16px;
  background: #050505;
}

.packs-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.packs-help-card {
  min-height: 175px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #111111,
      #080808
    );
}

.packs-help-whatsapp {
  padding-right: 21px;
}

.packs-help-phone {
  align-self: stretch;
  width: 205px;
  flex: 0 0 205px;
  overflow: hidden;
}

.packs-help-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.packs-help-content {
  min-width: 0;
  padding: 20px 0;
}

.packs-help-content h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packs-help-content h2 span {
  color: var(--red);
}

.packs-help-content p {
  max-width: 420px;
  margin-bottom: 13px;
  color: #d0d0d0;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
}

.packs-help-content a {
  min-height: 36px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #0a0a0a;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.packs-help-content a i {
  font-size: 17px;
}

.packs-help-content a:hover {
  transform: translateY(-2px);
  background: rgba(240, 24, 29, 0.09);
  box-shadow: 0 8px 22px rgba(240, 24, 29, 0.11);
}

.packs-help-request {
  gap: 28px;
  padding: 22px 34px;
}

.packs-help-request-icon {
  flex: 0 0 auto;
  width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 67px;
}

.packs-help-request .packs-help-content {
  padding: 0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes packsFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.packs-hero-content {
  animation: packsFadeUp 0.75s ease both;
}

.packs-main-card,
.packs-room-card,
.packs-process-card,
.packs-help-card {
  will-change: transform;
}


/* =========================================================
   FILTRAGE DES PACKS
========================================================= */

.packs-main-card.is-hidden,
.packs-room-card.is-hidden {
  display: none;
}
/* =========================================================
   PAGE COMMENT ÇA MARCHE — STYLE COMPLET
========================================================= */


/* =========================================================
   HERO
========================================================= */

.process-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #343434;
}

.process-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter:
    brightness(0.78)
    contrast(1.07)
    saturate(0.88);
}

.process-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.99) 26%,
      rgba(5, 5, 5, 0.86) 40%,
      rgba(5, 5, 5, 0.32) 60%,
      rgba(5, 5, 5, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.16)
    );
}

.process-hero-pattern {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: -120px;
  z-index: 2;
  width: 310px;
  opacity: 0.9;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      transparent 0 37%,
      rgba(240, 24, 29, 0.52) 37.5% 38%,
      transparent 38.5% 46%,
      rgba(240, 24, 29, 0.25) 46.5% 47%,
      transparent 47.5%
    );
  transform: skewX(-15deg);
}

.process-hero-pattern::before,
.process-hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      145deg,
      transparent 0 11px,
      rgba(240, 24, 29, 0.18) 12px 13px,
      transparent 14px 24px
    );
}

.process-hero-pattern::before {
  opacity: 0.8;
}

.process-hero-pattern::after {
  transform: translateX(65px);
  opacity: 0.45;
}

.process-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.process-hero-content {
  width: 560px;
  padding: 42px 0 34px;
}

.process-hero-content h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 66px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.process-hero-content > p {
  max-width: 545px;
  margin-bottom: 27px;
  color: #ededed;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.process-hero-content > p span {
  color: var(--red);
}

.process-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 500px;
}

.process-hero-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  text-align: center;
}

.process-hero-benefit:first-child {
  padding-left: 0;
}

.process-hero-benefit:last-child {
  padding-right: 0;
}

.process-hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 58px;
  background: #353535;
}

.process-hero-benefit i {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 29px;
}

.process-hero-benefit strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   TITRES DE SECTION
========================================================= */

.process-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 0 18px 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.process-section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--red) 27%,
      var(--red) 73%,
      transparent
    );
}


/* =========================================================
   PROCESSUS EN 5 ÉTAPES
========================================================= */

.process-steps-section {
  padding: 20px 0 13px;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(255, 255, 255, 0.035),
      transparent 38%
    ),
    #050505;
}

.process-steps-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    28px
    minmax(0, 1fr)
    28px
    minmax(0, 1fr)
    28px
    minmax(0, 1fr)
    28px
    minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.process-step-card {
  position: relative;
  min-width: 0;
  min-height: 370px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 12px 12px;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #131313,
      #090909
    );
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.process-step-number {
  position: absolute;
  top: -21px;
  left: 50%;
  z-index: 3;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #d00d12
    );
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  transform: translateX(-50%);
  box-shadow: 0 7px 18px rgba(240, 24, 29, 0.2);
}

.process-step-icon {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 36px;
}

.process-step-card h3 {
  min-height: 49px;
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.05;
}

.process-step-card p {
  min-height: 69px;
  margin-bottom: 12px;
  color: #d0d0d0;
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
}

.process-step-image {
  width: 100%;
  height: 133px;
  overflow: hidden;
  margin-top: auto;
  border-radius: 6px;
  background: #151515;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.process-step-card:hover .process-step-image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.process-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 19px;
}


/* =========================================================
   POURQUOI LE PROCESSUS FONCTIONNE
========================================================= */

.process-advantages-section {
  padding: 5px 0 12px;
  background: #050505;
}

.process-advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-top: 1px solid #373737;
  border-bottom: 1px solid #373737;
}

.process-advantage-item {
  position: relative;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 17px;
  text-align: center;
}

.process-advantage-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: #353535;
}

.process-advantage-item > i {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 31px;
}

.process-advantage-item h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.process-advantage-item p {
  color: #cfcfcf;
  font-family: var(--font-main);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.35;
}


/* =========================================================
   INFORMATIONS NÉCESSAIRES
========================================================= */

.process-information-section {
  padding: 4px 0 15px;
  background: #050505;
}

.process-information-grid {
  display: grid;
  grid-template-columns: 2.25fr 0.95fr;
  gap: 14px;
}

.process-information-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  border: 1px solid #474747;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #121212,
      #090909
    );
}

.process-information-image {
  min-height: 280px;
  overflow: hidden;
}

.process-information-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-information-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 18px 22px;
}

.process-information-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.process-information-item:not(:last-child) {
  margin-bottom: 12px;
}

.process-information-item > i {
  margin-top: 1px;
  color: var(--red);
  font-size: 24px;
  text-align: center;
}

.process-information-item h3 {
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
}

.process-information-item p {
  color: #c6c6c6;
  font-family: var(--font-main);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.3;
}

.process-information-whatsapp {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      145deg,
      #131313,
      #080808
    );
  box-shadow:
    0 0 20px rgba(240, 24, 29, 0.08),
    inset 0 0 40px rgba(240, 24, 29, 0.025);
}

.process-information-whatsapp::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  opacity: 0.7;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 8px,
      rgba(240, 24, 29, 0.28) 9px 10px,
      transparent 11px 18px
    );
  transform: rotate(9deg);
}

.process-information-whatsapp-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 39px;
}

.process-information-whatsapp h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.process-information-whatsapp p {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: #d0d0d0;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.process-information-whatsapp a {
  position: relative;
  z-index: 2;
  min-height: 43px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #d10e13
    );
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.process-information-whatsapp a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(240, 24, 29, 0.18);
}

.process-information-whatsapp a i {
  font-size: 18px;
}


/* =========================================================
   PROJETS RÉALISÉS
========================================================= */

.process-projects-section {
  padding: 2px 0 14px;
  background: #050505;
}

.process-projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.process-project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #464646;
  border-radius: 7px;
  background: #0d0d0d;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.process-project-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.process-project-image {
  height: 120px;
  overflow: hidden;
}

.process-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-project-card:hover .process-project-image img {
  transform: scale(1.05);
}

.process-project-card h3 {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}


/* =========================================================
   CTA PRINCIPAL
========================================================= */

.process-cta-section {
  padding: 0 0 13px;
  background: #050505;
}

.process-cta-box {
  position: relative;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: #0c0c0c;
}

.process-cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    brightness(0.56)
    saturate(0.8);
}

.process-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.97),
      rgba(7, 7, 7, 0.83) 55%,
      rgba(7, 7, 7, 0.55)
    );
}

.process-cta-content {
  position: relative;
  z-index: 2;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 25px 45px;
}

.process-cta-content > div:first-child {
  max-width: 470px;
}

.process-cta-content h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.process-cta-content p {
  color: #d1d1d1;
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
}

.process-cta-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.process-cta-actions > span {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px;
}

.process-cta-btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.process-cta-btn:hover {
  transform: translateY(-2px);
}

.process-cta-btn-red {
  border: 1px solid var(--red);
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #d10e13
    );
  box-shadow: 0 7px 20px rgba(240, 24, 29, 0.16);
}

.process-cta-btn-outline {
  border: 1px solid #d2d2d2;
  color: var(--white);
  background: rgba(7, 7, 7, 0.58);
}

.process-cta-btn-outline:hover {
  border-color: var(--red);
  background: rgba(240, 24, 29, 0.08);
}

.process-cta-btn i {
  font-size: 18px;
}


/* =========================================================
   GARANTIES
========================================================= */

.process-guarantees-section {
  padding: 0 0 14px;
  background: #050505;
}

.process-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-top: 1px solid #313131;
  border-bottom: 1px solid #313131;
  background:
    linear-gradient(
      180deg,
      #0e0e0e,
      #080808
    );
}

.process-guarantee-item {
  position: relative;
  min-height: 85px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
}

.process-guarantee-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 1px;
  height: calc(100% - 30px);
  background: rgba(240, 24, 29, 0.55);
}

.process-guarantee-item > i {
  flex: 0 0 auto;
  width: 39px;
  color: var(--red);
  font-size: 31px;
  text-align: center;
}

.process-guarantee-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.1;
}

.process-guarantee-item p {
  color: #bdbdbd;
  font-family: var(--font-main);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.25;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes processFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-hero-content {
  animation: processFadeUp 0.75s ease both;
}

.process-step-card,
.process-project-card,
.process-information-whatsapp {
  will-change: transform;
}
/* =========================================================
   PAGE DEVIS — STYLE COMPLET
========================================================= */


/* =========================================================
   HERO DEVIS
========================================================= */

.quote-hero {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #303030;
}

.quote-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.quote-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
  filter:
    brightness(0.77)
    contrast(1.06)
    saturate(0.88);
}

.quote-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.99) 26%,
      rgba(5, 5, 5, 0.88) 40%,
      rgba(5, 5, 5, 0.38) 58%,
      rgba(5, 5, 5, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.17)
    );
}

.quote-hero-pattern {
  position: absolute;
  top: -80px;
  left: 28%;
  z-index: 2;
  width: 230px;
  height: 570px;
  opacity: 0.72;
  pointer-events: none;
}

.quote-hero-pattern::before,
.quote-hero-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 24, 29, 0.8);
  transform: skewX(-38deg);
  box-shadow:
    0 0 11px rgba(240, 24, 29, 0.22),
    inset 0 0 8px rgba(240, 24, 29, 0.06);
}

.quote-hero-pattern::before {
  top: 20px;
  left: 10px;
  width: 85px;
  height: 330px;
  border-top: 0;
  border-bottom: 0;
}

.quote-hero-pattern::after {
  right: 18px;
  bottom: 0;
  width: 90px;
  height: 375px;
  border-top: 0;
  border-bottom: 0;
}

.quote-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 455px;
}

.quote-hero-content {
  width: 610px;
  padding: 45px 0 36px;
}

.quote-hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin-bottom: 12px;
  padding: 0 13px;
  border: 1px solid rgba(240, 24, 29, 0.75);
  border-radius: 3px;
  color: var(--red);
  background: rgba(240, 24, 29, 0.08);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-hero-content h1 {
  margin-bottom: 15px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 66px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.quote-hero-content > p {
  max-width: 550px;
  margin-bottom: 27px;
  color: #d8d8d8;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
}

.quote-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 580px;
  padding-top: 18px;
  border-top: 1px solid #353535;
}

.quote-hero-benefit {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
}

.quote-hero-benefit:first-child {
  padding-left: 0;
}

.quote-hero-benefit:last-child {
  padding-right: 0;
}

.quote-hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 1px;
  height: 43px;
  background: #3b3b3b;
}

.quote-hero-benefit > i {
  flex: 0 0 auto;
  width: 31px;
  color: var(--red);
  font-size: 27px;
  text-align: center;
}

.quote-hero-benefit div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.quote-hero-benefit strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quote-hero-benefit span {
  color: #bdbdbd;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
}


/* =========================================================
   BANDE D’INFORMATIONS
========================================================= */

.quote-info-strip {
  padding: 14px 0;
  background: #050505;
}

.quote-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      #121212,
      #090909
    );
}

.quote-info-item {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
}

.quote-info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 1px;
  height: calc(100% - 32px);
  background: rgba(240, 24, 29, 0.5);
}

.quote-info-item > i {
  flex: 0 0 auto;
  width: 40px;
  color: var(--red);
  font-size: 30px;
  text-align: center;
}

.quote-info-item div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.quote-info-item strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quote-info-item a,
.quote-info-item span {
  overflow-wrap: anywhere;
  color: #c9c9c9;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
}

.quote-info-item a:hover {
  color: var(--red);
}


/* =========================================================
   SECTION FORMULAIRE
========================================================= */

.quote-form-section {
  padding: 10px 0 22px;
  background:
    radial-gradient(
      circle at 25% 0,
      rgba(255, 255, 255, 0.025),
      transparent 30%
    ),
    #050505;
}

.quote-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(310px, 0.82fr);
  align-items: start;
  gap: 18px;
}


/* =========================================================
   CONTENEUR DU FORMULAIRE
========================================================= */

.quote-form-wrapper {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #454545;
  border-radius: 10px;
  background:
    linear-gradient(
      145deg,
      #111111,
      #080808
    );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.quote-form-heading {
  padding: 27px 30px 24px;
  border-bottom: 1px solid #313131;
  background:
    linear-gradient(
      135deg,
      rgba(240, 24, 29, 0.07),
      transparent 48%
    );
}

.quote-form-heading > span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.quote-form-heading h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quote-form-heading p {
  max-width: 700px;
  color: #c9c9c9;
  font-family: var(--font-main);
  font-size: 12.5px;
  line-height: 1.45;
}

.quote-form {
  padding: 0 30px 30px;
}


/* =========================================================
   BLOCS DU FORMULAIRE
========================================================= */

.quote-form-block {
  min-width: 0;
  margin: 0;
  padding: 28px 0 27px;
  border: 0;
  border-bottom: 1px solid #303030;
}

.quote-form-block legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
  padding: 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quote-form-block legend span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #c90c11
    );
  font-size: 13px;
  box-shadow: 0 7px 18px rgba(240, 24, 29, 0.16);
}

.quote-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.quote-field {
  min-width: 0;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field + .quote-field-full {
  margin-top: 18px;
}

.quote-field > label,
.quote-field-full > label:first-child {
  display: block;
  margin-bottom: 8px;
  color: #ededed;
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}

.quote-field > label span,
.quote-field-full > label:first-child span {
  color: var(--red);
}


/* =========================================================
   INPUTS, SELECTS ET TEXTAREA
========================================================= */

.quote-input-wrapper,
.quote-select-wrapper,
.quote-textarea-wrapper {
  position: relative;
  min-width: 0;
}

.quote-input-wrapper > i,
.quote-select-wrapper > i,
.quote-textarea-wrapper > i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  width: 18px;
  color: var(--red);
  font-size: 15px;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.quote-textarea-wrapper > i {
  top: 18px;
  transform: none;
}

.quote-input-wrapper input,
.quote-select-wrapper select,
.quote-textarea-wrapper textarea {
  width: 100%;
  border: 1px solid #3c3c3c;
  border-radius: 6px;
  outline: none;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #151515,
      #0d0d0d
    );
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.quote-input-wrapper input,
.quote-select-wrapper select {
  height: 51px;
  padding: 0 44px 0 45px;
}

.quote-textarea-wrapper textarea {
  min-height: 150px;
  padding: 15px 16px 15px 45px;
  line-height: 1.5;
  resize: vertical;
}

.quote-input-wrapper input::placeholder,
.quote-textarea-wrapper textarea::placeholder {
  color: #8f8f8f;
}

.quote-select-wrapper select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #bdbdbd 50%
    ),
    linear-gradient(
      135deg,
      #bdbdbd 50%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #151515,
      #0d0d0d
    );
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px,
    0 0;
  background-size:
    5px 5px,
    5px 5px,
    100% 100%;
  background-repeat: no-repeat;
}

.quote-select-wrapper select option {
  color: var(--white);
  background: #101010;
}

.quote-input-wrapper input:focus,
.quote-select-wrapper select:focus,
.quote-textarea-wrapper textarea:focus {
  border-color: var(--red);
  background: #121212;
  box-shadow:
    0 0 0 3px rgba(240, 24, 29, 0.09),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.quote-input-wrapper input:invalid:not(:placeholder-shown),
.quote-textarea-wrapper textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(240, 24, 29, 0.68);
}

.quote-input-unit {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #bdbdbd;
  font-family: var(--font-main);
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.quote-field-help {
  display: block;
  margin-top: 7px;
  color: #999999;
  font-family: var(--font-main);
  font-size: 10.5px;
  line-height: 1.35;
}


/* =========================================================
   CHOIX DU TYPE DE PROJET
========================================================= */

.quote-project-options {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.quote-project-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.quote-project-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-project-option-content {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 8px;
  border: 1px solid #3c3c3c;
  border-radius: 7px;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      #141414,
      #0b0b0b
    );
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.quote-project-option-content i {
  color: #d9d9d9;
  font-size: 27px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.quote-project-option-content strong {
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quote-project-option:hover .quote-project-option-content {
  transform: translateY(-3px);
  border-color: rgba(240, 24, 29, 0.65);
}

.quote-project-option input:checked + .quote-project-option-content {
  border-color: var(--red);
  background:
    linear-gradient(
      180deg,
      rgba(240, 24, 29, 0.14),
      #0b0b0b
    );
  box-shadow:
    0 0 0 1px rgba(240, 24, 29, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.quote-project-option input:checked + .quote-project-option-content i {
  color: var(--red);
  transform: translateY(-2px);
}


/* =========================================================
   ENVOI DE FICHIERS
========================================================= */

.quote-file-upload {
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px dashed #5a5a5a;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.005)
    );
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.quote-file-upload:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: rgba(240, 24, 29, 0.035);
}

.quote-file-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.quote-file-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: rgba(240, 24, 29, 0.06);
  font-size: 28px;
}

.quote-file-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quote-file-text strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-file-text small {
  color: #c4c4c4;
  font-family: var(--font-main);
  font-size: 11.5px;
}

.quote-file-text em {
  color: #888888;
  font-family: var(--font-main);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.quote-selected-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.quote-selected-file {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #3d3d3d;
  border-radius: 4px;
  color: #d5d5d5;
  background: #101010;
  font-family: var(--font-main);
  font-size: 10.5px;
}

.quote-selected-file i {
  color: var(--red);
}

.quote-selected-file span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* =========================================================
   CONSENTEMENT
========================================================= */

.quote-form-consent {
  padding: 22px 0 0;
}

.quote-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.quote-form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--red);
  cursor: pointer;
}

.quote-form-consent span {
  color: #c3c3c3;
  font-family: var(--font-main);
  font-size: 11.5px;
  line-height: 1.45;
}

.quote-form-consent strong {
  color: var(--red);
}


/* =========================================================
   BOUTON D’ENVOI
========================================================= */

.quote-form-submit-area {
  padding-top: 20px;
}

.quote-submit-button {
  position: relative;
  width: 100%;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #c90d12
    );
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 11px 28px rgba(240, 24, 29, 0.16);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.quote-submit-button:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(
      135deg,
      #ff282d,
      #db1116
    );
  box-shadow: 0 14px 32px rgba(240, 24, 29, 0.23);
}

.quote-submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.quote-submit-default,
.quote-submit-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quote-submit-default i,
.quote-submit-loading i {
  font-size: 17px;
}

.quote-submit-loading {
  display: none;
}

.quote-submit-button.is-loading .quote-submit-default {
  display: none;
}

.quote-submit-button.is-loading .quote-submit-loading {
  display: flex;
}

.quote-form-submit-area > p {
  margin-top: 10px;
  color: #999999;
  font-family: var(--font-main);
  font-size: 10.5px;
  text-align: center;
}

.quote-form-submit-area > p i {
  margin-right: 5px;
  color: var(--red);
}


/* =========================================================
   ANTI-SPAM
========================================================= */

.quote-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* =========================================================
   BARRE LATÉRALE
========================================================= */

.quote-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-sidebar-card,
.quote-sidebar-whatsapp,
.quote-sidebar-contact {
  overflow: hidden;
  border: 1px solid #454545;
  border-radius: 9px;
  background:
    linear-gradient(
      145deg,
      #121212,
      #090909
    );
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.quote-sidebar-card {
  padding: 23px 21px;
}

.quote-sidebar-label {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-sidebar-card > h2,
.quote-sidebar-contact h2 {
  margin-bottom: 19px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}


/* =========================================================
   AVANTAGES LATÉRAUX
========================================================= */

.quote-sidebar-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-sidebar-benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.quote-sidebar-benefit > i {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  background: rgba(240, 24, 29, 0.1);
  font-size: 11px;
}

.quote-sidebar-benefit strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
}

.quote-sidebar-benefit p {
  color: #ababab;
  font-family: var(--font-main);
  font-size: 10.5px;
  line-height: 1.35;
}


/* =========================================================
   ÉTAPES LATÉRALES
========================================================= */

.quote-sidebar-steps {
  display: flex;
  flex-direction: column;
}

.quote-sidebar-step {
  position: relative;
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 11px;
  padding-bottom: 18px;
}

.quote-sidebar-step:last-child {
  padding-bottom: 0;
}

.quote-sidebar-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 3px;
  left: 18px;
  width: 1px;
  background: rgba(240, 24, 29, 0.52);
}

.quote-sidebar-step > span {
  position: relative;
  z-index: 2;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  background: #101010;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
}

.quote-sidebar-step strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
}

.quote-sidebar-step p {
  color: #ababab;
  font-family: var(--font-main);
  font-size: 10.5px;
  line-height: 1.35;
}


/* =========================================================
   CARTE WHATSAPP LATÉRALE
========================================================= */

.quote-sidebar-whatsapp {
  position: relative;
  padding: 26px 22px;
  border-color: var(--red);
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(240, 24, 29, 0.14),
      transparent 55%
    ),
    linear-gradient(
      145deg,
      #121212,
      #080808
    );
}

.quote-sidebar-whatsapp::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  opacity: 0.4;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 8px,
      rgba(240, 24, 29, 0.32) 9px 10px,
      transparent 11px 18px
    );
}

.quote-sidebar-whatsapp-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #c90d12
    );
  font-size: 30px;
}

.quote-sidebar-whatsapp h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quote-sidebar-whatsapp p {
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
  color: #c5c5c5;
  font-family: var(--font-main);
  font-size: 11.5px;
  line-height: 1.45;
}

.quote-sidebar-whatsapp a {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #ef2025,
      #c90d12
    );
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.quote-sidebar-whatsapp a:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 23px rgba(240, 24, 29, 0.18);
}


/* =========================================================
   CONTACT LATÉRAL
========================================================= */

.quote-sidebar-contact {
  padding: 23px 21px;
}

.quote-sidebar-contact h2 {
  margin-bottom: 17px;
}

.quote-sidebar-contact p {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 9px;
}

.quote-sidebar-contact p:not(:last-child) {
  margin-bottom: 12px;
}

.quote-sidebar-contact p > i {
  color: var(--red);
  font-size: 18px;
  text-align: center;
}

.quote-sidebar-contact a,
.quote-sidebar-contact span {
  overflow-wrap: anywhere;
  color: #c6c6c6;
  font-family: var(--font-main);
  font-size: 11.5px;
  line-height: 1.35;
}

.quote-sidebar-contact a:hover {
  color: var(--red);
}


/* =========================================================
   GARANTIES DEVIS
========================================================= */

.quote-guarantees-section {
  padding: 0 0 16px;
  background: #050505;
}

.quote-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-top: 1px solid #313131;
  border-bottom: 1px solid #313131;
  background:
    linear-gradient(
      180deg,
      #101010,
      #080808
    );
}

.quote-guarantee-item {
  position: relative;
  min-height: 85px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
}

.quote-guarantee-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 1px;
  height: calc(100% - 30px);
  background: rgba(240, 24, 29, 0.52);
}

.quote-guarantee-item > i {
  flex: 0 0 auto;
  width: 39px;
  color: var(--red);
  font-size: 30px;
  text-align: center;
}

.quote-guarantee-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.1;
}

.quote-guarantee-item p {
  color: #b7b7b7;
  font-family: var(--font-main);
  font-size: 10.5px;
  line-height: 1.25;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes quoteFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-hero-content {
  animation: quoteFadeUp 0.75s ease both;
}

.quote-form-wrapper,
.quote-sidebar-card,
.quote-sidebar-whatsapp,
.quote-sidebar-contact {
  will-change: transform;
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible,
.quote-form button:focus-visible,
.quote-project-option input:focus-visible
  + .quote-project-option-content,
.quote-file-upload:focus-within {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}