/* =========================================
   SALON ÉLÉGANCE - COMPLETE STYLESHEET
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #b8860b;
    --primary-light: #d4a843;
    --primary-dark: #8b6508;
    --secondary: #1a1a2e;
    --accent: #c9a96e;
    --rose: #f4e1e6;
    --rose-dark: #e8c4cc;
    --cream: #fdf8f0;
    --white: #ffffff;
    --dark: #2d2d2d;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --gradient-gold: linear-gradient(135deg, #b8860b, #d4a843, #b8860b);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.97);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-content .brand {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
}
.spinner {
    width: 40px; height: 40px; margin: 0 auto;
    border: 3px solid rgba(184, 134, 11, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed; bottom: 30px; right: 30px;
    display: flex; flex-direction: column; gap: 12px;
    z-index: 9998;
}
.floating-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: floatPulse 2s ease-in-out infinite;
}
.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}
.floating-btn.whatsapp { background: #25d366; }
.floating-btn.phone { background: var(--primary); }
@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 998;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(20px);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 54px; height: 42px;
    
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}
.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #B8860B;
}
.nav-links {
    display: flex; align-items: center; gap: 5px;
}
.nav-links a {
    color: var(--dark);
    font-size: 0.9rem; font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(184, 134, 11, 0.1);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px;
    z-index: 1001;
}
.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    color: var(--dark) !important;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
}
.dropdown-menu a:hover {
    background: var(--cream) !important;
    color: var(--primary) !important;
}
.dropdown-menu a i { color: var(--primary); width: 20px; text-align: center; }

/* Hamburger */
.hamburger {
    display: none; cursor: pointer;
    width: 30px; height: 22px;
    position: relative; z-index: 1002;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--dark); border-radius: 2px;
    position: absolute; left: 0;
    transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(255, 255, 237, 0.74);
}
.hero-content {
    position: relative; z-index: 10;
    text-align: center; color: var(--dark);
    max-width: 800px; padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    font-size: 0.85rem; letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}
.hero-title .script {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-light);
    display: block; font-size: 3.5rem;
}
.hero-subtitle {
    font-size: 1.15rem; font-weight: 300;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-buttons {
    display: flex; gap: 15px;
    justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--gradient-gold);
    color: white; border-color: var(--primary);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184,134,11,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--dark); border-color: rgba(0,0,0,0.3);
}
.btn-outline:hover {
    background: var(--secondary); color: white;
    transform: translateY(-3px);
}
.btn-dark {
    background: rgba(255, 255, 255, 0.97);
    color: var(--secondary); border-color: var(--secondary);
}
.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,26,46,0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 30px;
    left: 50%; transform: translateX(-50%);
    text-align: center; color: var(--gray);
    font-size: 0.75rem; z-index: 10;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(0,0,0,0.25);
    border-radius: 14px; margin: 0 auto 8px;
    position: relative;
}
.scroll-mouse::after {
    content: '';
    width: 3px; height: 8px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute; left: 50%; top: 6px;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05));
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid rgba(184,134,11,0.2);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.section-title span { color: var(--primary); }
.section-line {
    width: 60px; height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 3px;
}
.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%; height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-secondary {
    position: absolute; bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow);
}
.about-img-secondary img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-experience {
    position: absolute; top: -20px; left: -20px;
    background: var(--gradient-gold);
    color: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-experience .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700;
    display: block;
}
.about-experience .text {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-content h2 span { color: var(--primary); }
.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
}
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
}
.about-feature i { color: var(--primary); font-size: 1.1rem; }

