/* =============================================
VARIABLES & RESET
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Protección Anti-Copia e Imágenes */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

:root {
    --white: #ffffff;
    --red: #FF3D00;
    --red-dark: #DD2C00;
    --orange: #FF6D00;
    --orange-light: #FF9E80;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --accent: #FF3D00;
    --accent-light: #FF6D00;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #e8e8e8;
}

/* Soporte de caracteres mejorado para móviles */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Evitar que los acentos se "rompan" en móviles */
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6,
.title, .section__title, .products-preview__title,
.hero__title, .about__tagline, .service__title,
.footer__links h4, .footer__bottom p {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Optimización de Rendimiento por GPU en Celulares y PC */
.header,
.hero::before,
.nav__menu,
.wa-widget,
.whatsapp-float,
.instagram-float,
.scroll-top,
.lightbox-modal {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header.header--hidden {
    transform: translateY(-100%);
}

.header.header--scrolled {
    background: rgba(17, 24, 39, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Pestaña Flotante superior para desplegar la barra de información */
.header__tab-trigger {
    position: absolute;
    bottom: -46px;
    right: 32px;
    background: rgba(13, 19, 31, 0.96);
    border: 1px solid rgba(255, 109, 0, 0.6);
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 11px 32px;
    min-width: 330px;
    justify-content: center;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 109, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    z-index: 1001;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header.header--hidden .header__tab-trigger {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.header__tab-trigger:hover {
    background: #FF6D00;
    border-color: #FF6D00;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(255, 109, 0, 0.65);
    transform: translateY(2px);
}

.header__tab-trigger .tab-brand {
    font-weight: 600;
    color: #e2e8f0;
}

.header__tab-trigger .tab-brand strong {
    color: #ffffff;
    font-weight: 800;
}

.header__tab-trigger .tab-sep {
    color: rgba(255, 109, 0, 0.75);
    font-weight: 300;
    font-size: 1.1rem;
}

.header__tab-trigger .tab-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF6D00;
    background: rgba(255, 109, 0, 0.18);
    padding: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 109, 0, 0.4);
    transition: all 0.3s ease;
    line-height: 1;
}

.header__tab-trigger:hover .tab-menu-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.header__tab-trigger .tab-arrow {
    color: #FF6D00;
    transition: transform 0.3s ease, color 0.3s ease;
}

.header__tab-trigger:hover .tab-arrow {
    color: #ffffff;
    transform: translateY(2px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.nav .logo__icon,
.header .logo__icon,
.nav__logo .logo__icon,
.nav__logo-img {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.logo__text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.logo__text span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Botón de 3 Líneas (Hamburger Toggle) - Diseño Premium Glassmorphism */
.nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 16px;
    cursor: pointer;
    color: #ffffff;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 18px rgba(255, 109, 0, 0.15);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.nav__toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.nav__toggle:hover,
.nav__toggle.active {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.55), 0 0 25px rgba(255, 109, 0, 0.4);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}

.nav__toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 22px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
}

.nav__toggle-icon span,
.nav__toggle span {
    display: block;
    height: 2.2px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav__toggle-icon span:nth-child(1) {
    width: 20px;
    align-self: flex-start;
}

.nav__toggle-icon span:nth-child(2) {
    width: 22px;
}

.nav__toggle-icon span:nth-child(3) {
    width: 16px;
    align-self: flex-end;
}

.nav__toggle:hover .nav__toggle-icon span,
.nav__toggle.active .nav__toggle-icon span {
    width: 22px;
}

/* Animación de 3 líneas a 'X' al abrir */
.nav__toggle.active .nav__toggle-icon span:nth-child(1),
.nav__toggle.active span:nth-child(1) {
    width: 22px;
    transform: translateY(7.2px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-icon span:nth-child(2),
.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-12px);
}

.nav__toggle.active .nav__toggle-icon span:nth-child(3),
.nav__toggle.active span:nth-child(3) {
    width: 22px;
    transform: translateY(-7.2px) rotate(-45deg);
}

.nav__toggle-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0.5px);
}

/* Pestaña / Panel Desplegable de Menú */
.nav__menu {
    position: fixed;
    top: 85px;
    right: 24px;
    width: 330px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    background: #0d131f;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 4px solid #FF6D00;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(255, 109, 0, 0.15);
    transform: translateY(-15px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
    list-style: none;
}

.nav__menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.nav__menu li {
    width: 100%;
    list-style: none;
}

.nav__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    text-shadow: none;
    width: 100%;
}

.nav__menu a:hover,
.nav__menu a.active {
    color: #FF6D00;
    background: rgba(255, 109, 0, 0.14);
    border-color: rgba(255, 109, 0, 0.4);
    transform: translateX(4px);
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 5% 80px;
    color: var(--white);
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.82) 0%, rgba(17, 24, 39, 0.55) 50%, rgba(17, 24, 39, 0.88) 100%), url('assets/hero-bg.png') center/cover no-repeat;
    transform: scale(1.18);
    transform-origin: center center;
    z-index: 1;
}

.hero__content {
    max-width: 850px;
    margin: 0 auto;
    z-index: 2;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.text-red {
    color: #FF3D00;
}

.text-orange {
    color: #FF6D00;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0 auto 2.5rem;
    max-width: 650px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.brands-marquee {
    margin-top: -20px;
    padding: 1.5rem 0;
    width: 100%;
    background: #e8e8e8;
    position: relative;
    z-index: 1;
}

.brands-marquee__track {
    overflow: hidden;
    width: 100%;
}

.brands-marquee__content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.brands-marquee:hover .brands-marquee__content {
    animation-play-state: paused;
}

.brands-marquee__content a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brands-marquee__content a:hover {
    transform: scale(1.1);
}

.brands-marquee__content img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brands-marquee__content a:hover img,
.brands-marquee__content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--red);
    color: var(--white);
}

.btn--nav-style {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.btn--nav-style::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: width 0.3s ease, left 0.3s ease;
}

.btn--nav-style:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.btn--nav-style:hover::after {
    width: 100%;
    left: 0;
}

.btn--outline {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn--primary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--green {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--green:hover {
    background: linear-gradient(135deg, #20bd5a 0%, #0e7065 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    transform: translateY(-2px);
    color: var(--white);
}

.btn--full {
    width: 100%;
    text-align: center;
}

.placeholder {
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 2px dashed var(--gray-300);
}

.placeholder svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.placeholder span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.placeholder--about {
    width: 100%;
    max-width: 400px;
}

.placeholder--gallery {
    width: 100%;
    aspect-ratio: 4/3;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1rem;
}

.section__subtitle {
    text-align: center;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services {
    padding: 35px 5% 40px;
}

.services .section__subtitle {
    margin-bottom: 1.75rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

.service__card {
    background: var(--white);
    padding: 1.1rem 1.3rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service__card:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 61, 0, 0.15);
    border-color: rgba(255, 61, 0, 0.5);
}

.service__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.12), rgba(255, 109, 0, 0.18));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, color 0.4s ease;
}

.service__card:hover .service__icon {
    transform: scale(1.12) rotate(3deg);
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 61, 0, 0.3);
}

.service__icon svg {
    width: 24px;
    height: 24px;
}

.service__info {
    display: flex;
    flex-direction: column;
}

.service__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.15rem;
}

.service__description {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.35;
}

/* Banner Adelanto de Catálogo en Página Principal */
.products-preview {
    padding: 20px 5% 45px;
}

.products-preview__card {
    background: linear-gradient(135deg, #0d131f 0%, #172033 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.products-preview__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.products-preview__badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    color: #FF9E80;
    background: rgba(255, 109, 0, 0.15);
    border: 1px solid rgba(255, 109, 0, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.products-preview__title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--white);
}

.products-preview__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.products-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.products-preview__item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease;
}

.products-preview__item:hover {
    transform: translateY(-4px) scale(1.04);
}

.products-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-preview__item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 968px) {
    .products-preview__card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.75rem;
        text-align: center;
    }

    .products-preview__title {
        font-size: 1.6rem;
    }

    .products-preview__desc {
        display: none !important;
    }
}

