/* PAGE ACHETER — HERO + TABS */
.bloc__hero {
  position: relative;
  width: 100%;
  height: calc(94vh - var(--header-current-height, 138px));
  min-height: 28rem;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
.bloc__hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bloc__hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in;
  will-change: transform;
  transform-origin: top center;
}
/* .bloc__hero-overlay{ position:absolute; inset:0; background:rgba(0,0,0,.2); } */

/* ——— Tabs (logic refactor 2025) ——— */
.luxury__tabs,
.luxury__tabs {
  position: absolute;
  left: 50%;
  bottom: 1.625rem;
  transform: translateX(-50%);   /* Centre parfaitement */
  
  display: inline-flex;          /* Taille = contenu */
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;

  padding: 1.125rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.1);
  
  white-space: nowrap;           /* Empêche l’étirement vertical */
}

.luxury__tab,
.luxury__tabs-link {
  min-height: 2.4375rem; /* 39px */
  padding: 0.0625rem clamp(1rem, 4.5vw, 3.34375rem); /* 1px 16→53.5px */
  border-radius: var(--radius-sm); /* 🔒 conserve */
  border: 0;
  background: #fff;
  color: var(--color-text);
  font: var(--cta-rollover-primary);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.luxury__tab:hover,
.luxury__tabs-link:hover {
  background: #f6f6f6;
  color: var(--color-brand);
}
.luxury__tab.is-active,
.luxury__tabs-link.is-active {
  background: var(--color-brand);
  color: #fff;
}
