/* Boutique Boulangerie — AZON DODE (page vitrine) */
:root {
  --boul-bordeaux: #6e1516;
  --boul-bordeaux-dark: #470c0d;
  --boul-gold: #e0a12e;
  --boul-gold-light: #f4c455;
  --boul-cream: #fff9f0;
  --boul-shadow: 0 8px 32px rgba(110, 21, 22, .1);
}

.boutique-page {
  background: var(--boul-cream);
}

/* Hero */
.boutique-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.boutique-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boutique-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(71, 12, 13, .35) 0%, rgba(71, 12, 13, .88) 100%);
}
.boutique-hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 56px;
  max-width: 720px;
}
.boutique-hero__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .35));
}
.boutique-page .header__logo--boutique {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}
.boutique-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--boul-gold-light);
  margin-bottom: 18px;
  opacity: .95;
}
.boutique-hero__back:hover { opacity: 1; text-decoration: underline; }
.boutique-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.boutique-hero__title span { color: var(--boul-gold-light); }
.boutique-hero__desc {
  font-size: 1rem;
  line-height: 1.75;
  opacity: .92;
  max-width: 560px;
}

/* Locations */
.boutique-locations {
  padding: 56px 0 40px;
}
.boutique-locations__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}
.boutique-locations__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--boul-bordeaux-dark);
  margin-bottom: 8px;
}
.boutique-locations__head p {
  color: var(--gray-600);
  font-size: .92rem;
}
.boutique-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.boutique-location-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--boul-shadow);
  border: 1.5px solid rgba(110, 21, 22, .08);
}
.boutique-location-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.boutique-location-card__body {
  padding: 24px 22px 28px;
  text-align: center;
}
.boutique-location-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(110, 21, 22, .08);
  color: var(--boul-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
}
.boutique-location-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--boul-bordeaux-dark);
  margin-bottom: 4px;
}
.boutique-location-card__area {
  font-size: .88rem;
  color: var(--boul-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.boutique-location-card__hours {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Photo showcase */
.boutique-showcase {
  padding: 24px 0 56px;
}
.boutique-showcase__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}
.boutique-showcase__head h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--boul-bordeaux-dark);
  margin-bottom: 10px;
}
.boutique-showcase__head p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.65;
}
.boutique-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.boutique-showcase__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--boul-shadow);
}
.boutique-showcase__more {
  text-align: center;
  margin-top: 28px;
  font-size: .9rem;
  font-weight: 600;
}
.boutique-showcase__more a {
  color: var(--boul-bordeaux);
}
.boutique-showcase__more a:hover {
  color: var(--boul-bordeaux-dark);
  text-decoration: underline;
}

/* Info bar */
.boutique-info {
  background: var(--boul-bordeaux);
  color: #fff;
  padding: 18px 0;
}
.boutique-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.boutique-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .86rem;
  line-height: 1.5;
}
.boutique-info__item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--boul-gold-light);
}
.boutique-info__item strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--boul-gold-light);
  margin-bottom: 2px;
}
.boutique-info__item a {
  color: #fff;
  font-weight: 600;
}
.boutique-info__item a:hover { text-decoration: underline; }

/* CTA formation */
.boutique-cta {
  background: linear-gradient(135deg, var(--green-dark), #002613);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.boutique-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.boutique-cta p {
  max-width: 520px;
  margin: 0 auto 24px;
  opacity: .9;
  line-height: 1.7;
}
.boutique-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 768px) {
  .boutique-locations__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .boutique-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .boutique-info__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .boutique-hero__inner { padding-top: 100px; }
}

@media (max-width: 480px) {
  .boutique-showcase__grid {
    grid-template-columns: 1fr;
  }
}
