/* ========================================
   RESET & VARIABLES
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-fondo: #000; /*FONDO GLOBAL*/
    --bg-darker: #000; /*FONDO FOOTER*/
    --bg-card: #121212; /*FONDO TARJETAS*/
    --gradient-neon: #FEC11B; /*BOTONES  ICONOS*/
    --glow-pink: 0 0 30px rgba(253, 192, 27); /*BRILLO BOTON*/
    --text: #FFF; /*TEXTO NORMAL*/
    --text-muted: #CCC; /*TEXTO TENUE*/
    --text-light: #FFF; /*MENU*/
	--price: #FEC11B; /*PRECIOS*/
    --primary: rgba(255,255,255,0.6); /*ARROWS*/
	--barranavegacion: rgba(0,0,0,0.8); /*BARRA DE NAVEGACION*/
    --gradient-pink: #FEC11B; /*OFERTA*/
    --bg-hover: #FF0000;
    --secondary: #FF0000;
    --accent: #FF0000;
    --glow-cyan: #FF0000;

    --radius: 8px;
    --radius-sm: 1px;
    --transition: all 0.9s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    background: var(--bg-fondo);
    color: var(--text);
    line-height: 1.6;
	margin: 0; /*MARGEN CERO*/
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 600px) {
    .section-categories .container {
        padding-left: 0;
        padding-right: 0;
    }
}


/* ========================================
   HEADER & NAVIGATION
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.7s ease, backdrop-filter 0.7s ease, border-color 0.7s ease, box-shadow 0.7s ease;
}

/* Estado al hacer scroll */
.header.scrolled {
    background: var(--barranavegacion);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255,255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto; /* logo | menú | botón */
    align-items: center;
    padding: 15px 20px;
}
/* CENTRAR EL MENÚ */
.nav-menu {
    justify-self: center;
	font-family: 'Montserrat', 'Poppins', sans-serif;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

/* ESTADO NORMAL */
.nav-menu a {
    color: var(--text-light); /* rojo principal */
    font-weight: 500;
    font-size: 15px;
    position: relative;
    text-decoration: none;
}

/* VISITED */
.nav-menu a:visited {
    color: var(--text-light); /* rojo más oscuro */
}

/* LÍNEA INFERIOR */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width 0.5s ease;
}

/* HOVER */
.nav-menu a:hover {
    color: var(--text-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ACTIVE (CLICK) */
.nav-menu a:active {
    color: var(--text-light); /* rojo profundo */
}

/* FOCUS (accesibilidad) */
.nav-menu a:focus-visible {
    outline: none;
    color: var(--text-light);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-neon);
     color: var(--text);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-pink);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}














/* ========================================
   HERO SLIDER – VIDEO BACKGROUND (FINAL)
   Compatible con hero-content existente
======================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
	background: var(--bg-fondo);
}

/* SLIDE */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* SLIDE ACTIVO */
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* VIDEO DE FONDO */
.slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY (SOLO UNO, el real) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
}

/* CONTENIDO HERO (TU HTML REAL) */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    color: #fff;
}

/* TEXTO */
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.05;
    text-shadow: 0 0 40px rgba(0, 0, 0, 1);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 600px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* BOTÓN */
.hero-content .btn {
    align-self: flex-start;
}

/* NAVEGACIÓN SLIDER */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .hero-content p {
        font-size: 1rem;
    }
}
/* ========================================
   HERO – ALINEACIÓN DERECHA TEXTO
======================================== */

.hero-content {
    align-items: flex-end;   /* empuja el bloque a la derecha */
    text-align: right;       /* alinea texto a la derecha */
}

/* asegura que el párrafo respete alineación */
.hero-content p {
    text-align: right;
    margin-left: auto;       /* empuja el bloque */
}

/* opcional: botón alineado con el texto */
.hero-content .btn {
    align-self: flex-end;
}





















