/*
Theme Name: Bulle de Poils Prestige
Theme URI: https://bulledepoils.fr
Author: Bulle de Poils
Author URI: https://bulledepoils.fr
Description: Theme WordPress premium pour Bulle de Poils - Salon de toilettage canin itinerant de prestige a Rozay-en-Brie (77).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bulle-de-poils
*/

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  color: #2A2425;
  background-color: #FFF5F7;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background-color: #AA7C11;
  color: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #FFF5F7; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #AA7C11 0%, #D4AF37 100%);
  border-radius: 5px;
}

.bg-rose-poudre-overlay {
  background-color: rgb(255 194 224 / 21%);
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #AA7C11 0%, #F3E5AB 30%, #D4AF37 70%, #AA7C11 100%);
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

.gold-text-gradient {
  background: linear-gradient(135deg, #AA7C11 0%, #D4AF37 50%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-glow {
  box-shadow: 0 10px 25px -5px rgba(170, 124, 17, 0.35);
}

.gold-glow-hover:hover {
  box-shadow: 0 15px 30px -5px rgba(170, 124, 17, 0.55);
}

.marble-premium {
  background-color: #fafafb !important;
  background-image:
    linear-gradient(135deg, rgba(42,36,37,0.05) 0%, transparent 35%, rgba(170,124,17,0.07) 48%, rgba(243,229,171,0.14) 50%, rgba(170,124,17,0.07) 52%, transparent 65%, rgba(42,36,37,0.04) 100%),
    linear-gradient(45deg, transparent 40%, rgba(170,124,17,0.08) 46%, rgba(243,229,171,0.16) 50%, rgba(170,124,17,0.08) 54%, transparent 60%) !important;
  background-size: 350px 350px !important;
}

.gold-double-rim {
  position: relative;
  border: 1px solid rgba(170, 124, 17, 0.25) !important;
}

.gold-double-rim::before {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, #AA7C11 0%, #F3E5AB 50%, #D4AF37 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatUp {
  0% { transform: translateY(110vh) scale(0.6) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.1) rotate(360deg); opacity: 0; }
}

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

@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.7s ease-in-out;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

#loader .spinner {
  width: 112px;
  height: 112px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader .spinner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #FFF0F3;
  border-top-color: #AA7C11;
  animation: spinLoader 1s linear infinite;
}

.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85) 0%, rgba(255,194,224,0.25) 50%, rgba(212,175,55,0.15) 100%);
  border: 0.5px solid rgba(255,255,255,0.5);
  box-shadow: inset -3px -3px 8px rgba(170,124,17,0.04), 0 5px 15px rgba(255,194,224,0.15);
  pointer-events: none;
  z-index: 1;
}

.bdp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.40);
  transition: all 0.3s ease;
}

.bdp-header .nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bdp-header .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdp-header .logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(170,124,17,0.4);
  padding: 1px;
  background: #fff;
  transition: transform 0.5s ease;
}

.bdp-header .logo-link:hover .logo-icon {
  transform: rotate(12deg);
}

.bdp-header .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.bdp-header .nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bdp-header .nav-desktop a {
  color: #2A2425;
  transition: color 0.3s ease;
}

.bdp-header .nav-desktop a:hover {
  color: #AA7C11;
}

.bdp-header .nav-desktop .vip-link {
  color: #AA7C11;
  font-weight: 600;
}

.bdp-header .cta-btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 9999px;
  color: #2A2425;
  transition: all 0.3s ease;
}

.bdp-header .cta-btn:hover {
  transform: scale(1.05);
}

.bdp-header .burger {
  display: none;
  font-size: 1.75rem;
  color: #2A2425;
  padding: 8px;
  z-index: 50;
}

.bdp-header .mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,194,224,0.3);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bdp-header .mobile-nav.open {
  display: flex;
}

@media (max-width: 768px) {
  .bdp-header .nav-desktop,
  .bdp-header .cta-desktop {
    display: none;
  }
  .bdp-header .burger {
    display: block;
  }
}

.bdp-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 128px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding-left: 24px;
  padding-right: 24px;
}

.bdp-hero .hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .bdp-hero .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.bdp-hero .hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .bdp-hero .hero-text {
    text-align: left;
  }
}

.bdp-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(170,124,17,0.3);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AA7C11;
}

.bdp-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #2A2425;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .bdp-hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .bdp-hero h1 { font-size: 3.75rem; }
}

