/* ========================================
   SONIDO NORTE - Custom CSS
   Premium Dark Theme with Colors
   ======================================== */

/* === CSS Variables === */
:root {
    --sn-dark: #0a0a0f;
    --sn-darker: #060609;
    --sn-surface: #12121a;
    --sn-surface-2: #1a1a26;
    --sn-surface-3: #222232;
    --sn-border: rgba(255, 255, 255, 0.06);
    --sn-border-light: rgba(255, 255, 255, 0.1);
    --sn-primary: #00d4ff;
    --sn-primary-rgb: 0, 212, 255;
    --sn-secondary: #ff2d55;
    --sn-secondary-rgb: 255, 45, 85;
    --sn-accent: #7c3aed;
    --sn-accent-rgb: 124, 58, 237;
    --sn-success: #4ade80;
    --sn-warning: #fbbf24;
    --sn-text: #f0f0f5;
    --sn-text-muted: #8888a0;
    --sn-font: 'Inter', -apple-system, sans-serif;
    --sn-font-display: 'Outfit', 'Inter', sans-serif;
    --sn-radius: 16px;
    --sn-radius-lg: 20px;
    --sn-radius-xl: 28px;
    --sn-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --sn-shadow-glow: 0 0 30px rgba(0, 212, 255, 0.08);
    --sn-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sn-glass: rgba(18, 18, 26, 0.85);
    --sn-glass-border: rgba(0, 212, 255, 0.08);
}

/* === Base === */
html {
    font-size: 106.25%;
    /* 17px base instead of 16px — +1px global */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.sn-body {
    font-family: var(--sn-font);
    background: var(--sn-dark);
    color: var(--sn-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sn-font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--sn-primary);
    text-decoration: none;
    transition: var(--sn-transition);
}

a:hover {
    color: #33ddff;
}

::selection {
    background: rgba(var(--sn-primary-rgb), 0.3);
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* === Preloader === */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--sn-darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--sn-surface-3);
    border-top-color: var(--sn-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.preloader-text {
    font-family: var(--sn-font-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--sn-primary);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === Top Bar === */
.sn-topbar {
    background: var(--sn-darker);
    border-bottom: 1px solid var(--sn-border);
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--sn-text-muted);
}

.sn-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--sn-text-muted);
    transition: var(--sn-transition);
    margin-left: 4px;
}

.sn-social-icon:hover {
    color: var(--sn-primary);
    background: rgba(var(--sn-primary-rgb), 0.1);
}

/* === Navbar === */
.sn-navbar {
    background: var(--sn-glass) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--sn-glass-border);
    padding: 12px 0;
    transition: var(--sn-transition);
    z-index: 1040;
}

.sn-navbar.scrolled {
    padding: 6px 0;
    background: rgba(10, 10, 15, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.sn-logo {
    font-family: var(--sn-font-display);
    font-size: 1.4rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sn-logo i {
    font-size: 1.6rem;
    color: #ffffff;
    filter: none;
}

.sn-logo strong {
    color: #ffffff;
}

.sn-navbar .nav-link {
    color: var(--sn-text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--sn-transition);
    position: relative;
}

.sn-navbar .nav-link:hover,
.sn-navbar .nav-link.active {
    color: var(--sn-primary) !important;
    background: rgba(var(--sn-primary-rgb), 0.08);
}

.sn-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--sn-primary);
    border-radius: 2px;
}

.sn-dropdown {
    background: var(--sn-surface) !important;
    border: 1px solid var(--sn-border-light);
    border-radius: var(--sn-radius);
    box-shadow: var(--sn-shadow);
    padding: 8px;
}

.sn-dropdown .dropdown-item {
    color: var(--sn-text);
    border-radius: 8px;
    padding: 10px 16px;
    transition: var(--sn-transition);
}

.sn-dropdown .dropdown-item:hover {
    background: rgba(var(--sn-primary-rgb), 0.1);
    color: var(--sn-primary);
}

.sn-dropdown .dropdown-divider {
    border-color: var(--sn-border);
}

.sn-cart-icon {
    color: var(--sn-text);
    font-size: 1.3rem;
    transition: var(--sn-transition);
}

.sn-cart-icon:hover {
    color: var(--sn-primary);
}

.sn-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ffffff;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-user-btn {
    color: var(--sn-text);
    font-size: 1.3rem;
    transition: var(--sn-transition);
}

.sn-user-btn:hover {
    color: var(--sn-primary);
}

.sn-toggler {
    border: 1px solid var(--sn-border-light) !important;
    color: var(--sn-text);
    font-size: 1.4rem;
    padding: 4px 10px;
    border-radius: 8px;
}

/* === Mobile Offcanvas === */
.sn-offcanvas {
    background: var(--sn-surface) !important;
    border-left: 1px solid var(--sn-border);
    width: 300px;
}

.sn-mobile-nav li a {
    display: block;
    padding: 12px 16px;
    color: var(--sn-text);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--sn-transition);
}

