.main-container {
    padding-bottom: 90px;
}
#viva-nav { visibility: hidden; min-height: 60px; }
#viva-nav.loaded { visibility: visible; transition: visibility 0s; }
/* 
  Latino Fine Art Photography
  Theme: Cinematic Dark & Gold (Original Restoration)
  Restored based on user provided screenshots
*/

/* ========================================================
   PAGE PRELOADER  Eliminates layout flash (FOUC)
   ======================================================== */
#page-preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#page-preloader .loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

#page-preloader .loader-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: rgba(212, 175, 55, 0.6);
    text-transform: uppercase;
}

#page-preloader .loader-bar {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

#page-preloader .loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

:root {
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --accent-gold: #d4af37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-gold-hover: #f1d57d;
    --text-primary: #ffffff;
    --text-secondary: #c8bfaf;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --premium-shadow: 0 20px 50px rgba(0, 0, 0, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s ease-out;

    /* Premium Atelier Layer */
    --premium-surface: linear-gradient(145deg, rgba(10, 14, 22, 0.95), rgba(3, 6, 11, 0.98));
    --premium-edge: rgba(212, 175, 55, 0.22);
    --premium-glow: 0 24px 60px rgba(0, 0, 0, 0.58), 0 0 28px rgba(212, 175, 55, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    animation: fadeInPage 0.8s ease-out;
    text-rendering: optimizeLegibility;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.menu-open {
    overflow: hidden;
}

p {
    color: #c8bfaf;
}

/* Double enforcement */

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    /* Force White Headings */
}

h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #d4af37 !important;
    /* Force Gold Subheadings */
}

h1 i,
h2 i {
    font-style: italic;
    color: #fff;
}

/* --- NAVIGATION --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

#navbar.scroll-shadow {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px 0;
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    color: #ffffff !important;
    /* Force White always */
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.logo span {
    color: var(--accent-gold) !important;
    /* Force Gold always */
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Premium global button treatment */
.btn-gold,
.hero-btn-capsule,
.btn-outline,
button[class*="btn"],
a[class*="btn"] {
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-gold:hover,
.hero-btn-capsule:hover,
.btn-outline:hover,
button[class*="btn"]:hover,
a[class*="btn"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-glow);
}

.menu-toggle {
    display: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* --- PREMIUM HEADER ACTIONS --- */
.viva-action-btn {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: none;
    cursor: pointer;
    position: relative;
    padding: 0 !important;
    text-decoration: none;
    outline: none;
}

.viva-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.viva-action-btn:active {
    transform: scale(0.95);
}

/* 1. J.A.R.V.I.S (AI Chip) - Octagon Tech Shape */
.viva-ai-btn {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: rgba(255, 255, 255, 0.08);
    border: none !important;
}

.viva-ai-btn i {
    color: #fff !important;
    font-size: 1.1rem !important;
}

.viva-ai-btn .status-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    z-index: 2;
}

/* 2. VIVA (System Add) - Perfect Circle */
.viva-add-btn {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.viva-add-btn i {
    color: #fff !important;
    font-size: 1.2rem !important;
}

/* 3. Director (Messenger) - Squircle App Icon */
.viva-msg-btn {
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.viva-msg-btn i {
    color: #fff !important;
    font-size: 1.2rem !important;
}

.viva-msg-btn .notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e41e3f;
    color: white;
    border-radius: 50%;
    font-size: 0.55rem;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* --- HERO (Instagram Square Style) --- */
.hero {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #050505;
    text-align: center;
    padding: 90px 20px 40px;
    gap: 24px;
}

/* NO full-screen overlay  just dark bg for the padding area */
.hero::after {
    display: none;
}

/*  Square frame (the Instagram post)  */
.hero-square-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    flex-shrink: 0;
}

/*  Image slider fills the square  */
.hero-slider {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    /* clips the background images */
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/*  Text overlay  CENTERED in the square  */
.hero-content {
    position: absolute;
    inset: 0;
    /* fills entire square */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* center EVERYTHING vertically and horizontally */
    padding: 30px;
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.85) 100%);
    border-radius: 17px;
    text-align: center;
}

.hero-content .hero-btns {
    pointer-events: all;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* ANTI-CYAN GLOBAL FORCE - NO MS AZUL */
.hero-btns i,
.dock-item i,
.nav-access-links i,
#mobile-admin-btn i {
    color: var(--accent-gold) !important;
}

.hero-btns .btn-gold i {
    color: #000 !important;
    /* contrast for gold bg */
}

.hero-btns .btn-outline i {
    color: #fff !important;
}

.hero-content p {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: var(--accent-gold);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.box-glass-hero {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.scroll-indicator {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.magic-text {
    position: relative;
    display: inline-block;
}

.magic-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: -10px;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent-gold) !important;
    color: #000 !important;
    padding: 18px 40px;
    border: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 225, 120, 0.4),
            transparent);
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    background: var(--accent-gold-hover) !important;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent !important;
    color: #fff;
    padding: 18px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: #fff !important;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
}

