* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

/* ── Banner shell ── */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 80px;
}

/* jean haut / bois centre / jean bas – pas de repeat pour éviter débordement
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("https://staging.maison123.com/on/demandware.static/-/Library-Sites-123_SharedLibrary/default/UI/audrey-lombard/texture-jean-blanc.jpg"),
    url("https://staging.maison123.com/on/demandware.static/-/Library-Sites-123_SharedLibrary/default/UI/audrey-lombard/texture-bois.jpg"),
    url("https://staging.maison123.com/on/demandware.static/-/Library-Sites-123_SharedLibrary/default/UI/audrey-lombard/texture-jean-blanc.jpg");
  background-size: 100% 15px, 100% 50px, 100% 15px;
  background-position: top center, center center, bottom center;
  background-repeat: no-repeat;
} */

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#f6f2ea, #f6f2ea),
    url("https://staging.maison123.com/on/demandware.static/-/Library-Sites-123_SharedLibrary/default/UI/audrey-lombard/texture-bois.jpg"),
    linear-gradient(#f6f2ea, #f6f2ea);
  background-size: 100% 15px, 100% 50px, 100% 15px;
  background-position: top center, center center, bottom center;
  background-repeat: no-repeat;
}

/* Les divs texture/grain ne servent plus */
.banner-texture,
.banner-grain {
  display: none;
}

/* fine ligne en haut seulement */
.banner-border {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

/* ── Content grid : brand gauche | countdown centré | rdv droite ── */
.banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 36px;
}

/* Brand name – collé à gauche */
.brand {
  font-size: 12px;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  flex: 1;
}

/* Countdown – centré absolument */
.countdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}

.cd-number {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 500;
}

/* Divider dots between units */
.cd-sep {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* Rendez-vous text – collé à droite */
.rdv {
  font-size: 10px;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  flex: 1;
  text-align: right;
}


/* ── MOBILE ── */
@media (max-width: 768px) {

  .banner {
    height: 120px;
  }

  .banner::before {
    background-size: 100% 15px, 100% 90px, 100% 15px;
  }

  .banner-inner {
    height: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
  }

  /* Brand centré en haut */
  .brand {
    flex: none;
    text-align: center;
    font-size: 10px;
    letter-spacing: 3px;
  }

  /* Countdown centré, repositionné en flux normal */
  .countdown {
    position: static;
    transform: none;
    gap: 24px;
  }

  .cd-number {
    font-size: 20px;
  }

  .cd-label {
    font-size: 9px;
  }

  /* Rendez-vous caché sur mobile */
  .rdv {
    display: none;
  }

  /* Points séparateurs cachés sur mobile */
  .cd-sep {
    display: none;
  }
}


/* ── TABLETTE ── */
@media (min-width: 769px) and (max-width: 1024px) {

  .banner {
    height: 68px;
    align-items: center;
  }

  .banner::before {
    background-size: 100% 14px, 100% 40px, 100% 14px;
  }

  .banner-inner {
    height: 68px;
    align-items: center;
    padding: 0 20px;
  }

  .brand {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .countdown {
    gap: 18px;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .cd-number {
    font-size: 12px;
  }

  .cd-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .rdv {
    font-size: 9px;
    letter-spacing: 2px;
  }
}