/* ============================================
   La Kaz Location-BnB — Style principal
   Thème tropical réunionnais
   Palette : corail, turquoise, blanc cassé, anthracite
   ============================================ */

/* --- Variables & Reset --- */
:root {
  --corail: #FF6B35;
  --corail-dark: #E55A2B;
  --turquoise: #00B4D8;
  --turquoise-dark: #0096B4;
  --blanc-casse: #FAF8F5;
  --anthracite: #2D2D2D;
  --anthracite-light: #4A4A4A;
  --gris-doux: #E8E4E0;
  --ombre: rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--blanc-casse);
  color: var(--anthracite);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--corail);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--corail-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Header & Navigation --- */
.site-header {
  background: var(--anthracite);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px var(--ombre);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--corail);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--corail);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--corail);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Menu burger mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 45, 45, 0.6), rgba(0, 180, 216, 0.3)),
    url('https://images.unsplash.com/photo-1590523741831-ab7e8b8f9c7f?w=1600&q=80') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--corail);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* --- Boutons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--corail);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  background: var(--corail-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

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

.btn-secondary:hover {
  background: white;
  color: var(--anthracite);
}

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

.btn-turquoise:hover {
  background: var(--turquoise-dark);
  color: white;
  transform: translateY(-2px);
}

/* --- Sections communes --- */
.section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: var(--anthracite);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--anthracite-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* --- Points forts (accueil) --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--ombre);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--anthracite-light);
  font-size: 0.95rem;
}

/* --- Grille de logements --- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.listing-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombre);
  transition: transform var(--transition), box-shadow var(--transition);
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.listing-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.listing-card-body {
  padding: 1.5rem;
}

.listing-card-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--turquoise);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.listing-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.listing-card-desc {
  font-size: 0.9rem;
  color: var(--anthracite-light);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--corail);
}

.listing-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--anthracite-light);
}

/* --- Page détail logement --- */
.detail-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background: center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.detail-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.detail-hero-content .location {
  color: var(--turquoise);
  font-weight: 600;
}

.detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}

.detail-description h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.detail-description p {
  color: var(--anthracite-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Galerie photos */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity var(--transition);
}

.gallery img:hover {
  opacity: 0.85;
}

/* Équipements */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px var(--ombre);
}

.amenity-icon {
  font-size: 1.2rem;
}

/* Sidebar réservation */
.booking-sidebar {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--ombre);
  position: sticky;
  top: 90px;
  height: fit-content;
}

.booking-sidebar .price-display {
  font-size: 2rem;
  font-weight: 800;
  color: var(--corail);
  margin-bottom: 1.5rem;
}

.booking-sidebar .price-display small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--anthracite-light);
}

/* Calendrier fictif */
.calendar-placeholder {
  background: var(--gris-doux);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.8rem;
}

.calendar-grid .day-header {
  font-weight: 700;
  color: var(--anthracite-light);
  padding: 0.3rem;
}

.calendar-grid .day {
  padding: 0.4rem;
  border-radius: 4px;
  cursor: default;
}

.calendar-grid .day.available {
  background: white;
  color: var(--anthracite);
}

.calendar-grid .day.booked {
  background: var(--gris-doux);
  color: #bbb;
  text-decoration: line-through;
}

.calendar-grid .day.empty {
  background: transparent;
}

/* --- Formulaire de réservation --- */
.reservation-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gris-doux);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquoise);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Page confirmation --- */
.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px var(--ombre);
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.confirmation-box h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--turquoise-dark);
}

.confirmation-box p {
  color: var(--anthracite-light);
  margin-bottom: 0.5rem;
}

.confirmation-ref {
  display: inline-block;
  background: var(--gris-doux);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.5rem 0;
  letter-spacing: 1px;
}

/* --- Footer --- */
.site-footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--corail);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .detail-content {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--anthracite);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem 0;
    font-size: 1.05rem;
  }

  .hero {
    min-height: 70vh;
  }

  .listings-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 60px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .amenities {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   NOUVELLES SECTIONS — Parcours complet
   ============================================ */

/* --- Barre de recherche Hero --- */
.search-bar {
  margin-top: 2rem;
  width: 100%;
  max-width: 900px;
}

.search-bar-inner {
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 140px;
}

.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--anthracite-light);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--gris-doux);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--anthracite);
  background: var(--blanc-casse);
  transition: border-color var(--transition);
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--corail);
}

.search-btn {
  min-width: 140px;
  padding: 0.7rem 1.5rem !important;
  font-size: 0.95rem !important;
  white-space: nowrap;
}

/* --- Destinations populaires --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  display: block;
  text-decoration: none;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: white;
}

.destination-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.destination-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* --- Badges sur les cartes --- */
.listing-card {
  position: relative;
}

.listing-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--anthracite);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}

.listing-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--anthracite-light);
  margin-bottom: 0.75rem;
}