/* --- SECTIONS --- */
section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h4 {
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #fff;
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto;
}

/* --- ABOUT SECTION ENHANCED --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-frame {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    transition: var(--transition);
}

.about-image-frame img {
    width: 100%;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition);
}

.image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-gold);
    z-index: -1;
    transition: var(--transition);
}

.about-image-frame:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.about-image-frame:hover img {
    filter: brightness(1);
}

.about-image-frame:hover .image-accent {
    transform: translate(10px, 10px);
}

.playfair-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.short-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 35px;
}

.lead-text {
    font-size: 1.15rem;
    color: #eee !important;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-description p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-cta-container {
    margin-top: 40px;
    margin-bottom: 50px;
}

.signature-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.signature-name {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold) !important;
    font-size: 1.8rem;
    margin-bottom: 5px !important;
}

.signature-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* About Mobile Overrides */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .short-divider {
        margin: 0 auto 30px;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .signature-name {
        font-size: 1.6rem;
    }
}

/* Process */
#process {
    background: #080808;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-item {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-item:hover {
    transform: translateY(-20px);
    border-color: var(--accent-gold);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: var(--premium-shadow);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
    transition: var(--transition);
}

.process-item:hover .step-num {
    color: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--accent-gold) !important;
    margin-bottom: 30px;
    display: block;
    transition: var(--transition);
}

.process-item:hover .process-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.process-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Masterpieces Grid (Matching Image 3) */
.masterpieces-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Changed to 3 columns for 5 items */
    gap: 20px;
}

