/* ==========================================================================
   ALEX PHOTO – Master Stylesheet
   Zero Black Basements · Fluid Masonry · High-End Typography
   ========================================================================== */

:root {
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --gold-primary: #c5a059;
  --gold-light: #dfbe78;
  --gold-glow: rgba(197, 160, 89, 0.3);
  
  --bg-color: #0d0f12;
  --surface-color: #14171d;
  --surface-card: #1c2028;
  --surface-border: #282e3a;
  
  --text-main: #f0f2f5;
  --text-muted: #9aa2b1;
  --text-dim: #6c7484;
  
  --header-height: 80px;
  --container-width: 1280px;
  --radius: 8px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-light {
  --bg-color: #f7f8fa;
  --surface-color: #ffffff;
  --surface-card: #ffffff;
  --surface-border: #e2e5eb;
  --text-main: #1a1d24;
  --text-muted: #5a6270;
  --text-dim: #8b93a0;
  --gold-glow: rgba(197, 160, 89, 0.2);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  height: var(--header-height);
  transition: var(--transition);
}

body.theme-light .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-theme-toggle {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  color: var(--text-main);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-theme-toggle:hover {
  border-color: var(--gold-primary);
}

.burger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.burger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--surface-color);
  z-index: 99;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav .nav-link {
  font-size: 1.15rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--surface-border);
}

/* --------------------------------------------------------------------------
   MAIN LAYOUT & GENERAL SECTIONS
   -------------------------------------------------------------------------- */
