/* ct.css — Version nettoyée
   ============================================================
   Palette : --bs-primary (vert Chogan #18BC9C), gold #f78a0c
   ============================================================ */

/* ── Variables — bloc unique consolidé ── */

:root {
  --bs-primary: #18BC9C;
  --bs-primary-rgb: 24, 188, 156;
  --bg-labo: #ffffff;
  --olf-gold: #f78a0c;
  --olf-gold-light: #fff8ee;
  --olf-radius: 16px;
  --olf-radius-sm: 10px;
  --olf-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  --cg-blue-dark: #0d1b4b;
  --cg-blue: #1B6FD8;
  --cg-gold: #F4A100;
  --cg-gold-light: #FFFBEE;
  --cg-gold-border: rgba(212, 175, 55, 0.3);
  --cg-green: #18bc9c;
  --cg-text: #2c2c2c;
  --cg-muted: #6c757d;
  --cg-radius: 14px;
  --cg-radius-sm: 8px;
  --main-color: #007bff;
  --accent-color: #6c757d;
  --theme-primary: #18BC9C;
  --theme-price-color: #f78a0c;
  --theme-light-bg: #f8f9fa;
}

/* Thème Pro Connecté */

body {
  background-color: var(--bg-labo) !important;
}

/* ============================================================
   OLFAZETA — Sections
   ============================================================ */

.olf-section {
  padding: 4rem 0;
}

.olf-section-alt {
  background-color: var(--bs-secondary-bg-subtle, #f8f9fa);
}

/* ── Pill label ── */

.olf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

/* ── Titres ── */

.olf-section-title {
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--bs-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.olf-subsection-title {
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.3;
  margin-bottom: .75rem;
}

.olf-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--bs-secondary-color, #555);
}

/* ── Hero ── */

.olf-hero {
  position: relative;
  min-height: 100vh;
  padding: 4rem 1rem;
}

.olf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.65) 100%);
}

.olf-eyebrow {
  display: inline-block;
  background: rgba(var(--bs-primary-rgb), .85);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.olf-hero-title {
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 2px 3px 10px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}

.olf-hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  font-weight: 500;
  text-shadow: 1px 2px 6px rgba(0,0,0,.5);
}

/* ── Vidéo (ratio 9×16 max 320px) ── */

/* ── Nouvelle ère ── */

.olf-era-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #0fa07f 100%);
}

.olf-era-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff !important;
  margin-bottom: 1.25rem;
}

.olf-era-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,.9);
  max-width: 720px;
}

/* ── Highlight box ── */

.olf-highlight-box {
  background: var(--olf-gold-light);
  border-left: 4px solid var(--olf-gold);
  border-radius: 0 var(--olf-radius-sm) var(--olf-radius-sm) 0;
  padding: .9rem 1.2rem;
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
  margin-top: 1.25rem;
}

/* ── Carte vidéo ── */

.olf-video-card {
  border-radius: var(--olf-radius);
  overflow: hidden;
  box-shadow: var(--olf-shadow);
  border: 2px solid rgba(var(--bs-primary-rgb), .2);
}

/* ── Cartes produit ── */

.olf-product-card {
  background: #fff;
  border-radius: var(--olf-radius);
  box-shadow: var(--olf-shadow);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.olf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
}

.olf-product-img-wrap {
  background: #f8f9fa;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.olf-product-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.olf-product-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--bs-dark);
  margin: 0;
}

.olf-product-sub {
  font-size: .82rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

.olf-price-tag {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: .5rem;
}

.olf-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--olf-gold);
  line-height: 1;
}

.olf-price-from {
  font-size: .8rem;
  color: #999;
}

/* ── Parfum de poche ── */

.olf-pocket-card {
  background: #fff;
  border-radius: var(--olf-radius);
  box-shadow: var(--olf-shadow);
  padding: 2rem 1.5rem;
  border: 2px solid rgba(var(--bs-primary-rgb), .15);
}

.olf-price-hero {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--olf-gold);
  line-height: 1;
  margin-bottom: .5rem;
}

/* ── CTA cards ── */

.olf-cta-card {
  background: #fff;
  border-radius: var(--olf-radius);
  box-shadow: var(--olf-shadow);
  border: 2px solid rgba(var(--bs-primary-rgb), .2);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}

.olf-cta-card--alt {
  border-color: var(--olf-gold);
  background: var(--olf-gold-light);
}

