/* BarberShop Pro - Dynamic Layers inspired theme */
:root {
    --accent-rgb: 201, 162, 39;
    --gold: #c9a227;
    --gold-light: #e4c04a;
    --gold-dark: #a6851f;
    --gold-a05: rgba(var(--accent-rgb), 0.05);
    --gold-a08: rgba(var(--accent-rgb), 0.08);
    --gold-a10: rgba(var(--accent-rgb), 0.1);
    --gold-a12: rgba(var(--accent-rgb), 0.12);
    --gold-a14: rgba(var(--accent-rgb), 0.14);
    --gold-a15: rgba(var(--accent-rgb), 0.15);
    --gold-a18: rgba(var(--accent-rgb), 0.18);
    --gold-a20: rgba(var(--accent-rgb), 0.2);
    --gold-a22: rgba(var(--accent-rgb), 0.22);
    --gold-a25: rgba(var(--accent-rgb), 0.25);
    --gold-a28: rgba(var(--accent-rgb), 0.28);
    --gold-a30: rgba(var(--accent-rgb), 0.3);
    --gold-a35: rgba(var(--accent-rgb), 0.35);
    --gold-a38: rgba(var(--accent-rgb), 0.38);
    --gold-a40: rgba(var(--accent-rgb), 0.4);
    --gold-a45: rgba(var(--accent-rgb), 0.45);
    --gold-a50: rgba(var(--accent-rgb), 0.5);
    --gold-a55: rgba(var(--accent-rgb), 0.55);
    --gold-a60: rgba(var(--accent-rgb), 0.6);
    --gold-a85: rgba(var(--accent-rgb), 0.85);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%);
    --star-color: var(--gold-light);
    --star-glow: rgba(var(--accent-rgb), 0.45);
    --dark: #0d0d0d;
    --dark-2: #1a1a1a;
    --dark-3: #252525;
    --text-muted: #9a9a9a;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Barlow', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing-page {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    text-align: center;
}
.preloader-scissors {
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}
.preloader-inner span {
    font-family: var(--font-display);
    color: var(--gold);
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}
.site-header.scrolled {
    background: rgba(13, 13, 13, 0.97);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.site-logo span { color: var(--gold); }

.main-nav {
    display: none;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 992px) {
    .main-nav { display: flex; }
}
.main-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--gold); }

.btn-gold {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark) !important;
    padding: 0.85rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--gold-a25);
}
.btn-gold:hover,
.btn-gold:focus-visible {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px var(--gold-a35);
}
.btn-gold:active {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    filter: brightness(0.94);
    transform: translateY(0);
    box-shadow: 0 4px 14px var(--gold-a22);
}
.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold) !important;
    padding: 0.85rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.35s ease;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark) !important;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
@media (min-width: 992px) { .menu-toggle { display: none; } }
.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--white);
    font-size: 1.25rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.swiper-slide-active .hero-bg {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}
.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.2);
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--gold);
}
.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 1.5rem;
}

/* Section common */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark); }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-desc {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* About */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-image {
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 1.5rem 2rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.about-badge small {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-body);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Services cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--dark-3);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--gold-a15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    border: 2px solid var(--gold-a30);
    border-radius: 50%;
    transition: all 0.4s;
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-price {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Appointment */
.appointment-section {
    background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)),
        url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920') center/cover fixed;
    padding: 6rem 0;
}
.appointment-form {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border: 1px solid var(--gold-a20);
    max-width: 700px;
    margin: 2rem auto 0;
}
.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
.appointment-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.appointment-form .btn-gold { width: 100%; margin-top: 0.5rem; border: none; }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.team-card {
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
}
.team-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover img { transform: scale(1.08); }
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-card .team-info {
    padding: 1.5rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}