.main-content {
  flex: 1;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.gold-divider {
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
  margin: 1rem auto 1.5rem;
}

/* --------------------------------------------------------------------------
   COVER CAROUSEL (HOME)
   -------------------------------------------------------------------------- */
.carousel-section {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 420px;
  max-height: 680px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3.5rem;
  background: #000;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.carousel-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   À PROPOS SECTION
   -------------------------------------------------------------------------- */
.apropos-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3.5rem;
}

.apropos-text-col h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.apropos-subtitle {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.apropos-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  white-space: pre-line;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.apropos-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.apropos-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.apropos-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.apropos-img-wrapper:hover img {
  transform: scale(1.03);
}

.apropos-img-wrapper.full-col {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   ANNONCES / BANNERS
   -------------------------------------------------------------------------- */
.annonces-wrapper {
  margin-bottom: 3.5rem;
}

.annonce-card {
  background: linear-gradient(135deg, var(--surface-card) 0%, rgba(197,160,89,0.08) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.annonce-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.annonce-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.annonce-content p {
  color: var(--text-muted);
}

.annonce-img {
  max-width: 220px;
  border-radius: var(--radius);
}

.annonce-layout-above, .annonce-layout-below { flex-direction: column; }
.annonce-layout-left { flex-direction: row; }
.annonce-layout-right { flex-direction: row; }
.annonce-layout-center { flex-direction: column; align-items: center; }

.annonce-img-group { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.annonce-img-group.center { justify-content: center; }
.annonce-img-sm { max-width: 160px; height: auto; border-radius: var(--radius); }
.annonce-img-md { max-width: 260px; height: auto; border-radius: var(--radius); }
.annonce-img-lg { width: 100%; max-width: 100%; height: auto; max-height: 480px; object-fit: cover; border-radius: var(--radius); }

/* --------------------------------------------------------------------------
   CALENDRIER DE RÉSERVATION ENTRY POINT
   -------------------------------------------------------------------------- */
.booking-cta-section {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.booking-cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.booking-cta-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--gold-glow);
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   PORTFOLIO & MASONRY GALLERY (CRITICAL ZERO BLACK BASEMENTS)
   -------------------------------------------------------------------------- */
.category-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cat-filter-btn {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cat-filter-btn:hover, .cat-filter-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000;
  font-weight: 600;
}

/* Fluid Masonry Grid: ZERO black empty basements */
.photo-grid-masonry {
  column-count: 3;
  column-gap: 1.5rem;
  width: 100%;
}

.photo-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  /* Crucial: natural aspect ratio, no fixed height, no letterbox */
}

.photo-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: opacity 0.25s ease;
}

.photo-card:hover .photo-hover-overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 2rem;
  color: #fff;
}

/* Category Index Cards */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.category-cover-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.category-cover-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

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

.cat-card-body {
  padding: 1.4rem;
}

.cat-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.cat-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cat-count-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold-primary);
  margin-top: 0.8rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   RETOUCHE & RESTAURATION (AVANT / APRÈS SLIDER)
   -------------------------------------------------------------------------- */
.before-after-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.before-after-img {
  width: 100%;
  height: auto;
  display: block;
}

.retouche-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.retouche-tab-btn {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.retouche-tab-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.step-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.4;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}

.step-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Film Souvenir & Multimedia Section */
.film-souvenir-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.film-souvenir-content {
  flex: 1;
}

.film-souvenir-media {
  flex: 0 0 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.film-souvenir-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  object-fit: cover;
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.film-souvenir-caption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .film-souvenir-card {
    flex-direction: column;
    padding: 1.8rem;
    gap: 1.8rem;
  }
  .film-souvenir-media {
    flex: 1;
    max-width: 260px;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   TARIFS & WEDDING PACKAGES
   -------------------------------------------------------------------------- */
.wedding-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.tariff-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.tariff-card.vip {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, var(--surface-card) 0%, rgba(197,160,89,0.06) 100%);
}

.vip-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}

.tariff-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tariff-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.tariff-hiend {
  font-weight: 600;
  color: var(--text-main);
  background: var(--surface-color);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
}

.tariff-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tariff-deadline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.btn-book-tariff {
  width: 100%;
  padding: 0.75rem;
  background: var(--surface-border);
  color: var(--text-main);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.tariff-card:hover .btn-book-tariff, .tariff-card.vip .btn-book-tariff {
  background: var(--gold-primary);
  color: #000;
}

/* Tarifs Table */
.data-table-wrapper {
  overflow-x: auto;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tariff-table th, .tariff-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--surface-border);
}

.tariff-table th {
  background: var(--surface-color);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
}

.tariff-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   PHOTOS D’IDENTITÉ & MATÉRIEL OCCASION
   -------------------------------------------------------------------------- */
.identite-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.identite-poster {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.docs-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.docs-checklist li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
}

.docs-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   SHOP CMS V1.0 - MATÉRIEL D’OCCASION
   -------------------------------------------------------------------------- */
.shop-empty-box {
  text-align: center;
  padding: 4.5rem 1.5rem;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  max-width: 680px;
  margin: 2rem auto;
}

.shop-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.shop-empty-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.shop-empty-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.shop-empty-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Grid & Cards */
.shop-grid,
.materiel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.shop-card,
.gear-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: rgba(197, 160, 89, 0.4);
}

.shop-card.is-sold {
  opacity: 0.78;
}

.shop-card.is-sold:hover {
  opacity: 0.95;
}

/* Card Media (Natural aspect ratio container) */
.shop-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.shop-card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-img {
  transform: scale(1.03);
}

.shop-card-placeholder {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Status Badges */
.shop-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.status-available {
  background: #10b981;
  color: #ffffff;
}

.status-reserved {
  background: #f59e0b;
  color: #000000;
}

.status-sold {
  background: #64748b;
  color: #ffffff;
}

.status-draft {
  background: #94a3b8;
  color: #0f172a;
}

/* Card Body */
.shop-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.shop-badge-cat {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.shop-badge-cond {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
}

.shop-card-title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.35;
}

.shop-card-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

.shop-card-title a:hover {
  color: var(--gold-primary);
}

.shop-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.shop-card-price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.shop-card-warranty {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.shop-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.shop-card-specs-brief {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-top: 1px dashed var(--surface-border);
  border-bottom: 1px dashed var(--surface-border);
  margin-bottom: 1.2rem;
}

/* Actions & Buttons */
.shop-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.shop-btn-ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.68rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s, background-color 0.2s;
}

.shop-btn-ext:hover {
  opacity: 0.92;
}

.btn-vinted {
  background: #007782;
  color: #ffffff;
}

.btn-vinted:hover {
  background: #008f9c;
}

.btn-leboncoin {
  background: #ff6e14;
  color: #ffffff;
}

.btn-leboncoin:hover {
  background: #ff7f30;
}

.btn-other {
  background: rgba(197, 160, 89, 0.2);
  color: var(--gold-primary);
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.btn-other:hover {
  background: rgba(197, 160, 89, 0.3);
}

.btn-studio-contact {
  width: 100%;
  background: var(--surface-border);
  color: var(--text-main);
  text-align: center;
  padding: 0.72rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-studio-contact:hover:not(:disabled) {
  background: var(--gold-primary);
  color: #000000;
}

.btn-disabled,
.btn-studio-contact:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.btn-detail-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  padding: 0.35rem;
  transition: color 0.2s;
}

.btn-detail-link:hover {
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   SHOP DETAIL VIEW
   -------------------------------------------------------------------------- */
.shop-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.shop-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.shop-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-detail-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-detail-hero-img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.shop-detail-hero-placeholder {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.shop-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 6px 12px;
  text-align: center;
}

.shop-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.shop-thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  border: 2px solid var(--surface-border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: rgba(0,0,0,0.2);
  transition: border-color 0.2s, transform 0.2s;
}

.shop-thumb-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.shop-thumb-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 1px var(--gold-primary);
}

.shop-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-info-col {
  display: flex;
  flex-direction: column;
}

.shop-detail-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.shop-detail-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

.shop-detail-price-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--surface-border);
  flex-wrap: wrap;
}

.shop-detail-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.shop-detail-warranty-badge {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.shop-detail-lead {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.shop-detail-cta-box {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-btn-primary {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.shop-ext-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-ext-links-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-ext-links-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.shop-ext-links-row .shop-btn-ext {
  flex: 1;
  min-width: 140px;
}

/* Specs Card */
.shop-specs-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}

.shop-specs-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 1rem 0;
  color: var(--text-main);
}

.shop-specs-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--surface-border);
  font-size: 0.9rem;
}

.shop-specs-row:last-child {
  border-bottom: none;
}

.shop-spec-key {
  color: var(--text-muted);
}

.shop-spec-val {
  font-weight: 600;
  color: var(--text-main);
  text-align: right;
}

/* Full description & pledge */
.shop-description-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.shop-section-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 1.2rem 0;
}

