/* =====================================================================
   ZNIKA — personnalisations design (chargé APRÈS styles.css)
   Toutes les retouches demandées vivent ici, pour rester faciles à suivre.
   ===================================================================== */

/* --- 1. Police : Sunbird remplacée par Handlee (auto-hébergée) --- */
@font-face {
  font-family: "Sunbird";
  src: url("fonts/Handlee-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- 2. Retours à la ligne plus cohérents --- */
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* --- 3. Titres légèrement réduits --- */
.coverHero h1 { font-size: clamp(2.5rem, 5.2vw, 4.6rem); }
.pageHero h1 { font-size: clamp(1.95rem, 3.4vw, 3.4rem); }
.introGrid h2, .aboutBand h2, .sectionHeader h2 { font-size: clamp(1.65rem, 3vw, 2.9rem); }
.testimonialBand h2 { font-size: clamp(1.85rem, 3.4vw, 3.3rem); }
.trustedLogoHeader h2 { font-size: clamp(1.75rem, 3vw, 2.9rem); }

/* --- 4. Vidéo en fond du héros de la homepage --- */
video.coverHeroImage { object-fit: cover; width: 100%; height: 100%; object-position: center; }

/* --- 5. Héros immersif des pages Destinations --- */
.destHero { position: relative; display: flex; align-items: flex-end; min-height: clamp(340px, 52vh, 520px); padding: clamp(30px, 5vw, 68px) max(20px, calc((100vw - 1180px) / 2)); overflow: hidden; }
.destHeroImg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.destHero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(1,2,40,0.78) 0%, rgba(1,2,40,0.20) 55%, rgba(1,2,40,0.42) 100%); }
.destHeroText { position: relative; z-index: 2; max-width: 780px; color: #fff; }
.destHeroText .eyebrow { color: var(--yellow); }
.destHeroText h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.02; margin: 0.12em 0 0.28em; }
.destHeroText p:not(.eyebrow) { color: rgba(255,255,255,0.94); font-size: clamp(1.02rem, 1.7vw, 1.24rem); max-width: 640px; }

