:root {
  --bg: #eef3f9;
  --card: #ffffff;
  --brown-1: #0d1117;
  --brown-2: #5f6672;
  --brown-3: #a7adb7;
  --orange-1: #154fb5;
  --orange-2: #358bd7;
  --gold: #dadbdc;
  --text: #0d1117;
  --muted: #6b7280;
  --shadow: 0 14px 34px rgba(13, 17, 23, .16);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: url("../images/plan.png") center/cover fixed no-repeat;
  padding-top: 142px;
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none
}

main {
  width: 100%
}

body.menu-open {
  overflow: hidden;
}


.sale-info {
  font-size: 13px;
  margin: 8px 0 0;
  font-weight: 700;
  color: var(--brown-2)
}

.flash-sale {
  color: var(--orange-1)
}

.black-sale {
  color: #0d1117
}

.sale-date {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px
}

.flash-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #358bd7, #154fb5);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .35), 0 10px 20px rgba(21, 79, 181, .25)
}

.business-card .business-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px
}

.badge.immo-business {
  background: #154fb5
}

.product-info {
  text-align: center
}

.product-info h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 10px 0 6px;
  color: var(--text);
  text-align: center;
  line-height: 1.25
}

.product-info .price,
.price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px
}

.old-price {
  text-decoration: line-through;
  color: #9f9487;
  font-size: .92rem
}

.promo-price {
  color: #154fb5;
  font-weight: 900;
  font-size: 1.12rem
}

.badge.black-friday {
  background: #0d1117
}

.badge.flash-sale {
  background: #358bd7
}

.promo-blink {
  background: #154fb5;
  color: #fff;
  animation: blink .7s infinite alternate
}

@keyframes blink {
  from {
    opacity: 1
  }

  to {
    opacity: .35
  }
}



/* =========================
   BANDE D’ANNONCE
   ========================= */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1600;

  min-height: 48px;
  padding: 4px 14px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;

  background: linear-gradient(90deg, #0d1117, #154fb5 55%, #0d1117);
  color: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .16);
}

.announcement-logo {
  display: flex;
  background-color: #e2ecfc;
  align-items: center;
  min-width: 0;
}

.announcement-logo-img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .10));
}

.announcement-messages {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.announcement-text1,
.announcement-text2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  line-height: 1;
}

.announcement-text1 {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #358bd7;
  text-shadow: 0 0 6px rgba(53, 139, 215, .18);
}

.announcement-text2 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #dadbdc;
  opacity: .96;
}

.announcement-order {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  min-width: max-content;
}

.phone-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phoneRing 1.25s infinite;
}

.phone-icon svg {
  width: 22px;
  height: 22px;
  stroke: #358bd7;
}

.phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.order-text {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  opacity: .92;
  text-transform: uppercase;
}

.phone-number {
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: 10px;
  background: #fff;
  color: #154fb5;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(218, 219, 220, .18);
}

@keyframes pulseWave {
  0% {
    transform: scale(.6);
    opacity: .7
  }

  70% {
    opacity: 0
  }

  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0)
  }

  15% {
    transform: rotate(14deg)
  }

  30% {
    transform: rotate(-14deg)
  }

  45% {
    transform: rotate(14deg)
  }

  60% {
    transform: rotate(-14deg)
  }

  75% {
    transform: rotate(14deg)
  }

  90% {
    transform: rotate(-14deg)
  }
}


/* =========================
   HEADER SECONDAIRE
   ========================= */
.site-header {
  position: sticky;
  top: 48px;
  z-index: 1500;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;

  min-height: 74px;
  padding: 12px 18px;

  background: rgba(255, 249, 242, .94);
  backdrop-filter: blur(8px);

  border-bottom: 1px solid rgba(166, 174, 186, .22);
  box-shadow: 0 10px 26px rgba(13, 17, 23, .08);
}

.header-spacer {
  min-width: 0;
}