.shop-description-body p {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.shop-description-body p:last-child {
  margin-bottom: 0;
}

.shop-pledge-card {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.shop-pledge-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.shop-pledge-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 0.4rem 0;
  color: var(--gold-primary);
}

.shop-pledge-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .shop-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .shop-detail-hero-wrap {
    min-height: 260px;
  }
}

/* --------------------------------------------------------------------------
   BLOG & AVIS
   -------------------------------------------------------------------------- */
.blog-article-box {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.blog-meta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.blog-category-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: var(--gold-primary);
  font-size: 0.88rem;
  font-weight: 500;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  line-height: 1.3;
  color: var(--text-main);
}

.blog-hero-container {
  margin-bottom: 2.5rem;
  text-align: center;
}

.blog-hero-img {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

.blog-hero-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

.blog-lead-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.2rem;
}

.blog-paragraph {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.blog-heading-2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--text-main);
  margin: 2.5rem 0 1.2rem;
  clear: both;
}

.blog-heading-3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-primary);
  margin: 2rem 0 1rem;
  clear: both;
}

.blog-list {
  margin: 1rem 0 1.8rem 1.8rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.blog-list li {
  margin-bottom: 0.4rem;
}

.blog-quote {
  margin: 2.2rem 0;
  padding: 1.2rem 2rem;
  border-left: 4px solid var(--gold-primary);
  background: rgba(197, 160, 89, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  clear: both;
}

.blog-quote p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-quote cite {
  font-size: 0.88rem;
  color: var(--gold-primary);
  font-style: normal;
  display: block;
  font-weight: 600;
}

/* Inline images placements with natural aspect ratio */
.blog-inline-figure {
  margin: 2rem 0;
  clear: both;
}

.blog-inline-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.15);
}

