/* =====================================================
   LA VILLA ROMANE - Design System
   Style: Luxe, Glamour, Romantique
   Couleurs: Noir, Or, Violet/Rose
===================================================== */

/* Google Fonts - Including script fonts for logo style */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Tangerine:wght@400;700&family=Pinyon+Script&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* =====================================================
   CSS Variables - Design Tokens
===================================================== */
:root {
    /* Colors */
    --color-gold: #D4AF37;
    --color-gold-light: #E8C547;
    --color-gold-dark: #B8960F;
    --color-gold-logo: #9B8A54;
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-black-lighter: #2a2a2a;
    --color-violet: #9b4dca;
    --color-violet-light: #b968e8;
    --color-pink: #ff6b9d;
    --color-pink-glow: rgba(255, 107, 157, 0.3);
    --color-violet-glow: rgba(155, 77, 202, 0.3);
    --color-white: #f5f5f5;
    --color-white-muted: rgba(245, 245, 245, 0.7);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    --gradient-romantic: linear-gradient(135deg, var(--color-violet) 0%, var(--color-pink) 100%);
    --gradient-glow: radial-gradient(ellipse at center, var(--color-violet-glow) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 40px var(--color-violet-glow);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
}

/* =====================================================
   Reset & Base Styles
===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =====================================================
   Typography
===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-white-muted);
}

.text-gold {
    color: var(--color-gold);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-gold-logo) 0%, #B8A76A 50%, var(--color-gold-logo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Classe pour le nom de marque - utilise la même police que le logo */
.brand-name {
    font-family: var(--font-script);
    font-weight: 400;
}

/* =====================================================
   Layout Components
===================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Header & Navigation
===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-sm) 0;
    transition: var(--transition-medium);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition-medium);
}

.header.scrolled .logo-img {
    height: 55px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }

    .header.scrolled .logo-img {
        height: 45px;
    }
}

.nav-list {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-xs);
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: var(--space-md);
}

.lang-btn {
    font-size: 1.3rem;
    opacity: 0.5;
    transition: var(--transition-fast);
    text-decoration: none;
}

.lang-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 50%;
        right: 60px;
        transform: translateY(-50%);
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-medium);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* =====================================================
   Hero Section
===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.2) 0%,
            rgba(10, 10, 10, 0.3) 40%,
            rgba(10, 10, 10, 0.4) 60%,
            rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
    text-align: center;
    padding: var(--space-md);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto var(--space-md);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

.hero-scroll span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    animation: scrollDown 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   Buttons
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-romantic {
    background: var(--gradient-romantic);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-romantic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--color-violet-glow);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* =====================================================
   Airbnb Badge
===================================================== */
.airbnb-badge {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.airbnb-badge-link {
    display: block;
    text-decoration: none;
}

.airbnb-badge-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    transition: all 0.3s ease;
}

.airbnb-badge-content:hover {
    background: rgba(255, 90, 95, 0.1);
    border-color: #FF5A5F;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 90, 95, 0.2);
}

.airbnb-logo {
    flex-shrink: 0;
}

.airbnb-info {
    text-align: left;
}

.airbnb-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: 4px;
}

.airbnb-rating .stars {
    color: #FF5A5F;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.airbnb-rating .score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}

.airbnb-text {
    font-size: 0.9rem;
    color: var(--color-white-muted);
}

.airbnb-cta {
    color: #FF5A5F;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .airbnb-badge-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .airbnb-info {
        text-align: center;
    }
}

/* =====================================================
   Cards
===================================================== */
.card {
    background: var(--color-black-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: var(--space-md);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-white-muted);
}

/* Glass Card */
.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
}

/* =====================================================
   Prestations / Services
===================================================== */
.prestations {
    background: var(--gradient-dark);
}

.prestation-category {
    margin-bottom: var(--space-lg);
}

.prestation-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.prestation-thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.prestation-category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.prestation-category-title .icon {
    font-size: 2rem;
}

@media (max-width: 480px) {
    .prestation-category-header {
        flex-direction: column;
        text-align: center;
    }

    .prestation-thumbnail {
        width: 100px;
        height: 100px;
    }
}

.prestation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-black-light);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