.header-menu-trigger {
  width: 72px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: none;
  border-radius: 14px;

  background: linear-gradient(180deg, #154fb5 0%, #154fb5 100%);
  box-shadow: 0 10px 22px rgba(13, 17, 23, .18);

  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.header-menu-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(57, 27, 8, .15);
  filter: brightness(1.02);
}

.header-menu-trigger__lines {
  width: 28px;
  height: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.header-menu-trigger__lines span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

.user-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.user-links a {
  color: #0d1117827;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.user-links a:hover {
  color: var(--orange-1);
}

.user-links .icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

/* on neutralise l’ancienne search du header */
.search-container,
.search-input,
.search-button {
  display: none !important;
}


.welcome {
  position: sticky;
  top: 152px;
  z-index: 1000;
  background: #154fb5;
  color: #fff;
  padding: 8px 12px;
  overflow: hidden
}

.welcome span {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
  font-size: clamp(12px, 3vw, 18px)
}

@keyframes scroll {
  from {
    transform: translateX(100%)
  }

  to {
    transform: translateX(-100%)
  }
}

.main-section {
  max-width: 1450px;
  margin: 26px auto 34px;
  padding: 18px;
  background: transparent;
  border: 1px solid rgba(166, 174, 186, .18);
  border-radius: 30px;
  box-shadow: var(--shadow)
}

.layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 290px;
  gap: 22px;
  align-items: start
}

.center-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0
}

.center-side>* {
  width: 100%;
  min-width: 0
}

.column {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.special-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 100px;
  padding: 18px 28px;
  border-radius: 24px;
  background: radial-gradient(circle at center, #0d1117 0, #1b2330 55%, #2f3b4d 100%);
  color: #f8fbff;
  text-align: center;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 58px);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 18px 28px rgba(13, 17, 23, .22);
  overflow: hidden
}

.special-btn::before,
.special-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateY(-50%)
}

.special-btn::before {
  left: 38px
}

.special-btn::after {
  right: 38px
}

#flash-sale-header {
  font-size: clamp(28px, 3vw, 42px);
  justify-content: center;
  padding-right: 28px
}

#flash-sale-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 9px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #358bd7, #154fb5);
  color: #ffffff !important;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .45), 0 12px 24px rgba(104, 175, 43, .25)
}

/* =========================================
   CORRECTION BOUTONS CATEGORIES - SANS CHANGER LES CLASSES / ID
   A AJOUTER A LA FIN DE home.css
   ========================================= */

/* Colonne gauche plus compacte */
.layout {
  grid-template-columns: 290px minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: start;
}

/* Une seule pile verticale */
.buttons-grid {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  width: 100%;
}

/* On neutralise les 2 anciennes colonnes sans changer le HTML */
.buttons-grid .column {
  display: contents !important;
}

/* Le vrai bouton/carte */
.category-card {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 100px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #0d1117 0%, #1b2330 55%, #246dc9 100%) !important;
  box-shadow: 0 14px 30px rgba(13, 17, 23, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.category-card:hover {
  transform: translateY(-2px) !important;
}

.category-card a {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  width: 100% !important;
  min-height: 100px !important;
  padding: 16px 18px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.category-card img {
  width: 92px !important;
  height: 92px !important;
  min-width: 92px !important;
  flex: 0 0 92px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  border: 7px solid rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22) !important;
  background: #fff !important;
}

/* Le texte ne doit plus être en absolute */
.category-card span {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #f8fbff !important;
  font-size: 17px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  text-align: left !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28) !important;
  white-space: normal !important;
  word-break: break-word !important;
}

/* Ajustement visuel du centre pour éviter l'effet trop serré */
.center-side {
  min-width: 0;
}

@media (max-width: 1280px) {
  .layout {
    grid-template-columns: 270px minmax(0, 1fr) 245px;
  }

  .category-card,
  .category-card a {
    min-height: 94px !important;
  }

  .category-card img {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    flex-basis: 84px !important;
    border-width: 6px !important;
  }

  .category-card span {
    font-size: 16px !important;
  }
}

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr !important;
  }

  .buttons-grid {
    gap: 12px !important;
  }

  .category-card,
  .category-card a {
    min-height: 88px !important;
  }

  .category-card img {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    flex-basis: 76px !important;
    border-width: 5px !important;
  }

  .category-card span {
    font-size: 15px !important;
  }
}