.olf-cta-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.olf-cta-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bs-dark);
  letter-spacing: .04em;
}

/* ============================================================
   CHOGAN — Header + Badge de localisation
   ============================================================ */

/* ── Liens nav ── */

/* ── Badge avatar ── */

/* ── Barre identité ── */

.accordion-button:hover {
  color: #000 !important;
}

/* ── Icônes sociales ── */

.fab.fa-facebook-f.fa-2x {
  color: #1877F2;
}

.fab.fa-telegram-plane.fa-2x {
  color: #26A5E4;
}

.fab.fa-whatsapp.fa-2x {
  color: #25D366;
}

/* ============================================================
   NAVBAR GLOBALE (sticky-top)
   ============================================================ */

.sticky-top {
  background: var(--bg-labo, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.navbar {
  background: transparent;
  min-height: 70px;
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  transition: color 0.2s ease;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.navbar-nav .nav-link.active {
  color: var(--bs-primary);
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--bs-primary);
  border-radius: 50%;
}

.btn-primary {
  background-color: var(--bs-primary);
  border: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.8125rem;
}

.btn-primary:hover {
  background-color: var(--bs-primary);
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.3);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   CHOGAN GAZETTE
   ============================================================ */

.cg-section {
  padding: 3rem 0;
}

.cg-section-alt {
  background-color: #f8faff;
}

/* ── Typographie ── */

.cg-section-title {
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--cg-blue-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cg-section-h2 {
  color: var(--cg-blue-dark);
}

.cg-gold-text {
  color: var(--cg-gold);
}

.cg-text-danger {
  color: #c0392b;
}

/* ── Badges & pills ── */

.cg-badge, .cg-badge-gold {
  display: inline-block;
  background: var(--cg-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.cg-pill, .cg-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EEF4FF;
  color: var(--cg-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* ── Hero banner ── */

.cg-hero-top, .cg-hero {
  background: linear-gradient(135deg, var(--cg-blue-dark) 0%, var(--cg-blue) 100%);
  border-radius: var(--cg-radius);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.cg-hero-top::before, .cg-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(244, 161, 0, 0.12);
  border-radius: 50%;
}

.cg-hero-top h2, .cg-hero h1 {
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.cg-hero-top .lead, .cg-hero .city-tag {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ── Carte sponsor ── */

.cg-sponsor-card {
  background: #fff;
  border-radius: var(--cg-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cg-city-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.cg-sponsor-info {
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--cg-gold);
}

.cg-region-label {
  color: var(--cg-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── Humour & histoire ── */

.cg-humour {
  background: var(--bs-secondary-bg, #e9ecef);
  border-radius: var(--cg-radius);
  padding: 1rem 1.25rem;
  font-style: italic;
}

.cg-histoire h1 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--cg-blue-dark);
  margin-bottom: 1rem;
}

.cg-histoire p strong {
  color: var(--cg-blue);
}

/* ── Section qualité ── */

.cg-qualite-img {
  border-radius: var(--cg-radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(27, 111, 216, 0.12);
}

.cg-qualite-img img {
  border-radius: var(--cg-radius);
}

.cg-revenu-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cg-gold-light);
  border-left: 3px solid var(--cg-gold);
  border-radius: 0 var(--cg-radius-sm) var(--cg-radius-sm) 0;
  padding: 0.6rem 1rem;
  font-weight: 600;
  color: #c0392b;
  font-size: 0.95rem;
}

.cg-qualite-text {
  background: #fff;
  border-radius: var(--cg-radius);
  padding: 1.5rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--cg-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ── Gastronomie ── */

.cg-gastro-wrapper {
  border-radius: var(--cg-radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.cg-gastro-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.cg-gastro-text {
  background: var(--cg-blue-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Parfums ── */

.cg-parfum-video, .cg-video-card2 {
  border-radius: var(--cg-radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(27, 111, 216, 0.15);
  border: 2px solid var(--cg-gold-border);
}

/* ── Price tag parfum Luxury ── */

.luxury-price-tag-luminous {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid #d4af37;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.12);
  transition: all 0.3s ease;
}

.luxury-price-tag-luminous:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.22);
  background: #fffdf5;
}

.volume-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #888;
}

.price-separator {
  margin: 0 15px;
  color: #d4af37;
  font-size: 18px;
}

.price-value {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
}

.amount {
  font-weight: 800;
  font-size: 22px;
  color: #c5a028;
  margin: 0 2px;
}

/* ── Cards bien-être ── */

.cg-card {
  border: none;
  border-radius: var(--cg-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(27, 111, 216, 0.15);
}

.cg-card .card-body {
  padding: 1.75rem;
}

.cg-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EEF4FF;
  color: var(--cg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cg-card-icon svg {
  width: 24px;
  height: 24px;
}

.cg-card-title {
  color: var(--cg-blue-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.cg-card .card-text strong {
  color: var(--cg-blue);
}

/* ── Vision Chogan ── */

/* ── CTA final ── */

.cg-cta-block {
  background: linear-gradient(135deg, var(--cg-blue-dark) 0%, var(--cg-blue) 100%);
  border-radius: var(--cg-radius);
  padding: 2.5rem 2rem;
  color: #fff;
  text-align: center;
}

.cg-cta-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.cg-cta-highlight {
  display: inline-block;
  color: var(--cg-gold);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
}

.cg-cta-block a {
  color: var(--cg-gold);
  font-weight: 600;
}

.cg-cta-block a:hover {
  color: #fff;
}

/* ── Texte highlight inline ── */

/* ── App image ── */

/* ── Headline & body gazette ── */

/* ── Typographie globale ── */

small {
  color: var(--accent-color) !important;
}

/* ============================================================
   UTILITAIRES TURBO OLFAZETA
   ============================================================ */

.tracking-wide {
  letter-spacing: 0.05em;
}

.text-gold {
  color: #d4af37 !important;
}

.text-shadow-md {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.85), 0 0 6px rgba(0, 0, 0, 0.65);
}

.text-shadow-sm {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

/* ── Hero fond vidéo ── */

/* ── Avatar ── */

/* ── Conteneurs vidéo ── */

/* ── Animations ── */

/* ── Largeurs max utilitaires ── */

/* ============================================================
   RESPONSIVE — tous les breakpoints regroupés
   ============================================================ */

@media (max-width: 767px) {
  .olf-section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 767px) {
  .olf-era-section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 767px) {
  .olf-hero {
    min-height: 85vh;
  }
}

@media (max-width: 767px) {
  .olf-price-hero {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .cg-section {
    padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .cg-hero-top {
    padding: 2rem 1rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .cg-cta-block {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 767px) {
  .luxury-price-tag-luminous {
    padding: 8px 14px;
    flex-wrap: wrap;
    gap: 4px;
  }
}

@media (max-width: 767px) {
  .amount {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .volume-label {
    font-size: 9px;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-link.active::after {
    bottom: 4px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-item {
    text-align: center;
    margin: 0.25rem 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .btn-primary {
    margin-top: 0.5rem;
    width: auto;
    display: inline-block;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link.active::after {
    display: none;
  }
}

/* ── Mode sombre ── */

@media (prefers-color-scheme: dark) {
  :root {
    --bg-labo: #1a1a1a;
  }
}

@media (prefers-color-scheme: dark) {
  .navbar-nav .nav-link {
    color: #e2e8f0;
  }
}

@media (prefers-color-scheme: dark) {
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* =============================================================================
   Fichier : assets/css/styles.css (Section Geo-Breadcrumb)
   Description : Styles du fil d'Ariane géolocalisé avec indicateur de swipe mobile.
   ============================================================================= */

/* Conteneur pour appliquer le masque de dégradé à droite sur mobile */

.geo-fade-container {
  position: relative;
  width: 100%;
}

@media (max-width: 767.98px) {
  .geo-fade-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    pointer-events: none;
    z-index: 2;
  }
}

/* Wrapper de défilement horizontal */

.geo-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-left: 5px;
  padding-right: 35px;
}

/* Masquage des barres de défilement par défaut */

.geo-scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Indicateur de défilement (Flèche animée) */

.geo-scroll-indicator {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 5px;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.geo-scroll-indicator .geo-arrow {
  display: inline-block;
  color: #007bff;
  font-size: 12px;
  animation: geoPulseArrow 1.5s infinite ease-in-out;
}

/* Animation de pulsation latérale de la flèche */

@keyframes geoPulseArrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

/* Nettoyage des focus boutons du fil d'Ariane */

.geo-scroll-wrapper button:focus, .geo-scroll-wrapper button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ── Outline debugger (décommenter si besoin) ── */

/* * { outline: 1px solid red !important; } */

