/* ── RESET PARTIEL ── */
.pdlr-page *, .pdlr-page *::before, .pdlr-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BASE PAGE ── */
.pdlr-page {
  --navy: #0d2233;
  --deep: #091a27;
  --teal: #2a7f6f;

  --gold: #c9a84c;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --slate: #4a5568;
  --soft: #9ca3af;
  --cta: #2f7c8e;
  --pdlr-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 500'%3E%3Crect width='1440' height='500' fill='%23071525'/%3E%3Cpath d='M0,250C360,190 720,310 1080,250C1260,220 1380,245 1440,240L1440,500L0,500Z' fill='rgba(15,55,85,0.55)'/%3E%3Cpath d='M0,300C300,248 600,355 900,300C1100,262 1300,318 1440,300L1440,500L0,500Z' fill='rgba(25,80,110,0.45)'/%3E%3Cpath d='M0,355C220,308 460,405 700,355C940,305 1180,395 1440,355L1440,500L0,500Z' fill='rgba(255,255,255,0.05)'/%3E%3Cpath d='M0,355Q180,333 360,355Q540,377 720,355Q900,333 1080,355Q1260,377 1440,355' fill='none' stroke='rgba(255,255,255,0.09)' stroke-width='2.5'/%3E%3C/svg%3E");
  --gradient-light: linear-gradient(135deg, #d4eaef 0%, #a8d4dc 100%);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Barlow', sans-serif;
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ── EYEBROW ── */
.pdlr-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}

/* ── LABEL ── */
.pdlr-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
  display: block;
}
.pdlr-label-gold { color: var(--gold); }

/* ── TITRE ── */
.pdlr-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.pdlr-title em { font-style: italic; color: var(--teal); opacity: 0.75; }
.pdlr-title-light { color: var(--white); }
.pdlr-title-light em { color: var(--gold); opacity: 1; }

/* ── BOUTONS ── */
.pdlr-btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.pdlr-btn-primary:hover { background: #b8973d; transform: translateY(-2px); }
.pdlr-btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.pdlr-btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* ── SECTIONS ── */
.pdlr-section { padding: 5rem 4rem; }
.pdlr-section-white { background: var(--white); }
.pdlr-section-cream { background: var(--white); }
.pdlr-section-navy  { background: var(--navy); }
.pdlr-section-deep  { background: var(--deep); }

/* ── GRILLE CATALOGUE ── */
.pdlr-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── CARTE CATALOGUE ── */
.pdlr-cat-card {
  background: var(--white);
  border: 1px solid rgba(13,34,51,0.08);
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.pdlr-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,34,51,0.1);
}
.pdlr-cat-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pdlr-cat-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-align: center;
}

/* ── BANDEAU NOTICE ── */
.pdlr-notice {
  background: var(--navy);
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  text-align: center;
}
.pdlr-notice strong {
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 900px) {
  .pdlr-section { padding: 4rem 1.5rem; }
  .pdlr-notice { padding: 1rem 1.5rem; }
  .pdlr-bv-cta, .pdlr-pl-cta, .pdlr-dg-cta, .pdlr-cv-cta, .pdlr-ar-cta { padding: 4rem 1.5rem; }
}

/* ── HERO COMMUN (toutes pages hors accueil) ── */
.pdlr-inner-hero {
  min-height: 42vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdlr-inner-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(37,113,130,0.92) 0%, rgba(37,113,130,0.75) 60%, rgba(37,113,130,0.4) 100%),
    var(--pdlr-wave) center/cover no-repeat;
}
.pdlr-inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 2rem 3.5rem;
  animation: pdlrFadeUp 0.9s ease both;
}
.pdlr-inner-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.pdlr-inner-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