@media (max-width: 640px) {
  .category-card {
    border-radius: 22px !important;
  }

  .category-card a {
    gap: 14px !important;
    padding: 14px !important;
    min-height: 82px !important;
  }

  .category-card img {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    flex-basis: 68px !important;
    border-width: 4px !important;
  }

  .category-card span {
    font-size: 14px !important;
    line-height: 1.12 !important;
  }
}


h2 {
  text-align: center;
  font-size: clamp(28px, 2.8vw, 44px);
  color: var(--brown-2);
  font-weight: 900;
  letter-spacing: .4px;
  margin: 0 0 22px;
  text-transform: none;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .08);
  opacity: 1;
  animation: none
}

.right-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.right-side-simple {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0
}

.right-grid {
  display: flex;
  gap: 12px;
  justify-content: space-between
}

.link-box {
  min-height: 76px;
  background: linear-gradient(180deg, #0d1117, #0d1117);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  cursor: pointer;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 26px);
  padding: 14px 18px;
  border: 2px solid rgba(166, 174, 186, .35);
  box-shadow: 0 14px 24px rgba(13, 17, 23, .18);
  transition: transform .2s ease, filter .2s ease
}

.link-box:nth-child(2) {
  background: linear-gradient(180deg, #154fb5, #246dc9)
}

.link-box a {
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.link-box:hover {
  transform: translateY(-2px);
  filter: brightness(1.02)
}

.empty-box {
  background: transparent
}

.top-block {
  padding-bottom: 0;
  border-bottom: none
}

.top-block .right {
  padding-left: 0
}

.bottom-block,
.ads-rotative {
  width: 100%;
  height: 322px;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 28px rgba(13, 17, 23, .14)
}

.ads-rotative img,
.ads-rotative .ads-slide,
.ads-rotative a,
.ads-rotative .banner-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.ads-rotative a,
.ads-rotative .banner-link {
  display: block
}

.ads-rotative img,
.ads-rotative .ads-slide {
  object-fit: cover;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: fadeOut;
  pointer-events: none
}

.ads-rotative img.active,
.ads-rotative .ads-slide.active {
  opacity: 1;
  animation-name: fadeIn;
  pointer-events: auto
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.05)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1)
  }

  to {
    opacity: 0;
    transform: scale(.95)
  }
}

.product-card .img-wrap {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.flying-img {
  position: fixed;
  z-index: 10000;
  width: 80px;
  height: 80px;
  object-fit: cover;
  pointer-events: none;
  transition: all .7s cubic-bezier(.65, -.2, .25, 1.3)
}

.cart-count.bump {
  animation: bump .3s ease
}

@keyframes bump {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.4)
  }

  100% {
    transform: scale(1)
  }
}

.add-to-cart-btn {
  background: #358bd7;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease
}

.add-to-cart-btn:hover {
  background: #246dc9;
  transform: scale(1.03)
}

.skeleton {
  background: linear-gradient(90deg, #eef3f9 25%, #d6dde7 37%, #eef3f9 63%);
  background-size: 400% 100%;
  animation: skeletonLoading 1.4s ease infinite;
  border-radius: 6px
}

@keyframes skeletonLoading {
  0% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.skeleton-card {
  height: 220px;
  margin-bottom: 15px
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0d1117;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: .3s ease;
  z-index: 10000;
  font-size: 14px
}

.toast.show {
  opacity: 1;
  transform: translateY(0)
}

.quantity-input {
  transition: .2s ease
}

.quantity-input:focus {
  transform: scale(1.05)
}

.products-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  background: transparent
}

.products-grid>* {
  flex: 0 0 auto
}

.business-category-card {
  background: #f5f7fb;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  padding: 20px;
  margin: 0 10px;
  text-align: center;
  width: 160px;
  user-select: none;
  transition: transform .2s ease;
  display: inline-block
}

.business-category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2)
}

.category-icon {
  font-size: 36px;
  margin-bottom: 10px
}

.category-title {
  font-weight: 700;
  font-size: 16px;
  color: #0d1117827
}

.catalog-products {
  margin: 30px auto;
  max-width: 1280px;
  padding: 22px;
  background: rgba(255, 250, 244, .9);
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(166, 174, 186, .16)
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center
}

.products-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 56px;
  min-width: 0;
  width: 100%
}

.products-carousel::-webkit-scrollbar,
.products-grid::-webkit-scrollbar {
  display: none
}