.team-card .specialty {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}
.testimonials-bg-glow {
    position: absolute;
    inset: 10% 5% auto;
    height: 320px;
    background: radial-gradient(ellipse at center, var(--gold-a12) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials-carousel-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.75rem;
}
.testimonial-slider {
    padding: 2.5rem 0 3.5rem;
    overflow: visible;
}
.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    position: relative;
    text-align: left;
    padding: 1.65rem 1.5rem 1.4rem;
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--gold-a22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-a45);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--gold-a08);
}
.testimonial-card-shine {
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-a55), transparent);
}
.testimonial-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2rem;
    flex-shrink: 0;
}
.testimonial-quote-icon {
    display: none;
    color: var(--gold-a40);
    font-size: 1.25rem;
    line-height: 1;
}
.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.testimonial-header-meta {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.testimonial-name {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}
.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}
.testimonial-verified i {
    color: var(--gold);
    font-size: 0.68rem;
}
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.star-rating i {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease, transform 0.2s ease;
}
.star-rating i.is-filled {
    color: var(--star-color);
    text-shadow: 0 0 12px var(--star-glow);
}
.testimonial-card:hover .star-rating i.is-filled {
    transform: scale(1.05);
}
.testimonial-rating-num {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
    background: var(--gold-a12);
    border: 1px solid var(--gold-a25);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}
.testimonial-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-a25), var(--gold-a08));
    border: 1px solid var(--gold-a35);
    flex-shrink: 0;
}
.testimonials-empty {
    max-width: 520px;
    margin: 0 auto 0.5rem;
}
.btn-testimonial-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--gold-a45);
    background: linear-gradient(135deg, var(--gold-a18), var(--gold-a08));
    color: var(--gold);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn-testimonial-cta:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 12px 28px var(--gold-a20);
}
.btn-testimonial-cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-a20);
    color: var(--star-color);
    font-size: 0.8rem;
}
.testimonial-slider .testimonial-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--gold-a35);
    color: var(--gold);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-slider .testimonial-nav::after {
    font-size: 0.95rem;
    font-weight: 700;
}
.testimonial-slider .testimonial-nav:hover {
    background: var(--gold-a20);
    transform: scale(1.06);
}
.testimonial-slider .testimonial-prev { left: 0; }
.testimonial-slider .testimonial-next { right: 0; }
.testimonial-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: width 0.25s ease, background 0.25s ease;
}
.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 22px;
    border-radius: 999px;
}
@media (max-width: 1099px) {
    .testimonials-carousel-wrap { padding: 0 2.25rem; }
}
@media (max-width: 639px) {
    .testimonials-carousel-wrap { padding: 0; }
}

.testimonial-modal-dialog {
    max-width: 500px;
    width: calc(100% - 2rem);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gold-a25);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}
.testimonial-modal-body {
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
}
.testimonial-modal-badge {
    display: inline-flex;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    color: var(--star-color);
    font-size: 0.85rem;
    opacity: 0.9;
}
.testimonial-modal-body h3 {
    font-family: var(--font-display);
    margin: 0 0 0.5rem;
    font-size: 1.55rem;
}
.testimonial-modal-intro {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.35rem;
}
.testimonial-field {
    text-align: left;
    margin-bottom: 0.85rem;
}
.testimonial-field label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
}
.testimonial-field label i {
    color: var(--gold);
    font-size: 0.78rem;
}
.testimonial-form input,
.testimonial-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-form input:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: var(--gold-a50);
    box-shadow: 0 0 0 3px var(--gold-a12);
}
.testimonial-form-submit {
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-weight: 600;
}

/* Testimonials impact stat */
.testimonials-impact-card {
    margin: 0 auto 2.5rem;
    max-width: 520px;
    padding: 1.35rem 1.75rem;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--gold-a14), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--gold-a28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.testimonials-impact-text {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}
.testimonials-impact-count {
    display: inline-block;
    margin: 0 0.2em;
    font-size: 1.35em;
    font-weight: 700;
    color: var(--gold);
}