.blog-img-full {
  width: 100%;
  clear: both;
}

.blog-img-center {
  max-width: 85%;
  margin: 2rem auto;
  clear: both;
}

.blog-img-left {
  float: left;
  max-width: 48%;
  margin: 0.6rem 2rem 1.5rem 0;
}

.blog-img-right {
  float: right;
  max-width: 48%;
  margin: 0.6rem 0 1.5rem 2rem;
}

.blog-img-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 0.4rem;
  line-height: 1.4;
}

.blog-read-more {
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: var(--transition);
}

.blog-read-more:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-article-box {
    padding: 1.5rem 1rem;
  }
  .blog-img-left,
  .blog-img-right,
  .blog-img-center {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
}

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

.review-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.review-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-main);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.review-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   CONTACTS & DISK CLIENT GALLERY
   -------------------------------------------------------------------------- */
.contacts-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 3rem;
}

.contacts-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-item .icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  width: 24px;
}

/* Client Disk View */
.disk-gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
}

.disk-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.disk-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.disk-download-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-zip-download {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #000;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px var(--gold-glow);
  transition: var(--transition);
}

.btn-zip-download:hover {
  transform: translateY(-2px);
}

.btn-drive-direct {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  color: var(--text-main);
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-drive-direct:hover {
  border-color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   FLOATING BUTTON "CONTACT RAPIDE" & MODAL
   -------------------------------------------------------------------------- */
.btn-contact-rapide {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 90;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 15px var(--gold-glow);
  transition: var(--transition);
}

.btn-contact-rapide:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 25px var(--gold-glow);
}

.pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 56px;
  border: 2px solid var(--gold-primary);
  opacity: 0;
  animation: softPulse 3.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes softPulse {
  0% { transform: scale(0.96); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0; }
  100% { transform: scale(0.96); opacity: 0; }
}

/* Modal Windows */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: modalAppear 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalAppear {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  color: var(--text-main);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gold-primary);
  color: #000;
}

.modal-header {
  margin-bottom: 1.8rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--gold-primary);
}

.direct-contact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.direct-btn {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 0.6rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.direct-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.direct-btn.whatsapp:hover { border-color: #25d366; color: #25d366; }

.booking-entry-card {
  background: var(--surface-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.booking-entry-info strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.booking-entry-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Static Contact Mode Container */
.static-contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.static-contact-intro-card {
  background: var(--surface-card);
  border-left: 3px solid var(--gold-primary);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
}

.static-contact-intro {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
}

.static-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.static-contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.static-contact-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.static-contact-btn .static-btn-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.static-contact-btn .static-btn-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.static-contact-btn .static-btn-content strong {
  font-size: 1rem;
  color: var(--text-main);
}

.static-contact-btn .static-btn-content span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.static-contact-btn.static-wa:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.06);
}

.static-contact-btn.static-wa:hover strong {
  color: #25d366;
}

.static-contact-btn.static-call:hover {
  border-color: var(--gold-primary);
  background: rgba(197, 160, 89, 0.06);
}

.static-contact-btn.static-email:hover {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.06);
}

.static-contact-btn.static-map:hover {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.06);
}

.static-studio-hours {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--surface-border);
}

