:root {
    --mpat-pink: #E91E8C;
    --mpat-pink-light: #F06DC0;
    --mpat-pink-pale: #FCE4F3;
    --mpat-purple: #7B2D8B;
    --mpat-purple-light: #A855C8;
    --mpat-gold: #D4AF37;
    --mpat-white: #FFFFFF;
    --mpat-bg: #FDF5FB;
    --mpat-bg-2: #F8ECF7;
    --mpat-text: #1A0A1E;
    --mpat-text-light: #6B4A7A;
    --mpat-text-muted: #9E7BAE;
    --mpat-border: rgba(233, 30, 140, 0.15);

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px rgba(123, 45, 139, 0.12);
    --glass-blur: blur(20px);

    --grad-hero: linear-gradient(135deg, #FCE4F3 0%, #EDD5F8 40%, #F3E8FD 100%);
    --grad-pink: linear-gradient(135deg, #E91E8C, #F06DC0);
    --grad-purple: linear-gradient(135deg, #7B2D8B, #A855C8);
    --grad-premium: linear-gradient(135deg, #E91E8C 0%, #7B2D8B 50%, #D4AF37 100%);
    --grad-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(252,228,243,0.6));

    --shadow-sm: 0 2px 12px rgba(123, 45, 139, 0.08);
    --shadow-md: 0 8px 30px rgba(233, 30, 140, 0.15);
    --shadow-lg: 0 20px 60px rgba(123, 45, 139, 0.20);
    --shadow-pink: 0 8px 25px rgba(233, 30, 140, 0.35);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;
}

body {
    background-color: var(--mpat-bg);
    color: var(--mpat-text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* Typographie */
.heading-hero { font: 700 4rem/1.1 'Cormorant Garamond'; letter-spacing: -1px; }
@media (min-width: 768px) { .heading-hero { font-size: 4.5rem; } }
.heading-xl { font: 700 2.5rem/1.2 'Playfair Display'; }
@media (min-width: 768px) { .heading-xl { font-size: 3rem; } }
.heading-lg { font: 600 2.25rem/1.3 'Playfair Display'; }
.heading-md { font: 600 1.5rem/1.4 'Poppins'; }
.heading-sm { font: 500 1.125rem/1.5 'Poppins'; }
.body-lg { font: 400 1.125rem/1.7 'DM Sans'; }
.body-md { font: 400 1rem/1.7 'DM Sans'; }
.body-sm { font: 300 0.875rem/1.6 'DM Sans'; }
.label-text { font: 600 0.75rem/1 'Poppins'; letter-spacing: 2px; text-transform: uppercase; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mpat-bg); }
::-webkit-scrollbar-thumb { background: var(--mpat-pink-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mpat-pink); }

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.glass-card-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1.5px solid rgba(255,255,255,0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav-glass {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(233, 30, 140, 0.05);
    transition: all 0.3s ease;
}
.nav-glass.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(233, 30, 140, 0.15);
    box-shadow: 0 4px 20px rgba(123, 45, 139, 0.08);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Boutons */
.btn-primary {
    background: var(--grad-pink);
    color: white;
    border-radius: var(--radius-pill);
    font: 600 1rem/1 'Poppins';
    padding: 16px 32px;
    box-shadow: var(--shadow-pink);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(233, 30, 140, 0.45);
}
.btn-secondary {
    background: transparent;
    color: var(--mpat-purple);
    border: 2px solid var(--mpat-pink);
    border-radius: var(--radius-pill);
    font: 600 1rem/1 'Poppins';
    padding: 16px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer;
    text-decoration: none;
}
.btn-secondary:hover {
    background: var(--mpat-pink-pale);
    color: var(--mpat-purple);
    transform: translateY(-4px);
    border-color: var(--mpat-purple);
}
.btn-white {
    background: white;
    color: var(--mpat-purple);
    border-radius: var(--radius-pill);
    font: 600 1rem/1 'Poppins';
    padding: 16px 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--mpat-pink);
}
.btn-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed; bottom: 28px; right: 28px; z-index: 1000;
    width: 62px; height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    animation: pulse-green 2s infinite;
    transition: transform 0.3s ease;
}
.whatsapp-fab:hover { transform: scale(1.12); }
.fab-tooltip {
    position: absolute; right: 75px;
    background: var(--mpat-text); color: white;
    padding: 6px 12px; border-radius: 8px;
    font-size: 0.75rem; font-family: 'Poppins'; font-weight: 500;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    white-space: nowrap;
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}

/* Hero */
.hero-bg { background: var(--grad-hero); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.orb-pink { width: 600px; height: 600px; background: #F06DC0; top: -200px; left: -200px; }
.orb-purple { width: 500px; height: 500px; background: #A855C8; bottom: -100px; right: -150px; }
.orb-gold { width: 200px; height: 200px; background: #D4AF37; bottom: 20%; left: 40%; opacity: 0.3; }

.grid-pattern {
    background-image: radial-gradient(rgba(123, 45, 139, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
}

.gradient-text {
    background: var(--grad-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(233,30,140,0.2);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--mpat-purple);
    font-family: 'Poppins';
    font-weight: 500;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--mpat-pink);
    border-radius: 50%;
    animation: pulse-pink 1.5s ease-in-out infinite;
}

/* Hero fond discret */
.hero-bg-img {
    background: url('../img/galerie-16.jpg') center/cover no-repeat;
    opacity: 0.07;
    mix-blend-mode: multiply;
}

.hero-image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(123,45,139,0.25);
    border: 3px solid rgba(255,255,255,0.8);
    background: linear-gradient(145deg, #FCE4F3, #EDD5F8);
    min-height: 600px;
}

/* Hero Slider */
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Slider dots */
.slider-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 30;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none; cursor: pointer; padding: 0;
    transition: all 0.35s ease;
}
.slider-dot.active {
    background: white; width: 24px; border-radius: 4px;
}

.scroll-indicator {
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, rgba(233,30,140,0.8), transparent);
    border-radius: 2px;
}

.floating-badge {
    position: absolute;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
    text-align: center;
    min-width: 110px;
    z-index: 20;
}
.float-delay-1 { animation-delay: 1s; }
.float-delay-2 { animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse-pink {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Stats Banner */
.stats-banner { background: var(--grad-pink); }

/* Gallery */
.gallery-thumb {
    overflow: hidden; border-radius: 20px; cursor: pointer; position: relative;
}
.gallery-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-thumb:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}
.gallery-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(123,45,139,0.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-thumb::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/40px no-repeat;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-thumb:hover::after,
.gallery-thumb:hover::before { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10, 0, 20, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
    animation: lb-fade-in 0.3s ease;
}
.lightbox-overlay.open { display: flex; }
@keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img-wrap {
    position: relative; max-width: min(90vw, 900px); width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox-img-wrap img {
    max-width: 100%; max-height: 82vh;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1);
    object-fit: contain;
    transition: opacity 0.25s ease;
    display: block;
}
#lb-caption {
    color: rgba(255,255,255,0.75); font-family: 'DM Sans'; font-size: 0.9rem;
    text-align: center;
}
.lb-counter {
    color: rgba(255,255,255,0.4); font-family: 'Poppins'; font-size: 0.75rem;
    letter-spacing: 1px;
}
.lb-btn {
    position: fixed;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 2001;
}
.lb-btn:hover {
    background: rgba(233,30,140,0.5);
    border-color: rgba(233,30,140,0.7);
    transform: scale(1.1);
}
#lb-close { top: 20px; right: 20px; }
#lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
#lb-prev:hover { transform: translateY(-50%) scale(1.1); }
#lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
#lb-next:hover { transform: translateY(-50%) scale(1.1); }

/* CTA Banner */
.cta-banner { background: var(--grad-premium); }
.cta-bg-img {
    background: url('../img/galerie-25.jpg') center/cover no-repeat;
    opacity: 0.10;
    mix-blend-mode: overlay;
}
.badge-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 16px; border-radius: 100px;
    font-size: 0.85rem; font-family: 'Poppins'; color: white;
}

/* Footer */
.footer-glass {
    background: var(--mpat-bg-2);
    border-top: 1px solid rgba(233,30,140,0.1);
}
.footer-heading {
    font-family: 'Poppins'; font-weight: 600; color: var(--mpat-purple);
    margin-bottom: 1rem; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 1px;
}

/* Nav Links */
.nav-link {
    font: 500 0.95rem/1 'DM Sans';
    color: var(--mpat-text-light);
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}
.nav-link:hover, .nav-link.active {
    color: var(--mpat-pink);
    border-bottom-color: var(--mpat-pink);
}

/* ===================================================
   INNER PAGES — styles partagés
   =================================================== */

/* Page Header (mini hero) */
.page-header {
    background: var(--grad-hero);
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}
.page-header .orb { opacity: 0.25; }

/* Breadcrumb */
.breadcrumb { font: 400 0.875rem/1 'Poppins'; color: var(--mpat-text-light); }
.breadcrumb a { color: var(--mpat-text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--mpat-pink); }

/* Sticky Tabs bar */
.sticky-tabs {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233,30,140,0.1);
    padding: 12px 0;
}

/* Tab Buttons */
.tab-btn {
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font: 500 0.875rem 'Poppins';
    color: var(--mpat-text-light);
    border: 2px solid rgba(233,30,140,0.15);
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}
.tab-btn:hover, .tab-btn.active {
    background: var(--grad-pink);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-pink);
}

/* ===== SERVICES PAGE ===== */
.service-section { scroll-margin-top: 120px; }

.service-item-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.service-item-card:hover {
    border-color: rgba(233,30,140,0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.service-item-icon {
    font-size: 1.3rem;
    min-width: 42px; height: 42px;
    background: var(--mpat-pink-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.price-tag {
    font: 600 0.75rem 'Poppins';
    color: var(--mpat-pink);
    margin-top: 4px;
}
.service-img-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.8);
}
.service-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gallery-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-item.hidden { display: none; }
.gallery-item .gallery-thumb { aspect-ratio: 1; }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(123,45,139,0.8) 0%, rgba(233,30,140,0.2) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex; align-items: flex-end; padding: 16px;
}
.gallery-thumb:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content { display: flex; flex-direction: column; gap: 5px; }
.gallery-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: white;
    font: 500 0.7rem 'Poppins';
    padding: 3px 9px;
    border-radius: 20px;
    width: fit-content;
}
.gallery-desc {
    color: white;
    font: 600 0.85rem 'Playfair Display';
}
.gallery-expand-btn {
    background: white; color: var(--mpat-purple);
    font: 600 0.7rem 'Poppins';
    padding: 5px 12px; border-radius: 20px;
    transition: all 0.2s; width: fit-content;
    cursor: pointer; border: none;
}
.gallery-expand-btn:hover { background: var(--mpat-pink); color: white; }

/* ===== ABOUT PAGE ===== */
.about-image-frame {
    border-radius: 32px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.8);
}
.about-quote {
    border-left: 3px solid var(--mpat-pink);
    padding: 16px 20px;
    background: var(--mpat-pink-pale);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.value-icon {
    font-size: 2.5rem;
    width: 80px; height: 80px;
    background: var(--grad-card);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(233,30,140,0.15);
    box-shadow: var(--shadow-sm);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%; overflow: hidden;
    margin: 0 auto;
    border: 3px solid rgba(233,30,140,0.3);
    box-shadow: 0 0 0 6px rgba(233,30,140,0.08);
    background: var(--grad-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SALONS PAGE ===== */
.salon-number {
    width: 50px; height: 50px;
    background: var(--grad-pink); color: white;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font: 700 1.25rem 'Cormorant Garamond';
    box-shadow: var(--shadow-pink);
}
.salon-number-2 { background: var(--grad-purple); }
.salon-status { font: 600 0.75rem 'Poppins'; color: #16a34a; }
.hours-table { display: flex; flex-direction: column; gap: 4px; }
.hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(233,30,140,0.07);
    font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--mpat-text-light); font-weight: 500; }
.hours-row .time { color: var(--mpat-pink); font-weight: 600; }
.status-open {
    background: rgba(37,211,102,0.12); color: #16a34a;
    padding: 3px 10px; border-radius: 20px;
    font: 600 0.7rem 'Poppins';
}
.map-embed {
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255,255,255,0.8);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== CONTACT PAGE ===== */
.contact-hero { background: var(--grad-premium); }
.whatsapp-hero-btn {
    display: inline-flex; align-items: center; gap: 14px;
    background: white; color: #128C7E;
    padding: 18px 40px; border-radius: 100px;
    font: 700 1.1rem 'Poppins';
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease; text-decoration: none;
}
.whatsapp-hero-btn:hover {
    background: #25D366; color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 50px rgba(37,211,102,0.4);
}
.contact-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white; padding: 6px 16px;
    border-radius: 20px; font: 500 0.8rem 'Poppins';
}
.faq-item {
    border: 1px solid var(--mpat-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(233,30,140,0.3); }
.faq-question {
    cursor: pointer; display: flex;
    align-items: center; justify-content: space-between;
    padding: 20px 24px; width: 100%; text-align: left;
    background: var(--glass-bg); border: none;
}
.faq-question:hover { background: rgba(255,255,255,0.85); }
.faq-icon {
    color: var(--mpat-text-light); font-size: 1.5rem;
    font-weight: bold; transition: transform 0.3s, color 0.3s;
    flex-shrink: 0; margin-left: 12px; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--mpat-pink); }
.faq-answer {
    padding: 0 24px 20px; background: var(--glass-bg);
    animation: slideDown 0.3s ease;
}
.faq-answer.hidden { display: none; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.product-feature {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font: 400 0.9rem 'DM Sans'; color: var(--mpat-text-light);
}
/* Button white — used on dark CTA sections */
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--mpat-purple);
    padding: 14px 28px; border-radius: var(--radius-pill);
    font: 600 0.95rem 'Poppins'; text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.btn-white:hover {
    background: var(--mpat-pink-pale); color: var(--mpat-pink);
    transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}
/* Hours full table (salons page) */
.hours-row-table td {
    padding: 13px 0;
    border-bottom: 1px solid rgba(233,30,140,0.06);
    font-family: 'DM Sans'; font-size: 0.9rem; color: var(--mpat-text-light);
}
.hours-row-table:last-child td { border-bottom: none; }
.hours-row-table .day-cell {
    font-weight: 500; color: var(--mpat-text);
}