/* --- 6. Cartes : infos + bouton sur l'image --- */
.circuitCard { box-shadow: 0 14px 34px rgba(1,2,147,0.08); }
.circuitCard .imagePanel { position: relative; display: block; }
.circuitCard .imagePanel img { aspect-ratio: 4 / 3.3; }
.cardCta { position: absolute; top: 12px; right: 12px; z-index: 3; background: #fff; color: var(--blue); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.02em; padding: 9px 15px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0,0,0,0.20); transition: background 0.15s, color 0.15s, transform 0.15s; }
.cardCta:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.cardMeta { position: absolute; left: 12px; bottom: 12px; z-index: 2; display: flex; flex-wrap: wrap; gap: 7px; }
.cardMeta span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; padding: 6px 11px; border-radius: 999px; color: #fff; background: rgba(1,2,69,0.74); backdrop-filter: blur(4px); }
.cardMeta .cardPrice { background: var(--orange); }
.circuitCard .metaLine { display: none; }
.cardBody { padding: 20px 20px 22px; gap: 2px; }
.cardBody h2 { font-size: 1.55rem; line-height: 1.05; }
.cardBody h2 a { color: inherit; text-decoration: none; }
.cardBody h3 { color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.cardBody p { color: var(--muted); }

/* --- 7. Sidebar sticky sans scroll interne --- */
.quoteSidebar { position: sticky; top: 92px; align-self: start; }
.advisorSidebar { max-height: none; overflow: visible; }

/* --- 8. « Autres expériences » : plus léger --- */
.discoverBlock { margin-top: 46px; padding: 0; background: none; color: var(--ink); border-radius: 0; overflow: visible; }
.discoverBlock h2 { color: var(--ink); }
.discoverRail { grid-auto-columns: minmax(230px, 30%); gap: 20px; padding-bottom: 6px; }
.miniProductCard { min-height: 320px; border: 0; border-radius: 12px; box-shadow: 0 12px 30px rgba(1,2,147,0.10); }

/* --- 9. Boutons : arrondi 8px partout --- */
.headerCta, .actions a, .primaryLink, .secondaryLink, .formActions a,
.experienceHeroActions a, .experienceHeroActions a:first-child,
.filterBar button, .choiceGrid button, .cardMeta span,
.whatsappButton, .whatsappButton.compact,
.quoteSidebar .primaryLink, .quoteSidebar .secondaryLink { border-radius: 8px; }

/* --- 10. Liens transformés en boutons (léger fond orange + flèche →) --- */
.textLink {
  min-height: auto;
  display: inline-flex; align-items: center; gap: 7px;
  width: fit-content;
  padding: 11px 17px;
  border: 1px solid rgba(255,106,8,0.28);
  border-radius: 8px;
  background: rgba(255,106,8,0.10);
  color: var(--orange);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.textLink::after { content: "→"; font-weight: 700; transition: transform 0.15s; }
.textLink:hover { background: var(--orange); color: #fff; }
.textLink:hover::after { transform: translateX(3px); }

.cardCta { border-radius: 8px; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.cardCta::after { content: "→"; transition: transform 0.15s; }
.cardCta:hover { background: var(--orange); color: #fff; }
.cardCta:hover::after { transform: translateX(2px); }

/* --- 11. Section Avis : logo Google Reviews --- */
.googleReviewsLogo { display: block; width: 210px; max-width: 62%; height: auto; margin-bottom: 20px; }

/* --- 12. Bloc « marque algérienne » : arrondi 20px + placeholder image à droite --- */
.aboutBand { border-radius: 20px; overflow: hidden; }
.aboutBandRight { display: grid; gap: 22px; align-content: start; }
.imgPlaceholder {
  width: 100%; aspect-ratio: 16 / 10; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.10) 0 14px, rgba(255,255,255,0.03) 14px 28px);
  border: 1px dashed rgba(255,255,255,0.5);
}
.imgPlaceholder span { color: rgba(255,255,255,0.82); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; }

/* --- 13. Section Avis : logo Google Reviews à droite --- */
.reviewsRight { display: grid; gap: 22px; align-content: start; }
.reviewsRight .googleReviewsLogo { margin: 0 0 0 auto; }

/* --- 14. Boutons alignés sur le site officiel Znika (pilule + orange/bleu/verre) --- */
.headerCta, .actions a, .primaryLink, .secondaryLink, .formActions a,
.experienceHeroActions a, .experienceHeroActions a:first-child,
.filterBar button, .choiceGrid button, .cardCta, .cardMeta span,
.whatsappButton, .whatsappButton.compact, .textLink,
.quoteSidebar .primaryLink, .quoteSidebar .secondaryLink { border-radius: 9999px; }

.primaryLink, .headerCta, .actions a:first-child, .formActions a:first-child {
  background: var(--orange); color: #fff; border: 0;
}
.primaryLink:hover, .headerCta:hover, .actions a:first-child:hover, .formActions a:first-child:hover { filter: brightness(1.06); }

.secondaryLink, .formActions a:nth-child(2) {
  background: rgba(255,255,255,0.92); color: var(--blue); border: 1px solid rgba(1,2,147,0.28);
}

.actions a:nth-child(2), .experienceHeroActions a:not(:first-child) {
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.45); backdrop-filter: blur(4px);
}

/* --- 15. Refonte page À propos --- */
.aboutStory { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: start; border-top: 1px solid var(--line); }
.aboutStoryBody { display: grid; gap: 18px; }
.aboutStoryBody .lead { font-size: clamp(1.2rem,1.9vw,1.5rem); color: var(--ink); font-weight: 600; line-height: 1.4; }
.aboutStoryBody p:not(.lead) { color: var(--muted); }
.valuesGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.valuesGrid article { padding: 26px 24px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(1,2,147,0.06); }
.valueNum { display: block; font-family: "Sunbird","Source Sans Pro",sans-serif; font-size: 1.7rem; color: var(--orange); margin-bottom: 10px; }
.valuesGrid h3 { font-size: 1.25rem; margin-bottom: 8px; }
.valuesGrid p { color: var(--muted); }
.commitGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.commitGrid article { padding: 24px 26px; border-left: 3px solid var(--orange); background: rgba(255,255,255,0.65); border-radius: 0 12px 12px 0; }
.commitGrid h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--blue); }
.commitGrid p { color: var(--muted); }
.aboutTeam .teamGrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; max-width: 780px; }
.aboutTeam .teamGrid article { text-align: left; }
.aboutTeam .teamGrid img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 16px; margin-bottom: 14px; }
.aboutTeam .teamGrid h3 { font-size: 1.35rem; margin-bottom: 6px; }
.aboutTeam .teamGrid p { color: var(--muted); }
.aboutCta { text-align: center; }
.aboutCta h2 { margin-bottom: 12px; }
.aboutCta p { color: var(--muted); max-width: 620px; margin: 0 auto 24px; }
.aboutCtaActions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 1080px) { .valuesGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .aboutStory, .valuesGrid, .commitGrid, .aboutTeam .teamGrid { grid-template-columns: 1fr; } }