.carousel-btn,
.btn-left,
.btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #154fb5, #0d1117);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 17, 23, .20)
}

.carousel-btn:hover,
.btn-left:hover,
.btn-right:hover {
  filter: brightness(1.06)
}

.carousel-btn.prev,
.btn-left {
  left: 10px
}

.carousel-btn.next,
.btn-right {
  right: 10px
}

footer {
  background: #0d1117;
  color: #d6dde7;
  padding: 24px;
  font-size: 16px;
  margin-top: 36px;
  text-align: center;
  border-radius: 18px
}

.btn-back-home {
  display: inline-block;
  margin: 10px 0;
  padding: 8px 15px;
  background-color: #154fb5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color .3s
}

.btn-back-home:hover {
  background-color: #0f3d90
}


/* =========================
   DRAWER
   ========================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
  z-index: 1998;
}

.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100vh;
  padding: 18px 16px 24px;
  background: linear-gradient(180deg, #05070b 0%, #0a0d12 100%);
  border-right: 1px solid rgba(53, 139, 215, .20);
  box-shadow: 20px 0 45px rgba(0, 0, 0, .35);
  transform: translateX(-105%);
  transition: transform .32s ease;
  z-index: 1999;
  overflow-y: auto;
}

.mobile-side-menu.is-open {
  transform: translateX(0);
}

.mobile-side-menu__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.mobile-side-menu__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 139, 215, .30);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

.mobile-side-search {
  display: grid;
  grid-template-columns: 1fr 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(53, 139, 215, .30);
  border-radius: 10px;
  overflow: hidden;
  background: #10141b;
}

.mobile-side-search__input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 14px;
  font-size: 15px;
}

.mobile-side-search__input::placeholder {
  color: rgba(255, 255, 255, .62);
}

.mobile-side-search__button {
  border: none;
  background: linear-gradient(180deg, #246dc9 0%, #154fb5 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.mobile-side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-side-link {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(53, 139, 215, .08), rgba(53, 139, 215, .03));
  border: 1px solid rgba(53, 139, 215, .20);
  color: #f8fbff;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.mobile-side-link:hover {
  transform: translateX(3px);
  background: linear-gradient(180deg, rgba(53, 139, 215, .16), rgba(53, 139, 215, .08));
  border-color: rgba(53, 139, 215, .30);
}

.mobile-side-cart-count {
  margin-left: 6px;
}


.link-box-call {
  cursor: pointer;
}

.call-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.call-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.call-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #ffffff 0%, #fff 100%);
  border-radius: 22px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  border: 1px solid rgba(21, 79, 181, .14);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .25s ease;
}

.call-modal-overlay.active .call-modal {
  transform: translateY(0) scale(1);
}

.call-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f5f7fb;
  color: #0d1117;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}

.call-modal-title {
  font-size: 24px;
  font-weight: 900;
  color: #0d1117;
  margin-bottom: 8px;
}

.call-modal-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

.call-modal-phone {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f7fb, #eaf2ff);
  color: #154fb5;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(21, 79, 181, .12);
  margin-bottom: 20px;
}

.call-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #358bd7, #154fb5);
  box-shadow: 0 12px 24px rgba(21, 79, 181, .18);
}

.call-modal-btn:hover {
  filter: brightness(1.03);
}

/* =========================
   BANDE PUB DYNAMIQUE HOME
   ========================= */
.home-top-ads {
  position: relative;
  max-width: 1450px;
  margin: 18px auto 8px;
  padding: 0 18px;
  z-index: 20;
}

.home-top-ads__inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 150px;
  background: rgba(255, 248, 240, 0.92);
  box-shadow: 0 16px 38px rgba(13, 17, 23, .14);
  border: 1px solid rgba(166, 174, 186, .20);
}

.home-top-ads__track {
  position: relative;
  width: 100%;
  min-height: 150px;
}

.home-top-ad {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity .55s ease, transform .55s ease;
}

.home-top-ad.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.home-top-ad__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-top-ad__media {
  position: absolute;
  inset: 0;
}

