/* === RESET AND BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === HALLOWEEN THEME (Uniquement sur l'écran de chargement jusqu'au 1er novembre) === */
#loading-screen.halloween-theme {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
}

#loading-screen.halloween-theme .loading-logo h1 {
    color: #ffa500;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

#loading-screen.halloween-theme .loading-text {
    color: #ffa500;
}

#loading-screen.halloween-theme .loading-bar {
    background: linear-gradient(90deg, #ff6b00, #ffa500, #ff6b00);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.halloween-loading-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.halloween-pumpkin,
.halloween-ghost,
.halloween-bat,
.halloween-spider {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.halloween-pumpkin {
    animation: float-pumpkin 15s infinite;
}

.halloween-ghost {
    animation: float-ghost 20s infinite;
}

.halloween-bat {
    animation: fly-bat 12s infinite;
}

.halloween-spider {
    animation: spider-drop 10s infinite;
}

@keyframes float-pumpkin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes float-ghost {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(30px) translateY(-20px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(0) translateY(-40px);
        opacity: 0.3;
    }
    75% {
        transform: translateX(-30px) translateY(-20px);
        opacity: 0.4;
    }
}

@keyframes fly-bat {
    0% {
        transform: translateX(-100vw) translateY(0);
    }
    50% {
        transform: translateX(50vw) translateY(-100px);
    }
    100% {
        transform: translateX(100vw) translateY(0);
    }
}

@keyframes spider-drop {
    0%, 100% {
        transform: translateY(-50px);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(200px);
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

/* Halloween web decoration pour loading screen */
.halloween-web {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,10 L100,190 M10,100 L190,100 M30,30 L170,170 M170,30 L30,170" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/><circle cx="100" cy="100" r="80" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/><circle cx="100" cy="100" r="20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

/* === ANNOUNCEMENT BANNER === */
.announcement-banner {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(241, 130, 100, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 80px; /* Espace depuis le menu fixe */
}

.announcement-banner:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 4px 15px rgba(241, 130, 100, 0.5);
}

.banner-link {
    display: block;
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.banner-content {
    height: 45px;
    display: flex;
    align-items: center;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-banner 20s linear infinite;
    white-space: nowrap;
}

.banner-text i {
    color: #FFD700;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    animation: sparkle 2s ease-in-out infinite alternate;
}

.banner-text span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes sparkle {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Responsive pour le bandeau */
@media (max-width: 768px) {
    .announcement-banner {
        font-size: 0.8rem;
        margin-top: 70px; /* Espace ajusté pour mobile */
    }
    
    .banner-content {
        height: 40px;
    }
    
    .banner-text {
        gap: 1.5rem;
        animation-duration: 25s; /* Plus lent sur mobile pour meilleure lisibilité */
    }
}

/* === PRESENTATION SECTION STYLES === */
.presentation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.presentation-image {
    flex: 1;
    position: relative;
}

.presentation-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: 1;
}

.presentation-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.presentation-image img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.presentation-content {
    flex: 1;
    padding-right: 2rem;
}

.presentation-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(241, 130, 100, 0.3);
}

.presentation-content h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.presentation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.presentation-signature {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

.presentation-signature::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

@media (max-width: 1024px) {
    .presentation-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .presentation-content h2 {
        font-size: 2.4rem;
    }

    .presentation-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .presentation-section {
        padding: 60px 0;
    }

    .presentation-container {
        flex-direction: column;
        gap: 2rem;
    }

    .presentation-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .presentation-content {
        padding-right: 0;
        text-align: center;
    }

    .presentation-badge {
        margin-bottom: 1rem;
    }

    .presentation-content h2 {
        font-size: 2rem;
    }

    .presentation-signature {
        font-size: 1.5rem;
    }

    .presentation-image::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
}

/* === FORMULES PAGE STYLES === */
.formules-hero {
    background: linear-gradient(135deg, var(--light-gray), rgba(245, 230, 211, 0.8));
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.formules-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.formules-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(241, 130, 100, 0.3);
}

.formules-hero .hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.formules-hero .hero-subtitle {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.formules-hero .hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.hero-cooking-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cooking-element {
    position: absolute;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.cooking-element.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cooking-element.element-2 { top: 30%; right: 15%; animation-delay: 1s; }
.cooking-element.element-3 { bottom: 40%; left: 20%; animation-delay: 2s; }
.cooking-element.element-4 { top: 50%; right: 25%; animation-delay: 3s; }
.cooking-element.element-5 { bottom: 20%; right: 10%; animation-delay: 4s; }
.cooking-element.element-6 { top: 70%; left: 15%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

.formules-section {
    padding: var(--section-padding);
}

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

.formule-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 230, 211, 0.2));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(241, 130, 100, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.formule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(241, 130, 100, 0.15);
    border-color: rgba(241, 130, 100, 0.3);
}

.formule-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(241, 130, 100, 0.2);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(241, 130, 100, 0.3);
}

.card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.feature i {
    color: var(--primary-color);
    width: 16px;
}

.card-description {
    margin-bottom: 1.5rem;
}

.card-description p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.card-includes {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(241, 130, 100, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.card-includes h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.card-includes ul {
    list-style: none;
    padding: 0;
}

.card-includes li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.card-includes li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Special Offer Styles */
.special-offer {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid #ffc107;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ff9800, #ffc107);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.special-offer h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-price {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9800;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.offer-includes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.offer-item i {
    color: #ff9800;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Premium Offer Styles */
.premium-offer {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
    border: 2px solid #8a2be2;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.premium-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #4b0082, #8a2be2);
    animation: shimmer 2s infinite;
}

.premium-badge {
    background: linear-gradient(135deg, #8a2be2, #4b0082) !important;
    box-shadow: 0 2px 10px rgba(138, 43, 226, 0.3);
}

.premium-price {
    color: #8a2be2 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.premium-item {
    font-weight: 600;
    color: var(--secondary-color) !important;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
}

.premium-item i {
    color: #8a2be2 !important;
}

.gouter-details {
    margin-left: 1.5rem;
    margin-bottom: 0.8rem;
    border-left: 3px solid #8a2be2;
    padding-left: 1rem;
}

.gouter-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gouter-item:last-child {
    margin-bottom: 0;
}

.gouter-item i {
    color: #8a2be2 !important;
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

/* New Clean Formulas Layout */
.reveal-formulas-section {
    text-align: center;
    margin: 2rem 0;
}

.btn-reveal-formulas {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(241, 130, 100, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-reveal-formulas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn-reveal-formulas:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 130, 100, 0.4);
}

.btn-reveal-formulas:hover::before {
    left: 100%;
}

.btn-reveal-formulas.active {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.btn-reveal-formulas.active .fa-chevron-down {
    transform: rotate(180deg);
}

.formulas-container {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 255, 0.5));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 2px solid rgba(138, 43, 226, 0.1);
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.formulas-container.hidden {
    max-height: 0;
    padding: 0 2rem;
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
}

.formulas-container.visible {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
}

.formulas-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.formulas-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.formula-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.formula-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.formula-card:last-child {
    margin-bottom: 0;
}

.pop-formula {
    border-left: 4px solid #ffc107;
}

.fun-formula {
    border-left: 4px solid #8a2be2;
}

.formula-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.formula-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pop-badge {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.fun-badge {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
}

.formula-price {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    text-align: right;
}

.pop-formula .formula-price {
    color: #ff9800;
}

.fun-formula .formula-price {
    color: #8a2be2;
}

.formula-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
}

.formula-availability {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
    width: 100%;
    margin-top: 0.3rem;
}

.formula-includes {
    display: grid;
    gap: 0.8rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(245, 245, 245, 0.5);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.include-item:hover {
    background: rgba(245, 245, 245, 0.8);
}

.pop-formula .include-item i {
    color: #ff9800;
    width: 20px;
    text-align: center;
}

.fun-formula .include-item i {
    color: #8a2be2;
    width: 20px;
    text-align: center;
}

.highlight-item {
    background: rgba(138, 43, 226, 0.1) !important;
    font-weight: 600;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.gouter-list {
    margin-left: 2rem;
    display: grid;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid #8a2be2;
}

.gouter-list .gouter-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
    padding: 0.3rem 0;
}

.gouter-list .gouter-item i {
    color: #8a2be2 !important;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .formulas-container {
        padding: 1.5rem;
    }
    
    .formula-header {
        flex-direction: column;
        text-align: center;
    }
    
    .formula-price,
    .formula-availability {
        text-align: center;
    }
    
    .formulas-title {
        font-size: 1.3rem;
    }
    
    .formula-price {
        font-size: 1.8rem;
    }
}

.how-it-works {
    background: var(--light-gray);
    padding: var(--section-padding);
}

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

.step-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(241, 130, 100, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(241, 130, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.coverage-area {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(241, 130, 100, 0.05), rgba(245, 230, 211, 0.1));
}

.coverage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-text h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.coverage-text p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.coverage-cities h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.cities-grid span {
    background: rgba(241, 130, 100, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border: 1px solid rgba(241, 130, 100, 0.2);
}

.coverage-note {
    background: rgba(241, 130, 100, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.coverage-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.coverage-map {
    text-align: center;
    color: var(--primary-color);
}

.coverage-map i {
    font-size: 8rem;
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.coverage-map span {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.formules-contact {
    padding: var(--section-padding);
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.formules-contact h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.formules-contact > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.contact-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.contact-btn i {
    font-size: 2rem;
    opacity: 0.8;
}

.contact-btn div {
    text-align: left;
}

.contact-btn strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-btn span {
    opacity: 0.8;
    font-size: 0.95rem;
}

.booking-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.booking-note i {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.5rem;
}

/* Responsive Formules */
@media (max-width: 768px) {
    .formules-hero {
        padding: 120px 0 80px;
    }
    
    .formules-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .formules-hero .hero-subtitle {
        font-size: 2rem;
    }
    
    .formules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

:root {
    /* Primary Colors - Tons dorés et caramel inspirés de la pâtisserie */
    --primary-color: rgba(241, 130, 100, 1);      /* Couleur principale */
    --primary-light: rgba(241, 130, 100, 0.8);   /* Version claire */
    --primary-dark: rgba(200, 100, 75, 1);       /* Version foncée */
    
    /* Secondary Colors - Tons chocolat et café */
    --secondary-color: #3D2914;    /* Chocolat foncé */
    --secondary-light: #5D3E2A;    /* Chocolat moyen */
    --secondary-dark: #2A1B0F;     /* Chocolat très foncé */
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #FAF7F2;         /* Crème légère */
    --medium-gray: #8B7355;        /* Beige moyen */
    --dark-gray: #4A3429;          /* Brun gris */
    --black: #1F1611;              /* Noir chocolat */
    
    /* Accent Colors - Couleurs gourmandes */
    --accent-pink: #D63384;        /* Rose framboise */
    --accent-blue: #0F4C75;        /* Bleu profond */
    --accent-green: #52734D;       /* Vert pistache */
    --accent-orange: rgba(241, 130, 100, 0.9);      /* Orange harmonisé */
    --accent-cream: #F5E6D3;       /* Crème vanille */
    --accent-berry: #8E2A2A;       /* Rouge fruits rouges */
    
    /* Gradients - Harmonieux avec la nouvelle palette */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --gradient-overlay: linear-gradient(rgba(244, 177, 150, 0.8), rgba(244, 177, 150, 0.4));
    --gradient-warm: linear-gradient(135deg, rgba(241, 130, 100, 1), rgba(241, 130, 100, 0.8), #F5E6D3);
    --gradient-chocolate: linear-gradient(135deg, #3D2914, #5D3E2A, #8B7355);
    --gradient-gold: linear-gradient(135deg, rgba(241, 130, 100, 0.9), rgba(200, 100, 75, 1));
    
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 32px 128px rgba(0, 0, 0, 0.24);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-indexes */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    /* Pas de padding-top, le menu se positionne naturellement */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* === LOADING SCREEN === */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 0 2rem;
}

.loading-logo h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.loading-utensils {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.loading-utensil {
    position: absolute;
    color: rgba(241, 130, 100, 0.2);
    font-size: 2rem;
    animation: floatLoadingUtensil 6s ease-in-out infinite;
    opacity: 0.5;
}

.loading-utensil.utensil-1 {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.loading-utensil.utensil-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 8s;
    font-size: 2.5rem;
}

.loading-utensil.utensil-3 {
    top: 45%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 6s;
    font-size: 1.8rem;
}

.loading-utensil.utensil-4 {
    top: 35%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 7.5s;
}

.loading-utensil.utensil-5 {
    top: 65%;
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
    font-size: 1.6rem;
}

.loading-utensil.utensil-6 {
    top: 55%;
    right: 12%;
    animation-delay: 2.5s;
    animation-duration: 6.5s;
}

.loading-utensil.utensil-7 {
    top: 75%;
    left: 20%;
    animation-delay: 0.5s;
    animation-duration: 7.8s;
    font-size: 1.4rem;
}

.loading-utensil.utensil-8 {
    top: 70%;
    right: 18%;
    animation-delay: 4s;
    animation-duration: 9s;
    font-size: 2.2rem;
}

@keyframes floatLoadingUtensil {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(-3deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-15px) rotate(8deg);
        opacity: 0.4;
    }
}

.loading-animation {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    position: relative;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loadingBar 3s ease-in-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.loading-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
    font-family: var(--font-secondary);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes loadingBar {
    to {
        width: 100%;
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(252, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(241, 130, 100, 0.15);
    z-index: var(--z-fixed);
    transition: all var(--transition-smooth);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(252, 248, 243, 0.98);
    box-shadow: 0 4px 20px rgba(241, 130, 100, 0.1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.nav-logo a {
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: var(--chocolate-brown);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width var(--transition-smooth);
}

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

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

.nav-item.cta .nav-link {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.nav-item.cta .nav-link::after {
    display: none;
}

.nav-item.cta .nav-link:hover {
    background: var(--gradient-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .title-line {
    display: block;
}

.hero-title .accent {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    margin: 0 auto 1rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.5; }
    100% { top: 6px; opacity: 1; }
}

/* === HERO UTENSILS BACKGROUND === */
.hero-utensils {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.utensil {
    position: absolute;
    color: rgba(241, 130, 100, 0.3);
    font-size: 3rem;
    animation: floatUtensil 6s ease-in-out infinite;
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(241, 130, 100, 0.5);
}

.utensil-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.utensil-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.utensil-3 {
    top: 45%;
    left: 8%;
    animation-delay: 2s;
    animation-duration: 9s;
    font-size: 2.5rem;
}

.utensil-4 {
    top: 35%;
    right: 8%;
    animation-delay: 3s;
    animation-duration: 6s;
    font-size: 2.8rem;
}

.utensil-5 {
    top: 65%;
    left: 12%;
    animation-delay: 4s;
    animation-duration: 7.5s;
    font-size: 2.6rem;
}

.utensil-6 {
    top: 55%;
    right: 12%;
    animation-delay: 5s;
    animation-duration: 8.5s;
}

.utensil-7 {
    top: 75%;
    left: 20%;
    animation-delay: 1.5s;
    animation-duration: 9.5s;
    font-size: 2.4rem;
}

.utensil-8 {
    top: 70%;
    right: 18%;
    animation-delay: 2.5s;
    animation-duration: 7.8s;
    font-size: 2.7rem;
}

@keyframes floatUtensil {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(8deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.7;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 134, 13, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === SECTIONS === */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-warm);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
    box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 230, 211, 0.3));
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border: 1px solid rgba(241, 130, 100, 0.1);
    backdrop-filter: blur(5px);
}

.about-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(241, 130, 100, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 130, 100, 0.05));
    border-color: rgba(241, 130, 100, 0.2);
}

.about-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 24px;
    text-shadow: 0 2px 4px rgba(241, 130, 100, 0.2);
}

.about-features .feature-item h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 0.3px;
}

.about-image {
    position: relative;
}

.about-photos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.photo-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.photo-medium {
    grid-column: 1;
    grid-row: 3;
}

.photo-small:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
}

.photo-small:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.photo-item:hover .photo-caption {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-photos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 150px);
        height: auto;
    }
    
    .photo-main,
    .photo-medium,
    .photo-small {
        grid-column: 1;
    }
    
    .photo-main {
        grid-row: 1;
        height: 200px;
    }
    
    .photo-small:nth-of-type(2) {
        grid-row: 2;
    }
    
    .photo-small:nth-of-type(3) {
        grid-row: 3;
    }
    
    .photo-medium {
        grid-row: 4;
    }
}

/* === GALLERY SECTION === */
.gallery-section {
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--medium-gray);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Video Section */
.gallery-video-section {
    margin: 3rem 0;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(241, 130, 100, 0.05), rgba(241, 130, 100, 0.1));
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(241, 130, 100, 0.2);
}

.video-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.youtube-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.youtube-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.youtube-video-wrapper iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {
    .video-container {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-description {
        font-size: 1rem;
    }
    
    .youtube-video-wrapper iframe {
        height: 250px;
    }
}

/* === RESPONSIVE BREAKPOINTS === */
/* Mobile First Approach */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .youtube-video-wrapper iframe {
        height: 200px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.2;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        padding: 1.5rem 0;
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    /* Service cards mobile */
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-photos-grid {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 150px);
    }
    
    /* Gallery mobile optimization */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input, .form-textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.75rem;
    }
    
    .form-textarea {
        min-height: 120px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-smooth) 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-load-more {
    text-align: center;
}

/* === BOUTIQUE PAGE === */
.boutique-hero {
    min-height: 60vh;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.boutique-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1.2rem;
}

.boutique-hero .hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.boutique-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-home {
    margin-top: 3rem;
    text-align: center;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-to-home .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.back-to-home .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 130, 100, 0.3);
}

@media (max-width: 768px) {
    .boutique-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .boutique-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .boutique-hero-content {
        padding: 1rem;
    }
}

/* === BOUTIQUE SECTION === */
.boutique-section {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    position: relative;
    overflow: hidden;
}

.boutique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L45 15L30 30L15 15Z" fill="%23F18282" opacity="0.05"/></svg>') repeat;
    pointer-events: none;
}

.boutique-coming-soon {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(241, 130, 100, 0.1);
    position: relative;
}

.oven-animation {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.oven-animation .fas.fa-fire {
    font-size: 3rem;
    color: var(--primary-color);
    animation: flicker 2s ease-in-out infinite alternate;
}

.oven-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--secondary-color);
    animation: bake 3s ease-in-out infinite;
}

.heat-waves {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.heat-waves span {
    width: 2px;
    height: 20px;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.7;
    animation: wave 1.5s ease-in-out infinite;
}

.heat-waves span:nth-child(1) { animation-delay: 0s; }
.heat-waves span:nth-child(2) { animation-delay: 0.2s; }
.heat-waves span:nth-child(3) { animation-delay: 0.4s; }

.coming-soon-content h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(61, 41, 20, 0.1);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.coming-soon-content h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.coming-soon-content > p {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 230, 211, 0.3));
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    text-align: center;
    border: 1px solid rgba(241, 130, 100, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(241, 130, 100, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 130, 100, 0.05));
    border-color: rgba(241, 130, 100, 0.2);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    width: 100%;
    text-shadow: 0 2px 4px rgba(241, 130, 100, 0.2);
}

.feature-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(61, 41, 20, 0.1);
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.notify-form {
    background: linear-gradient(135deg, rgba(241, 130, 100, 0.08), rgba(245, 230, 211, 0.15));
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    backdrop-filter: blur(10px);
}

.notify-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), rgba(241, 130, 100, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.notify-form h4 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.newsletter-form .input-group {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 1rem;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(241, 130, 100, 0.2);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(241, 130, 100, 0.15);
    background: rgba(255, 255, 255, 1);
}

.newsletter-form .btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(241, 130, 100, 0.3);
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 130, 100, 0.4);
}

/* Animations */
@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes bake {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-content h3 {
        font-size: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: left var(--transition-smooth);
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient-warm);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(200, 134, 13, 0.3);
}

.service-card.featured::before {
    background: var(--accent-cream);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    transition: var(--transition-smooth);
}

.service-card.featured .service-icon {
    background: var(--white);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card.featured .service-icon i {
    color: var(--primary-color);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
}

.service-card.featured .service-features span {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Birthday Formulas Styles */
.birthday-formulas {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.formula-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.formula-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.formula-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.formula-price {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff9800;
    margin-bottom: 0.2rem;
}

.formula-day {
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.service-cta-buttons {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-formules {
    background: linear-gradient(135deg, #ffc107, #ff9800) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3) !important;
}

.btn-formules:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4) !important;
    background: linear-gradient(135deg, #ff9800, #f57c00) !important;
}

@media (max-width: 768px) {
    .formula-preview {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .birthday-formulas {
        margin: 1rem 0;
        padding: 0.8rem;
    }
}

.services-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.contact-hours {
    margin-bottom: 3rem;
}

.contact-hours h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.hours-item.weekend {
    border-left-color: var(--medium-gray);
    opacity: 0.7;
}

.day {
    font-weight: 600;
    color: var(--secondary-color);
}

.time {
    color: var(--medium-gray);
    text-align: right;
    line-height: 1.4;
}

.social-links h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.social-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* === CONTACT FORM === */
.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 130, 100, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-smooth);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 0.8rem;
}

/* === FOOTER === */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(0.9);
    transition: var(--transition-smooth);
}

.footer-logo-image:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* === MODALS === */
.modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

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

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-overlay);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
}

.video-container {
    position: relative;
    width: 80vw;
    height: 45vw;
    max-width: 1000px;
    max-height: 562px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .section-description {
        max-width: 600px;
    }
    
    .about-stats {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        padding: 1.25rem;
        width: 160px;
    }
}

@media (max-width: 900px) {
    .about-stats {
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        width: 140px;
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform var(--transition-smooth);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .section-header {
        padding: 0 0.5rem;
        margin-bottom: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        gap: 1rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        width: 120px;
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-filters {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Loading screen responsive */
    .loading-utensils {
        opacity: 0.8;
    }
    
    .loading-utensil {
        font-size: 1.5rem;
    }
    
    .loading-animation {
        width: 250px;
    }
    
    .loading-logo h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Loading screen mobile */
    .loading-utensils {
        opacity: 0.7;
    }
    
    .loading-utensil {
        font-size: 1.2rem;
    }
    
    .loading-animation {
        width: 200px;
        height: 5px;
    }
    
    .loading-logo h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .loading-content {
        padding: 0 1rem;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    }
}

/* === UTILITIES === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* === LANGUAGE SWITCHER === */
.language-switcher {
    position: relative;
    margin-left: auto;
    margin-right: 0;
}

.lang-dropdown {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid rgba(241, 130, 100, 0.2);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    color: var(--chocolate-brown);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 120px;
}

.lang-current:hover {
    border-color: var(--primary-color);
    background: rgba(241, 130, 100, 0.05);
}

.lang-current i {
    font-size: 0.8rem;
    transition: transform var(--transition-smooth);
}

.lang-dropdown.active .lang-current i {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    border: 2px solid rgba(241, 130, 100, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 1000;
    min-width: 140px;
    margin-top: 0.5rem;
}

.lang-dropdown.active .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.lang-btn:hover {
    background: rgba(241, 130, 100, 0.05);
    color: var(--primary-color);
}

.lang-btn.active {
    background: rgba(241, 130, 100, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.flag-fr {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Cpath fill='%23002395' d='M0 0h1v2H0z'/%3E%3Cpath fill='%23fff' d='M1 0h1v2H1z'/%3E%3Cpath fill='%23ED2939' d='M2 0h1v2H2z'/%3E%3C/svg%3E");
}

.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath fill='%23fff' d='m0 0 60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath fill='%23C8102E' d='m0 0 60 30m0-30L0 30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath fill='%23fff' d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath fill='%23C8102E' d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

.flag-es {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Cpath fill='%23AA151B' d='M0 0h3v2H0z'/%3E%3Cpath fill='%23F1BF00' d='M0 .5h3v1H0z'/%3E%3C/svg%3E");
}

/* === FORMULES PAGE-IN-PAGE STYLES === */
.formulas-page-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100%);
}

.formulas-page-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.formulas-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    overflow-y: auto;
}

.formulas-page-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0;
    max-width: 100vw;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.formulas-page-header {
    padding: 3rem 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
}

.formulas-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1.5rem;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.formulas-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.formulas-page-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.formulas-page-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === NOUVEAU DESIGN MENU PRINCIPAL === */
.formulas-main-grid {
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    flex: 1;
}

.formula-category-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.formula-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-category {
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.featured-category:hover {
    transform: scale(1.02) translateY(-5px);
}

.category-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.category-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.birthday-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff6b35 100%);
}

.category-header h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
}

/* === SOUS-FORMULES ANNIVERSAIRES === */
.sub-formulas-grid {
    padding: 0 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sub-formula-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sub-formula-item:hover {
    background: #e9ecef;
}

.pop-formula {
    border-left: 4px solid var(--primary-color);
}

.fun-formula {
    border-left: 4px solid var(--secondary-color);
}

.sub-formula-header {
    margin-bottom: 0.75rem;
}

.sub-formula-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.sub-formula-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.fun-formula .sub-formula-price {
    color: var(--secondary-color);
}

.sub-formula-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.detail-item i {
    color: var(--primary-color);
    width: 12px;
}

.fun-formula .detail-item i {
    color: var(--secondary-color);
}

.btn-choose-sub-formula {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-choose-sub-formula:hover {
    transform: translateY(-2px);
}

/* === FONCTIONNALITÉS CATÉGORIES === */
.category-features {
    padding: 0 2rem 1rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.feature-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.category-price {
    padding: 0 2rem 1rem;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-select-category {
    margin: 0 2rem 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-select-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.formulas-final-cta {
    padding: 4rem;
    text-align: center;
    background: white;
    border-radius: 0;
}

.formulas-final-cta h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.formulas-final-cta p {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 15px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .formulas-main-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .formulas-page-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sub-formulas-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-category {
        transform: none;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   NOUVEAUX STYLES POUR LES CARTES SIMPLIFIÉES
   ============================================ */

/* Section des formules */
.formules-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.formulas-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Cartes de formules - Nouveau style */
.formule-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.formule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.formule-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fff 0%, #faf8f0 100%);
}

.formule-card.premium {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #fff 0%, #f8f6ff 100%);
}

/* Badge pour les cartes */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.card-badge.premium-badge {
    background: #8b5cf6;
}

/* Icône de la carte - Nouveau style */
.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e6a0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.featured .card-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4e6a0 100%);
}

.premium .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #c4b5fd 100%);
}

/* Contenu de la carte */
.card-content h3 {
    color: #2c5530;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Caractéristiques de la carte */
.card-features {
    margin-bottom: 25px;
}

.card-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.card-features .feature i {
    color: #d4af37;
    margin-right: 12px;
    width: 20px;
    font-size: 1rem;
}

/* Description de la carte */
.card-description {
    margin-bottom: 25px;
}

.card-description p {
    color: #666;
    line-height: 1.6;
}

/* Ce qui est inclus */
.card-includes {
    margin-bottom: 25px;
}

.card-includes h4 {
    color: #2c5530;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-includes ul {
    list-style: none;
    padding: 0;
}

.card-includes li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.card-includes li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1rem;
}

/* Prix de la carte */
.card-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.card-price .price {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.card-price small {
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Bouton de la carte */
.formule-card .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
}

/* Responsive pour nouvelles cartes */
@media (max-width: 768px) {
    .formulas-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .formule-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