/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-glow {
    background: var(--text);
    color: #000;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.btn-outline {
    background: #ff00;
    border: 2px solid var(--text);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--text);
    color: #000;
    box-shadow: var(--text);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-product {
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
}

.btn-product:hover {
    background: var(--text);
    color: #000;
}
















/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 100px 0;
	background: var(--bg-fondo);
}

/* ========================================
   SECTION TITLE – LED PREMIUM ELEGANTE
======================================== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: normal;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;

    /* GRADIENTE SUAVE LED */
    background: linear-gradient(
        90deg,
        #fff,   /* ROSA */
        #fec31d,   /* NARANJA */
		
	    #fff,   /* AMARILLO LOGO */
        
		#fff,   /* VERDE */
	    #fff,   /* AZUL */
		#fff,   /* MORADO */
		   
        #fff   
    );

    background-size: 250% 100%;

    /* TEXTO EN GRADIENTE */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* BRILLO DEL TEXTO (CONTROLADO) */
    text-shadow:
        0 0 0px rgba(255,255,255,0.6),
        0 0 8px rgba(255,194,25,0.35),
        0 0 16px rgba(255,123,0,0.25),
        0 0 28px rgba(255,53,139,0.15);

    /* HALO AMBIENTAL SUAVE */
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.01))
        drop-shadow(0 0 14px rgba(255,194,25,0.05))
        drop-shadow(0 0 26px rgba(255,79,110,0.10));

    /* ANIMACIONES FINAS */
    animation:
        aboutGradientMove 10s ease infinite,
        ledPulseSoft 4.2s ease-in-out infinite;

    will-change: filter;
}

/* ========================================
   GRADIENTE EN MOVIMIENTO
======================================== */
@keyframes aboutGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ========================================
   PULSO LED MUY SUAVE
======================================== */
@keyframes ledPulseSoft {
    0%, 100% {
        filter:
            drop-shadow(0 0 6px rgba(255,255,255,0.3))
            drop-shadow(0 0 14px rgba(255,194,25,0.3))
            drop-shadow(0 0 26px rgba(255,79,110,0.2));
    }
    50% {
        filter:
            drop-shadow(0 0 9px rgba(255,255,255,0.45))
            drop-shadow(0 0 20px rgba(255,194,25,0.45))
            drop-shadow(0 0 36px rgba(255,79,110,0.3));
    }
}





.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}










/* ========================================
   CATEGORY CARD – FIX DEFINITIVO
======================================== */

/* Hover */
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
	border-radius: var(--radius);
}

/* Imagen */
.category-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
	border-radius: 999px;
}

/* ===== TEXTO ABAJO (VISIBLE SIEMPRE) ===== */
.category-info {
    padding: 14px 12px 18px;
    text-align: center;
}

/* Título */
.category-info h3 {
	font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1px;
    line-height: 1.1;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}

.category-info h3 a {
    color: var(--text);
    text-decoration: none;
}

/* Contador */
.category-info .product-count {
    font-size: 13px;
    color: var(--price);
}









.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-pink);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
	color: var(--text);
}

.product-category {
    color: var(--text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin: 8px 0 12px;
	color: var(--text);
}

.product-info h3 a:hover {
    color: var(--text);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--price);
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0a2e 100%);
    text-align: center;
}

.section-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--bg-fondo);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

/* ========================================
   PRODUCT SINGLE
======================================== */
.product-single {
    padding-top: 120px;
    padding-bottom: 80px;
}