.gallery-item-lux {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    /* Professional Portrait Ratio */
    cursor: pointer;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.gallery-item-lux.tall {
    grid-row: span 2;
    aspect-ratio: auto;
    /* Fallback for grid spanning */
}

.gallery-item-lux.wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.gallery-item-lux::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item-lux:hover::before {
    opacity: 1;
}

.gallery-item-lux img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-lux:hover img {
    transform: scale(1.1);
}

.gallery-item-lux.large {
    grid-column: span 1;
    grid-row: span 2;
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #0d0d0d;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-content {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Subscriptions Form */
#promo {
    background: #080808;
    padding: 80px 0;
}

.promo-box {
    max-width: 900px;
    margin: 0 auto;
}

.promo-grid {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.promo-grid input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 4px;
}

.promo-grid .btn-gold {
    flex: none;
    width: 200px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    font-size: 0.8rem;
}

.footer-section h4 {
    color: #d4af37 !important;
    /* Gold Headers Forced */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-section p {
    color: #c8bfaf !important;
    /* Light Text */
    margin-bottom: 20px;
    font-size: 0.8rem;
    line-height: 1.8;
}

/* Quick Actions Hide by Default */
.mobile-tab-bar {
    display: none;
}

.desktop-sidebar {
    display: none;
}

/* Desktop: hide the mobile-only admin button */
#mobile-admin-btn {
    display: none;
}

/* VIVA V4: Core structural rules shifted to index.html and viva-architecture.css for stability */

/* --- MOBILE OPTIMIZATIONS (Level 10 Elite & Compact) --- */
@media (max-width: 1024px) {

    /* --- GLOBAL LAYOUT --- */
    section {
        padding: 40px 0 !important;
        /* Compact Sections */
    }

    .container {
        padding: 0 15px !important;
    }

    .divider,
    .short-divider {
        margin-bottom: 20px !important;
    }

    /* --- NAVIGATION MOBILE --- */
    /* 2. MAIN NAVBAR */
    nav {
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(25px);
        padding: 15px 0 !important;
        height: auto !important;
        position: fixed !important;
        top: 0;
        z-index: 5000;
        border-bottom: none !important;
    }

    .nav-content {
        padding: 0 20px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 3. LOGO - TEXT ONLY (Match Screenshot: LATINO FINE ART) */
    .logo {
        display: block !important;
        font-family: 'Playfair Display', serif !important;
        font-size: 1.1rem !important;
        /* Smaller, more elegant */
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        color: var(--accent-gold) !important;
        text-transform: uppercase;
        text-decoration: none;
    }

    .logo span {
        display: inline !important;
        color: #fff !important;
        font-weight: 400 !important;
    }

    /* 4. MENU TOGGLE */
    .menu-toggle {
        display: block !important;
        font-size: 1.2rem !important;
        /* Smaller, finer icon */
        color: var(--accent-gold) !important;
        border: none !important;
        background: transparent !important;
        padding: 5px;
        /* Increase click area, keep icon small */
        cursor: pointer;
    }

    .nav-links {
        display: none;
    }

    /* Control de duplicados en Nav */
    .nav-access-links {
        display: none !important;
    }

    .mobile-nav-toggle-wrap {
        display: flex !important;
        align-items: center;
        gap: 15px;
    }

    #mobile-admin-btn {
        display: flex !important;
        align-items: center;
        gap: 6px;
        color: var(--accent-gold) !important;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
    }

    #mobile-admin-btn i {
        font-size: 0.9rem;
    }

    /* Show logo image on mobile as small square */
    .logo img {
        display: block !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 5px !important;
    }

    /* --- HERO MOBILE OVERRIDES --- */
    .hero {
        padding: 70px 12px 50px !important;
        /* 70px = mobile nav height */
        gap: 16px !important;
    }

    .hero-square-wrap {
        max-width: 100% !important;
        /* fill mobile width */
        border-radius: 12px !important;
    }

    .hero-slider {
        border-radius: 12px !important;
    }

    .hero-content {
        padding: 20px !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        inset: 0 !important;
        position: absolute !important;
        background: radial-gradient(circle,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.7) 60%,
                rgba(0, 0, 0, 0.9) 100%) !important;
    }

    .hero-content p {
        font-size: 0.6rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 6px !important;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
        margin-bottom: 12px !important;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .hero-btns .btn-gold,
    .hero-btns .btn-outline {
        padding: 10px 20px !important;
        font-size: 0.65rem !important;
    }

    .scroll-indicator {
        margin-top: 12px !important;
        gap: 6px !important;
    }

    .scroll-indicator .mouse {
        width: 15px !important;
        height: 25px !important;
    }

    .scroll-indicator .wheel {
        width: 2px !important;
        height: 5px !important;
    }

    .scroll-indicator span {
        font-size: 0.5rem !important;
    }

    /* --- NEW COMPACT TOP DROPDOWN MENU --- */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        top: 100%;
        /* Starts right below the navbar */
        right: 0;
        left: 0;
        bottom: auto;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        z-index: 4000;
        padding: 20px 0;
        gap: 10px;
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        animation: slideDownMenu 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active a {
        font-size: 0.75rem;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        padding: 12px 0;
        width: 100%;
        text-align: center;
        border: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        background: transparent;
        border-radius: 0;
        margin-bottom: 0;
        max-width: 100%;
        transition: all 0.3s ease;
    }

    .nav-links.active a:last-child {
        border-bottom: none;
    }

    /* Animation for the compact slide down */
    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active a:last-child {
        border-bottom: none;
    }

    .mobile-only-access {
        display: flex !important;
        width: 100%;
        max-width: 280px;
    }

    /* --- MOBILE MENU OVERLAY (Full Black for Max Readability) --- */
    .nav-links.active {
        background: rgba(0, 0, 0, 0.98) !important;
        /* Total black for contrast */
        backdrop-filter: blur(20px);
        padding-top: 100px;
    }

    /* --- MOBILE NATIVE TAB BAR (Instagram Style) --- */
    .mobile-tab-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(10, 10, 10, 0.7);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .tab-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.75);
        gap: 4px;
        transition: all 0.3s ease;
    }

    .tab-item i {
        font-size: 1.3rem !important;
        color: inherit !important;
    }

    .tab-item span {
        font-size: 0.55rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .tab-item.active {
        color: var(--accent-gold);
    }

    .tab-item.center-button {
        position: relative;
        transform: translateY(-12px);
    }

    .plus-icon {
        width: 50px;
        height: 50px;
        background: var(--accent-gold);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
        border: 4px solid #050505;
    }

    .plus-icon i {
        color: #000 !important;
        font-size: 1.4rem !important;
    }

    .tab-item.center-button span {
        margin-top: 5px;
        color: var(--accent-gold);
        font-weight: 700;
        font-size: 0.5rem;
    }

    /* Adjust main nav for mobile bar */
    nav {
        height: 60px !important;
        padding: 5px 0 !important;
    }

    .nav-content {
        justify-content: center !important;
        /* Center logo on mobile */
    }

    .logo img {
        width: 32px !important;
        height: 32px !important;
    }

    .mobile-nav-toggle-wrap {
        display: none !important;
    }

    /* Hide hero scroll indicator on mobile to clean up space */
    .scroll-indicator {
        display: none !important;
    }

    /* Add padding to footer to avoid tab bar overlap */
    footer {
        padding-bottom: 100px !important;
    }
}