/* --- 16. Héros destination/À propos : hauteur + titre --- */
.destHero { min-height: clamp(400px, 58vh, 580px); padding-top: 108px; }
.destHeroText h1 { font-size: clamp(2.1rem, 4.2vw, 3.7rem); }

/* --- 17. Habillage FAQ + Contact (charte) --- */

/* Placeholder photo réutilisable */
.photoPlaceholder {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: 18px; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(1,2,147,0.03) 0 12px, rgba(1,2,147,0.06) 12px 24px);
  border: 1.5px dashed rgba(1,2,147,0.22);
  display: grid; place-items: center;
}
.photoPlaceholder span {
  font-family: "Sunbird","Source Sans Pro",sans-serif;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(1,2,147,0.45);
  padding: 8px 16px; border-radius: 9999px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(2px);
}
.faqLayout {
  display: grid; grid-template-columns: minmax(0,1fr) 340px;
  gap: clamp(28px,4vw,56px); align-items: start;
}
.faqMain { display: grid; gap: 14px; }
.faqList .faqItem, .faqMain .faqItem {
  border: 1px solid var(--line); border-radius: 16px; background: #fff;
  overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.faqMain .faqItem:hover { box-shadow: 0 12px 30px rgba(1,2,147,0.07); }
.faqMain .faqItem.open { border-color: rgba(233,98,35,0.55); box-shadow: 0 16px 38px rgba(233,98,35,0.10); }
.faqMain .faqQuestion {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: "Sunbird","Source Sans Pro",sans-serif; font-size: 1.05rem; color: var(--blue);
}
.faqMain .faqItem.open .faqQuestion { color: var(--orange); }
.faqMain .faqQuestion > span:last-child {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9999px;
  display: grid; place-items: center; font-size: 1.3rem; line-height: 1;
  background: rgba(1,2,147,0.06); color: var(--blue);
}
.faqMain .faqItem.open .faqQuestion > span:last-child { background: var(--orange); color: #fff; }
.faqMain .faqAnswer { padding: 0 24px 22px; }
.faqMain .faqAnswer p { color: var(--muted); margin: 0; }
.faqAside { position: sticky; top: 96px; }
.faqAsideCard {
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff;
  box-shadow: 0 20px 46px rgba(1,2,147,0.08);
}
.faqAsideCard .photoPlaceholder { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); aspect-ratio: 5/3; }
.faqAsideBody { padding: 24px 24px 26px; display: grid; gap: 10px; }
.faqAsideBody h3 { font-size: 1.3rem; color: var(--blue); margin: 0; }
.faqAsideBody p:not(.eyebrow) { color: var(--muted); margin: 0; }
.faqAsideActions { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.richContact {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px,5vw,60px); align-items: start;
  padding-top: clamp(120px,16vh,180px); padding-bottom: clamp(50px,8vh,90px);
}
.contactIntro { display: grid; gap: 20px; }
.contactIntro h1 { font-size: clamp(2rem,3.6vw,3rem); line-height: 1.08; }
.contactLead { color: var(--muted); font-size: 1.08rem; }
.contactInfo { display: grid; gap: 10px; padding-top: 6px; }
.contactInfoList { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contactInfoList li {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.ciLabel {
  flex: 0 0 96px; font-family: "Sunbird","Source Sans Pro",sans-serif;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
}
.contactInfoList a { color: var(--ink); text-decoration: none; }
.contactInfoList a:hover { color: var(--orange); }
.contactPhoto { aspect-ratio: 16/7; margin-top: 4px; }
.richContact .form {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(24px,3vw,34px); box-shadow: 0 22px 50px rgba(1,2,147,0.08);
  display: grid; gap: 18px;
}
.richContact .formIntro { color: var(--muted); margin: 0 0 2px; }
.richContact .form label {
  display: grid; gap: 8px; font-family: "Sunbird","Source Sans Pro",sans-serif;
  font-size: 0.9rem; color: var(--blue);
}
.richContact .form select, .richContact .form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; font-family: inherit; font-size: 1rem; color: var(--ink);
}
.richContact .form select:focus, .richContact .form textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,98,35,0.14);
}
.richContact .form textarea { min-height: 130px; resize: vertical; }
@media (max-width: 900px) {
  .faqLayout, .richContact { grid-template-columns: 1fr; }
  .faqAside { position: static; }
  .faqAsideCard .photoPlaceholder { aspect-ratio: 16/8; }
}