.sn-mobile-nav li a:hover,
.sn-mobile-nav li a.active {
    background: rgba(var(--sn-primary-rgb), 0.1);
    color: var(--sn-primary);
}

.sn-mobile-contact {
    background: var(--sn-surface-2);
    border-radius: var(--sn-radius);
    font-size: 0.85rem;
    color: var(--sn-text-muted);
}

/* === Buttons === */
.sn-btn-glow {
    background: linear-gradient(135deg, var(--sn-primary), #0099cc);
    color: #000 !important;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--sn-transition);
    position: relative;
    overflow: hidden;
}

.sn-btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--sn-transition);
}

.sn-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(var(--sn-primary-rgb), 0.4);
    background: linear-gradient(135deg, #00e5ff, var(--sn-primary));
}

.sn-btn-glow:hover::before {
    opacity: 1;
}

.sn-btn-outline {
    background: transparent;
    color: var(--sn-primary);
    border: 1.5px solid var(--sn-primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--sn-transition);
}

.sn-btn-outline:hover {
    background: var(--sn-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(var(--sn-primary-rgb), 0.3);
}

.sn-btn-secondary {
    background: var(--sn-surface-2);
    color: var(--sn-text) !important;
    border: 1px solid var(--sn-border);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--sn-transition);
}

.sn-btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--sn-surface-3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sn-btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--sn-transition);
}

.sn-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

/* === Glass Card === */
.sn-glass-card {
    background: var(--sn-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--sn-glass-border);
    border-radius: var(--sn-radius-lg);
    padding: 24px;
    transition: var(--sn-transition);
}

.sn-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* === Hero Section === */
.sn-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--sn-darker);
}

.sn-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.sn-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.sn-hero-content {
    position: relative;
    z-index: 2;
}

.sn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--sn-primary-rgb), 0.1);
    border: 1px solid rgba(var(--sn-primary-rgb), 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sn-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUpSmall 0.8s ease;
}

.sn-hero-title {
    font-family: var(--sn-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.sn-hero-title .sn-gradient {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.sn-hero-subtitle {
    font-size: 1.15rem;
    color: var(--sn-text-muted);
    max-width: 540px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.sn-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.sn-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.sn-hero-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sn-primary);
    margin-bottom: 0;
}

.sn-hero-stat p {
    font-size: 0.8rem;
    color: var(--sn-text-muted);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sn-hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

.sn-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--sn-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sn-hero-float-card {
    position: absolute;
    background: var(--sn-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--sn-glass-border);
    border-radius: var(--sn-radius);
    padding: 16px 20px;
    animation: float 3s ease-in-out infinite;
}

.sn-hero-float-card.card-1 {
    bottom: 20%;
    left: -40px;
}

.sn-hero-float-card.card-2 {
    top: 15%;
    right: -30px;
    animation-delay: 1.5s;
}

/* Particles */
.sn-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.sn-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(var(--sn-primary-rgb), 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Section Styles === */
.sn-section {
    padding: 80px 0;
    position: relative;
}

.sn-section-dark {
    background: var(--sn-darker);
}

.sn-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sn-section-subtitle {
    color: var(--sn-text-muted);
    font-size: 1rem;
    max-width: 600px;
}

.sn-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sn-primary);
    margin-bottom: 10px;
}

.sn-section-badge i {
    font-size: 1rem;
}

/* === Service Cards === */
.sn-service-card {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-lg);
    overflow: hidden;
    transition: var(--sn-transition);
    height: 100%;
}

.sn-service-card:hover {
    border-color: rgba(var(--sn-primary-rgb), 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sn-service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--sn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(var(--sn-primary-rgb), 0.1);
    color: var(--sn-primary);
    margin-bottom: 16px;
    transition: var(--sn-transition);
}

.sn-service-card:hover .sn-service-icon {
    background: var(--sn-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--sn-primary-rgb), 0.4);
}

.sn-service-card .card-body {
    padding: 28px;
}

.sn-service-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sn-service-card .card-text {
    color: var(--sn-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.sn-service-card .sn-service-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--sn-primary);
}

.sn-service-card .sn-service-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--sn-text-muted);
}

/* === Product Cards === */
.sn-product-card {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-lg);
    overflow: hidden;
    transition: var(--sn-transition);
    height: 100%;
}

