@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth; }

/* Supprime le délai 300ms sur tous les éléments interactifs */
a, button, [role="button"], .boxOfEvent, .boxOfCategorie, .nav-toggle {
  touch-action: manipulation; }

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden; }

/* ==================== HEADER ==================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1060;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  /* Force GPU compositing — évite le flou/smearing lors du scroll */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.TopNavElement {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.TopNavElement nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center; }

.TopNavElement nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative; }

.TopNavElement nav a:hover {
  color: var(--primary); }

.TopNavElement nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s; }

.TopNavElement nav a:hover::after {
  width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); }

.filterDateEventNav {
  background: var(--light);
  padding: 1rem 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.05); }

.filterDateEventNav nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap; }

.filterDateEventNav nav a {
  text-decoration: none;
  color: var(--gray);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 500; }

.filterDateEventNav nav a:hover,
.filterDateEventNav nav a.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  padding-top: 140px; }

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite; }

@keyframes moveBackground {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(50px, 50px); } }
.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  padding: 2rem;
  max-width: 900px; }

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2; }

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95; }

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap; }

.btn-hero {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem; }

.btn-hero-primary {
  background: white;
  color: var(--primary); }

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid white; }

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }

.btn-hero:active {
  transform: scale(0.96);
  transition: transform 0.1s; }

/* ==================== MAIN CONTENT ==================== */
main {
  background: var(--light); }

section {
  padding: 5rem 5%; }

.section-title {
  text-align: center;
  margin-bottom: 4rem; }

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark); }

.section-title p {
  color: var(--gray);
  font-size: 1.1rem; }

/* ==================== EVENTS SECTION ==================== */
#EachEvent {
  background: white; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; }

@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem; } }
@media (max-width: 480px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem; } }
.boxOfEvent {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer; }

.boxOfEvent:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); }

.boxOfEvent:active {
  transform: scale(0.97);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s, box-shadow 0.1s; }

.event-image {
  height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  position: relative;
  overflow: hidden; }

.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary); }

.event-content {
  padding: 1.5rem; }

.event-date {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem; }

.event-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--dark); }

.event-location {
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem; }

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--light); }

.event-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary); }

.event-price--free {
  color: #059669;
  font-size: 0.9rem;
  background: #d1fae5;
  border: 1.5px solid #6ee7b7;
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; }

.event-btn {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s; }

.event-btn:hover {
  background: var(--primary-dark); }

.event-btn:active {
  transform: scale(0.94);
  transition: transform 0.1s; }

/* ==================== CATEGORIES SECTION ==================== */
#CategorieOfEvent {
  background: var(--dark);
  color: white; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; }

.boxOfCategorie {
  background: var(--dark-light);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
  border: 2px solid transparent; }

.boxOfCategorie:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.1); }

.boxOfCategorie:active {
  transform: scale(0.95);
  transition: transform 0.1s; }

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.category-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem; }

.category-count {
  color: var(--gray);
  font-size: 0.9rem; }

/* ==================== TESTIMONY SECTION ==================== */
#Testimony {
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden; }

#Testimony::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none; }

#Testimony::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 70%);
  pointer-events: none; }

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1; }

.testimony-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(99,102,241,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.testimony-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.12), 0 4px 12px rgba(0,0,0,0.06); }

.quote-icon {
  font-size: 2.2rem;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 1.2rem;
  right: 1.4rem; }

.testimony-content {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  color: #475569;
  font-size: 0.97rem;
  font-style: italic; }

.testimony-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(99,102,241,0.08);
  padding-top: 1.1rem;
  margin-top: auto; }

.author-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(99,102,241,0.3); }

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--dark); }

.author-info p {
  font-size: 0.78rem;
  color: var(--gray); }

.testimony-stars {
  font-size: 0.78rem;
  color: #f59e0b;
  margin-top: 0.25rem;
  letter-spacing: 1px; }

/* ==================== DEADLINE ARC ==================== */
.event-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem; }

.event-date-row .event-date {
  margin-bottom: 0; }

.deadline-arc {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  flex-shrink: 0; }

.deadline-arc-ring {
  position: relative;
  width: 44px;
  height: 44px; }

.deadline-arc-ring svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18)); }

.deadline-arc-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 50%; }

.deadline-arc-label {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  background: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.15);
  border: 1.5px solid currentColor;
  opacity: 0.97;
  letter-spacing: 0.2px; }

/* ==================== TESTIMONIAL FORM ==================== */
#testimonial-form-wrapper input,
#testimonial-form-wrapper textarea {
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; }

#testimonial-form-wrapper input::placeholder,
#testimonial-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.38); }

#testimonial-form-wrapper input:focus,
#testimonial-form-wrapper textarea:focus {
  border-color: rgba(99, 102, 241, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); }

#star-rating span {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s; }

#star-rating span.active,
#star-rating span.hovered {
  color: #f59e0b; }

/* ==================== PAYMENT SECTION ==================== */
#OurPaymentAgregatorAvailable {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center; }

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem; }