.breadcrumb {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery .main-image {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.product-details .product-cat {
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-details h1 {
    font-size: 2.5rem;
    margin: 15px 0 20px;
}

.product-excerpt {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.product-price-big {
    margin-bottom: 20px;
}

.product-price-big .price-current {
    font-size: 2.5rem;
}

.product-price-big small {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
}

.product-status {
    margin-bottom: 25px;
}

.stock-in_stock { color: #00ff64; }
.stock-out_of_stock { color: #ff6666; }
.stock-on_demand { color: var(--secondary); }

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.customizable-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text);
}

.customizable-note i {
    color: var(--primary);
    font-size: 1.5rem;
}

.product-description {
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.product-description h2 {
    margin-bottom: 20px;
}

/* ========================================
   SHOP PAGE
======================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 0;
	background: var(--bg-fondo);
}

.shop-sidebar h3 {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: rgba(255, 0, 255, 0.2);
    color: var(--text);
}

.no-products {
    text-align: center;
    color: var(--text);
    padding: 60px 20px;
}

/* ========================================
   CONTACT
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
	background: var(--bg-fondo);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info i {
    color: var(--secondary);
    width: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}



/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .category-list {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gradient-neon);
        flex-direction: column;
        padding: 20px;
        gap: 0;
		color:#FFFFFF;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .btn-cta {
        display: none;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* ========================================
   CONTENT AREA
======================================== */
.content-area {
    color: var(--text-light);
    line-height: 1.8;
}

.content-area h2,
.content-area h3 {
    margin: 30px 0 15px;
    color: var(--text);
}

.content-area p {
    margin-bottom: 15px;
}

.content-area ul,
.content-area ol {
    margin: 15px 0 15px 30px;
}

.content-area img {
    border-radius: var(--radius);
    margin: 20px 0;
}


/* ========================================
   TOP BAR
======================================== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

.topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

/* Cuando hay topbar, ajustar body */
body:has(.topbar) .header {
    top: 40px;
}

/* padding-top manejado por topbar + header fijos */

/* ========================================
   HERO SECTION (Bloque Simple)
======================================== */
.hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
	background: var(--bg-fondo);
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    padding: 10px 10px 10px 10px;
    max-width: 800px;
    margin-left: auto;   /* ðŸ‘ˆ ESTO es la clave */
    margin-right: 17%;    /* ajusta segÃºn tu header */
}


.hero-content h1 {

margin-top:120px; /*espacio entre menu y supertitulo*/

    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    color: #FFF; /* LETRA TITULO */
    letter-spacing: -0.04em;
	text-shadow: 6px 4px 6px rgba(255, 193, 27, 0.4);
}



.hero-content p {
    font-size: clamp(1.3rem, 0vw, 1.5rem);
    color: #FFF; /* LETRA SUBTITULO */
    margin-bottom: 30px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-neon);
    color: #000;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}





















/* ===============================
   BANNER FULL WIDTH – ABOUT
================================ */

.banner-ref {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-fondo);
  display: grid;
  grid-template-columns: 42% 58%; /* punto fino de composición */
}

/* ===============================
   FONDO (IMAGEN COMPLETA)
================================ */

.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("../bgbanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* ===============================
   IMAGEN PROTAGONISTA (CHICO)
================================ */

.banner-visual {
  position: absolute;
  left: 9%;        /* invade ligeramente el centro */
  bottom: 0;
  width: 67%;       /* presencia fuerte como referencia */
  z-index: 2;
}

.banner-visual img {
  width: auto;
  height: auto;
  display: block;
}

/* ===============================
   TEXTO
================================ */

.banner-text {
  position: relative;
  z-index: 3;

  grid-column: 2;
  max-width: 900px;

  padding: 120px 2% 80px 9%;
  align-self: center;
text-shadow: 0 5px 5px rgba(0, 0, 0);

}

/* Línea vertical */
.banner-line {
  display: block;
  width: 3px;
  height: 70px;
  background: #FEC31D;
  margin-bottom: 30px;
}

/* Título */
.banner-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: normal;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.05em;

    /* GRADIENTE SUAVE LED */
    background: linear-gradient(
        90deg,
        90deg,
        #fff,   /* ROSA */
        #fec31d,   /* NARANJA */
		
	    #fff,   /* AMARILLO LOGO */
        
		#fff,   /* VERDE */
	    #fff,   /* AZUL */
		#fff,   /* MORADO */
		   
        #fff    
    );

    background-size: 250% 100%;

    /* TEXTO EN GRADIENTE */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* BRILLO DEL TEXTO (CONTROLADO) */
    text-shadow:
        0 0 0px rgba(255,255,255,0.6),
        0 0 8px rgba(255,194,25,0.45),
        0 0 16px rgba(255,123,0,0.35),
        0 0 28px rgba(255,53,139,0.25);

    /* HALO AMBIENTAL SUAVE */
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.01))
        drop-shadow(0 0 14px rgba(255,194,25,0.05))
        drop-shadow(0 0 26px rgba(255,79,110,0.10));

    /* ANIMACIONES FINAS */
    animation:
        aboutGradientMove 10s ease infinite,
        ledPulseSoft 4.2s ease-in-out infinite;

    will-change: filter;
}

/* ========================================
   GRADIENTE EN MOVIMIENTO
======================================== */
@keyframes aboutGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ========================================
   PULSO LED MUY SUAVE
======================================== */
@keyframes ledPulseSoft {
    0%, 100% {
        filter:
            drop-shadow(0 0 6px rgba(255,255,255,0.3))
            drop-shadow(0 0 14px rgba(255,194,25,0.3))
            drop-shadow(0 0 26px rgba(255,79,110,0.2));
    }
    50% {
        filter:
            drop-shadow(0 0 9px rgba(255,255,255,0.45))
            drop-shadow(0 0 20px rgba(255,194,25,0.45))
            drop-shadow(0 0 36px rgba(255,79,110,0.3));
    }
}


/* Subtítulo */
.banner-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 36px;
  color: #FEC31D;
}