.sn-product-card:hover {
    border-color: rgba(var(--sn-primary-rgb), 0.25);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.sn-product-img {
    position: relative;
    height: 220px;
    background: var(--sn-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sn-product-img i {
    font-size: 4rem;
    color: var(--sn-surface-3);
}

.sn-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sn-product-card:hover .sn-product-img img {
    transform: scale(1.08);
}

.sn-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sn-secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sn-product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--sn-transition);
}

.sn-product-card:hover .sn-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.sn-product-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sn-primary);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--sn-transition);
    font-size: 1rem;
}

.sn-product-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(var(--sn-primary-rgb), 0.4);
}

.sn-product-body {
    padding: 20px;
}

.sn-product-category {
    font-size: 0.7rem;
    color: var(--sn-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sn-product-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--sn-text);
}

.sn-product-desc {
    font-size: 0.8rem;
    color: var(--sn-text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sn-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--sn-border);
}

.sn-product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--sn-primary);
}

.sn-product-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--sn-text-muted);
}

/* === Category Filter === */
.sn-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.sn-filter-btn {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    color: var(--sn-text-muted);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--sn-transition);
}

.sn-filter-btn:hover,
.sn-filter-btn.active {
    background: rgba(var(--sn-primary-rgb), 0.15);
    border-color: var(--sn-primary);
    color: var(--sn-primary);
}

/* === Testimonials === */
.sn-testimonial {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-lg);
    padding: 28px;
    height: 100%;
    transition: var(--sn-transition);
}

.sn-testimonial:hover {
    border-color: rgba(var(--sn-primary-rgb), 0.2);
    box-shadow: var(--sn-shadow-glow);
}

.sn-testimonial-stars {
    color: #ffc107;
    margin-bottom: 14px;
}

.sn-testimonial-text {
    font-size: 0.95rem;
    color: var(--sn-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.sn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sn-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sn-primary), var(--sn-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.sn-testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.sn-testimonial-source {
    font-size: 0.75rem;
    color: var(--sn-text-muted);
}

/* === Brands === */
.sn-brands-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
    align-items: center;
}

.sn-brands-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 20px 0;
}

.sn-brand-item {
    font-family: var(--sn-font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--sn-surface-3);
    white-space: nowrap;
    transition: var(--sn-transition);
    letter-spacing: 2px;
}

.sn-brand-item:hover {
    color: var(--sn-primary);
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* === Cart === */
.sn-cart-table {
    background: var(--sn-surface);
    border-radius: var(--sn-radius-lg);
    overflow: hidden;
}

.sn-cart-table .table {
    margin-bottom: 0;
    color: var(--sn-text);
}

.sn-cart-table .table th {
    background: var(--sn-surface-2);
    border-bottom: 1px solid var(--sn-border);
    padding: 14px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sn-text-muted);
    font-weight: 600;
}

.sn-cart-table .table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--sn-border);
    vertical-align: middle;
}

.sn-cart-summary {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-lg);
    padding: 28px;
}

.sn-cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--sn-border);
    font-size: 0.95rem;
}

.sn-cart-summary-row.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--sn-primary);
    padding-top: 16px;
}

.sn-qty-control {
    display: inline-flex;
    align-items: center;
    background: var(--sn-surface-2);
    border-radius: 8px;
    overflow: hidden;
}

.sn-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--sn-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sn-transition);
}

.sn-qty-btn:hover {
    background: rgba(var(--sn-primary-rgb), 0.2);
    color: var(--sn-primary);
}

.sn-qty-value {
    width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--sn-text);
}

/* === Forms === */
.sn-form-control {
    background: var(--sn-surface-2) !important;
    border: 1px solid var(--sn-border) !important;
    color: var(--sn-text) !important;
    border-radius: var(--sn-radius) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    transition: var(--sn-transition) !important;
}

.sn-form-control:focus {
    border-color: var(--sn-primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--sn-primary-rgb), 0.15) !important;
    background: var(--sn-surface) !important;
}

.sn-form-control::placeholder {
    color: var(--sn-text-muted) !important;
}

.sn-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sn-text);
    margin-bottom: 6px;
}

.sn-form-select {
    background: var(--sn-surface-2) !important;
    border: 1px solid var(--sn-border) !important;
    color: var(--sn-text) !important;
    border-radius: var(--sn-radius) !important;
    padding: 12px 16px !important;
}

/* === Login / Auth === */
.sn-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sn-darker);
    position: relative;
}

.sn-auth-card {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-xl);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sn-auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.sn-auth-subtitle {
    text-align: center;
    color: var(--sn-text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.sn-auth-tabs {
    display: flex;
    background: var(--sn-surface-2);
    border-radius: var(--sn-radius);
    padding: 4px;
    margin-bottom: 28px;
}

.sn-auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--sn-transition);
    color: var(--sn-text-muted);
    border: none;
    background: transparent;
}