.payment-logo {
  background: white;
  padding: 1.5rem 2.5rem;
  border-radius: 15px;
  font-size: 1.5rem;
  color: var(--dark);
  transition: transform 0.3s; }

.payment-logo:hover {
  transform: scale(1.1); }

/* ==================== FOOTER ==================== */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 5%;
  text-align: center; }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem; }

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary); }

.footer-section a {
  color: var(--gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s; }

.footer-section a:hover {
  color: white; }

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s; }

.social-icon > a {
  display: flex;
  justify-content: center;
  align-items: center; }

.social-icon:hover {
  background: var(--primary); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-light);
  color: var(--gray); }

/* Spinner pour le chargement */
.spinner {
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  display: inline-block; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* ==================== NAV RESPONSIVE — À AJOUTER à landingPage.css ====================
   Remplace l'ancien bloc @media (max-width: 768px) pour la nav
   ==================================================================================== */
/* Hamburger button — caché par défaut sur desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s;
  z-index: 1100; }

.nav-toggle:active {
  background: rgba(99, 102, 241, 0.12);
  transition: background 0.08s; }

.nav-toggle:hover {
  background: rgba(99, 102, 241, 0.08); }

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center; }

/* Animation hamburger → croix */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg); }

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0); }

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex; }

  /* La nav principale devient un drawer — transition via transform (GPU) */
  .TopNavElement nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    will-change: transform; }

  .TopNavElement nav.nav-open {
    transform: translateX(0); }

  .TopNavElement nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch; }

  .TopNavElement nav ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06); }

  .TopNavElement nav ul li:last-child {
    border-bottom: none; }

  .TopNavElement nav a {
    display: block;
    padding: 1.1rem 1rem;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s; }

  .TopNavElement nav a:active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary); }

  /* Overlay — transition opacity/visibility (pas de display flash) */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; }

  .nav-overlay.visible {
    opacity: 1;
    visibility: visible; }

  @keyframes fadeOverlay {
    from {
      opacity: 0; }
    to {
      opacity: 1; } }
  /* filterDateEventNav scrollable sur mobile */
  .filterDateEventNav nav ul {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; }

  .filterDateEventNav nav ul::-webkit-scrollbar {
    display: none; }

  .filterDateEventNav nav a {
    white-space: nowrap;
    flex-shrink: 0; }

  /* Hero */
  .hero h1 {
    font-size: 2.2rem; }

  .hero p {
    font-size: 1rem; }

  section {
    padding: 3rem 5%; } }
@media (max-width: 480px) {
  .TopNavElement {
    padding: 1rem 5%; }

  .filterDateEventNav {
    padding: 0.6rem 3%; }

  .filterDateEventNav nav ul {
    gap: 0.5rem; }

  .filterDateEventNav nav a {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem; }

  .hero h1 {
    font-size: 1.8rem; }

  .btn-hero {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem; } }

/* ─── Hero Search Form ───────────────────────────────────────────────── */
.hero-search-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 60px;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  gap: 0.75rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-search-bar:focus-within {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.hero-search-icon {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 1.05rem;
  font-family: inherit;
  min-width: 0;
}

.hero-search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hero-search-submit {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.hero-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-quick-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-quick-tags span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.hero-quick-tags button {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.hero-quick-tags button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.65);
}

/* ─── Nav Search ─────────────────────────────────────────────────────── */
.nav-search-item {
  list-style: none;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
}

.nav-search-toggle:hover {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
}

.nav-search-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.nav-search-box.open {
  max-width: 240px;
  opacity: 1;
}

.nav-search-box input {
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  outline: none;
  width: 200px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.nav-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.nav-search-box button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search-box button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* ─── Bannière filtre actif (search + catégorie) ─────────────────────── */
.category-active-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.category-active-banner button {
  margin-left: auto;
  background: none;
  border: 1px solid #93c5fd;
  color: #1e40af;
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.category-active-banner button:hover {
  background: #dbeafe;
}

/* ─── Responsive search ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-search-bar { padding: 0.45rem 0.45rem 0.45rem 1rem; }
  .hero-search-submit span { display: none; }
  .hero-search-submit { padding: 0.7rem 1rem; }
  .nav-search-box.open { max-width: 180px; }
  .nav-search-box input { width: 140px; }
}

/* ─── Skeleton loader ────────────────────────────────────────────────── */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.skeleton-card { pointer-events: none; animation: skeleton-pulse 1.4s ease-in-out infinite; }

.skeleton-img {
  width: 100%;
  height: 200px;
  background: #e2e8f0;
  border-radius: 12px 12px 0 0;
}

.skeleton-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }

.skeleton-line {
  height: 14px;
  background: #e2e8f0;
  border-radius: 6px;
}
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w40 { width: 40%; }

/* ─── Section Trending ───────────────────────────────────────────────── */
#Trending {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border-bottom: 1px solid #fde68a;
}

#Trending .section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #92400e;
}

#Trending .section-title p {
  color: #b45309;
  margin-top: 0.25rem;
}

#Trending .trending-grid {
  margin-top: 1.5rem;
}

/*# sourceMappingURL=landingPage.css.map */