/* Párrafos */
.banner-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 400;
  color: #f1f1f1;
  opacity: 0.95;
  margin-bottom: 22px;
  text-align: justify;
}
@media (max-width: 900px) {

  .banner-ref {
    display: block;
    min-height: auto;
    padding-top: 90px;   /* espacio para header */
    padding-bottom: 60px;
  }

  /* Imagen protagonista pasa a flujo normal */
  .banner-visual {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
    left: auto;
    bottom: auto;
  }

  /* Texto debajo, centrado */
  .banner-text {
    max-width: 100%;
    padding: 0 6%;
    text-align: center;
  }

  .banner-line {
    margin: 0 auto 24px;
    height: 48px;
  }

  .banner-text h1 {
    font-size: 2.2rem;
  }

  .banner-text h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}























/* ========================================
   GRID 4 COLUMNAS (ANCHO DEL CONTENEDOR)
======================================== */
.led-glass-grid {
  width: 100%;               /* ?? clave: no full width */
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  background: var(--bg-fondo);
}

@media (max-width: 1100px) {
  .led-glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .led-glass-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========================================
   COLORES LED POR CARD
   (se asignan por clase)
======================================== */
.led-yellow { --led: 255,255,255; }
.led-blue   { --led: 0,180,255; }
.led-pink   { --led: 255,80,200; }
.led-green  { --led: 60,255,140; }

/* ===== CARD ===== */
.led-glass-card {
  position: relative;
  padding: 48px 28px;
  text-align: center;
  border-radius: var(--radius);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.06),
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255);

  box-shadow:
    inset 0 0 25px rgba(255,255,255),
    0 0 45px rgba(var(--led), 0.35);   /* ?? color dinámico */

  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
}

/* BORDE LED */
.led-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow:
    0 0 22px rgba(var(--led), 0.9),
    inset 0 0 18px rgba(var(--led), 0.45);
  opacity: .55;
  pointer-events: none;
}

/* ICONO */
.led-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 26px;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.6))
    drop-shadow(0 0 18px rgba(var(--led), 0.9));
}

/* TEXTO */
.led-glass-card h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: #fff;
}

.led-glass-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #FFFFFF;
}