/* Loyalty coupons section */
.loyalty-section {
    position: relative;
    overflow: hidden;
}
.loyalty-bg-glow {
    position: absolute;
    inset: 5% 10% auto;
    height: 360px;
    background: radial-gradient(ellipse at center, var(--gold-a10) 0%, transparent 70%);
    pointer-events: none;
}
.loyalty-intro {
    max-width: 640px;
    margin: 0 auto 2rem;
}
.loyalty-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.loyalty-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}
.loyalty-stat-pill strong {
    color: #fff;
    font-size: 1rem;
}
.loyalty-stat-pill.gold {
    border-color: var(--gold-a35);
    background: var(--gold-a10);
}
.loyalty-stat-pill.gold strong { color: var(--gold); }
.loyalty-stat-pill.active {
    border-color: var(--gold-a35);
    background: var(--gold-a08);
}
.loyalty-stat-pill.active strong { color: var(--gold-light); }
.loyalty-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 2rem;
    text-align: left;
    align-items: start;
}
.loyalty-rules-card {
    padding: 1.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gold-a18);
}
.loyalty-rules-card h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--gold);
}
.loyalty-rules-list {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 0.92rem;
}
.loyalty-rules-list strong { color: #fff; }
.loyalty-sample-coupon { margin-bottom: 1.25rem; }
.loyalty-sample-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.65rem;
}
.loyalty-coupon-card {
    border-radius: 16px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--gold-a35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.loyalty-coupon-card.is-sample {
    opacity: 0.92;
}
.loyalty-coupon-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--gradient-gold);
    color: #0d0d0d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.loyalty-coupon-head strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
}
.loyalty-coupon-status {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
}
.loyalty-coupon-body {
    padding: 1.25rem 1rem 1rem;
    text-align: center;
    border-top: 2px dashed var(--gold-a35);
}
.loyalty-coupon-owner {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}
.loyalty-coupon-reason {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    color: var(--gold-a85);
    line-height: 1.35;
}
.loyalty-coupon-discount {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}
.loyalty-coupon-code {
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}
.loyalty-coupon-note {
    margin: 0.5rem 0 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}