.sn-auth-tab.active {
    background: var(--sn-primary);
    color: #000;
}

/* === Dashboard === */
.sn-dashboard {
    min-height: 100vh;
    background: var(--sn-dark);
}

.sn-sidebar {
    width: 260px;
    background: var(--sn-surface);
    border-right: 1px solid var(--sn-border);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1030;
    transition: var(--sn-transition);
}

.sn-sidebar-nav {
    padding: 16px 12px;
}

.sn-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--sn-text-muted);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--sn-transition);
    margin-bottom: 2px;
}

.sn-sidebar-link:hover,
.sn-sidebar-link.active {
    background: rgba(var(--sn-primary-rgb), 0.1);
    color: var(--sn-primary);
}

.sn-sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 24px;
    background: var(--sn-primary);
    border-radius: 0 4px 4px 0;
}

.sn-main-content {
    margin-left: 260px;
    padding: 24px;
    min-height: 100vh;
}

/* === KPI Cards === */
.sn-kpi {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-lg);
    padding: 24px;
    transition: var(--sn-transition);
}

.sn-kpi:hover {
    border-color: rgba(var(--sn-primary-rgb), 0.2);
    transform: translateY(-3px);
}

.sn-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--sn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.sn-kpi-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.sn-kpi-label {
    font-size: 0.8rem;
    color: var(--sn-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Status Badges === */
.sn-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sn-status-pendiente {
    background: rgba(255, 171, 0, 0.15);
    color: #ffab00;
}

.sn-status-confirmado {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.sn-status-en_curso {
    background: rgba(200, 200, 200, 0.15);
    color: #cccccc;
}

.sn-status-completado {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
}

.sn-status-cancelado {
    background: rgba(255, 45, 85, 0.15);
    color: #ff2d55;
}

/* === Modal === */
.sn-modal .modal-content {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius-xl);
}

.sn-modal .modal-header {
    border-bottom: 1px solid var(--sn-border);
    padding: 20px 28px;
}

.sn-modal .modal-body {
    padding: 28px;
}

.sn-modal .modal-footer {
    border-top: 1px solid var(--sn-border);
    padding: 16px 28px;
}

.sn-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* === Footer === */
.sn-cta-banner {
    background: linear-gradient(135deg, rgba(var(--sn-primary-rgb), 0.12), rgba(var(--sn-accent-rgb), 0.08));
    border-top: 1px solid rgba(var(--sn-primary-rgb), 0.15);
    border-bottom: 1px solid var(--sn-border);
    padding: 40px 0;
}

.sn-footer-main {
    background: var(--sn-surface);
    padding: 56px 0 40px;
}

.sn-footer-brand h4 {
    font-family: var(--sn-font-display);
    font-size: 1.3rem;
    color: #fff;
}

.sn-footer-brand h4 strong {
    color: var(--sn-primary);
}

.sn-footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sn-surface-2);
    color: var(--sn-text-muted);
    margin-right: 8px;
    transition: var(--sn-transition);
}

.sn-footer-social a:hover {
    background: var(--sn-primary);
    color: #000;
    transform: translateY(-3px);
}

.sn-footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.sn-footer-links {
    list-style: none;
    padding: 0;
}

.sn-footer-links li {
    margin-bottom: 10px;
}

.sn-footer-links a {
    color: var(--sn-text-muted);
    font-size: 0.9rem;
    transition: var(--sn-transition);
}

.sn-footer-links a:hover {
    color: var(--sn-primary);
    padding-left: 4px;
}

.sn-footer-contact {
    list-style: none;
    padding: 0;
}

.sn-footer-contact li {
    margin-bottom: 12px;
    color: var(--sn-text-muted);
    font-size: 0.9rem;
}

.sn-footer-contact i {
    color: var(--sn-primary);
    margin-right: 8px;
    width: 16px;
}

.sn-footer-bottom {
    background: var(--sn-darker);
    border-top: 1px solid var(--sn-border);
    padding: 18px 0;
    font-size: 0.8rem;
    color: var(--sn-text-muted);
}

/* === WhatsApp Float === */
.sn-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 1000;
    transition: var(--sn-transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}

.sn-whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === Back to Top === */
.sn-back-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    color: var(--sn-text);
    display: none;
    /* shown via JS */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--sn-transition);
}

.sn-back-top.show {
    display: flex;
}

.sn-back-top:hover {
    background: var(--sn-primary);
    color: #000;
    border-color: var(--sn-primary);
    transform: translateY(-3px);
}