/* ===== SERVICES OVERVIEW ===== */
.services-overview { background: white; }
.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.service-card-big {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    display: block;
    box-shadow: var(--shadow);
}
.service-card-big img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card-big:hover img { transform: scale(1.1); }
.card-overlay {
    position: absolute; inset: 0;
    background: rgba(255, 255, 237, 0.74);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--dark);
    transition: var(--transition);
}
.card-icon-circle {
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
    margin-bottom: 20px;
}
.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}
.card-overlay p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 15px;
}
.card-link {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.service-card-big:hover .card-link { gap: 14px; }

/* ===== ICONS BAR ===== */
.icons-bar {
    background: rgba(255, 255, 255, 0.97);
    padding: 60px 0;
}
.icons-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.icon-item { text-align: center; color: var(--dark); }
.icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 15px;
    transition: var(--transition);
}
.icon-item:hover .icon-circle {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}
.icon-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--light-gray); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-hover {
    position: absolute; inset: 0;
    background: rgba(184,134,11,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-hover { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: -10px;
}
.testimonial-card p {
    color: var(--gray);
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 45px; height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}
.testimonial-stars {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 2px;
}
.testimonial-stars i { margin-right: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background:
        rgba(255, 255, 255, 0.97),
        url('../images/photo-1560066984-138dadb4c03510c6.jpg') center/cover;
    padding: 80px 0;
    text-align: center;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.cta-content h2 span { color: var(--primary); }
.cta-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex; gap: 15px;
    justify-content: center; flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: white; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    display: flex; flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}
.contact-card-icon {
    width: 50px; height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-card h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}
.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-card a {
    color: var(--gray);
    transition: var(--transition);
}
.contact-card a:hover { color: var(--primary); }

.social-links {
    display: flex; gap: 12px;
    margin-top: 10px;
    padding: 0 25px;
}
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.97);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow);
}
.map-placeholder { height: 100%; min-height: 400px; }

/* ===== PAGE BANNER (Service Pages) ===== */
.page-banner {
    position: relative;
    height: 450px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.page-banner > img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.page-banner-overlay {
    position: absolute; inset: 0;
    background: rgba(255, 255, 237, 0.74);
}
.page-banner-content {
    position: relative; z-index: 10;
    text-align: center; color: var(--dark);
}
.page-banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.page-banner-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
}
.breadcrumb {
    display: flex; align-items: center;
    gap: 10px; justify-content: center;
    font-size: 0.9rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray); }

/* ===== PRICE CATEGORIES (Service Pages) ===== */
.price-category {
    margin-bottom: 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(184,134,11,0.1);
}
.price-category-header {
    display: flex; align-items: center; gap: 20px;
    padding: 30px 35px;
    background: linear-gradient(135deg, var(--cream), white);
    border-bottom: 2px solid rgba(184,134,11,0.1);
}
.price-category-icon {
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
    flex-shrink: 0;
}
.price-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
}
.price-category-header p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-top: 3px;
}
.price-list { padding: 10px 35px 20px; }
.price-row {
    display: flex;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 10px;
    transition: var(--transition);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover {
    background: rgba(184,134,11,0.03);
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 8px;
}
.service-name {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
}
.service-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(184,134,11,0.3);
    margin: 0 5px;
    min-width: 30px;
    align-self: center;
    margin-bottom: 4px;
}
.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    white-space: nowrap;
}

.price-row.highlight {
    background: rgba(184,134,11,0.06);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
}
.price-row.highlight .service-name {
    color: var(--primary-dark);
    font-weight: 600;
}

.price-note {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(184,134,11,0.08), rgba(184,134,11,0.03));
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    margin-top: 30px;
}
.price-note i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 3px;
}
.price-note p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(255, 255, 255, 0.97);
    color: var(--dark);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo .logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #B8860B;
}