.loyalty-coupon-meta {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    text-align: left;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}
.loyalty-coupon-meta li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}
.loyalty-coupon-meta i { color: var(--gold); width: 14px; }
.loyalty-cta-btn {
    display: block;
    text-align: center;
    width: 100%;
}
.loyalty-holders-title {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    color: #fff;
}
.loyalty-holders-empty {
    padding: 2rem;
    text-align: center;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
}
.loyalty-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
@media (max-width: 991px) {
    .loyalty-layout {
        grid-template-columns: 1fr;
    }

    .loyalty-coupons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .loyalty-holders-col .loyalty-coupon-card {
        border-width: 2px;
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.35),
            0 0 0 1px var(--gold-a20);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .loyalty-holders-col .loyalty-coupon-card:active {
        transform: scale(0.98);
    }

    .loyalty-holders-col .loyalty-coupon-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.7rem 0.75rem;
        font-size: 0.62rem;
    }

    .loyalty-holders-col .loyalty-coupon-body {
        padding: 0.9rem 0.75rem 0.85rem;
        text-align: center;
    }

    .loyalty-holders-col .loyalty-coupon-owner {
        font-size: 0.88rem;
        margin-bottom: 0.35rem;
    }

    .loyalty-holders-col .loyalty-coupon-reason {
        font-size: 0.72rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .loyalty-holders-col .loyalty-coupon-discount {
        font-size: 1.45rem;
        margin: 0.25rem 0;
    }

    .loyalty-holders-col .loyalty-coupon-meta {
        font-size: 0.68rem;
        margin-top: 0.5rem;
    }

    .loyalty-holders-col .loyalty-coupon-meta li {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .loyalty-holders-col .loyalty-coupon-head span:first-child {
        font-size: 0.58rem;
    }

    .loyalty-holders-col .loyalty-coupon-discount {
        font-size: 1.25rem;
    }
}

/* Booking coupon */
.booking-coupon-block {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: var(--gold-a08);
    border: 1px solid var(--gold-a22);
    text-align: left;
}
.booking-coupon-block > label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.booking-coupon-hint {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
}
.booking-coupon-input-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.booking-coupon-input-row input {
    flex: 1 1 180px;
}
.booking-coupon-input-row .btn-sm {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
}
.booking-coupon-msg {
    margin: 0.55rem 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}
.booking-coupon-msg.success { color: #86efac; }
.booking-coupon-msg.error { color: #fca5a5; }
.summary-row.discount span:last-child { color: #86efac; }
.booking-payment-amount {
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gold-a20);
}
.booking-payment-total {
    margin: 0;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}
.booking-payment-total strong {
    color: var(--gold);
    font-size: 1.35rem;
}
.booking-payment-coupon-note {
    margin: 0.45rem 0 0;
    font-size: 0.85rem;
    color: #86efac;
}
.booking-payment-coupon-note.muted {
    color: rgba(255, 255, 255, 0.5);
}

/* Pricing */
.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}
.pricing-tab {
    background: transparent;
    border: 1px solid var(--gold-a40);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.pricing-tab.active,
.pricing-tab:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-list {
    max-width: 700px;
    margin: 0 auto;
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    gap: 1rem;
}
.pricing-item-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}
.pricing-item-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
.pricing-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}
.pricing-dots {
    flex: 1;
    border-bottom: 2px dotted var(--gold-a30);
    margin: 0 1rem 0.5rem;
    min-width: 20px;
    align-self: flex-end;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 8rem 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}
.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: var(--gold-a85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--gold-a20);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 0.95rem;
}
.footer-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-a40);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.subscribe-form {
    display: flex;
    margin-top: 1rem;
}
.subscribe-form input {
    flex: 1;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-right: none;
}
.subscribe-form button {
    background: var(--gold);
    border: none;
    color: var(--dark);
    padding: 0 1.25rem;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* Decorative divider */
.divider-gold {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 2rem;
}

/* Counter strip */
.counter-strip {
    background: var(--gold);
    color: var(--dark);
    padding: 3rem 0;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) {
    .counter-grid { grid-template-columns: repeat(4, 1fr); }
}
.counter-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.counter-item p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Tips / marketing — tarjetas premium */
.marketing-landing-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 50%, var(--dark-2) 100%);
}

.marketing-landing-glow {
    position: absolute;
    inset: -10% -5% auto;
    height: 420px;
    background:
        radial-gradient(ellipse 60% 50% at 20% 0%, var(--gold-a14), transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 10%, rgba(155, 111, 212, 0.12), transparent 65%);
    pointer-events: none;
}

.tips-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.75rem;
    text-align: left;
}

@media (min-width: 640px) {
    .tips-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .tips-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.75rem;
    }
}

.tip-card {
    --tip-accent: var(--gold);
    --tip-accent-soft: var(--gold-a15);
    --tip-accent-glow: var(--gold-a35);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.75rem 1.5rem 1.35rem;
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(32, 32, 32, 0.98) 0%, rgba(14, 14, 14, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    animation: tipCardIn 0.6s ease backwards;
    animation-delay: var(--tip-delay, 0ms);
}

@keyframes tipCardIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.tip-card--violet {
    --tip-accent: #b794f6;
    --tip-accent-soft: rgba(183, 148, 246, 0.14);
    --tip-accent-glow: rgba(183, 148, 246, 0.4);
}

.tip-card--blue {
    --tip-accent: #63b3ed;
    --tip-accent-soft: rgba(99, 179, 237, 0.14);
    --tip-accent-glow: rgba(99, 179, 237, 0.35);
}

.tip-card--gold {
    --tip-accent: var(--gold);
    --tip-accent-soft: var(--gold-a14);
    --tip-accent-glow: var(--gold-a40);
}

.tip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, var(--tip-accent-glow), transparent 45%, rgba(255, 255, 255, 0.06));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tip-card-shine {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--tip-accent-soft), transparent 70%);
    pointer-events: none;
    transition: transform 0.5s ease;
}

