/* Styles accueil — maquette v2 (complète style.css) */

body.home-page {
  padding-top: var(--nav-h);
}

body.home-page .site-nav {
  height: var(--nav-h);
}

/* Hero + bandeau = un seul écran visible (bandeau collé en bas) */
body.home-page .home-fold {
  height: calc(var(--app-vh) - var(--nav-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

body.home-page .home-hero {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

body.home-page .strip {
  flex: 0 0 auto;
}

body.home-page .hero-title br {
  display: block;
}

/* Strip défilant */
body.home-page .strip {
  overflow: hidden;
  padding: .8rem 0;
}

body.home-page .strip-track {
  display: flex;
  width: max-content;
  animation: scroll-strip 22s linear infinite;
}

body.home-page .strip-track:hover {
  animation-play-state: paused;
}

body.home-page .strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

body.home-page .strip-inner--clone {
  display: flex;
}

@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Bandeau horaires boutique */
.horaires-band {
  background: var(--brun);
  border-left: 4px solid var(--or);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hband-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--or);
  white-space: nowrap;
}

.hband-slots {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hband-slot {
  font-size: .8rem;
  color: rgba(248, 243, 234, .8);
}

.hband-slot-day {
  font-weight: 600;
  color: var(--creme);
}

.hband-divider {
  width: 1px;
  height: 14px;
  background: rgba(196, 154, 60, .25);
}

.hband-note {
  margin-left: auto;
  font-size: .72rem;
  color: rgba(196, 154, 60, .65);
  font-style: italic;
}

body.home-page .ventes-hd {
  margin-bottom: 1.75rem;
}

body.home-page .ventes-note {
  display: none;
}

/* Espace de vente */
.espace-sec {
  background: var(--creme-dk);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.espace-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.espace-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brun);
  margin: 0 0 .75rem;
  line-height: 1.1;
}

.espace-title em {
  font-style: italic;
  color: var(--or);
  font-weight: 400;
}

.espace-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(42, 31, 20, .62);
  font-weight: 300;
  margin: 0 0 1.5rem;
}

.espace-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.espace-card {
  background: var(--blanc);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--or);
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.espace-card-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.espace-card-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brun);
  margin-bottom: .2rem;
}

.espace-card-desc {
  font-size: .78rem;
  line-height: 1.65;
  color: rgba(42, 31, 20, .55);
  margin: 0;
}

/* Retrait — icônes */
.rcard-icon {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  display: block;
}

body.home-page .rcard {
  text-align: left;
  align-items: flex-start;
}

body.home-page .rcard-desc {
  max-width: none;
}

/* Badges ventes (alias maquette) */
.badge-state,
.vrow-act .badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .espace-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .horaires-band {
    gap: 1rem;
  }
  .hband-note {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hband-slots {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .hband-divider {
    display: none;
  }
}