/* HOVER */
.led-glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 95px rgba(var(--led), 0.65),
    inset 0 0 12px rgba(255,255,255,0.12);
}
/* ========================================
   FORZAR GRID AL ANCHO DEL CONTENEDOR
   (NO FULL WIDTH, NUNCA)
======================================== */
.services-grid.led-glass-grid {
  max-width: 1600px;   /* ?? usa el ancho real de tu layout */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  padding-top: 80px;     /* ?? aire arriba */
  padding-bottom: 80px;  /* ?? aire abajo */
}
















/* ========================================
   TESTIMONIALS
======================================== */
        /* Testimonials */
        .testimonials-carousel {
            position: relative;
            overflow: hidden;
            padding: 3rem 0;
			background: var(--bg-fondo);
        }

.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 25%;
    gap: 2rem;
    animation: scroll-testimonials 15s linear infinite;
    will-change: transform;
}

@keyframes scroll-testimonials {
    to {
        transform: translateX(-50%);
    }
}

		
		.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-track {
    backface-visibility: hidden;
    transform: translateZ(0);
}




        .testimonial-card {
            min-width: 400px;
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--gradient-neon);
			    box-shadow: 10px 10px 10px rgba(253, 193, 27, 0.1);
        }

        .testimonial-rating {
            color: var(--gradient-neon);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url("../test.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


        .author-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .author-business {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

/* ========================================
   MOBILE
======================================== */
@media (max-width: 1200px) {
		.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 55%;
    gap: 2rem;
    animation: scroll-testimonials 15s linear infinite;
    will-change: transform;
}


        .testimonial-card {
            min-width: 100%;
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--gradient-neon);
			    box-shadow: 10px 10px 10px rgba(253, 193, 27, 0.1);
        }
}


@media (max-width: 768px) {

		.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 65%;
    gap: 2rem;
    animation: scroll-testimonials 15s linear infinite;
    will-change: transform;
}


        .testimonial-card {
            min-width: 100%;
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--gradient-neon);
			    box-shadow: 10px 10px 10px rgba(253, 193, 27, 0.1);
        }

}



/* ========================================
   GALLERY
======================================== */
.section-gallery {
    background: var(--bg-fondo);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.7s;
}

.gallery-item:hover::after {
    opacity: 1;
}


/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.1);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.1);
}

/* ========================================
   FALLBACK PARA PRIMER CONTENIDO
======================================== */
/* Espacio manejado por padding-top en body */


/* ========================================
   SECCIONES DINÃMICAS
======================================== */
.section-dynamic {
    padding: 0px 0;
    position: relative;
    overflow: hidden;
	background: var(--bg-fondo);
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* Grid layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-grid.img-first {
    grid-template-columns: 1fr 1fr;
}

.section-grid.text-first {
    grid-template-columns: 1fr 1fr;
}

.section-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.section-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section-content .section-text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ======================================
   FULL WIDTH REAL (EDGE TO EDGE)
====================================== */
.section-fullwidth {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
	margin-bottom:30px; /*ESPACIO DESPUES DEL FULL WIDTH*/
	background: var(--bg-fondo);
}

.section-fullwidth .section-bg-img {
    width: 100vw;
    height: auto;
    max-height: none;

    object-fit: cover;
    display: block;

    border-radius: 0;
    margin: 0;
}

/* ======================================
   QUITAR ESPACIO VERDE LATERAL (FULLWIDTH)
====================================== */
.section-layout-fullwidth .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}




/* ========================================
   CTA CENTRADO – ESTABLE (DESKTOP + MOBILE)
======================================== */

/* SECTION (fondo completo) */
.section-layout-cta {
    width: 100%;
	margin-top:10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background: var(--bg-fondo);
}

/* Overlay */
.section-layout-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 250, 1); /* rgb(250,250,250) */
    z-index: 0;
}

/* QUITA RESTRICCIONES DEL CONTAINER SOLO AQUÍ */
.section-layout-cta > .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* CONTENIDO CTA */
.section-cta-centered {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    min-height: 420px;
    padding: 80px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--bg-fondo);
}