.prestation-item:hover {
    background: var(--color-black-lighter);
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.prestation-item.selected {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Prestations avec image de fond */
.prestation-item.with-bg {
    position: relative;
    background-size: 100% 500%;
    background-position: center 0%;
    padding: var(--space-md) var(--space-lg);
    min-height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

/* Différentes positions pour chaque item */
.prestation-item.with-bg:nth-child(2) {
    background-position: center 0%;
}

.prestation-item.with-bg:nth-child(3) {
    background-position: center 25%;
}

.prestation-item.with-bg:nth-child(4) {
    background-position: center 50%;
}

.prestation-item.with-bg:nth-child(5) {
    background-position: center 75%;
}

.prestation-item.with-bg:nth-child(6) {
    background-position: center 80%;
}

.prestation-item.with-bg:nth-child(7) {
    background-position: center 100%;
}

.prestation-item.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.6) 50%,
            rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
    transition: var(--transition-medium);
}

.prestation-item.with-bg>* {
    position: relative;
    z-index: 2;
}

.prestation-item.with-bg:hover::before {
    background: linear-gradient(90deg,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.4) 50%,
            rgba(10, 10, 10, 0.2) 100%);
}

.prestation-item.with-bg:hover {
    transform: scale(1.02);
    border-color: var(--color-gold);
}

.prestation-item.with-bg .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
}

.prestation-item.with-bg .price {
    font-size: 1.3rem;
    font-weight: 700;
}

.prestation-item .name {
    font-weight: 500;
}

.prestation-item .description {
    font-size: 0.85rem;
    color: var(--color-white-muted);
    margin-top: 2px;
}

.prestation-item .price {
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.prestation-checkbox {
    display: none;
}

.prestation-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-sm);
    margin-right: var(--space-sm);
    transition: var(--transition-fast);
}

.prestation-checkbox:checked+.prestation-checkbox-label {
    background: var(--color-gold);
}

.prestation-checkbox:checked+.prestation-checkbox-label::after {
    content: '✓';
    color: var(--color-black);
    font-weight: bold;
}

/* =====================================================
   Gallery
===================================================== */
.gallery {
    background: var(--color-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(155, 77, 202, 0);
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    background: rgba(155, 77, 202, 0.3);
}

.gallery-item .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =====================================================
   Calendar
===================================================== */
.calendar-section {
    background: var(--color-black-light);
}

.calendar-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-black);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.calendar-nav {
    display: flex;
    gap: var(--space-sm);
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-black-lighter);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.calendar-month {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day-name {
    text-align: center;
    padding: var(--space-xs);
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.85rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.booked) {
    background: var(--color-gold);
    color: var(--color-black);
}

.calendar-day.today {
    border: 2px solid var(--color-gold);
}

.calendar-day.booked {
    background: var(--color-pink);
    color: var(--color-white);
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.available {
    background: rgba(76, 175, 80, 0.2);
}

.calendar-day.disabled {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--color-gold);
    color: var(--color-black);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.legend-dot.available {
    background: rgba(76, 175, 80, 0.5);
}

.legend-dot.booked {
    background: var(--color-pink);
}

.legend-dot.selected {
    background: var(--color-gold);
}

/* Bouton Valider les dates */
.validate-dates-container {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(155, 77, 202, 0.1) 100%);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.validate-dates-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.selected-dates-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.dates-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
}

.dates-range {
    font-size: 0.95rem;
    color: var(--color-white-muted);
}

.validate-btn {
    width: 100%;
    max-width: 350px;
    animation: pulse 2s infinite;
}

/* Notification calendrier */
.calendar-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: linear-gradient(135deg, var(--color-gold) 0%, #c4a030 100%);
    color: var(--color-black);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.3s ease;
}

.calendar-notification.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification-icon {
    width: 24px;
    height: 24px;
    background: var(--color-black);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Prompt de sélection de dates */
.date-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.date-prompt-overlay.visible {
    opacity: 1;
}

.date-prompt {
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-black) 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    max-width: 400px;
    margin: var(--space-md);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.date-prompt-overlay.visible .date-prompt {
    transform: scale(1);
}

.date-prompt-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.date-prompt h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.date-prompt p {
    color: var(--color-white-muted);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.date-prompt-arrow {
    margin: var(--space-md) 0;
}

.date-prompt-arrow span {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--color-gold);
    animation: bounceDown 1s ease infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(8px);
    }
}

/* =====================================================
   Cart / Panier
===================================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--color-black-light);
    z-index: var(--z-modal);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
}

.cart-close {
    font-size: 1.5rem;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.cart-close:hover {
    color: var(--color-gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-sm);
    background: var(--color-black);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-details {
    font-size: 0.85rem;
    color: var(--color-white-muted);
}

.cart-item-price {
    font-weight: 600;
    color: var(--color-gold);
}

.cart-item-remove {
    color: var(--color-pink);
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: var(--space-sm);
}

.cart-footer {
    padding: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.cart-total-price {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.8rem;
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* =====================================================
   Cart Button (Floating)
===================================================== */
.cart-btn-floating {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    z-index: var(--z-sticky);
    transition: var(--transition-medium);
}

.cart-btn-floating:hover {
    transform: scale(1.1);
}

.cart-btn-floating .count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--color-pink);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