.home-top-ad__image,
.home-top-ad__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-top-ad__overlay {
  position: relative;
  z-index: 2;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px 36px;
  background: linear-gradient(90deg, rgba(50, 22, 7, .72) 0%, rgba(50, 22, 7, .38) 45%, rgba(50, 22, 7, .08) 100%);
  color: #fffaf2;
}

.home-top-ad__overlay h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.home-top-ad__overlay p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  max-width: 780px;
  color: rgba(255, 245, 232, .96);
}

.home-top-ads__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.home-top-ads__dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.home-top-ads__dots button.active {
  background: #fff;
  transform: scale(1.18);
}

@media (max-width: 1024px) {
  .home-top-ads {
    margin: 14px 12px 8px;
    padding: 0;
  }

  .home-top-ads__inner,
  .home-top-ad__overlay {
    min-height: 132px;
  }

  .home-top-ad__overlay {
    padding: 22px 20px;
  }
}

@media (max-width: 640px) {

  .home-top-ads__inner,
  .home-top-ad__overlay {
    min-height: 118px;
    border-radius: 20px;
  }

  .home-top-ad__overlay {
    padding: 18px 16px 30px;
  }

  .home-top-ad__overlay h3 {
    font-size: 20px;
  }

  .home-top-ad__overlay p {
    font-size: 13px;
  }
}

/* =========================
   CORRECTIONS CAROUSELS HOME 14-04
   ========================= */
.home-top-ads,
.home-top-ads__inner,
.home-top-ads__track,
.home-top-ad,
.home-top-ad__link,
.home-top-ad__media,
.home-top-ad__image,
.home-top-ad__video {
  max-width: 100%;
}

.home-top-ads__inner {
  min-height: clamp(170px, 28vw, 320px);
}

.home-top-ads__track,
.home-top-ad,
.home-top-ad__link,
.home-top-ad__overlay {
  min-height: inherit;
}

.showcase-carousel,
.banner-carousel,
.banner-carousel2,
.carousel-container {
  position: relative;
}

#black-friday-carousel,
#flash-sale-carousel,
#immo-business-carousel,
#normal-sale-carousel {
  overflow: hidden;
}

#black-friday-carousel {
  padding: 16px 58px;
  min-height: 280px;
  background: radial-gradient(circle at center, #2e4771 0, #030603 45%, #000000 100%);
  border-radius: 24px;
}

#black-friday-carousel .carousel-track,
.banner-carousel2 .carousel-track2 {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  min-height: 248px;
  animation: none !important;
  transform: none !important;
  padding: 0;
  will-change: scroll-position;
}

#black-friday-carousel .carousel-track>*,
.banner-carousel2 .carousel-track2>*,
.products-carousel>* {
  flex: 0 0 170px;
  min-width: 170px;
  max-width: 170px;
  width: 170px;
}

#black-friday-carousel .product-card,
.banner-carousel2 .product-card,
.products-carousel .product-card,
#black-friday-carousel .business-card,
.banner-carousel2 .business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: rgba(255, 248, 240, .98);
  border-radius: 18px;
  border: 1px solid rgba(122, 77, 41, .12);
  box-shadow: 0 12px 24px rgba(57, 27, 8, .16);
}

#black-friday-carousel .product-link,
.banner-carousel2 .product-link,
.products-carousel .product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

#black-friday-carousel .img-wrap,
.banner-carousel2 .img-wrap,
.products-carousel .img-wrap {
  height: 140px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f3efe9;
  border-bottom: 1px solid rgba(122, 77, 41, .08);
}

#black-friday-carousel .img-wrap img,
.banner-carousel2 .img-wrap img,
.products-carousel .img-wrap img,
#black-friday-carousel img,
.banner-carousel2 img,
.products-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#black-friday-carousel .product-info,
.banner-carousel2 .product-info,
.products-carousel .product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px 14px;
  flex: 1 1 auto;
}

#black-friday-carousel .product-info h4,
.banner-carousel2 .product-info h4,
.products-carousel .product-info h4 {
  margin: 0;
  min-height: 38px;
  font-size: 15px;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#black-friday-carousel .badge,
.banner-carousel2 .badge,
.products-carousel .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 4;
}

#black-friday-carousel .flash-countdown,
.banner-carousel2 .flash-countdown,
.products-carousel .flash-countdown {
  margin: 10px auto 0;
}