.footer-logo .logo-icon {
     width: 54px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1rem;
}
.footer-col p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}
.footer .social-links {
    padding: 0;
    margin-top: 0;
}
.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(184,134,11,0.12);
    font-size: 0.9rem;
}
.footer .social-link:hover {
    background: var(--primary);
}
.footer-bottom {
    padding: 25px 0;
    text-align: center;
    margin-top: 0;
}
.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.2s ease;
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}
.lightbox-close:hover {
    background: var(--primary);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

/* ===== GALLERY CTA (index page) ===== */
.gallery-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== GALLERY PAGE ===== */
.gallery-hero { height: 500px; }
.gallery-hero .page-banner-content h1 span { color: var(--primary); }
.gallery-hero .section-badge { margin-bottom: 12px; }

.gallery-page { background: var(--light-gray); }
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}
.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.gallery-masonry .gallery-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    transform: translateY(-3px);
}
.gallery-masonry .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-masonry .gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
    .gallery-masonry { columns: 2; }
    .gallery-hero { height: 380px; }
    .lightbox img { max-width: 88%; max-height: 80vh; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-prev,
    .lightbox-next {
        width: 42px; height: 42px; font-size: 1rem;
        background: rgba(184, 134, 11, 0.75);
        border-color: transparent;
        z-index: 2;
    }
}
@media (max-width: 500px) {
    .gallery-masonry { columns: 2; column-gap: 10px; }
    .gallery-masonry .gallery-item { margin-bottom: 10px; }
    .gallery-hero { height: 320px; }
    .gallery-cta { flex-direction: column; align-items: center; }
    .lightbox img { max-width: 82%; max-height: 78vh; }
    .lightbox-counter { font-size: 0.75rem; bottom: 15px; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }

a {
    text-decoration: none;
    color: inherit;
}
ul { list-style: none; }

.section {
    padding: 100px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    /* Nav */
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 0;
        z-index: 999;
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        padding: 14px 20px;
        border-radius: 10px;
        font-size: 1rem;
        display: block;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(184,134,11,0.06);
        border-radius: 10px;
        margin: 5px 0;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        color: var(--dark) !important;
    }
    .dropdown-menu a:hover {
        background: rgba(184,134,11,0.1) !important;
        color: var(--primary) !important;
    }

    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    .hero-title .script {
        font-size: 2.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-secondary {
        right: 20px;
        bottom: -20px;
        width: 150px;
        height: 150px;
    }
    .about-experience {
        left: auto;
        right: 20px;
        top: -15px;
    }

    /* Services */
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-card-big {
        height: 350px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Page Banner */
    .page-banner {
        height: 350px;
    }
    .page-banner-content h1 {
        font-size: 2.5rem;
    }

    /* Icons bar */
    .icons-grid {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        min-height: 600px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-title .script {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2rem;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-img-main img {
        height: 300px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Icons */
    .icons-grid {
        gap: 20px;
    }
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    /* Price rows */
    .price-category-header {
        padding: 20px;
        gap: 15px;
    }
    .price-category-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .price-category-header h3 {
        font-size: 1.2rem;
    }
    .price-list {
        padding: 10px 20px 15px;
    }
    .price-row {
        padding: 12px 0;
    }
    .service-name {
        font-size: 0.85rem;
        white-space: normal;
    }
    .service-price {
        font-size: 0.95rem;
    }

    /* Page banner */
    .page-banner {
        height: 300px;
    }
    .page-banner-content h1 {
        font-size: 2rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        margin-bottom: 16px;
        margin-left: 15px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    /* Testimonials */
    .testimonials-track {
        grid-template-columns: 1fr;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader .brand {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 30px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(184,134,11,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
.timing{
    width: 60%;
}
.time{
    float: right;
}

.timinig-list {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.timing-list li {
    padding: 10px 0; /* Adds space above and below the text */
    border-bottom: 1px solid #eee; /* Creates the thin line */
    display: flex;
    justify-content: space-between; /* Pushes the time to the right */
}

/* Optional: Removes the line from the very last item */
.timing-list li:last-child {
    border-bottom: none;
}

/* ===== SERVICES CATEGORY NAV ===== */
.services-cat-nav {
    background: white;
    border-bottom: 2px solid rgba(184,134,11,0.12);
    position: sticky;
    top: 74px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.services-cat-nav-inner {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.services-cat-nav-inner::-webkit-scrollbar { display: none; }
.services-cat-nav a {
    padding: 15px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    flex-shrink: 0;
}
.services-cat-nav a:hover,
.services-cat-nav a.nav-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(184,134,11,0.03);
}
.services-cat-nav a i { font-size: 0.85rem; }

/* ===== SERVICE ROW v2 (duration + price + choose) ===== */
.price-row-v2 {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 12px;
    transition: background 0.25s ease, padding 0.25s ease;
}
.price-row-v2:last-child { border-bottom: none; }
.price-row-v2:hover {
    background: rgba(184,134,11,0.03);
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
}
.price-row-v2 .svc-info { flex: 1; min-width: 0; }
.price-row-v2 .svc-name {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}
.price-row-v2 .svc-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 2px;
    display: block;
}
.price-row-v2 .svc-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.svc-duration {
    font-size: 0.77rem;
    color: var(--gray);
    background: var(--light-gray);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.svc-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.97rem;
    white-space: nowrap;
    min-width: 65px;
    text-align: right;
}
.btn-choisir {
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}
.btn-choisir:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184,134,11,0.35);
    color: white;
}

/* Category description block */
.cat-desc-block {
    font-size: 0.84rem;
    color: var(--gray);
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(184,134,11,0.06), rgba(184,134,11,0.02));
    border-left: 3px solid var(--primary-light);
    border-radius: 0 8px 8px 0;
    margin: 0 35px 5px;
    line-height: 1.9;
}
.supplement-notice {
    font-size: 0.8rem;
    color: #b05555;
    font-style: italic;
    margin: 0 35px 10px;
    padding: 4px 0;
}

/* Accordion sections */
.price-list-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.price-category-accordion.open .price-list-wrapper {
    max-height: 6000px;
}
.price-category-header-clickable {
    cursor: pointer;
    user-select: none;
}
.price-category-header-clickable:hover {
    background: linear-gradient(135deg, #f9f4e8, white);
}
.toggle-icon {
    margin-left: auto;
    transition: transform 0.35s ease;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.price-category-accordion.open .toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .price-row-v2 {
        flex-wrap: wrap;
        gap: 8px;
    }
    .price-row-v2 .svc-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .services-cat-nav a {
        padding: 12px 13px;
        font-size: 0.73rem;
    }
    .cat-desc-block,
    .supplement-notice {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* ===== USEFUL LINKS PAGE ===== */

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    padding: 14px 0;
}
.breadcrumb-list {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: var(--gray);
}
.breadcrumb-list a {
    color: var(--primary); font-weight: 500;
}
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list .fa-chevron-right { font-size: 0.65rem; color: var(--gray); }

/* Address highlight – useful-links page */
.address-highlight {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    background: white;
    border: 1.5px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--radius);
    padding: 20px 28px;
    margin: 36px auto 0;
    max-width: 620px;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.08);
}
.address-highlight > .fa-map-marker-alt {
    color: var(--primary); font-size: 1.6rem; flex-shrink: 0;
}
.address-highlight-text {
    flex: 1; font-size: 0.95rem; color: var(--dark); line-height: 1.65;
}
.btn-sm {
    padding: 9px 18px;
    font-size: 0.8rem;
    letter-spacing: 0;
    white-space: nowrap;
}

/* Service chips */
.service-chips {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.service-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    background: white;
    border: 1.5px solid rgba(184, 134, 11, 0.3);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}
.service-chip i { color: var(--primary); font-size: 0.8rem; }
.service-chip:hover {
    background: var(--gradient-gold);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}
.service-chip:hover i { color: white; }

/* Zone block */
.zone-block { margin-bottom: 60px; }

.zone-heading {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
}
.zone-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}
.zone-pin { color: var(--primary); font-size: 1.1rem; }
.zone-divider {
    flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(184,134,11,0.4), transparent);
}

/* Location grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
@media (min-width: 560px)  { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .location-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .location-grid { grid-template-columns: repeat(4, 1fr); } }

/* Location card */
.location-card {
    background: white;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: var(--transition);
}
.location-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.12);
    transform: translateY(-3px);
}

.location-card-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cream);
}
.location-card-header i { color: var(--primary); font-size: 0.9rem; }
.city-name {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--primary);
}

/* Service list inside card */
.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li a {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--gray);
    transition: var(--transition);
    line-height: 1.4;
}
.service-list li a:hover { color: var(--primary); }
.bullet-dot {
    font-size: 4px !important;
    color: var(--primary-light);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .zone-heading h2 { font-size: 1.2rem; }
    .location-card { padding: 18px 16px; }
}