.bdp-hero h1 .script-highlight {
  display: block;
  margin-top: 8px;
  font-family: "Great Vibes", cursive;
  color: #AA7C11;
  font-size: 1.3em;
  font-style: italic;
  font-weight: 400;
  padding: 8px 0;
}

.bdp-hero .hero-desc {
  font-size: 1rem;
  max-width: 560px;
  margin: 24px auto 0;
  color: rgba(42,36,37,0.8);
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .bdp-hero .hero-desc { margin-left: 0; }
}

.bdp-hero .hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .bdp-hero .hero-actions { flex-direction: row; }
}

@media (min-width: 1024px) {
  .bdp-hero .hero-actions { justify-content: flex-start; }
}

.bdp-hero .hero-actions .btn-primary,
.bdp-hero .hero-actions .btn-secondary {
  width: 100%;
  max-width: 280px;
  text-align: center;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.bdp-hero .hero-actions .btn-primary {
  color: #2A2425;
}

.bdp-hero .hero-actions .btn-secondary {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(170,124,17,0.3);
  color: #2A2425;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bdp-hero .hero-actions .btn-secondary:hover {
  background: #fff;
  border-color: #AA7C11;
  color: #AA7C11;
}

.bdp-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(170,124,17,0.15);
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .bdp-hero .hero-stats { margin-left: 0; }
}

.bdp-hero .hero-stats .stat-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #AA7C11;
}

.bdp-hero .hero-stats .stat-label {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(42,36,37,0.7);
}

.bdp-hero .hero-visual {
  display: flex;
  justify-content: center;
}

.bdp-hero .hero-frame {
  position: relative;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  padding: 8px;
}

@media (min-width: 640px) {
  .bdp-hero .hero-frame { width: 384px; height: 384px; }
}

.bdp-hero .hero-frame .frame-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
}

.bdp-hero .hero-frame .frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.7s ease;
}

.bdp-hero .hero-frame:hover .frame-inner img {
  transform: scale(1.1);
}

.bdp-hero .hero-frame .floating-badge {
  position: absolute;
  bottom: -8px;
  left: -8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(170,124,17,0.3);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdp-hero .hero-frame .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2425;
  font-weight: 700;
}

.bdp-hero .hero-frame .floating-badge .badge-text p:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bdp-hero .hero-frame .floating-badge .badge-text p:last-child {
  font-size: 0.625rem;
  color: rgba(42,36,37,0.7);
}

.bdp-section {
  position: relative;
  padding: 112px 24px;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.bdp-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.bdp-section .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .bdp-section .section-header h2 { font-size: 3rem; }
}

.bdp-section .section-header .gold-line {
  width: 96px;
  height: 1px;
  background: #AA7C11;
  margin: 16px auto;
}

.bdp-section .section-header p {
  max-width: 672px;
  margin: 0 auto;
  color: rgba(42,36,37,0.8);
  font-weight: 300;
  font-size: 0.875rem;
}

.bdp-prestations .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .bdp-prestations .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bdp-prestations .soin-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 35px;
  border: 1px solid rgba(170,124,17,0.2);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.bdp-prestations .soin-card:hover {
  border-color: rgba(170,124,17,0.5);
  transform: translateY(-4px);
}

.bdp-prestations .soin-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,245,247,0.8);
}

.bdp-prestations .soin-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AA7C11;
  font-size: 1.25rem;
  border: 1px solid rgba(170,124,17,0.2);
}

.bdp-prestations .soin-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.bdp-prestations .soin-card .card-body {
  font-size: 0.875rem;
  color: rgba(42,36,37,0.8);
}

.bdp-prestations .soin-card .card-body p {
  margin-bottom: 16px;
}

.bdp-prestations .soin-card .card-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdp-prestations .soin-card .card-body li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bdp-prestations .soin-card .card-body li i {
  color: #AA7C11;
  font-size: 0.75rem;
}

.bdp-prestations .soin-card .card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,245,247,0.8);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: #AA7C11;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bdp-comparison-section {
  position: relative;
  padding: 96px 24px;
  z-index: 10;
  background: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.bdp-comparison-section .comparison-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .bdp-comparison-section .comparison-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.bdp-comparison-section .comparison-text .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(170,124,17,0.3);
  background: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AA7C11;
}

.bdp-comparison-section .comparison-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .bdp-comparison-section .comparison-text h2 { font-size: 3rem; }
}

.bdp-comparison-section .comparison-text p {
  color: rgba(42,36,37,0.8);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 24px;
}

.bdp-slider {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  user-select: none;
  cursor: ew-resize;
}