#black-friday-carousel .sale-info,
.banner-carousel2 .sale-info,
.products-carousel .sale-info,
#black-friday-carousel .low-stock,
.banner-carousel2 .low-stock,
.products-carousel .low-stock {
  text-align: center;
}

#black-friday-carousel .old-price,
#black-friday-carousel .promo-price,
.banner-carousel2 .old-price,
.banner-carousel2 .promo-price,
.products-carousel .old-price,
.products-carousel .promo-price {
  display: block;
  text-align: center;
}

#black-friday-carousel .business-desc,
.banner-carousel2 .business-desc {
  padding: 0 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

#black-friday-carousel .carousel-track,
.banner-carousel2 .carousel-track2,
.products-carousel {
  scrollbar-width: none;
}

#black-friday-carousel .carousel-track::-webkit-scrollbar,
.banner-carousel2 .carousel-track2::-webkit-scrollbar,
.products-carousel::-webkit-scrollbar {
  display: none;
}

@media (max-width:1024px) {

  #black-friday-carousel,
  .banner-carousel2 {
    padding: 16px 52px;
  }
}

@media (max-width:768px) {
  .home-top-ads {
    margin: 12px 10px 8px;
  }

  .home-top-ads__inner,
  .home-top-ads__track,
  .home-top-ad,
  .home-top-ad__link,
  .home-top-ad__overlay {
    min-height: 220px;
  }

  .home-top-ad__media {
    position: absolute;
    inset: 0;
  }

  .home-top-ad__image,
  .home-top-ad__video {
    object-position: center;
  }

  .home-top-ad__overlay {
    justify-content: flex-end;
    padding: 16px 14px 36px;
    background: linear-gradient(180deg, rgba(13, 17, 23, .08) 0%, rgba(13, 17, 23, .56) 55%, rgba(13, 17, 23, .82) 100%);
  }

  .home-top-ad__overlay h3 {
    font-size: 18px;
    line-height: 1.12;
  }

  .home-top-ad__overlay p {
    font-size: 12px;
    line-height: 1.35;
    max-width: none;
  }

  #black-friday-carousel,
  .banner-carousel2 {
    padding: 14px 46px;
    min-height: 250px;
  }

  #black-friday-carousel .carousel-track,
  .banner-carousel2 .carousel-track2 {
    gap: 14px;
    min-height: 220px;
  }

  #black-friday-carousel .carousel-track>*,
  .banner-carousel2 .carousel-track2>*,
  .products-carousel>* {
    flex-basis: 150px;
    min-width: 150px;
    max-width: 150px;
    width: 150px;
  }

  #black-friday-carousel .img-wrap,
  .banner-carousel2 .img-wrap,
  .products-carousel .img-wrap {
    height: 120px;
    min-height: 120px;
  }
}

@media (max-width:520px) {

  .home-top-ads__inner,
  .home-top-ads__track,
  .home-top-ad,
  .home-top-ad__link,
  .home-top-ad__overlay {
    min-height: 200px;
  }

  #black-friday-carousel,
  .banner-carousel2,
  .products-carousel {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  #black-friday-carousel .carousel-track>*,
  .banner-carousel2 .carousel-track2>*,
  .products-carousel>* {
    flex-basis: 138px;
    min-width: 138px;
    max-width: 138px;
    width: 138px;
  }

  .btn-left,
  .btn-right,
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .btn-left,
  .carousel-btn.prev {
    left: 2px
  }

  .btn-right,
  .carousel-btn.next {
    right: 2px
  }
}

/* =========================
   FIX BOUTONS CAROUSEL
   ========================= */

.showcase-carousel,
.banner-carousel2,
.carousel-container,
#black-friday-carousel,
#flash-sale-carousel,
#immo-business-carousel,
#normal-sale-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track,
.carousel-track2,
.products-carousel {
  position: relative;
  z-index: 1;
}

.carousel-btn,
.btn-left,
.btn-right {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;
  pointer-events: auto !important;
}

.carousel-btn.prev,
.btn-left {
  left: 14px !important;
}

.carousel-btn.next,
.btn-right {
  right: 14px !important;
}

/* le bouton doit recevoir le clic, pas l'image derrière */
.carousel-btn *,
.btn-left *,
.btn-right * {
  pointer-events: none;
}

/* laisse de l'espace interne pour que le bouton ne soit pas posé sur les cartes */
#black-friday-carousel,
#flash-sale-carousel,
#immo-business-carousel,
#normal-sale-carousel {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.products-carousel {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

/* =========================
   FIX BADGES / DISPONIBLE
   ========================= */

.product-card,
.business-card,
.banner-carousel2 .carousel-track2>*,
.products-carousel>* {
  position: relative;
  overflow: hidden;
}

.badge {
  position: absolute;
  left: 10px;
  right: auto;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

/* empilement propre */
.badge.black-friday {
  top: 10px;
  background: rgba(0, 0, 0, .88);
  color: #ffffff !important;
}

.badge.flash-sale {
  top: 10px;
  background: linear-gradient(180deg, #1e63d6, #154fb5);
  color: #ffffff !important;
}

.badge.immo-business {
  top: 10px;
  background: linear-gradient(180deg, #1e63d6, #154fb5);
  color: #ffffff !important;
}

.badge.promo-blink {
  top: 44px;
  background: #154fb5;
  color: #ffffff !important;
}

.badge.best-seller {
  top: 44px;
  left: 120px;
  background: #f59e0b;
  color: #ffffff !important;
}

.badge.in,
.badge.out {
  top: 78px;
  background: rgba(10, 18, 34, .92);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, .18);
}

.badge.out {
  background: rgba(153, 27, 27, .95);
  color: #ffffff !important;
}

/* =========================
   FIX IMAGE PUB HAUT
   ========================= */

.home-top-ads__inner {
  min-height: 250px !important;
}

.home-top-ads__track {
  min-height: 250px !important;
}

.home-top-ad {
  height: 250px !important;
}

.home-top-ad__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1117;
}

.home-top-ad__image,
.home-top-ad__video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  /* image entière */
  object-position: center center !important;
  background: #0d1117;
}

/* overlay un peu plus léger pour ne pas casser la pub */
.home-top-ad__overlay {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .36) 0%,
      rgba(0, 0, 0, .18) 38%,
      rgba(0, 0, 0, .06) 100%) !important;
}