/* Tarifs WhatsApp Direct Booking Button */
.btn-wa-book {
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-sm-action {
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Forms */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: -0.6rem;
  margin-bottom: 1rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #000;
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

.form-feedback.success { color: #4ade80; }
.form-feedback.error { color: #f87171; }

/* --------------------------------------------------------------------------
   LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-container {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-container img {
  max-width: 90vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  margin-top: 0.8rem;
  color: #ccc;
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 210;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 3rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 210;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  color: #000;
}

.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

/* --------------------------------------------------------------------------
   COOKIE BANNER & FOOTER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface-color);
  border-top: 1px solid var(--surface-border);
  padding: 1.2rem 2rem;
  z-index: 110;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.active { display: block; }

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.btn-cookie {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-cookie.accept { background: var(--gold-primary); color: #000; }
.btn-cookie.refuse { background: var(--surface-card); color: var(--text-muted); border: 1px solid var(--surface-border); }
.btn-cookie.custom { background: transparent; color: var(--gold-light); text-decoration: underline; }

.site-footer {
  background: var(--surface-color);
  border-top: 1px solid var(--surface-border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.footer-desc {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-location {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold-primary);
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover { color: var(--gold-primary); }

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-badge {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-main);
  transition: var(--transition);
}

.social-badge:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--surface-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Spinner */
.loading-state {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--surface-border);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.2rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .header-container { padding: 0 1.5rem; }
  .main-nav { display: none; }
  .burger-menu { display: flex; }
  .photo-grid-masonry { column-count: 2; }
  .apropos-grid { grid-template-columns: 1fr; padding: 2rem; }
  .identite-layout { grid-template-columns: 1fr; }
  .contacts-split { grid-template-columns: 1fr; padding: 2rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .photo-grid-masonry { column-count: 1; }
  .carousel-section { height: 50vh; min-height: 340px; }
  .carousel-title { font-size: 1.6rem; }
  .carousel-overlay { padding: 1.5rem; }
  .section-title { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .btn-contact-rapide { bottom: 1.5rem; right: 1.5rem; padding: 0.75rem 1.2rem; font-size: 0.85rem; }
  .direct-contact-bar { grid-template-columns: 1fr 1fr; }
  .modal-box { padding: 1.8rem 1.4rem; }
}

/* ==========================================================================
   CALENDAR V1 STYLES (Light & Dark Theme Inherited)
   ========================================================================== */

.compact-calendar-container {
  margin: 1.2rem 0;
  padding: 1.2rem;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.calendar-gate-banner {
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.calendar-controls-wrapper.cal-disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.6);
  user-select: none;
}

.calendar-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.cal-month-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: capitalize;
}

.cal-nav-btn {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  color: var(--text-main);
  border-radius: 4px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cal-nav-btn:hover:not(:disabled) {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-weekdays-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1.2rem;
}

.cal-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--surface-color);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.cal-day-cell:hover:not(.day-disabled) {
  border-color: var(--gold-primary);
  background: rgba(197, 160, 89, 0.15);
}

.cal-day-cell.day-disabled {
  opacity: 0.28;
  cursor: not-allowed;
  background: transparent;
  color: var(--text-dim);
}

.cal-day-cell.day-today {
  border: 2px solid var(--gold-primary);
  font-weight: 700;
}

.cal-day-cell.day-selected {
  background: var(--gold-primary) !important;
  color: #0d0f12 !important;
  font-weight: 700;
  box-shadow: 0 0 10px var(--gold-glow);
}

.calendar-time-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.8rem;
}

.calendar-time-section label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.calendar-time-input {
  width: 100%;
  max-width: 200px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--surface-color);
  color: var(--text-main);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  outline: none;
  transition: var(--transition);
}

.calendar-time-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.time-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.booking-selection-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
  animation: fadeIn 0.25s ease;
}

.booking-selection-summary strong {
  color: var(--gold-primary);
}

/* Full Booking Page (/reservation) */
.full-booking-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.full-booking-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.theme-light .full-booking-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.full-booking-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.full-booking-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #0d0f12;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .full-booking-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