/* 3. MENU TOGGLE (Far Right) */
.menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    /* Larger touch target */
    height: 45px;
    font-size: 1.4rem !important;
    color: var(--accent-gold) !important;
    background: transparent !important;
    /* No background box */
    border: none !important;
    padding: 0;
    margin-left: 5px;
    cursor: pointer;
    z-index: 5002;
    transition: transform 0.3s ease, color 0.3s ease;
    /* Smooth rotation */
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* Rotate icon when active (add this class via JS if needed, or rely on fa-times switch visual) */
/* Since JS swaps classes, we rely on the transition of the element itself */

.nav-links.active {
    /* ... existing styles ... */
    animation: slideInRight 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    /* --- ULTRA COMPACT MOBILE DESIGN (Level 10) --- */

    /* Global Section Spacing */
    section {
        padding: 30px 0 !important;
        /* Very tight spacing between sections */
    }

    .section-title {
        margin-bottom: 30px !important;
    }

    .section-title h2 {
        font-size: 1.4rem !important;
        /* Elegant small heading */
        margin-bottom: 10px !important;
    }

    .section-title h4 {
        font-size: 0.55rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 5px !important;
    }

    .divider,
    .short-divider {
        margin-bottom: 0 !important;
        transform: scaleX(0.7);
        /* Smaller divider */
    }

    /* Process Section - Tiny Beautiful Boxes */
    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px !important;
        padding: 0 5px;
    }

    .process-item {
        padding: 12px 0px !important;
        /* Minimal vertical padding */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        min-height: 90px;
    }

    .process-icon {
        margin-bottom: 5px !important;
    }

    .process-icon i {
        font-size: 0.9rem !important;
        /* Tiny icon */
        margin: 0 !important;
    }

    .process-content h3 {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }

    .process-content p {
        font-size: 0.5rem !important;
        line-height: 1.1 !important;
        display: none !important;
        /* OPTIONAL: Hiding text for super clean look? Or keeping it? User said "small sizes", not hide. Let's keep it but very small. */
        display: block !important;
        padding: 0 5px;
    }

    .step-num {
        display: none !important;
        /* Hide giant numbers to clean up */
    }

    /* Masterpieces - Tight Mosaic (Strict 2x2 Grid) */
    .masterpieces-gallery {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }

    .gallery-item-lux {
        aspect-ratio: 4 / 5 !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    /* Force all items to be standard 1x1 blocks on mobile */
    .gallery-item-lux,
    .gallery-item-lux.tall,
    .gallery-item-lux.wide {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 100% !important;
        width: 100% !important;
    }

    /* Fix Button overlapping Gallery */
    #works .btn-outline {
        position: relative !important;
        z-index: 10 !important;
        background: rgba(0, 0, 0, 0.8) !important;
        /* Make readable if it overlaps */
        margin-top: 30px !important;
        display: inline-block !important;
    }

    /* Testimonials - Compact Cards */
    #testimonials-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 Columns for testimonials too! */
        gap: 8px !important;
    }

    .testimonial-card {
        padding: 10px !important;
        margin: 0 !important;
        border-radius: 8px !important;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin-bottom: 5px;
    }

    .testimonial-avatar {
        width: 30px !important;
        height: 30px !important;
    }

    .testimonial-author {
        font-size: 0.65rem !important;
    }

    .testimonial-text {
        font-size: 0.5rem !important;
        text-align: center;
        padding: 0 !important;
        border: none !important;
        line-height: 1.2 !important;
    }

    .testimonial-card::before {
        display: none !important;
        /* Remove giant quote mark */
    }

    /* Stats Grid - Tiny Row */
    .stats-grid {
        padding: 40px 0 20px !important;
        /* Add top padding to Separate from gallery */
        margin-top: 0 !important;
        /* Reset inline style if needed */
        display: flex !important;
        justify-content: space-between;
        gap: 5px !important;
        position: relative;
        z-index: 10;
        background: #050505;
        /* Ensure background covers anything behind */
    }

    .stat-item {
        padding: 5px !important;
    }

    .stat-item h2 {
        font-size: 1.2rem !important;
    }

    .stat-item p {
        font-size: 0.45rem !important;
    }

    /* Fix "Extra Values" (Brush/Heart) Layout on Mobile */
    #works>div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 40px !important;
        margin-top: 40px !important;
    }

    #works>div[style*="display: flex"]>div {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    #works>div[style*="display: flex"] p {
        font-size: 0.8rem !important;
        /* Readable size */
        max-width: 100% !important;
    }

    /* --- FOOTER (Compact) --- */
    footer {
        padding: 60px 20px 100px !important;
    }

    .footer-grid {
        gap: 25px !important;
        display: flex !important;
        flex-direction: column;
    }

    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
    }

    .footer-section:last-child {
        border-bottom: none;
        text-align: center;
    }


}