/* === Toast === */
.sn-toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.sn-toast {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border);
    border-radius: var(--sn-radius);
    padding: 14px 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--sn-shadow);
    animation: slideInRight 0.3s ease;
    min-width: 280px;
}

.sn-toast.success {
    border-left: 3px solid var(--sn-success);
}

.sn-toast.error {
    border-left: 3px solid var(--sn-secondary);
}

.sn-toast.info {
    border-left: 3px solid var(--sn-primary);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === Page Headers === */
.sn-page-header {
    background: var(--sn-surface);
    padding: 60px 0;
    border-bottom: 1px solid var(--sn-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sn-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--sn-primary-rgb), 0.06) 0%, transparent 70%);
}

.sn-page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    position: relative;
}

.sn-page-header .sn-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--sn-text-muted);
    position: relative;
    margin-top: 10px;
}

.sn-page-header .sn-breadcrumb a {
    color: var(--sn-primary);
}

/* === Utilities === */
.sn-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sn-border-light), transparent);
    margin: 40px 0;
}

.sn-glow-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sn-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--sn-surface-3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sn-primary);
}

/* === Responsive === */
@media (max-width: 991.98px) {
    .sn-sidebar {
        transform: translateX(-100%);
    }

    .sn-sidebar.open {
        transform: translateX(0);
    }

    .sn-main-content {
        margin-left: 0;
    }

    .sn-hero-title {
        font-size: 2.4rem;
    }

    .sn-hero-stats {
        gap: 24px;
    }

    .sn-hero-stat h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .sn-section {
        padding: 48px 0;
    }

    .sn-section-title {
        font-size: 1.6rem;
    }

    .sn-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .sn-hero-float-card {
        display: none;
    }

    .sn-cart-summary {
        margin-top: 24px;
    }
}

/* === Premium Visual Enhancements === */

/* Animated gradient line */
.sn-gradient-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sn-primary), var(--sn-accent), var(--sn-secondary), transparent);
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Pulse glow effect */
.sn-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(var(--sn-primary-rgb), 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(var(--sn-primary-rgb), 0.4), 0 0 40px rgba(var(--sn-primary-rgb), 0.1);
    }
}

/* Status badges */
.sn-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: capitalize;
}

.sn-status-pendiente {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.sn-status-confirmado {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sn-status-entregado {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.sn-status-en_curso {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.sn-status-completado {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.sn-status-cancelado {
    background: rgba(255, 59, 92, 0.15);
    color: #ff3b5c;
}

/* Dashboard sidebar */
.sn-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--sn-radius);
    color: var(--sn-text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--sn-transition);
}

.sn-sidebar-link:hover,
.sn-sidebar-link.active {
    background: rgba(var(--sn-primary-rgb), 0.1);
    color: var(--sn-primary);
}

.sn-sidebar-link.active {
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--sn-primary);
}

.sn-sidebar-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Card stagger animation */
.sn-stagger>* {
    animation: fadeInUp 0.5s ease both;
}

.sn-stagger>*:nth-child(1) {
    animation-delay: 0s;
}

.sn-stagger>*:nth-child(2) {
    animation-delay: 0.1s;
}

.sn-stagger>*:nth-child(3) {
    animation-delay: 0.2s;
}

.sn-stagger>*:nth-child(4) {
    animation-delay: 0.3s;
}

.sn-stagger>*:nth-child(5) {
    animation-delay: 0.4s;
}

.sn-stagger>*:nth-child(6) {
    animation-delay: 0.5s;
}

/* Image shimmer loading */
.sn-shimmer {
    background: linear-gradient(90deg, var(--sn-surface-2) 25%, var(--sn-surface-3) 50%, var(--sn-surface-2) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Toast notification */
.sn-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 280px;
    background: var(--sn-surface);
    border: 1px solid var(--sn-border-light);
    border-radius: var(--sn-radius);
    padding: 14px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
}

.sn-toast.show {
    transform: translateX(0);
}

.sn-toast.sn-toast-success {
    border-left: 3px solid #22c55e;
}

.sn-toast.sn-toast-error {
    border-left: 3px solid #ff3b5c;
}

/* Smooth card hover lift */
.sn-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sn-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Badge counter pulse */
.sn-cart-badge:not(:empty) {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Smooth page transitions */
.sn-page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--sn-darker) 0%, rgba(0, 40, 80, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.sn-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(var(--sn-primary-rgb), 0.08) 0%, transparent 60%);
}

.sn-page-header h1 {
    font-family: var(--sn-font-display);
    font-size: 2rem;
    font-weight: 800;
    position: relative;
}

/* Table styles for admin */
.table {
    color: var(--sn-text);
}

.table th {
    background: var(--sn-surface-2);
    border-bottom: 1px solid var(--sn-border) !important;
    padding: 12px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sn-text-muted);
    font-weight: 600;
}

.table td {
    border-bottom: 1px solid var(--sn-border);
    padding: 12px 16px;
    vertical-align: middle;
}

.table tbody tr:hover {
    background: rgba(var(--sn-primary-rgb), 0.03);
}

/* Form enhancements */
.sn-form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.sn-form-control,
.sn-form-select {
    background: var(--sn-surface-2) !important;
    border: 1px solid var(--sn-border) !important;
    color: var(--sn-text) !important;
    border-radius: var(--sn-radius);
    padding: 10px 14px;
    transition: var(--sn-transition);
    font-size: 0.9rem;
}

.sn-form-control:focus,
.sn-form-select:focus {
    border-color: var(--sn-primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--sn-primary-rgb), 0.15) !important;
}