/* TEXTO */
.section-cta-centered h2 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-cta-centered .section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.section-cta-centered .section-text {
    font-size: 1rem;
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BOTÓN */
.section-cta-centered .btn {
    background: var(--gradient-neon);
    color: var(--text);
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    width: fit-content;
}

/* ========================================
   MOBILE
======================================== */
@media (max-width: 768px) {

    .section-cta-centered {
        max-width: 100%;
        padding: 60px 20px;
        min-height: 320px;
    }

    .section-cta-centered .btn {
        width: 100%;
        max-width: 320px;
    }
}








/* =====================================================
   HERO SLIDER
===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
	background: var(--bg-fondo);
}

.hero.hero-slider {
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-static {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.7s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.7s ease;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* =====================================================
   HERO SLIDER - MOBILE RESPONSIVE
===================================================== */
@media (max-width: 768px) {


    .logo img {
        height: 28px;   /* tamaño ideal mobile */
        width: auto;
        display: block;
    }

    .logo {
        margin: 0;
    }

    /* Asegura alineación correcta del nav */
    .nav {
        justify-content: space-between;
        align-items: center;
    }

    /* Altura del hero tipo banner */
    .hero,
    .slider-container,
    .slide,
    .hero-static {
        min-height: auto;
        height: 46vh;
        max-height: 360px;
        overflow: hidden;
    }

    /* Slide como banner (no recorta imagen) */
    .slide {
        background-size: 150%;
        background-position: center 40px;
        background-repeat: no-repeat;
        align-items: flex-end;
    }

    /* Contenido dentro del banner */
    .hero-content {
        padding: 50px;
        margin: 0;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .hero-content .btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* Flechas más pequeñas y centradas */
    .slider-arrow {
        width: 15px;
        height: 15px;
        font-size: 8px;
        border-width: 1.5px;
        top: 45%;
    }

    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }

    /* Dots más arriba */
    .slider-dots {
        bottom: 5px;
        gap: 10px;
    }

    .slider-dots .dot {
        width: 4px;
        height: 4px;
    }
}


/* =====================================================
   TIENDA - ESTILOS
===================================================== */

/* Banner de Tienda */
.shop-banner {
    background: var(--gradient-neon);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
	background: var(--bg-fondo);
}

.shop-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Layout Principal de Tienda */
.shop-main {
    padding: 50px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}


.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.7s ease;
}

.category-list a:hover,
.category-list a.active {
    background: var(--gradient-neon);
    color: #fff;
}

.category-list .count {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.sidebar-cta {
    text-align: center;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
    font-size: 14px;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.results-count {
    color: rgba(255,255,255,0.6);
}

/* Grid de Productos */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Desktop: 6 */
    gap: 25px;
}

/* Tablet */
@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 */
    }
}

/* Móvil */
@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr); /* Móvil: 2 */
		gap: 7px;
    }
}


.product-card .product-image {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--gradient-pink);
    color: #fff;
}

.product-badge.featured {
    background: var(--gradient-pink);
    color: #fff;
}

.product-info {
    padding: 20px;
	color: var(--text);
}

.product-category {
    color: var(--text-muted);
    font-size: 15px;
    text-transform: none;
}

.product-info h3 {
    margin: 10px 0;
    font-size: 1.1rem;
    color: var(--text);
}

.product-info h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.7s;
}

.product-info h3 a:hover {
    color: var(--primary);
}

.product-excerpt {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.product-price .price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-right: 8px;
}

.product-price .price-current {
    color: var(--price);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-outline {
    background: #fff;
     border: 1px solid rgba(0,0,0,0.1);
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    box-sizing: border-box;
}




/* Botón outline dentro de cards de producto */
.product-card .btn-outline {
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text);
    background: transparent;
}