@media (max-width: 600px) {
    .about-img-secondary {
        display: none;
    }

    .about-experience {
        left: auto;
        right: 0 !important;
        top: 198px !important;
        padding: 4px !important;
    }
}

/* ===== CITY SELECTOR (NAVBAR) ===== */
.city-selector-nav-item { display: flex; align-items: center; }

.city-selector {
    position: relative;
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    user-select: none;
    transition: var(--transition);
}
.city-selector:hover { background: rgba(184,134,11,0.1); }
.city-selector.open { background: rgba(184,134,11,0.1); }
.city-chevron { transition: transform 0.3s ease; font-size: 0.7rem; }
.city-selector.open .city-chevron { transform: rotate(180deg); }

.city-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    padding: 6px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1100;
}
.city-selector.open .city-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.city-opt {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 10px 16px;
    background: none; border: none;
    font-family: 'Poppins', sans-serif; font-size: 0.88rem;
    cursor: pointer; color: var(--dark);
    transition: background 0.2s, color 0.2s;
    text-align: left;
}
.city-opt:hover { background: var(--cream); color: var(--primary); }
.city-opt.active { color: var(--primary); font-weight: 600; }
.city-opt.active .city-check { opacity: 1; }
.city-check { opacity: 0; color: var(--primary); font-size: 0.72rem; }