.tip-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px var(--tip-accent-soft),
        0 0 40px var(--tip-accent-soft);
}

.tip-card:hover .tip-card-shine {
    transform: scale(1.35);
}

.tip-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.tip-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--tip-accent);
    background: var(--tip-accent-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tip-card-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tip-accent);
}

.tip-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    line-height: 1.25;
    margin: 0 0 0.85rem;
    color: var(--white);
}

.tip-card-excerpt {
    flex: 1;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.65;
}

.tip-card-footer {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tip-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--dark);
    background: var(--tip-accent);
    box-shadow: 0 6px 20px var(--tip-accent-soft);
    transition: transform 0.2s, box-shadow 0.2s, gap 0.2s;
}

.tip-card-btn i {
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.tip-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--tip-accent-glow);
    gap: 0.75rem;
}

.tip-card-btn:hover i {
    transform: translateX(3px);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold-a30);
    color: var(--gold);
    margin-right: 0.5rem;
    transition: all 0.25s;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

/* —— Nav "Más" + WhatsApp (estilos base, siempre cargados) —— */
.nav-more-wrap {
    position: relative;
    flex-shrink: 0;
}

.nav-more-menu {
    display: none !important;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-more-menu[hidden] {
    display: none !important;
}

.nav-more-menu.is-open {
    display: block !important;
}

.nav-more-menu li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-more-menu li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

@media (min-width: 992px) {
    .nav-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.6rem 1.1rem 0.6rem 0.85rem;
        border-radius: 999px;
        border: 2px solid var(--gold-a55);
        background: linear-gradient(135deg, var(--gold-a22), var(--gold-a08));
        color: var(--gold-light, var(--gold-light));
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        font-family: inherit;
        box-shadow: 0 4px 18px var(--gold-a25);
    }

    .nav-more-menu.is-open {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: 220px;
        padding: 0.5rem;
        background: rgba(16, 16, 16, 0.98);
        border: 1px solid var(--gold-a35);
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
        z-index: 3000;
    }

    .nav-more-menu.is-open li a {
        display: block;
        padding: 0.65rem 0.85rem;
        border-radius: 10px;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: background 0.2s;
    }

    .nav-more-menu.is-open li a:hover {
        background: var(--gold-a12);
        color: var(--gold);
    }
}

/* WhatsApp widget */
.wa-contact-widget {
    position: fixed;
    z-index: 1075;
    left: 1rem;
    bottom: calc(var(--app-tabbar-h, 0px) + var(--app-safe-bottom, 0px) + 16px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.wa-contact-panel[hidden] {
    display: none !important;
}

.wa-contact-panel {
    order: -1;
    width: min(320px, calc(100vw - 2rem));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.wa-contact-panel.open {
    display: block;
}

.wa-contact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: #fff;
}

.wa-contact-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.wa-contact-header-text {
    flex: 1;
    min-width: 0;
}

.wa-contact-header-text strong {
    display: block;
    font-size: 0.9rem;
}

.wa-contact-header-text span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.88;
}

.wa-contact-close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    flex-shrink: 0;
}

.wa-contact-form {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #ece5dd;
}

.wa-contact-field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #54656f;
    margin-bottom: 0.3rem;
}

.wa-contact-field input,
.wa-contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #d1d7db;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 0.9rem;
}

.wa-contact-submit {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.wa-contact-fab {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.wa-contact-fab-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: #fff;
    background: linear-gradient(145deg, #25d366, #128c7e);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-contact-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1070;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.wa-contact-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 992px) {
    .wa-contact-widget {
        left: 1.5rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 991px) {
    .wa-contact-widget {
        left: auto !important;
        right: 1rem !important;
        bottom: calc(var(--app-tabbar-h, 0px) + var(--app-safe-bottom, 0px) + 16px + 58px + 14px) !important;
        align-items: flex-end !important;
    }
}