/* --- ANIMATIONS & GLOBAL UTILS --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-hidden.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Chat Widget  Controlled globally by js/chat.js */
.chat-widget {
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 200000;
    font-family: 'Inter', sans-serif;
}

.chat-bubble {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-bubble:hover {
    transform: scale(1.1);
    background: #f0d060;
}

.chat-window {
    position: absolute;
    bottom: 62px;
    right: -5px;
    width: 230px;
    height: 400px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scrollbar-width: none;
}

.chat-input {
    padding: 12px;
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 0.75rem;
    outline: none;
}

/* --- BEFORE & AFTER SLIDER (Step 3) --- */
.ba-slider-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--premium-shadow);
    background: #111;
}

.ba-image-after,
.ba-image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--accent-gold);
    z-index: 2;
}

.ba-before-wrapper .ba-image-before {
    width: 100%;
    /* Important: keep image width fixed while container shrinks */
    height: 100%;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.ba-handle-line {
    width: 100%;
    height: 100%;
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .ba-slider {
        aspect-ratio: 4/5;
    }
}



/* --- STORIES COMPONENT (Step 1) --- */
.stories-container {
    display: flex;
    gap: 15px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    background: #000;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex: 0 0 auto;
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.story-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-item:hover .story-circle {
    transform: scale(1.05);
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
}

.story-item span {
    font-size: 0.65rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Modal */
.story-modal {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    touch-action: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.story-modal.active {
    opacity: 1;
    visibility: visible;
}

.story-content {
    width: 100%;
    height: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.story-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-progress-bar {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.story-progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
}

.story-close {
    position: absolute;
    top: 25px;
    right: 20px;
    color: #fff;
    font-size: 1.5rem;
    z-index: 10;
    cursor: pointer;
}

/* --- BEFORE & AFTER POLISH (Step 2) --- */
.ba-slider {
    position: relative;
}

/* Ensure it's relative for absolute children */

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 20px;
    border-left: 3px solid var(--accent-gold);
}

.label-after {
    right: 20px;
    border-right: 3px solid var(--accent-gold);
}

.ba-tutorial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pulseScroll 2s infinite;
    pointer-events: none;
}

.ba-tutorial i {
    font-size: 1.1rem;
}

@keyframes pulseScroll {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
}

/* --- AMBIENT AUDIO PLAYER (Step 3) --- */
.audio-control {
    position: fixed;
    top: 25px;
    /* Below navigation on desktop */
    right: 25px;
    z-index: 2100;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.audio-control:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.audio-control.playing i::before {
    content: "\f028" !important;
}

/* Volume-up */
.audio-control.muted i::before {
    content: "\f6a9" !important;
}

/* Volume-xmark */

.music-wave {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.audio-control.playing .music-wave {
    display: flex;
}

.audio-control.playing>i {
    display: none;
}

.wave-bar {
    width: 2px;
    background: var(--accent-gold);
    animation: waveAnim 1s ease-in-out infinite;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waveAnim {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 12px;
    }
}

@media (max-width: 1024px) {
    .audio-control {
        top: auto;
        bottom: 100px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        background: rgba(0, 0, 0, 0.6);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
}

/* EMERGENCY RESCUE: keep available for manual debugging only.
   Activate by adding class "debug-rescue" to <body>.
*/

body.debug-rescue .btn,
body.debug-rescue .button,
body.debug-rescue button,
body.debug-rescue [role="button"],
body.debug-rescue .nav-link,
body.debug-rescue a.cta {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    position: relative !important;
    background-color: transparent !important;
    color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    padding: 12px 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: bold !important;
    transition: all 0.3s ease-in-out !important;
}

body.debug-rescue .btn:hover,
body.debug-rescue .nav-link:hover {
    background-color: #d4af37 !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}

body.debug-rescue nav,
body.debug-rescue .menu-container,
body.debug-rescue .nav-wrapper {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10000 !important;
}

body.debug-rescue .viva-overlay,
body.debug-rescue .loader-backup,
body.debug-rescue #loader {
    display: none !important;
    pointer-events: none !important;
}