/* Hover */
.product-card .btn-outline:hover {
    background: var(--text);
    color: var(--bg-fondo);
}


.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255,0,255,0.1);
}

/* Sin productos */
.no-products {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
}

.no-products i {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.no-products h3 {
    margin-bottom: 10px;
}

.no-products p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 25px;
}

/* =====================================================
   FICHA DE PRODUCTO
===================================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: rgba(0,0,0,0.3);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: rgba(255,255,255,0.3);
    margin: 0 10px;
}

.breadcrumb .current {
    color: #fff;
}

/* PÃ¡gina de Producto */
.product-page {
    padding: 50px 0;
}

.product-page .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .product-page .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* GalerÃ­a */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.main-image-wrapper .main-image {
    width: 100%;
    display: block;
}

.main-image-wrapper.no-image {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
}

.main-image-wrapper.no-image i {
    font-size: 5rem;
    margin-bottom: 15px;
}

.product-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.product-badge-large.sale {
    background: var(--gradient-pink);
    color: #fff;
}

/* Detalles del Producto */
.product-details .product-cat {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-decoration: none;
}

.product-details .product-cat:hover {
    color: var(--primary);
}

.product-details h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-details .product-excerpt {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Precio Box */
.product-price-box {
    background: rgba(255,0,255,0.1);
    border: 1px solid rgba(255,0,255,0.2);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 25px;
}

.product-price-box .price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.product-price-box .price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--price);
}

.product-price-box .price-save {
    display: block;
    margin-top: 8px;
    color: #00ff64;
    font-size: 14px;
}

.product-price-box .price-quote {
    font-size: 1.5rem;
}

/* Stock */
.product-stock {
    margin-bottom: 25px;
}

.product-stock .stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.product-stock .in-stock {
    background: rgba(0,255,100,0.15);
    color: #00ff64;
}

.product-stock .on-demand {
    background: rgba(255,200,0,0.15);
    color: #ffc800;
}

.product-stock .out-of-stock {
    background: rgba(255,0,0,0.15);
    color: #ff6666;
}

/* Acciones */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.product-actions .btn {
    justify-content: center;
    text-align: center;
}

.btn-whatsapp {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.btn-whatsapp:hover {
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.1);
}

.btn-lg {
    padding: 16px 30px;
    font-size: 1.1rem;
}

/* Meta informaciÃ³n */
.product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.product-meta .meta-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}

.product-meta .meta-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-meta .meta-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 576px) {
    .product-meta {
        grid-template-columns: 1fr;
    }
}

/* DescripciÃ³n completa */
.product-description-full {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.product-description-full h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.product-description-full .content-area {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* Productos Relacionados */
.related-products h2 {
    margin-bottom: 30px;
    text-align: center;
}



/* =====================================================
   SECCIONES DE PRODUCTOS EN HOME
===================================================== */

.section-products-featured,
.section-products-latest,
.section-products-category,
.section-categories {
    padding: 15px 0;
	background: var(--bg-fondo);
	margin-top:0px;
}

.section-products-featured .section-title,
.section-products-latest .section-title,
.section-products-category .section-title,
.section-categories .section-title {
    text-align: center;
    margin-bottom: 0px;
}

/* Móvil */
@media (max-width: 600px) {

.section-products-featured,
.section-products-latest,
.section-products-category,
.section-categories {
}

}






/* =====================================================
   CARRUSEL DESTACADOS — DEFINITIVO (FIX SCROLL FLUIDO)
===================================================== */

.products-carousel {
    position: relative;
}

.products-track {
    overflow: hidden; /* correcto */
}

/* =========================
   BASE (DESKTOP)
========================= */
.featured-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% / 5); /* 5 visibles */
    gap: 25px;

padding: 30px 12px;   /* ?? alto | ?? lateral */

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    /* ?? FIX SCROLL FLUIDO */
    touch-action: pan-x pan-y;           /* permite ambos gestos */
    -webkit-overflow-scrolling: touch;  /* inercia iOS */
    overscroll-behavior-x: contain;     /* evita conflicto con body */

    scrollbar-width: none;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}