/* =====================================================
   Contact / Footer
===================================================== */
.footer {
    background: var(--color-black);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--color-white-muted);
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.footer-contact-item .icon {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white-muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-description {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* =====================================================
   Animations
===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Glow effect */
.glow {
    position: relative;
}

.glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none;
}

.glow:hover::before {
    opacity: 1;
}

/* =====================================================
   About Section
===================================================== */
.about {
    background: var(--color-black-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    opacity: 0.3;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-features {
    margin-top: var(--space-md);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.about-feature .icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =====================================================
   Form Elements
===================================================== */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--color-white);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* =====================================================
   Lightbox
===================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: var(--space-md);
}

.lightbox-nav:hover {
    color: var(--color-gold);
}

.lightbox-prev {
    left: var(--space-md);
}

.lightbox-next {
    right: var(--space-md);
}

/* =====================================================
   Utilities
===================================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* =====================================================
   Loading States
===================================================== */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--color-gold);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =====================================================
   FAQ Section
===================================================== */
.faq-section {
    background: var(--color-black);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: var(--space-lg);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.faq-category-title .icon {
    font-size: 1.8rem;
}

.faq-category-title h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--color-gold);
}

.faq-item {
    background: var(--color-black-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    text-align: left;
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question .icon-toggle {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: var(--transition-medium);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-item.active .faq-question .icon-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-white-muted);
    line-height: 1.8;
}

.faq-answer-content ul {
    margin-top: var(--space-sm);
    padding-left: var(--space-md);
}

.faq-answer-content li {
    position: relative;
    padding-left: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.faq-answer-content li::before {
    content: '✓';
    position: absolute;
    left: calc(-1 * var(--space-sm));
    color: var(--color-gold);
    font-weight: bold;
}

.faq-answer-content strong {
    color: var(--color-gold);
}

/* Schema.org FAQ structured data styling */
.faq-schema {
    display: none;
}

/* =====================================================
   Urgency Badge
===================================================== */
.urgency-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-lg);
    margin: var(--space-md) auto;
    max-width: 500px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-badge.hidden {
    display: none;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: iconBounce 1s ease-in-out infinite;
}

.urgency-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.urgency-text strong {
    color: var(--color-gold);
}

@keyframes urgencyPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.4);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .urgency-badge {
        padding: var(--space-xs) var(--space-md);
        gap: 8px;
    }

    .urgency-text {
        font-size: 0.9rem;
    }
}