/* 7 Ventanas Flotantes de Productos con Fotos Reales */
.product__card {
    background: var(--white);
    padding: 1.25rem 1.25rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product__card:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 16px 40px rgba(255, 61, 0, 0.16);
    border-color: rgba(255, 61, 0, 0.5);
}

.product__card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-900);
}

.product__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.product__card:hover .product__card-img {
    transform: scale(1.08);
}

.product__card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product__card-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.15rem;
}

.product__card-desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.45;
}

.product__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-100);
}

.product__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.product__card:hover .product__card-btn {
    background: linear-gradient(135deg, #20bd5a 0%, #0e7065 100%);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

.about {
    padding: 45px 5%;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text .section__title {
    text-align: left;
}

.about__text p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about__tagline {
    font-size: 1.05rem;
    color: var(--gray-900);
    border-left: 4px solid var(--red);
    padding-left: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem !important;
}

.about__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about__img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.25);
    transform-origin: center 20%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.about__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.about__stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
}

.stat__label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.gallery {
    padding: 45px 5% 50px;
}

/* Carrusel Infinito de Logos de Nuestros Clientes (De borde a borde completo de la pantalla) */
.clients-marquee {
    margin: 2.5rem 0 1rem;
    padding: 1.4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #ffffff;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.clients-marquee__track {
    overflow: hidden;
    width: 100%;
}

.clients-marquee__content {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: clientsMarquee 34s linear infinite;
    width: max-content;
}

.client-logo-card {
    background: #f9fafb;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    height: 88px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo-card:hover {
    transform: translateY(-4px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 61, 0, 0.16);
    border-color: rgba(255, 61, 0, 0.4);
}

.client-logo-card img {
    max-height: 58px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

@keyframes clientsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--gray-900);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.08);
    opacity: 0.85;
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: var(--transition);
    pointer-events: none;
}