.featured-carousel .product-card {
    scroll-snap-align: start;
}

/* =====================================================
   FLECHAS CARRUSEL — SOLO DESKTOP (FIX REAL)
===================================================== */

.products-carousel {
    position: relative;
    width: 100%;
}

.products-track {
    overflow: hidden;
}


/* Flechas */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;

    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: rgba(0,0,0,0.7);
    color: var(--gradient-neon);
    cursor: pointer;

    display: none; /* ocultas por defecto */
    align-items: center;
    justify-content: center;
}

/* Posición */
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* ? SOLO DESKTOP */
@media (min-width: 1024px) {
    .carousel-btn {
        display: flex;
    }
}

/* =========================
   TABLET & MOBILE (AMAZON STYLE)
========================= */
@media (max-width: 1023px) {
    .featured-carousel {
        grid-auto-columns: 85%;
        gap: 20px;
        padding-right: 20px;
    }

    .carousel-btn {
        display: none !important;
    }
}

/* =========================
   MOBILE MÁS ESTRECHO
========================= */
@media (max-width: 768px) {
    .featured-carousel {
        grid-auto-columns: 70%;
    }
}




/* =====================================================
   PRODUCT CARDS — TIPOGRAFÍA MOBILE
===================================================== */
@media (max-width: 768px) {

    /* Card completa */
    .product-card {
        border-radius: var(--radius);
    }

    /* Contenido interno */
    .product-info {
        padding: 14px; /* más compacto en móvil */
    }

    /* Categoría */
    .product-category {
        font-size: 10px;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    /* Título del producto */
    .product-info h3 {
        font-size: 14px;        /* ?? aquí controlas el tamaño */
        line-height: 1.25;
        margin-bottom: 8px;
    }

    /* Precio */
    .price-current {
        font-size: 15px;
        font-weight: 700;
    }

    /* Botón */
    .product-footer .btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* =====================================================
   CATEGORÍAS — CARRUSEL DEFINITIVO
===================================================== */

.categories-grid {
    display: grid;
    grid-auto-flow: column;

    /* Desktop: 8 visibles */
    grid-auto-columns: calc(100% / 7);

    gap: 25px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;

    overscroll-behavior-x: contain;
    touch-action: pan-x;

    padding-bottom: 10px; /* evita cortes */
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    scroll-snap-align: start;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .categories-grid {
        grid-auto-columns: calc(100% / 4);
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .categories-grid {
        grid-auto-columns: 39%; /* 4.5 visibles */
        gap: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }
}


/* =====================================================
   HERO DESKTOP 1920x600 (FORZADO) ALTURA DEL HERO / ALTURA DEL SLIDER
===================================================== */
@media (min-width: 1024px) {

    .hero,
    .hero.hero-slider,
    .slider-container,
    .slide,
    .hero-static {
        height: 750px !important;
        min-height: 750px !important;
        max-height: 750px !important;
    }

}

/* ======================================
   FIX BOTÓN CARD – MOBILE (CORRECTO)
====================================== */
@media (max-width: 768px) {

    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding-top: 6px;
        overflow: visible;
    }

    .product-footer .btn {
        background: var(--bg-card);
        color: var(--text) !important;

        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;

        padding: 10px 16px;
		font-family: 'Montserrat', 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;

        line-height: 1.2;
        white-space: nowrap;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;
    }
}

/* ===== TODO TU CSS ARRIBA ===== */


/* ======================================
   TEXTO NEGRO – CATEGORÍAS TIENDA
====================================== */
.shop-sidebar .category-list a,
.shop-sidebar .category-list a span {
    color: var(--text) !important;
}

.shop-sidebar .category-list a.active,
.shop-sidebar .category-list a.active span {
    color: var(--text) !important;
}