.bdp-slider .after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bdp-slider .after-layer img,
.bdp-slider .before-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdp-slider .before-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 50%;
}

.bdp-slider .before-layer .before-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 550px;
  max-width: 550px;
}

.bdp-slider .label {
  position: absolute;
  bottom: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.625rem;
  padding: 6px 12px;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 5;
}

.bdp-slider .label-before { left: 16px; }
.bdp-slider .label-after { right: 16px; }

.bdp-slider .slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  margin-left: -2px;
  background: linear-gradient(180deg, #AA7C11, #F3E5AB, #D4AF37);
  z-index: 30;
  cursor: ew-resize;
}

.bdp-slider .slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2425;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 31;
  cursor: ew-resize;
  font-size: 0.875rem;
}

.bdp-tarifs .tarifs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .bdp-tarifs .tarifs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bdp-tarifs .tarif-card {
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.bdp-tarifs .tarif-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.bdp-tarifs .tarif-card.popular {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .bdp-tarifs .tarif-card.popular {
    transform: scale(1);
  }
}

.bdp-tarifs .tarif-card .popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: #2A2425;
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bdp-tarifs .tarif-card .gamme-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #AA7C11;
}

.bdp-tarifs .tarif-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 16px;
}

.bdp-tarifs .tarif-card .race-info {
  font-size: 0.75rem;
  color: rgba(42,36,37,0.6);
  font-style: italic;
  margin-top: 4px;
}

.bdp-tarifs .tarif-card .price-block {
  padding: 24px 0;
  margin: 16px 0;
  border-top: 1px solid rgba(170,124,17,0.15);
  border-bottom: 1px solid rgba(170,124,17,0.15);
}

.bdp-tarifs .tarif-card .price {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2A2425;
}

.bdp-tarifs .tarif-card .price-sub {
  font-size: 0.75rem;
  color: rgba(42,36,37,0.6);
  margin-top: 4px;
}

.bdp-tarifs .tarif-card .features {
  text-align: left;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(42,36,37,0.8);
}

.bdp-tarifs .tarif-card .features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bdp-tarifs .tarif-card .features li i {
  color: #AA7C11;
  font-size: 0.7rem;
}

.bdp-tarifs .exception-box {
  margin-top: 64px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

@media (min-width: 640px) {
  .bdp-tarifs .exception-box { padding: 40px; }
}

.bdp-tarifs .exception-box .exception-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .bdp-tarifs .exception-box .exception-content {
    flex-direction: row;
    gap: 32px;
  }
}

.bdp-tarifs .exception-box .exception-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2425;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bdp-tarifs .exception-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.bdp-tarifs .exception-box p {
  font-size: 0.875rem;
  color: rgba(42,36,37,0.8);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 12px;
}

.bdp-tarifs .exception-box .signature {
  display: block;
  font-family: "Great Vibes", cursive;
  color: #AA7C11;
  font-size: 1.5rem;
  margin-top: 16px;
}

.bdp-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .bdp-contact .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.bdp-contact .contact-info .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(170,124,17,0.3);
  background: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AA7C11;
}

.bdp-contact .contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .bdp-contact .contact-info h2 { font-size: 3rem; }
}

.bdp-contact .contact-info .gold-line-left {
  width: 64px;
  height: 1px;
  background: #AA7C11;
  margin-top: 16px;
}

.bdp-contact .contact-info > p {
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(42,36,37,0.8);
  font-weight: 300;
  line-height: 1.7;
}

.bdp-contact .contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.bdp-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bdp-contact .contact-item .item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(170,124,17,0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AA7C11;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.bdp-contact .contact-item .item-label {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42,36,37,0.6);
  font-weight: 600;
}

.bdp-contact .contact-item .item-value {
  font-size: 0.875rem;
  font-weight: 700;
}

.bdp-contact .contact-form-wrapper {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 32px;
  border-radius: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

@media (min-width: 640px) {
  .bdp-contact .contact-form-wrapper { padding: 40px; }
}

.bdp-contact .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .bdp-contact .form-row { grid-template-columns: 1fr 1fr; }
}

.bdp-contact .form-group {
  margin-bottom: 24px;
}

.bdp-contact .form-group label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(42,36,37,0.7);
  margin-bottom: 8px;
}

.bdp-contact .form-group input,
.bdp-contact .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(170,124,17,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #2A2425;
  outline: none;
  transition: all 0.3s ease;
}