.gallery__caption span {
    font-weight: 600;
    font-size: 1.05rem;
}

.gallery__caption small {
    font-size: 0.85rem;
    color: #ff8a80;
    font-weight: 500;
}

/* Lightbox Modal con Zoom Centrado */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    cursor: zoom-out;
}

.lightbox-modal__container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 95vw;
    max-height: 92vh;
    transform: scale(0.2);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.lightbox-modal.active .lightbox-modal__container {
    transform: scale(1);
    opacity: 1;
}

.lightbox-modal__img {
    max-width: 95vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    cursor: zoom-out;
}

.lightbox-modal__caption {
    margin-top: 1rem;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-modal__close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.lightbox-modal__close:hover {
    transform: scale(1.1);
    background: #ffffff;
    color: var(--red);
}

/* FAQ Section */
.faq {
    padding: 45px 5% 30px;
}

.faq__container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.faq__item.active {
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(255, 61, 0, 0.08);
}

.faq__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--red);
}

.faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
    color: var(--red);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
    max-height: 250px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq__answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.contact {
    padding: 45px 5% 40px;
    background: var(--white);
}

.contact .section__title {
    color: var(--gray-800);
}

.contact .section__subtitle {
    color: var(--gray-500);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__group label {
    font-weight: 500;
    color: var(--gray-700);
}

.form__group input,
.form__group textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    cursor: default;
    transition: var(--transition);
    border: 1px solid transparent;
}

.info__card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.info__card--link:hover {
    border-color: var(--gray-300);
}

.info__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.info__card:hover .info__icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.info__icon {
    width: 48px;
    height: 48px;
    background: var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gray-600);
    transition: var(--transition);
}

.info__icon svg {
    width: 24px;
    height: 24px;
}

.info__card h4 {
    color: var(--gray-800);
    margin-bottom: 0.3rem;
}

.info__card p {
    color: var(--gray-500);
}

.cookie-banner,
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    padding: 1.2rem 5%;
    z-index: 1005;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show,
.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn--outline {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.cookie-buttons .btn--outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn--outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    border-color: var(--red);
}

.contact__map {
    display: block;
    width: 100%;
    position: relative;
    line-height: 0;
    cursor: pointer;
    text-decoration: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
}

.contact__map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    pointer-events: none;
}

@media (max-width: 768px) {
    .contact__map iframe {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 50px 5% 25px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo svg,
.footer__logo img,
.footer__logo .logo__icon,
.footer__logo-img {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    object-fit: contain;
}

.footer__logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer__logo span span {
    color: var(--gray-500);
    font-weight: 400;
}

.footer__brand p {
    color: var(--gray-400);
}

.footer__links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.instagram-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 39, 67, 0.6);
}

.instagram-float svg {
    width: 36px;
    height: 36px;
}

.instagram-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    animation: instagram-pulse 2s infinite;
    z-index: -1;
}

@keyframes instagram-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

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