/* Mobile: always-expanded city buttons inside slide-in menu */
@media (max-width: 992px) {
    .city-selector-nav-item { padding: 8px 20px; }
    .city-selector {
        border: none; padding: 0; gap: 8px;
        flex-direction: column; align-items: flex-start;
        background: none !important;
    }
    .city-chevron { display: none; }
    .city-selector-label { font-size: 0.8rem; color: var(--gray); margin-bottom: 4px; }
    .city-dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none;
        display: flex; gap: 8px; padding: 0; min-width: unset;
    }
    .city-opt {
        padding: 8px 16px;
        border: 1.5px solid rgba(184,134,11,0.4);
        border-radius: 50px;
        width: auto;
        font-size: 0.85rem;
    }
    .city-opt.active {
        background: var(--primary); color: var(--white);
        border-color: var(--primary);
    }
    .city-check { display: none; }
}

/* ===== FOOTER CITY SELECTOR ===== */
.footer-city-selector {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--dark);
    font-size: 0.85rem;
}
.footer-city-selector i { color: var(--primary); }
.footer-city-btns { display: flex; gap: 8px; }

.footer-city-btn {
    padding: 6px 18px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif; font-size: 0.82rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}
.footer-city-btn:hover { background: var(--white); border-color: var(--primary); color: var(--primary); }
.footer-city-btn.active {
    background: var(--primary); border-color: var(--primary);
    color: var(--white); font-weight: 600;
}

/* ===== CITY PICKER POPUP ===== */
.city-popup-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 99000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.city-popup-overlay.visible { opacity: 1; visibility: visible; }

.city-popup {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    max-width: 360px; width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.city-popup-overlay.visible .city-popup { transform: translateY(0); }

.city-popup h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--dark);
    margin-bottom: 12px;
}
.city-popup h3 i { color: var(--primary); margin-right: 8px; }
.city-popup p { color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }

.city-popup-btns { display: flex; gap: 14px; justify-content: center; }
.city-popup-btn {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    background: none;
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600;
    color: var(--primary); cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.city-popup-btn:hover { background: var(--primary); color: var(--white); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--secondary);
    color: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
    padding: 16px 30px;
    z-index: 98000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: wrap;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-content {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem; line-height: 1.5;
    flex: 1; min-width: 220px;
}
.cookie-content i { color: var(--primary-light); font-size: 1.2rem; flex-shrink: 0; }
.cookie-content a { color: var(--primary-light); text-decoration: underline; }
.cookie-content a:hover { color: var(--accent); }

.cookie-btns { display: flex; gap: 10px; }

.btn-cookie-accept,
.btn-cookie-refuse {
    padding: 9px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; border: 2px solid var(--primary);
    transition: var(--transition); white-space: nowrap;
}
.btn-cookie-accept {
    background: var(--primary); color: var(--white);
}
.btn-cookie-accept:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-cookie-refuse {
    background: transparent; color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}
.btn-cookie-refuse:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

@media (max-width: 600px) {
    .cookie-banner { padding: 14px 18px; }
    .cookie-content { font-size: 0.82rem; }
    .cookie-btns { width: 100%; }
    .btn-cookie-accept, .btn-cookie-refuse { flex: 1; text-align: center; }
    .city-popup { padding: 28px 20px; }
    .city-popup-btns { flex-direction: column; }
}