/* --- 17b. Contact : contraste sur fond bleu foncé --- */
.contactLead { color: rgba(255,253,221,0.82); }
.contactInfo .eyebrow { color: var(--orange); }
.contactInfoList li { border-bottom: 1px solid rgba(255,255,255,0.16); }
.ciLabel { color: rgba(255,255,255,0.55); }
.contactInfoList a { color: var(--cream); }
.contactInfoList a:hover { color: var(--orange); }
.contactPhoto {
  border: 1.5px dashed rgba(255,255,255,0.3);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.09) 12px 24px);
}
.contactPhoto span { color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.12); }

/* --- 18. Intro de section (accueil : destinations / sélection) --- */
.sectionHeader .sectionIntro { color: var(--muted); max-width: 640px; margin-top: 10px; font-size: 1.05rem; }

/* --- 19. Page Pro : intro unique + grille de services (titres) --- */
.proServicesIntro { color: var(--muted); max-width: 780px; margin: 0 auto clamp(26px,4vw,44px); font-size: 1.12rem; line-height: 1.6; text-align: center; }
.proServicesSection .professionalGrid article { text-align: center; padding: 26px 22px; }
.proServicesSection .professionalGrid article h2 { margin: 0; font-size: 1.15rem; color: var(--blue); }

/* --- 20. Points visités (produit) + Expériences d'une journée --- */
.pointsVisitedBlock .pvGrid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; margin-top: 8px; }
.pvGrid article { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.pvGrid h3 { font-size: 1.1rem; color: var(--blue); margin: 0 0 6px; }
.pvGrid p { color: var(--muted); margin: 0; }
.dayTripSection .sectionIntro { color: var(--muted); max-width: 680px; margin-top: 10px; font-size: 1.05rem; }
.dayTripGrid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 22px; margin-top: 26px; }
.dayTripCard { display: flex; flex-direction: column; gap: 14px; padding: 26px 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 16px 40px rgba(1,2,147,0.06); }
.dayTripHead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.dayTripHead h3 { font-size: 1.35rem; color: var(--blue); margin: 0; }
.dayTripPrice { flex: 0 0 auto; font-family: "Sunbird","Source Sans Pro",sans-serif; font-size: .95rem; color: var(--orange); white-space: nowrap; }
.dayTripCard ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; color: var(--ink); }
.dayTripCard ul li { line-height: 1.45; }
.dayTripIncluded { color: var(--muted); font-size: .92rem; margin: 0; padding-top: 4px; border-top: 1px solid var(--line); }
.dayTripCard .primaryLink { align-self: flex-start; margin-top: auto; }

