/** Shopify CDN: Minification failed

Line 107:0 Unexpected "}"

**/
/* ============================================
   omoon-destinations.css
   Chargé uniquement sur page.destinations
   ============================================ */

.od-page * { box-sizing: border-box; }

/* HERO */
.od-hero {
  padding: 100px 24px 64px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.od-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 20px;
}
.od-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111;
  margin: 0 0 32px;
}
.od-hero__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* CONTROLS */
.od-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.od-search {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  padding: 14px 20px;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
  background: #fff;
  color: #111;
  transition: border-color 0.2s;
}
.od-search:focus { border-color: #111; }

/* FILTRES */
.od-filtres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.od-filtre {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.od-filtre:hover { border-color: #111; color: #111; }
.od-filtre--actif { border-color: #111; color: #111; background: #111; color: #fff; }

/* DIVIDER */
.od-divider {
  width: 48px;
  height: 1px;
  background: #ddd;
  margin: 0 auto 56px;
}

/* GRILLE */
.od-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: #eee;
  overflow: hidden;
  margin-bottom: 80px;
}

}

/* CARTE */
.od-carte {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}
.od-carte:hover { background: #fafafa; }
.od-carte__drapeau {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}
.od-carte__nom {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}
.od-carte__couleur {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}
.od-carte__pierre {
  font-size: 0.875rem;
  color: #555;
}
/* Pastille couleur */
.od-carte__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.od-carte__couleur-wrap {
  display: flex;
  align-items: center;
}

/* Vide */
.od-vide {
  text-align: center;
  color: #999;
  font-size: 0.95rem;
  padding: 48px 24px;
}

/* CTA */
.od-cta-wrap {
  text-align: center;
  padding: 0 24px 100px;
}
.od-cta {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.od-cta:hover { background: transparent; color: #111; }

/* RESPONSIVE */
@media (max-width: 750px) {
  .od-hero { padding: 72px 20px 48px; }
  .od-grille { grid-template-columns: repeat(2, 1fr); }
  .od-carte { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .od-grille { grid-template-columns: 1fr; }
}