/* =========================
   FIX MOBILE / TABLETTE
   ========================= */

@media (max-width: 768px) {

  #black-friday-carousel,
  #flash-sale-carousel,
  #immo-business-carousel,
  #normal-sale-carousel,
  .products-carousel {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }

  .carousel-btn,
  .btn-left,
  .btn-right {
    width: 44px !important;
    height: 44px !important;
    font-size: 28px !important;
  }

  .carousel-btn.prev,
  .btn-left {
    left: 6px !important;
  }

  .carousel-btn.next,
  .btn-right {
    right: 6px !important;
  }

  .home-top-ads__inner,
  .home-top-ads__track,
  .home-top-ad {
    min-height: 180px !important;
    height: 180px !important;
  }

  .badge {
    font-size: 11px;
    min-height: 24px;
    padding: 4px 8px;
  }

  .badge.promo-blink,
  .badge.best-seller {
    top: 40px;
  }

  .badge.in,
  .badge.out {
    top: 70px;
  }

  .badge.best-seller {
    left: 100px;
  }
}

/* =========================
   BADGE DISPONIBLE EN BAS
========================= */

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

/* bas de carte */
.product-bottom {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

/* badge stock */
.stock {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 800;
  color: #fff;
}

.stock.in {
  background: #0d1117;
}

.stock.out {
  background: red;
}

.product-card {
  max-width: 230px;
  border-radius: 18px;
  overflow: hidden;
}

/* image plus compacte */
.product-card .img-wrap {
  height: 160px;
}

/* réduire espaces */
.product-info {
  padding: 10px 8px;
}

.product-info h4 {
  font-size: 14px;
  margin: 6px 0;
}

.price-box {
  margin: 4px 0;
}

/* stock plus compact */
.low-stock {
  font-size: 11px;
}

.badge {
  position: relative;
  display: inline-block;
  margin: 4px;
  font-size: 11px;
}

/* =========================
   BADGE ETOILE ULTRA LUXE
   ========================= */

.product-card {
  position: relative;
  overflow: hidden;
}

.badge.star-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(3px);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: starLuxuryPulse 0.9s infinite alternate ease-in-out;
}