/* =====================================================
   Auto-Only Items (non-clickable accommodation)
===================================================== */
.prestation-item.auto-only {
    cursor: default;
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.prestation-item.auto-only::after {
    content: '🔒 Sélection automatique via calendrier';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.prestation-item.auto-only.selected {
    opacity: 1;
    border-color: var(--color-gold);
}

/* =====================================================
   Promo Code
===================================================== */
.promo-code-section {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-input-group {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-input::placeholder {
    color: var(--color-white-muted);
    text-transform: none;
    letter-spacing: normal;
}

.promo-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.promo-btn {
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.promo-btn:hover {
    background: var(--color-gold-light);
}

.promo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.promo-message {
    margin-top: 8px;
    font-size: 0.85rem;
    min-height: 20px;
}

.promo-message.success {
    color: #4ade80;
}

.promo-message.error {
    color: #f87171;
}

.promo-discount {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    color: #4ade80;
    font-size: 0.95rem;
}

.discount-amount {
    font-weight: 600;
}

/* =====================================================
   Info Tooltip Styles (Love Box contents)
===================================================== */
.prestation-item.has-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.prestation-item.has-info>div:first-child {
    flex: 1;
}

.info-tooltip-trigger {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    font-size: 16px;
    cursor: help;
    transition: all 0.3s ease;
}

.info-icon:hover {
    background: var(--color-gold);
    transform: scale(1.15);
}

.info-tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 15px;
    width: 280px;
    padding: 16px;
    background: #111111;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 99999;
    text-align: left;
}

.info-tooltip strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 8px;
}

.info-tooltip-trigger:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Ensure prestation-item and parents have overflow visible for tooltip */
.prestation-item,
.prestation-category,
.prestations-grid,
.info-tooltip-trigger {
    overflow: visible !important;
}

.prestation-item {
    position: relative;
    z-index: 1;
    transition: z-index 0s;
}

/* When hovering, bring this item to the front */
.prestation-item:hover {
    z-index: 100;
}

.prestation-item.has-info .price {
    flex-shrink: 0;
    min-width: 70px;
    text-align: right;
}

/* =====================================================
   CART EMAIL SECTION
===================================================== */
.cart-email-section {
    margin: var(--space-md) 0;
}

.cart-email-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-white-muted);
    margin-bottom: 8px;
}

.cart-email-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cart-email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cart-email-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.cart-email-input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

/* =====================================================
   GIFT CARD STYLES
===================================================== */
.gift-card-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: start;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 900px) {
    .gift-card-container {
        grid-template-columns: 1fr;
    }
}

/* Gift Card Visual Preview */
.gift-card-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-card-preview {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1.6;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.gift-card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gift-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gift-card-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: var(--color-gold);
}

.gift-card-badge {
    font-size: 0.75rem;
    background: var(--color-gold);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
}

.gift-card-preview .gift-card-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gift-card-footer {
    font-size: 0.8rem;
    color: var(--color-white-muted);
    text-align: center;
}