/* --- Filtres page logements --- */
.filters-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--ombre);
  margin-bottom: 1rem;
}

.filter-group {
  flex: 1;
  min-width: 150px;
}

.filter-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--anthracite-light);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--gris-doux);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--blanc-casse);
}

.filter-select:focus {
  outline: none;
  border-color: var(--corail);
}

.results-count {
  font-size: 0.9rem;
  color: var(--anthracite-light);
  margin-bottom: 0.5rem;
}

/* --- Avis voyageurs --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--ombre);
}

.review-stars {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--anthracite-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--corail), #FF9A5C);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--anthracite-light);
}

/* --- Étapes de réservation --- */
.booking-steps {
  background: white;
  border-bottom: 1px solid var(--gris-doux);
  padding: 1.25rem 1.5rem;
}

.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 80px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gris-doux);
  color: var(--anthracite-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.step span {
  font-size: 0.8rem;
  color: var(--anthracite-light);
  font-weight: 600;
}

.step.active .step-num {
  background: var(--corail);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.step.active span {
  color: var(--corail);
}

.step.completed .step-num {
  background: #4ADE80;
  color: white;
}

.step.completed span {
  color: #22C55E;
}

.step-line {
  flex: 1;
  height: 3px;
  background: var(--gris-doux);
  border-radius: 2px;
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

.step-line-done {
  background: #4ADE80;
}

/* --- Layout réservation (form + summary) --- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.booking-form-col {
  min-width: 0;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gris-doux);
}

.form-section-title:first-of-type {
  margin-top: 0;
}

/* Compteurs +/- */
.counter-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--gris-doux);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.counter-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--blanc-casse);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--anthracite);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover {
  background: var(--gris-doux);
}

.counter-input input {
  width: 50px;
  text-align: center;
  border: none !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 0;
  background: white;
}

/* --- Récapitulatif sidebar --- */
.booking-summary {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 20px var(--ombre);
  position: sticky;
  top: 90px;
  height: fit-content;
}

.booking-summary h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gris-doux);
}

.summary-empty {
  color: var(--anthracite-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.summary-item span {
  color: var(--anthracite-light);
}

.summary-label {
  font-weight: 700 !important;
  color: var(--anthracite) !important;
  font-size: 1rem !important;
}

.summary-divider {
  height: 1px;
  background: var(--gris-doux);
  margin: 0.5rem 0;
}

.summary-total {
  font-size: 1.1rem !important;
  padding-top: 0.75rem !important;
}

.summary-total span {
  font-weight: 700;
  color: var(--anthracite) !important;
}

.summary-total strong {
  color: var(--corail);
  font-size: 1.3rem;
}

.summary-trust {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gris-doux);
}

.summary-trust p {
  font-size: 0.82rem;
  color: var(--anthracite-light);
  margin-bottom: 0.4rem;
}

/* --- Page paiement — Carte bancaire visuelle --- */
.credit-card-preview {
  width: 100%;
  max-width: 380px;
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2D2D2D, #4A4A4A);
  color: white;
  padding: 1.75rem;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.credit-card-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.card-chip {
  width: 45px;
  height: 32px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card-logo {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-size: 1.3rem;
  font-weight: 800;
  font-style: italic;
  opacity: 0.7;
}

.card-number {
  font-size: 1.35rem;
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  margin-bottom: 1.5rem;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
}

.card-label {
  font-size: 0.65rem;
  opacity: 0.6;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.card-holder,
.card-expiry {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Méthodes de paiement */
.payment-methods {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.payment-method {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gris-doux);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
}

.payment-method:hover {
  border-color: var(--corail);
}

.payment-method.active,
.payment-method:has(input:checked) {
  border-color: var(--corail);
  background: rgba(255, 107, 53, 0.05);
}

.payment-method input {
  display: none;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--anthracite-light);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--corail);
}

/* --- Confirmation améliorée --- */
.confirmation-box {
  max-width: 650px;
}

.confirmation-anim {
  margin-bottom: 1.5rem;
}

.confirm-circle {
  animation: confirmCircle 0.6s 0.2s ease forwards;
}

.confirm-check {
  animation: confirmCheck 0.4s 0.7s ease forwards;
}

@keyframes confirmCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes confirmCheck {
  to { stroke-dashoffset: 0; }
}

.confirmation-details {
  text-align: left;
  background: var(--blanc-casse);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.confirm-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.confirm-detail-row span {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.confirm-detail-row p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Responsive ajouts --- */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .search-bar-inner {
    flex-direction: column;
  }

  .search-field {
    min-width: 100%;
  }

  .search-btn {
    width: 100%;
  }

  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filters-bar {
    flex-direction: column;
  }

  .steps-bar {
    gap: 0;
  }

  .step span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .credit-card-preview {
    max-width: 100%;
    height: 200px;
  }
}