/* ── CTA BAS DE PAGE (boissons, plats, dégustations, conserverie, arrivages) ── */
.pdlr-bv-cta, .pdlr-pl-cta, .pdlr-dg-cta, .pdlr-cv-cta, .pdlr-ar-cta {
  background: var(--navy);
  text-align: center;
  padding: 5rem 4rem;
}
.pdlr-bv-cta h2, .pdlr-pl-cta h2, .pdlr-dg-cta h2, .pdlr-cv-cta h2, .pdlr-ar-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.pdlr-bv-cta p, .pdlr-pl-cta p, .pdlr-dg-cta p, .pdlr-cv-cta p, .pdlr-ar-cta p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.pdlr-bv-cta-btns, .pdlr-pl-cta-btns, .pdlr-dg-cta-btns, .pdlr-cv-cta-btns, .pdlr-ar-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── UTILITAIRES ── */
.pdlr-section-inner { max-width: 1100px; margin: 0 auto; }
.pdlr-section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.pdlr-text-center { text-align: center; }
.pdlr-title--center { text-align: center; }
.pdlr-inline-link {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
}
.pdlr-link-gold {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.pdlr-btn-primary--white { color: var(--white); }

/* ── CTA SOUS-LIENS ── */
.pdlr-cta-more {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.pdlr-cta-more-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}
.pdlr-cta-more-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── MENU CARTE (dégustations, boissons, conserverie) ── */
.pdlr-dg-menu {
  max-width: 1100px;
  margin: 0 auto;
}
.pdlr-dg-menu-head {
  text-align: center;
  margin-bottom: 4rem;
}
.pdlr-dg-menu-head .pdlr-title { margin-bottom: 0; }
.pdlr-dg-menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.pdlr-dg-cat { margin-bottom: 3rem; }
.pdlr-dg-cat-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.25rem;
}
.pdlr-dg-list { list-style: none; }
.pdlr-dg-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(13,34,51,0.06);
}
.pdlr-dg-item:last-child { border-bottom: none; }
.pdlr-dg-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pdlr-dg-item-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
}
.pdlr-dg-item-name em {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}
.pdlr-dg-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(13,34,51,0.18);
  margin-bottom: 3px;
  min-width: 0.75rem;
}
.pdlr-dg-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}
.pdlr-dg-item-allerg {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.1rem;
  font-style: italic;
}
.pdlr-dg-mention {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13,34,51,0.1);
  font-style: italic;
}
@media (max-width: 900px) {
  .pdlr-dg-menu-cols { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .pdlr-dg-item-name { font-size: 0.85rem; }
}

/* ── FOOTER — correctif word-break mobile ── */
/*
 * Astra génère display:grid + justify-content:center sur le menu footer vertical.
 * Sans width explicite, la colonne implicite peut se réduire à min-content et
 * couper les mots en plein milieu. On reset word-break et on force le menu à
 * prendre toute la largeur disponible ; les marges Customizer sont préservées.
 */
@media (max-width: 768px) {
  .site-footer .footer-nav-wrap,
  .site-footer #astra-footer-menu {
    word-break: normal;
    overflow-wrap: normal;
  }
  .site-footer .footer-nav-wrap .astra-footer-mobile-vertical-menu {
    justify-content: flex-start;
    width: 100%;
  }
  .site-footer #astra-footer-menu .menu-item > a {
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
  }
}

/* ── CONTACT ── */
.pdlr-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  color: rgba(255,255,255,0.65);
}
.pdlr-contact-layout p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}
.pdlr-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pdlr-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.pdlr-contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.pdlr-contact-detail div {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.6;
}
.pdlr-page .pdlr-home-map {
  width: 100%;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.pdlr-page .pdlr-home-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .pdlr-inner-hero { min-height: 21vh; }
  .pdlr-contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdlr-contact-layout > * { min-width: 0; }
  .pdlr-page .pdlr-home-map { height: 320px; }
}
@media (max-width: 600px) {
  .pdlr-page .pdlr-home-map { height: 260px; }
}

/* ── ANIMATIONS ── */
@keyframes pdlrFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pdlrTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