/* Modal dark theme */
.sn-modal .modal-content {
    background: var(--sn-surface);
    border: 1px solid var(--sn-border-light);
    border-radius: var(--sn-radius-lg);
}

.sn-modal .modal-header {
    border-bottom: 1px solid var(--sn-border);
    padding: 16px 24px;
}

.sn-modal .modal-body {
    padding: 24px;
}

.sn-modal .modal-footer {
    border-top: 1px solid var(--sn-border);
    padding: 16px 24px;
}

.sn-modal .btn-close {
    filter: invert(1) brightness(0.5);
}

/* ══════════════════════════════════════════════════════════════
   SONIDO NORTE v2 — B&W PREMIUM DESIGN SYSTEM
   Navigation, Footer, and Shared Components
   ══════════════════════════════════════════════════════════════ */

/* ═══ CSS Variables (B&W) ═══ */
:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --black: #000000;
    --white: #ffffff;
    --g50: #fafafa;
    --g100: #f5f5f5;
    --g200: #e5e5e5;
    --g300: #d4d4d4;
    --g400: #a3a3a3;
    --g500: #737373;
    --g600: #525252;
    --g700: #404040;
    --g800: #262626;
    --g900: #171717;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ TOPBAR ═══ */
.w-topbar {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    padding: 9px 0;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.w-topbar a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.w-topbar a:hover {
    color: var(--white);
}

/* ═══ NAVBAR ═══ */
.w-navbar {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.4s var(--ease);
}

.w-navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.w-navbar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 64px;
}

/* Nav Links */
.w-nav-link {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 18px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s var(--ease);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.w-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.w-nav-link:hover,
.w-nav-link.active {
    color: var(--white) !important;
}

.w-nav-link:hover::after,
.w-nav-link.active::after {
    transform: scaleX(1);
}

/* Nav Actions */
.w-nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.w-nav-actions a,
.w-nav-actions button {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    padding: 8px 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s var(--ease);
    text-decoration: none;
}

.w-nav-actions a:hover,
.w-nav-actions button:hover {
    color: var(--white) !important;
}

/* Cart Badge */
.w-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--white);
    color: var(--black);
    font-size: 0.55rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.w-cart-badge:empty {
    display: none;
}

/* ═══ DROPDOWN MENU ═══ */
.w-nav-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}

.w-nav-dropdown>.w-nav-link {
    gap: 4px;
}

.w-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--g200);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s var(--ease);
    z-index: 1060;
}

.w-nav-dropdown:hover>.w-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.w-dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    color: var(--g700);
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.w-dropdown-item:hover {
    background: var(--g50);
    color: var(--black);
}

.w-dropdown-item i {
    font-size: 1.2rem;
    color: var(--g400);
    width: 24px;
    text-align: center;
}

.w-dropdown-item:hover i {
    color: var(--black);
}

.w-dropdown-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.w-dropdown-item span {
    display: block;
    font-size: 0.72rem;
    color: var(--g400);
    margin-top: 2px;
}

/* ═══ MEGA MENU (Alquiler) ═══ */
.w-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    min-width: 640px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1060;
}

.w-nav-dropdown:hover>.w-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.w-mega-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.w-mega-col {
    padding: 28px 32px;
}

.w-mega-col+.w-mega-col {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.w-mega-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.w-mega-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35) !important;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.w-mega-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin: 2px -14px;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.w-mega-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07);
}

.w-mega-count {
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.w-mega-menu .w-btn {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    padding: 10px 22px;
    border-radius: 6px;
    margin-top: 8px;
    display: inline-flex;
}

.w-mega-menu .w-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}