.star-badge__icon {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.star-badge__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.35;
  animation: starLuxuryRing 1.1s infinite ease-out;
}

/* BLACK FRIDAY = rouge luxe */
.badge.star-badge.black-friday {
  background: radial-gradient(circle at 30% 30%, #ff6b6b 0%, #d90429 45%, #7f0000 100%);
  color: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 14px rgba(217, 4, 41, 0.70),
    0 10px 22px rgba(127, 0, 0, 0.35);
}

/* VENTE FLASH = bleu luxe */
.badge.star-badge.flash-sale {
  background: radial-gradient(circle at 30% 30%, #6ec6ff 0%, #246dc9 45%, #154fb5 100%);
  color: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 14px rgba(36, 109, 201, 0.70),
    0 10px 22px rgba(21, 79, 181, 0.35);
}

@keyframes starLuxuryPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.16);
    opacity: 0.78;
  }
}

@keyframes starLuxuryRing {
  0% {
    transform: scale(0.85);
    opacity: 0.55;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* =========================
   FIX AUTO-DEFILEMENT CAROUSELS HOME
   ========================= */

/* le JS doit scroller le track lui-même */
#black-friday-carousel .carousel-track,
#flash-sale-carousel .carousel-track2,
#immo-business-carousel .carousel-track2,
#normal-sale-carousel .carousel-track2 {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch;
}

#black-friday-carousel .carousel-track::-webkit-scrollbar,
#flash-sale-carousel .carousel-track2::-webkit-scrollbar,
#immo-business-carousel .carousel-track2::-webkit-scrollbar,
#normal-sale-carousel .carousel-track2::-webkit-scrollbar {
  display: none !important;
}

/* important : on coupe l’ancienne animation CSS
   sinon elle se bat contre le JS */
#black-friday-carousel .carousel-track {
  animation: none !important;
}

/* on garde les produits sur une seule ligne */
#black-friday-carousel .carousel-track>*,
#flash-sale-carousel .carousel-track2>*,
#immo-business-carousel .carousel-track2>*,
#normal-sale-carousel .carousel-track2>* {
  flex: 0 0 170px !important;
}

/* =========================
   SCROLL MANUEL MOBILE + SNAP
   ========================= */

#black-friday-carousel .carousel-track,
#flash-sale-carousel .carousel-track2,
#immo-business-carousel .carousel-track2,
#normal-sale-carousel .carousel-track2,
.products-carousel {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-x !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

#black-friday-carousel .carousel-track::-webkit-scrollbar,
#flash-sale-carousel .carousel-track2::-webkit-scrollbar,
#immo-business-carousel .carousel-track2::-webkit-scrollbar,
#normal-sale-carousel .carousel-track2::-webkit-scrollbar,
.products-carousel::-webkit-scrollbar {
  display: none;
}

#black-friday-carousel .carousel-track>*,
#flash-sale-carousel .carousel-track2>*,
#immo-business-carousel .carousel-track2>*,
#normal-sale-carousel .carousel-track2>*,
.products-carousel>* {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex: 0 0 170px;
}

/* très important pour éviter le conflit avec l'ancienne animation CSS */
#black-friday-carousel .carousel-track {
  animation: none !important;
}

/* mobile */
@media (max-width: 768px) {

  #black-friday-carousel .carousel-track>*,
  #flash-sale-carousel .carousel-track2>*,
  #immo-business-carousel .carousel-track2>*,
  #normal-sale-carousel .carousel-track2>*,
  .products-carousel>* {
    flex: 0 0 156px !important;
    min-width: 156px !important;
    max-width: 156px !important;
  }
}

/* =========================
   SEO CONTENT PROPRE & LUXE
   ========================= */

.seo-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.seo-box {
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 30px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* TITRE PRINCIPAL */
.seo-box h1 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0d1117;
}

/* SOUS TITRES */
.seo-box h2 {
  font-size: 18px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #154fb5;
}

/* TEXTE */
.seo-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .seo-box {
    padding: 20px;
  }

  .seo-box h1 {
    font-size: 20px;
  }

  .seo-box h2 {
    font-size: 16px;
  }
}