.whatsapp-float svg {
    width: 36px;
    height: 36px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

/* WhatsApp Interactive Widget */
.wa-widget {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 340px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
    z-index: 1002;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-widget.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.wa-widget__header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: #ffffff;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
}

.wa-widget__avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wa-widget__avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-widget__online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25d366;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.wa-widget__info {
    flex: 1;
}

.wa-widget__title {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-widget__badge {
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
}

.wa-widget__status {
    font-size: 0.78rem;
    opacity: 0.9;
}

.wa-widget__close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.wa-widget__close:hover {
    opacity: 1;
}

.wa-widget__body {
    padding: 1.2rem;
    background: #efeae2;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 12px 12px;
}

.wa-widget__msg {
    background: #ffffff;
    padding: 0.85rem 1rem;
    border-radius: 0 14px 14px 14px;
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.45;
}

.wa-widget__options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wa-widget__opt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.wa-widget__opt:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.wa-widget__opt-icon {
    font-size: 1.15rem;
}

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

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .about__content {
        grid-template-columns: 1fr;
    }

    .about__text .section__title {
        text-align: center;
    }

    .about__stats {
        justify-content: center;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        top: 78px;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
    }

    .hero {
        padding: 80px 5% 40px;
        gap: 2rem;
    }

    .hero__title {
        font-size: 1.6rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .section__title {
        font-size: 1.4rem;
    }

    .section__subtitle {
        font-size: 0.9rem;
    }

    .services {
        padding: 60px 5%;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service__card {
        padding: 1.5rem;
    }

    .service__title {
        font-size: 1.1rem;
    }

    .service__description {
        font-size: 0.85rem;
    }

    .about {
        padding: 35px 5%;
    }

    .about__text p {
        font-size: 0.9rem;
    }

    .about__stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .gallery {
        padding: 35px 5% 20px;
    }

    .contact {
        padding: 20px 5% 45px;
    }

    .footer {
        padding: 40px 5% 20px;
    }

    .footer__brand p {
        font-size: 0.85rem;
    }

    .brands-marquee__content img {
        height: 50px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .instagram-float {
        width: 52px;
        height: 52px;
        bottom: 82px;
        right: 20px;
    }

    .instagram-float svg {
        width: 28px;
        height: 28px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Modal de Modelos TST */
.tst-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.tst-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.tst-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tst-modal__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 4px solid #FF6D00;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tst-modal.active .tst-modal__container {
    transform: scale(1) translateY(0);
}

.tst-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tst-modal__title-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tst-modal__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.tst-modal__badge {
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tst-modal__close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tst-modal__close:hover {
    background: #FF3D00;
    transform: rotate(90deg);
}

.tst-modal__search-box {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tst-modal__search {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.tst-modal__search:focus {
    border-color: #FF6D00;
    box-shadow: 0 0 15px rgba(255, 109, 0, 0.2);
}

.tst-modal__search::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.tst-modal__body {
    padding: 1.75rem 2rem;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.tst-item-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.tst-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 109, 0, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.tst-item-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.5rem;
}

.tst-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
}

.tst-item-brand {
    font-size: 0.75rem;
    color: #FF9E80;
    font-weight: 600;
}

.tst-item-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #FF3D00, #FF6D00);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(255, 61, 0, 0.25);
}

.tst-item-btn:hover {
    box-shadow: 0 6px 18px rgba(255, 61, 0, 0.45);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .tst-modal__header {
        padding: 1rem 1.25rem;
    }
    .tst-modal__search-box {
        padding: 0.75rem 1.25rem;
    }
    .tst-modal__body {
        padding: 1.25rem 1rem;
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 0.85rem;
    }
    .tst-item-card {
        padding: 0.75rem;
    }
    .tst-modal__title {
        font-size: 1.1rem;
    }
}

/* Selector de Grupos por Marca (Ideal Celulares y Móvil) */
.brand-group-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem auto 0;
    max-width: 600px;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.brand-group-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.brand-group-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.brand-group-btn.active[data-brand="all"] {
    background: var(--orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 109, 0, 0.4);
}

.brand-group-btn.active[data-brand="tst"] {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.brand-group-btn.active[data-brand="maraldi"] {
    background: #0088cc;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 136, 204, 0.4);
}

.brand-group-btn.active[data-brand="ecoclima"] {
    background: #10b981;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .brand-group-nav {
        position: sticky;
        top: 65px;
        z-index: 90;
        background: #0f172a;
        border-radius: 50px;
        padding: 0.4rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }
    
    .brand-group-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        flex: 1;
        text-align: center;
    }
}

/* Sección Dedicada Catálogo TST (Fondo Claro Tradicional) */
.tst-section {
    padding: 65px 5% 85px;
    background: var(--gray-50);
    color: var(--gray-900);
    position: relative;
}

.tst-section .section__title {
    color: var(--gray-900);
}

.tst-section .section__subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.tst-search-container {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.tst-section-search {
    width: 100%;
    padding: 0.85rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    color: var(--gray-900);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tst-section-search:focus {
    border-color: var(--red);
    box-shadow: 0 0 18px rgba(255, 61, 0, 0.15);
    background: var(--white);
}

.tst-section-search::placeholder {
    color: var(--gray-400);
}

.tst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.85rem;
}

.tst-grid-card {
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.tst-grid-card:hover {
    transform: translateY(-6px) scale(1.025);
    border-color: var(--red);
    box-shadow: 0 18px 40px rgba(255, 61, 0, 0.15);
}

.tst-grid-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tst-grid-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tst-grid-card:hover .tst-grid-img {
    transform: scale(1.09);
}

.tst-grid-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.tst-grid-brand {
    display: none;
}

.tst-grid-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0.25rem 0 0;
    line-height: 1.3;
    text-align: center;
}

.tst-grid-actions {
    display: flex;
    flex-direction: column;
    margin-top: 0.35rem;
    width: 100%;
}

.btn-open-detail {
    display: none !important;
}

.tst-grid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.6rem;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.tst-grid-btn--secondary {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tst-grid-card:hover .tst-grid-btn--secondary,
.tst-grid-btn--secondary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

.tst-grid-btn--primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.tst-grid-card:hover .tst-grid-btn--primary,
.tst-grid-btn--primary:hover {
    background: linear-gradient(135deg, #20bd5a 0%, #0e7065 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.25rem;
    }
    .product__card {
        width: 100%;
        max-width: 440px;
        text-align: center;
        margin: 0 auto;
        padding: 1.15rem;
        align-items: center;
    }
    .product__card-content {
        align-items: center;
        text-align: center;
    }
    .product__card-footer {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .product__card-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    .tst-section {
        padding: 30px 4% 45px;
    }
    .tst-search-container {
        margin-bottom: 1.25rem;
    }
    .tst-section-search {
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
        border-radius: 12px;
    }
    .tst-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    .tst-grid-card {
        padding: 0.85rem 0.75rem;
        border-radius: 16px;
        gap: 0.5rem;
        text-align: center;
    }
    .tst-grid-img-wrapper {
        width: 100%;
        aspect-ratio: 1 / 1;
        min-height: auto;
        padding: 0.5rem;
        border-radius: 12px;
    }
    .tst-grid-info {
        gap: 0.15rem;
    }
    .tst-grid-brand {
        font-size: 0.65rem;
    }
    .tst-grid-name {
        font-size: 0.88rem;
        line-height: 1.25;
        min-height: 2.3em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .tst-grid-actions {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        margin-top: 0.25rem;
    }
    .tst-grid-btn {
        width: 100%;
        padding: 0.52rem 0.4rem;
        font-size: 0.76rem;
        border-radius: 8px;
        box-sizing: border-box;
    }
}

/* Zoom al pasar el cursor sobre las imágenes del producto en la grilla */
.tst-grid-img-wrapper,
.product__card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.tst-grid-img,
.product__card-img,
.gallery__img {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.tst-grid-card:hover .tst-grid-img,
.product__card:hover .product__card-img,
.gallery__item:hover .gallery__img,
.tst-grid-img-wrapper:hover .tst-grid-img,
.product__card-img-wrapper:hover .product__card-img,
.tst-grid-card:hover img,
.product__card:hover img {
    transform: scale(1.15);
}

/* Modal Ficha Técnica de Producto HD con Fondo Desenfocado (Spotlight Focus) */
.product-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-detail-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 20, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.product-detail-modal__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    max-height: 90dvh;
    margin: auto;
    background: #ffffff;
    border: 1px solid rgba(255, 109, 0, 0.35);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 109, 0, 0.2);
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
}

.product-detail-modal.active .product-detail-modal__container {
    transform: scale(1);
}

.product-detail-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    border: none;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 10;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.product-detail-modal__close:hover {
    background: #dc2626;
    transform: scale(1.1) rotate(90deg);
}

.product-detail-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
}

.product-detail-modal__img-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    max-height: 52vh;
    max-height: 52dvh;
    background: #ffffff;
    border: 1px solid var(--gray-200, #e2e8f0);
    border-radius: 18px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
}

.product-detail-modal__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, transform-origin;
}

.product-detail-modal__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    gap: 8px;
}

.product-detail-modal__brand {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ea580c;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-detail-modal__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 2px 0 6px;
}

.product-detail-modal__wa-btn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.product-detail-modal__wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
    .product-detail-modal {
        padding: 0.75rem;
    }
    .product-detail-modal__container {
        padding: 1.25rem 0.85rem;
        border-radius: 20px;
        max-height: 92dvh;
        width: 95%;
    }
    .product-detail-modal__img-box {
        max-height: 44dvh;
        padding: 0.5rem;
    }
    .product-detail-modal__title {
        font-size: 1.15rem;
    }
}

/* Filtros por Categoría / Línea Estilo Maraldi */
.tst-filter-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tst-pill {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tst-pill:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.tst-pill.active {
    background: var(--gray-900);
    color: #ffffff;
    border-color: var(--gray-900);
    box-shadow: 0 4px 15px rgba(13, 19, 31, 0.25);
}

/* Tarjetas de Beneficios y Garantía Estilo Maraldi */
.benefits-section {
    padding: 60px 5%;
    background: #ffffff;
    border-top: 1px solid var(--gray-200);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.benefit-card {
    background: #f8fafc;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: var(--red);
    box-shadow: 0 15px 35px rgba(255, 61, 0, 0.12);
}

.benefit-card__icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.benefit-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-card__desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .tst-filter-pills {
        gap: 0.45rem;
    }
    .tst-pill {
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
    }
    .benefits-section {
        padding: 40px 4%;
    }
    .benefit-card {
        padding: 1.5rem 1rem;
    }
}

/* =============================================
   ACCESIBILIDAD Y OPTIMIZACIÓN MULTIPLATAFORMA
   (Smart TV, Celulares, Tablets, PC 4K)
   ============================================= */

/* 1. Indicador de Enfoque de Alto Contraste para Smart TV y Teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #FF6D00 !important;
    outline-offset: 4px !important;
    border-radius: 8px !important;
    box-shadow: 0 0 15px rgba(255, 109, 0, 0.6) !important;
}

/* 2. Normativa de Tamaño Mínimo Táctil (iOS / Android 44x44px) */
button, 
.btn, 
.tst-pill, 
.nav__toggle, 
.header__tab-trigger, 
.nav__menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* 3. Ajuste para Pantallas Ultra Anchas y Smart TVs (1080p, 4K, 2160p) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    .hero__title {
        font-size: 3.4rem;
    }
    .section__title {
        font-size: 2.5rem;
    }
    .products-grid, .services__grid, .benefits-grid {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    .hero__title {
        font-size: 4rem;
    }
}

/* 4. Protección contra Hover Pegajoso en Pantallas Táctiles */
@media (hover: none) and (pointer: coarse) {
    .service__card:hover,
    .benefit-card:hover,
    .product-card:hover,
    .tst-pill:hover:not(.active) {
        transform: none;
        box-shadow: none;
    }
}

/* Modal de Zoom de Producto Centrado con Fondo Desenfocado (Spotlight Focus) */
.product-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-zoom-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-zoom-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 16, 0.88);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.product-zoom-modal__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    max-height: 90dvh;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 109, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-zoom-modal.active .product-zoom-modal__container {
    transform: scale(1);
}

.product-zoom-modal__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ef4444;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 10;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.product-zoom-modal__close:hover {
    background: #dc2626;
    transform: scale(1.1) rotate(90deg);
}

.product-zoom-modal__img-wrapper {
    position: relative;
    max-width: 750px;
    max-height: 65vh;
    max-height: 65dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
}

.product-zoom-modal__img {
    max-width: 100%;
    max-height: 65vh;
    max-height: 65dvh;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    cursor: zoom-in;
}

.product-zoom-modal__title {
    margin: 1rem 0 0.25rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}

@media (max-width: 768px) {
    .product-zoom-modal__container {
        max-width: 94vw;
        padding: 1rem 0.75rem;
        border-radius: 20px;
    }
    .product-zoom-modal__close {
        top: -12px;
        right: -12px;
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }
    .product-zoom-modal__img-wrapper {
        max-height: 55dvh;
    }
    .product-zoom-modal__img {
        max-height: 55dvh;
    }
    .product-zoom-modal__title {
        font-size: 1.05rem;
    }
}