/* ═══ MOBILE OFFCANVAS ═══ */
.w-offcanvas {
    background: var(--g900) !important;
    color: var(--white);
    border-left: 1px solid var(--g800) !important;
    max-width: 320px;
}

.w-mobile-nav {
    padding: 0;
}

.w-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.w-mobile-link:hover,
.w-mobile-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.w-mobile-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.w-mobile-link-sub {
    padding-left: 56px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.w-mobile-link-sub:hover {
    color: rgba(255, 255, 255, 0.8);
}

.w-mobile-group {
    /* grouping container */
}

.w-mobile-label {
    display: block;
    padding: 20px 24px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--g500);
}

/* ═══ BUTTONS (B&W) ═══ */
.w-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-decoration: none;
}

.w-btn-white {
    background: var(--white) !important;
    color: var(--black) !important;
}

.w-btn-white:hover {
    background: var(--g200) !important;
    color: var(--black) !important;
    transform: translateY(-2px);
}

.w-btn-black {
    background: var(--black) !important;
    color: var(--white) !important;
}

.w-btn-black:hover {
    background: var(--g800) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.w-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.w-btn-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.w-btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

.w-btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* ═══ CTA SECTION ═══ */
.w-cta {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.w-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.w-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    position: relative;
}

.w-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
}

/* ═══ FOOTER (B&W) ═══ */
.w-footer {
    background: var(--g50);
    border-top: 1px solid var(--g200);
    padding: 72px 0 0;
}

.w-footer h5 {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--black);
}

.w-footer-link {
    display: block;
    color: var(--g500);
    font-size: 0.88rem;
    padding: 5px 0;
    transition: color 0.3s var(--ease);
    text-decoration: none;
}

.w-footer-link:hover {
    color: var(--black);
}

.w-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--g200);
    color: var(--g500);
    margin-right: 8px;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.w-footer-social a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.w-footer-bottom {
    border-top: 1px solid var(--g200);
    margin-top: 48px;
    padding: 24px 0;
    font-size: 0.78rem;
    color: var(--g400);
}

/* ═══ WHATSAPP FLOAT (B&W compatible) ═══ */
.w-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 1000;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.w-whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ═══ BACK TO TOP ═══ */
.w-back-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--g200);
    color: var(--black);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s var(--ease);
}

.w-back-top.show {
    display: flex;
}

.w-back-top:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-3px);
}

/* ═══ SECTIONS (B&W) ═══ */
.w-section {
    padding: 120px 0;
}

.w-section-sm {
    padding: 80px 0;
}

.w-section-gray {
    background: var(--g50);
}

.w-section-dark {
    background: var(--g900);
    color: var(--white);
}

.w-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--g400);
    margin-bottom: 12px;
}

.w-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.w-subtitle {
    font-size: 1rem;
    color: var(--g500);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 300;
}

.w-divider {
    width: 48px;
    height: 2px;
    background: var(--black);
    margin: 20px 0;
}

.w-divider-center {
    margin: 20px auto;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════ HERO ═══════════ */
.w-hero {
    position: relative;
    min-height: 92vh;
    background: var(--g900);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.w-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-torre-loizaga.png') center 60% / cover no-repeat;
    filter: grayscale(40%) brightness(0.45) contrast(1.1);
    z-index: 0;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.w-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.w-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-bottom: 80px;
    width: 100%;
}

.w-hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.w-hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.w-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.w-hero-title span {
    display: block;
    font-weight: 200;
    font-size: 0.45em;
    letter-spacing: 0.02em;
    opacity: 0.7;
    margin-top: 8px;
}

.w-hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
}

.w-hero-stats {
    display: flex;
    gap: 56px;
}

.w-hero-stat h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.w-hero-stat p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 4px 0 0;
}

/* ═══════════ CATEGORY GRID — RCF STYLE ═══════════ */
.w-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border-top: 1px solid var(--g200);
    border-left: 1px solid var(--g200);
}

.w-cat-item {
    padding: 48px 28px;
    text-align: center;
    border-right: 1px solid var(--g200);
    border-bottom: 1px solid var(--g200);
    transition: all 0.4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    color: var(--black);
    text-decoration: none;
}

.w-cat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    z-index: 0;
}

.w-cat-item:hover::before {
    transform: translateY(0);
}

.w-cat-item>* {
    position: relative;
    z-index: 1;
}

.w-cat-item:hover {
    color: var(--white);
}

.w-cat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.4s var(--ease);
}

.w-cat-item:hover .w-cat-icon {
    transform: scale(1.15);
}

.w-cat-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.w-cat-count {
    font-size: 0.72rem;
    color: var(--g400);
    transition: color 0.4s var(--ease);
}