.bdp-contact .form-group input:focus,
.bdp-contact .form-group textarea:focus {
  border-color: #AA7C11;
  box-shadow: 0 0 0 3px rgba(170,124,17,0.1);
}

.bdp-contact .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.bdp-contact .submit-btn {
  width: 100%;
  color: #2A2425;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.bdp-contact .submit-btn:hover {
  transform: scale(1.02);
}

.bdp-lola .lola-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .bdp-lola .lola-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.bdp-lola .lola-portrait {
  display: flex;
  justify-content: center;
}

.bdp-lola .portrait-frame {
  position: relative;
  width: 288px;
  height: 384px;
  border-radius: 24px;
  padding: 6px;
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

@media (min-width: 640px) {
  .bdp-lola .portrait-frame { width: 320px; height: 420px; }
}

.bdp-lola .portrait-frame:hover {
  transform: rotate(0deg);
}

.bdp-lola .portrait-frame .frame-inner {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.bdp-lola .portrait-frame .frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdp-lola .portrait-frame .portrait-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(170,124,17,0.3);
  padding: 12px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bdp-lola .portrait-frame .portrait-badge .name {
  font-family: "Great Vibes", cursive;
  color: #AA7C11;
  font-size: 1.25rem;
}

.bdp-lola .portrait-frame .portrait-badge .title {
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(42,36,37,0.7);
}

.bdp-lola .lola-story .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(170,124,17,0.3);
  background: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AA7C11;
}

.bdp-lola .lola-story h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .bdp-lola .lola-story h2 { font-size: 3rem; }
}

.bdp-lola .lola-story .gold-line-left {
  width: 64px;
  height: 1px;
  background: #AA7C11;
  margin-top: 24px;
}

.bdp-lola .lola-story .story-text {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(42,36,37,0.8);
  line-height: 1.7;
  font-weight: 300;
}

.bdp-lola .lola-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 384px;
  margin-top: 32px;
}

.bdp-lola .value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdp-lola .value-item .value-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(170,124,17,0.1);
  border: 1px solid rgba(170,124,17,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AA7C11;
  font-size: 0.7rem;
}

.bdp-lola .value-item span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bdp-galerie .galerie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .bdp-galerie .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bdp-galerie .galerie-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.bdp-galerie .galerie-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.bdp-galerie .galerie-card .card-info {
  margin-bottom: 16px;
  text-align: center;
}

.bdp-galerie .galerie-card .card-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.bdp-galerie .galerie-card .card-info .tag {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #AA7C11;
  background: rgba(170,124,17,0.1);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-top: 8px;
}

.bdp-galerie .galerie-card .slider-mini {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(170,124,17,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  user-select: none;
  cursor: ew-resize;
}

.bdp-galerie .galerie-card .caption {
  font-size: 0.75rem;
  color: rgba(42,36,37,0.7);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

.bdp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.5s ease;
  max-width: 384px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(170,124,17,0.4);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bdp-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.bdp-toast .toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2425;
  flex-shrink: 0;
}

.bdp-toast .toast-text p:first-child {
  font-size: 0.875rem;
  font-weight: 700;
}

.bdp-toast .toast-text p:last-child {
  font-size: 0.75rem;
  color: rgba(42,36,37,0.7);
  margin-top: 4px;
}

.bdp-toast .toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  color: rgba(42,36,37,0.4);
  font-size: 0.7rem;
  padding: 4px;
}

.bdp-footer {
  background: #1C1718;
  color: #E5DDDE;
  padding-top: 64px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(170,124,17,0.2);
  position: relative;
  z-index: 10;
  padding-left: 24px;
  padding-right: 24px;
}

.bdp-footer .footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
  .bdp-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.bdp-footer .footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #fff;
}

.bdp-footer .footer-brand p {
  font-size: 0.75rem;
  color: rgba(229,221,222,0.6);
  max-width: 384px;
  line-height: 1.6;
  margin-top: 16px;
}

.bdp-footer .footer-legal h4,
.bdp-footer .footer-social h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #AA7C11;
}

.bdp-footer .footer-legal ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(229,221,222,0.6);
}

.bdp-footer .footer-social .social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.bdp-footer .footer-social .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(229,221,222,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.bdp-footer .footer-social .social-links a:hover {
  border-color: #AA7C11;
  color: #AA7C11;
}

.bdp-footer .footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: rgba(229,221,222,0.45);
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .bdp-footer .footer-bottom { flex-direction: row; }
}

.admin-bar .bdp-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .bdp-header {
    top: 46px;
  }
}