/* --- 21. Bouton WhatsApp flottant + cartes entièrement cliquables --- */
.cardImageLink { display: block; width: 100%; height: 100%; }
.circuitCard .imagePanel { position: relative; }
.circuitCard .cardCta, .circuitCard .cardMeta { z-index: 2; }
.waWidget { position: fixed; right: 20px; bottom: 20px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.waFab { width: 60px; height: 60px; border-radius: 9999px; border: 0; background: #25D366; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.22); cursor: pointer; display: grid; place-items: center; transition: transform .15s ease, box-shadow .15s ease; }
.waFab:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.28); }
.waFab .whatsappIcon svg { width: 34px; height: 34px; }
.waPanel { width: 320px; max-width: calc(100vw - 40px); background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.waPanel[hidden] { display: none; }
.waHeader { display: flex; align-items: center; gap: 10px; background: #075E54; color: #fff; padding: 14px 16px; }
.waHeadIcon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9999px; background: rgba(255,255,255,0.15); }
.waHeadIcon .whatsappIcon svg { width: 24px; height: 24px; }
.waHeadText { display: flex; flex-direction: column; line-height: 1.2; }
.waHeadText strong { font-size: 1rem; }
.waHeadText span { font-size: .8rem; opacity: .85; }
.waClose { margin-left: auto; background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 4px; }
.waBody { padding: 16px; background: #ECE5DD; display: grid; gap: 12px; }
.waBubble { background: #fff; border-radius: 12px; padding: 12px 14px; font-size: .92rem; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.08); margin: 0; }
.waField { display: grid; gap: 6px; font-size: .85rem; color: #333; font-family: "Sunbird","Source Sans Pro",sans-serif; }
.waField input { padding: 11px 13px; border: 1px solid #c7c7c7; border-radius: 10px; font-size: 1rem; font-family: inherit; }
.waField input:focus { outline: none; border-color: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,0.2); }
.waStart { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; border: 0; border-radius: 10px; padding: 12px; font-size: .95rem; font-weight: 600; cursor: pointer; font-family: "Sunbird","Source Sans Pro",sans-serif; }
.waStart:hover { background: #1ebe5a; }
.waStart .whatsappIcon svg { width: 20px; height: 20px; }
@media (max-width: 520px) { .waWidget { right: 14px; bottom: 14px; } .waFab { width: 54px; height: 54px; } }

/* --- 21b. Centrage icône WhatsApp dans le FAB --- */
.waFab .whatsappIcon { display: grid; place-items: center; line-height: 0; }
.waFab .whatsappIcon svg { display: block; }

/* --- 21c. Centrage strict icône WhatsApp FAB --- */
.waFab { padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.waFab .whatsappIcon { width: 34px !important; height: 34px !important; margin: 0 !important; display: flex !important; align-items: center; justify-content: center; line-height: 0; }
.waFab .whatsappIcon svg { width: 34px !important; height: 34px !important; display: block; }

/* --- 22. Détails du circuit : pastille jour + pins + connecteur route --- */
.accordionList summary { display: flex !important; grid-template-columns: none !important; align-items: center; flex-wrap: wrap; gap: 13px; min-height: 0 !important; padding: 18px 0 !important; }
.accordionList summary .dayPill { flex: 0 0 auto; background: var(--blue); color: #fff !important; font-weight: 700; padding: 6px 15px; border-radius: 9999px; font-size: .88rem; white-space: nowrap; }
.accordionList summary .dayRoute { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.accordionList summary .geoPlace { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-weight: 700; white-space: nowrap; }
.accordionList summary .geoPin { width: 17px; height: 17px; color: var(--orange); flex: 0 0 auto; }
.accordionList summary .routeConnector { display: inline-flex; align-items: center; gap: 6px; }
.accordionList summary .routeDash { width: 34px; height: 0; border-top: 2px dotted var(--orange); }
.accordionList summary .routeArrow { width: 20px; height: 12px; color: var(--orange); flex: 0 0 auto; }
.accordionList summary .daySummaryText { color: var(--muted); font-weight: 500; }
.accordionList summary .dayChevron { margin-left: auto; width: 28px; height: 28px; border-radius: 9999px; background: rgba(1,2,147,0.06); color: var(--blue); display: grid; place-items: center; flex: 0 0 auto; font-weight: 700; }
.accordionList summary .dayChevron::before { content: "+"; font-size: 1.15rem; line-height: 1; }
.accordionList details[open] summary .dayChevron::before { content: "\2013"; }
.accordionList p { margin: 2px 0 22px 0 !important; max-width: 900px; }
@media (max-width: 640px) { .accordionList summary .dayChevron { margin-left: 0; } }

/* --- 22b. Connecteur route en dashed --- */
.accordionList summary .routeDash { border-top-style: dashed; width: 38px; }

/* --- 23. Carrousels : pas de scrollbar + flèches rondes orange ; inversion polices carte --- */
.discoverRail, .photoRail { scrollbar-width: none !important; padding-bottom: 0 !important; }
.discoverRail::-webkit-scrollbar, .photoRail::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
.carouselControls button { border-radius: 9999px !important; background: var(--orange) !important; border-color: var(--orange) !important; color: #fff !important; box-shadow: 0 6px 16px rgba(233,98,35,0.30); transition: background .15s ease, transform .15s ease; }
.carouselControls button:hover { background: #cf541b !important; color: #fff !important; transform: translateY(-1px); }
.miniProductCard strong { font-family: inherit !important; }
.miniProductCard span { font-family: Sunbird, "Source Sans Pro", sans-serif !important; }

/* --- 23b. Flèches carrousel sur les côtés (gauche/droite), plus coupées par overflow --- */
.carouselControls { position: static !important; }
.carouselControls button { position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; z-index: 6; width: 46px !important; height: 46px !important; font-size: 1.5rem !important; }
.carouselControls button[data-scroll="-1"] { left: 12px; right: auto; }
.carouselControls button[data-scroll="1"] { right: 12px; left: auto; }
.carouselControls button:hover { transform: translateY(-50%) scale(1.06) !important; }

/* --- 24. Pastille nombre de jours à droite du titre "Détails du circuit" --- */
.programHeader { align-items: center !important; }
.dayCountPill { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; background: rgba(1,2,147,0.10); color: var(--blue); font-family: "Sunbird","Source Sans Pro",sans-serif; font-weight: 700; font-size: .95rem; padding: 8px 16px; border-radius: 9999px; white-space: nowrap; }
.dayCountPill .dayCountIcon { width: 18px; height: 18px; flex: 0 0 auto; }

/* --- 24b. Pastille jours : forcer bleu (override .programHeader span) --- */
.programHeader .dayCountPill, .programHeader .dayCountPill span { color: var(--blue) !important; text-transform: none !important; margin-bottom: 0 !important; letter-spacing: 0 !important; }

/* --- 25. About band (accueil) : texte à gauche sous le titre, image à droite --- */
.aboutBandText { display: grid; gap: 16px; align-content: start; }
.aboutBandText h2 { margin: 0; }
.aboutBandText p:not(.eyebrow) { color: var(--cream); margin: 6px 0 0; max-width: 48ch; }
.aboutBandRight { align-content: stretch; }
.aboutBand .imgPlaceholder { height: 100%; min-height: 260px; }