/* Gift Card Form */
.gift-card-form h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gift-card-subtitle {
    color: var(--color-white-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.gift-card-amount-section {
    margin-bottom: var(--space-md);
}

.gift-card-amounts {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.amount-btn.active {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #000;
}

.custom-amount-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white-muted);
    font-size: 0.9rem;
}

.custom-amount-input {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-amount-input input {
    width: 100px;
    padding: 10px 30px 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.custom-amount-input .currency {
    position: absolute;
    right: 10px;
    color: var(--color-gold);
    font-weight: 600;
}

/* Gift Card Type Selection */
.gift-card-type-section {
    margin-bottom: var(--space-md);
}

.gift-card-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .gift-card-types {
        grid-template-columns: 1fr;
    }
}

.gift-type-option input {
    display: none;
}

.gift-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-type-option input:checked+.gift-type-card {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.gift-type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gift-type-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gift-type-desc {
    font-size: 0.8rem;
    color: var(--color-white-muted);
    margin-bottom: 10px;
}

.gift-type-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* Shipping Address */
.gift-card-shipping {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.gift-card-shipping .form-input {
    margin-bottom: 10px;
}

.address-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}

/* Add Button */
.gift-card-add-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* =====================================================
   LIVRE D'OR / GUESTBOOK STYLES
===================================================== */
.guestbook-section {
    background: linear-gradient(180deg, var(--color-black) 0%, rgba(20, 10, 30, 0.95) 50%, var(--color-black) 100%);
}

.guestbook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (max-width: 900px) {
    .guestbook-content {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Display */
.guestbook-testimonials {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-height: 600px;
    overflow-y: auto;
    padding-right: var(--space-sm);
}

.guestbook-testimonials::-webkit-scrollbar {
    width: 6px;
}

.guestbook-testimonials::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.guestbook-testimonials::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.guestbook-loading {
    text-align: center;
    padding: var(--space-lg);
    color: var(--color-white-muted);
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
}

.testimonial-city {
    color: var(--color-white-muted);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.testimonial-message {
    color: var(--color-white);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-date {
    margin-top: var(--space-sm);
    font-size: 0.8rem;
    color: var(--color-white-muted);
}

.no-testimonials {
    text-align: center;
    padding: var(--space-lg);
    color: var(--color-white-muted);
}

/* Guestbook Form */
.guestbook-form-container {
    padding: var(--space-lg);
}

.guestbook-form-container h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.form-subtitle {
    color: var(--color-white-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Star Rating Component */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--color-gold);
}

.star-rating label:hover {
    transform: scale(1.2);
}

/* Character Counter */
.char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-white-muted);
    margin-top: 5px;
}

/* Submit Button States */
.guestbook-submit {
    width: 100%;
    margin-top: var(--space-sm);
}

.guestbook-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.guestbook-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    color: #22c55e;
    margin-top: var(--space-md);
}

/* =====================================================
   Print Styles
===================================================== */
@media print {

    .header,
    .footer,
    .cart-sidebar,
    .cart-btn-floating {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */
.whatsapp-btn-floating {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn-floating svg {
    transition: transform 0.3s ease;
}

.whatsapp-btn-floating:hover svg {
    transform: rotate(-10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-btn-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile: boutons plus petits et repositionnés */
@media (max-width: 768px) {
    .whatsapp-btn-floating {
        bottom: 90px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media print {
    .whatsapp-btn-floating {
        display: none;
    }
}

/* =====================================================
   GALLERY LOADING
===================================================== */
.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-white-muted);
    font-size: 1rem;
}

.loading-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   BLOG SECTION
===================================================== */
.blog-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--color-gold);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: var(--space-md);
}

.blog-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-white-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--glass-border);
}

.blog-card-footer time {
    font-size: 0.8rem;
    color: var(--color-white-muted);
}

.blog-read-more {
    font-size: 0.9rem;
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--color-gold-light);
}

/* Blog Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    animation: fadeIn 0.3s ease;
}

.blog-modal-content {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: var(--space-xl);
    border: 1px solid var(--color-gold);
}

.blog-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-modal-close:hover {
    color: var(--color-gold);
}

.blog-article h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.blog-article time {
    color: var(--color-white-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: var(--space-lg);
}

.blog-article-body {
    color: var(--color-white);
    line-height: 1.8;
}

.blog-article-body h3 {
    color: var(--color-gold);
    margin: var(--space-lg) 0 var(--space-sm);
}

.blog-article-body p {
    margin-bottom: var(--space-md);
}

.blog-article-body ul,
.blog-article-body ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.blog-article-body li {
    margin-bottom: var(--space-xs);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-modal-content {
        padding: var(--space-md);
    }

    .blog-article h2 {
        font-size: 1.4rem;
    }
}

/* =====================================================
   MUSIC PLAYER
===================================================== */
.music-player {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.music-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg);
}

.music-player.playing .music-toggle {
    animation: pulse-music 2s infinite;
}

@keyframes pulse-music {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(212, 175, 55, 0.7);
    }
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 15px;
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.music-player.expanded .music-controls {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.music-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.music-note {
    font-size: 1.2rem;
}

.music-title {
    font-size: 0.85rem;
    color: var(--color-white);
    font-weight: 500;
    white-space: nowrap;
}

.music-buttons {
    display: flex;
    gap: 5px;
}

.music-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.music-btn:hover {
    background: var(--color-gold);
}

.music-volume {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
}

.music-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
}

.music-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    border: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .music-player {
        bottom: 80px;
        left: 10px;
    }

    .music-toggle {
        width: 44px;
        height: 44px;
    }

    .music-controls {
        padding: 8px 12px;
    }

    .music-volume {
        display: none;
    }
}

/* =====================================================
   MOBILE OPTIMIZATION - Responsive Design
===================================================== */

@media (max-width: 768px) {

    /* === GENERAL SPACING === */
    .section {
        padding: var(--space-md) var(--space-sm);
    }

    .container {
        padding: 0 var(--space-sm);
    }

    /* === HERO SECTION === */
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: var(--space-sm);
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--space-xs);
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .hero-description {
        font-size: 0.85rem;
        max-width: 90%;
        margin-bottom: var(--space-sm);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .hero-cta .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* === FLOATING BUTTONS (WhatsApp, Panier, Musique) === */
    .whatsapp-button,
    .cart-button {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }

    .cart-button {
        bottom: 75px !important;
    }

    .whatsapp-button {
        bottom: 15px !important;
    }

    .music-player {
        bottom: 135px;
        left: 8px;
    }

    .music-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* === ABOUT SECTION === */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .about-image img {
        max-height: 250px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .about-features {
        gap: var(--space-xs);
    }

    .about-feature {
        padding: var(--space-xs);
    }

    .about-feature .icon {
        font-size: 1.5rem;
    }

    /* === GALLERY SECTION === */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    /* === PRESTATIONS SECTION === */
    .prestation-card,
    .card {
        padding: var(--space-sm);
    }

    .prestation-card h4,
    .card-title {
        font-size: 1rem;
    }

    .prestation-price {
        font-size: 1.1rem;
    }

    /* === CALENDAR SECTION === */
    .calendar-container,
    .calendar-wrapper {
        padding: var(--space-xs);
        max-width: 100%;
        overflow-x: hidden;
    }

    .calendar-section {
        padding: var(--space-sm) 0;
    }

    .calendar-grid {
        gap: 2px;
        width: 100%;
    }

    .calendar-day-name {
        font-size: 0.7rem;
        padding: 4px 2px;
    }

    .calendar-day {
        width: 100%;
        min-width: 0;
        aspect-ratio: 1;
        font-size: 0.75rem;
        padding: 0;
    }

    .calendar-header {
        font-size: 1rem;
        padding: 10px 0;
    }

    .calendar-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .calendar-month {
        font-size: 1.1rem;
    }

    .calendar-legend {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.75rem;
        justify-content: center;
    }

    /* === GIFT CARD MOBILE === */
    .gift-card-preview {
        max-width: 280px;
        padding: 16px;
        aspect-ratio: 1.6;
    }

    .gift-card-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .gift-card-logo {
        font-size: 1rem;
    }

    .gift-card-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .gift-card-preview .gift-card-amount {
        font-size: 2rem;
    }

    .gift-card-footer {
        font-size: 0.7rem;
    }

    /* === FAQ SECTION === */
    .faq-item {
        padding: var(--space-sm);
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /* === GUESTBOOK SECTION === */
    .testimonial-card {
        padding: var(--space-sm);
    }

    /* === BLOG SECTION === */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    /* === FOOTER === */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .footer-logo img {
        max-height: 60px;
    }

    /* === SECTION TITLES === */
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--space-sm);
    }

    h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    /* === BUTTONS === */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .calendar-day {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .whatsapp-button,
    .cart-button {
        width: 45px !important;
        height: 45px !important;
    }
}

/* =====================================================
   MOBILE ACCORDIONS - Coffrets Info Toggle
===================================================== */

@media (max-width: 768px) {

    /* Hide hover tooltip on mobile */
    .info-tooltip-trigger .info-tooltip {
        display: none !important;
    }

    /* Mobile accordion content - ALWAYS HIDDEN initially */
    .accordion-content {
        display: none;
        max-height: 0;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(30, 20, 40, 0.95) 0%, rgba(20, 15, 30, 0.98) 100%);
        padding: 0;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        margin: -5px 0 15px 0;
        font-size: 0.9rem;
        line-height: 1.8;
        color: var(--color-white);
        border: 2px solid var(--color-gold);
        border-top: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.2);
    }

    /* Show when previous sibling has .expanded class */
    .prestation-item.has-info.expanded+.accordion-content {
        display: block;
        max-height: 500px;
        padding: var(--space-sm) var(--space-md);
        animation: accordionOpen 0.4s ease;
    }

    /* Style the content inside */
    .accordion-content strong {
        color: var(--color-gold);
        display: block;
        margin-bottom: 10px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding-bottom: 8px;
    }

    /* Icon styling for clickability */
    .prestation-item.has-info .info-icon {
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.3rem;
        background: rgba(212, 175, 55, 0.2);
        padding: 8px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .prestation-item.has-info .info-icon:active {
        transform: scale(0.9);
        background: rgba(212, 175, 55, 0.4);
    }

    .prestation-item.has-info.expanded .info-icon {
        background: var(--color-gold);
    }

    /* Highlight card on expanded */
    .prestation-item.has-info.expanded {
        border: 2px solid var(--color-gold) !important;
        border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    @keyframes accordionOpen {
        from {
            opacity: 0;
            max-height: 0;
            padding: 0 var(--space-md);
        }

        to {
            opacity: 1;
            max-height: 500px;
            padding: var(--space-sm) var(--space-md);
        }
    }
}

/* Desktop: Hide accordion content completely */
@media (min-width: 769px) {
    .accordion-content {
        display: none !important;
    }
}