.w-cat-item:hover .w-cat-count {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════ SERVICE CARDS ═══════════ */
.w-svc {
    padding: 44px 32px;
    border: 1px solid var(--g200);
    background: var(--white);
    height: 100%;
    transition: all 0.4s var(--ease);
    position: relative;
}

.w-svc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--black);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
    transform-origin: left;
}

.w-svc:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

.w-svc:hover::after {
    transform: scaleX(1);
}

.w-svc-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--g100);
    line-height: 1;
    margin-bottom: 20px;
}

.w-svc h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.w-svc p {
    color: var(--g500);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.w-svc-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.w-svc-price small {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--g400);
}

/* ═══════════ PRODUCT CARDS ═══════════ */
.w-prod {
    background: var(--white);
    border: 1px solid var(--g200);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.w-prod:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.w-prod-img {
    position: relative;
    height: 240px;
    background: var(--g100);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.w-prod:hover .w-prod-img img {
    transform: scale(1.06);
}

.w-prod-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.w-prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.w-prod:hover .w-prod-overlay {
    opacity: 1;
}

.w-prod-action {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s var(--ease);
}

.w-prod-action:hover {
    background: var(--black);
    color: var(--white);
}

.w-prod-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.w-prod-cat {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--g400);
    margin-bottom: 6px;
}

.w-prod-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.w-prod-desc {
    font-size: 0.82rem;
    color: var(--g500);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.w-prod-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--g100);
}

.w-prod-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
}

.w-prod-price small {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--g400);
}

.w-prod-cart {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.w-prod-cart:hover {
    background: var(--g700);
}

/* ═══════════ FEATURES ═══════════ */
.w-feat {
    text-align: center;
    padding: 40px 20px;
}

.w-feat-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1.5px solid var(--g200);
    font-size: 1.5rem;
    color: var(--black);
    transition: all 0.4s var(--ease);
}

.w-feat:hover .w-feat-icon {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.w-feat h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.w-feat p {
    font-size: 0.88rem;
    color: var(--g500);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════ HORIZONTAL RULE ═══════════ */
.w-rule {
    border: none;
    height: 1px;
    background: var(--g200);
    margin: 0;
}

/* ═══════════ BRANDS MARQUEE ═══════════ */
.w-brands {
    overflow: hidden;
    padding: 48px 0;
}

.w-brands-track {
    display: flex;
    gap: 72px;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.w-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--g200);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}

.w-brand:hover {
    color: var(--black);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════ INSTALL SPLIT ═══════════ */
.w-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.w-split-img {
    background: var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.w-split-content {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.w-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.w-check-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--g100);
}

.w-check-list li:last-child {
    border: none;
}

.w-check-list li i {
    font-size: 0.85rem;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.w-testi {
    padding: 40px;
    border: 1px solid var(--g200);
    background: var(--white);
    height: 100%;
    transition: all 0.4s var(--ease);
    position: relative;
}

.w-testi::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--g100);
    line-height: 1;
}

.w-testi:hover {
    border-color: var(--black);
}

.w-testi-stars {
    color: var(--black);
    font-size: 0.75rem;
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.w-testi-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--g600);
    margin-bottom: 28px;
}

.w-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.w-testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.w-testi-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.w-testi-source {
    font-size: 0.72rem;
    color: var(--g400);
    margin-top: 2px;
}

/* ═══════════ ZONE CARDS ═══════════ */
.w-zone {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s var(--ease);
}

.w-zone:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.w-zone-icon {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
    opacity: 0.4;
}

.w-zone-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.w-zone-cities {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════ BODY RESET FOR B&W ═══════════ */
body[data-page] {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body[data-page] ::selection {
    background: var(--black);
    color: var(--white);
}

body[data-page] a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991px) {
    .w-mega-menu {
        display: none !important;
    }

    .w-dropdown-menu {
        display: none !important;
    }

    .w-split {
        grid-template-columns: 1fr;
    }

    .w-split-content {
        padding: 48px 24px;
    }

    .w-split-img {
        min-height: 320px;
    }

    .w-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .w-hero {
        min-height: 75vh;
    }

    .w-hero-title {
        font-size: 2.6rem;
    }

    .w-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .w-hero-stat h3 {
        font-size: 1.8rem;
    }

    .w-hero-bottom {
        flex-direction: column;
        gap: 32px;
    }

    .w-section {
        padding: 72px 0;
    }

    .w-cta {
        padding: 64px 0;
    }

    .w-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .w-cat-item {
        padding: 28px 16px;
    }

    .d-mobile-none {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .w-cat-grid {
        grid-template-columns: 1fr 1fr;
    }
}