

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

:root {
    --bg-fondo: #FAFAFA; /*FONDO GLOBAL*/
    --bg-darker: #FAFAFA; /*FONDO FOOTER*/
    --bg-card: #FFF; /*FONDO TARJETAS*/
    --gradient-neon: #01D0CD; /*BOTONES  ICONOS*/
    --glow-pink: 0 0 30px rgba(255, 255, 255); /*BRILLO BOTON*/
    --text: #000; /*TEXTO NORMAL*/
    --text-muted: #808080; /*TEXTO TENUE*/
    --text-light: #FFFFFF; /*MENU*/
	--price: #01D0CD; /*PRECIOS*/
    --primary: rgba(255,255,255,0.6); /*ARROWS*/
	--barranavegacion: rgba(1,208,205,0.8); /*BARRA DE NAVEGACION*/
    --gradient-pink: #0CCCB2; /*OFERTA*/
    --bg-hover: #FF0000;
    --secondary: #FF0000;
    --accent: #FF0000;
    --glow-cyan: #FF0000;

    --radius: 8px;
    --radius-sm: 1px;
    --transition: all 0.7s 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;
}


.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(--bg-fondo);
    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: #ff0000;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-neon);
    color: #000;
    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(--bg-fondo);
    font-size: 24px;
    cursor: pointer;
}







/* ========================================
   HERO SLIDER
======================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}


.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 2);
}

.slide-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

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

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

/* ========================================
   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;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

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










/* ========================================
   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;
}

/* ===== 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;
}

.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: linear-gradient(135deg, var(--bg-darker) 0%, #150520 100%);
}

.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;
}

.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;
}

.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);
}










/* ========================================
   FOOTER – PREMIUM MODE
======================================== */
.footer {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--bg-darker) 0%,
        #01D0CD 100%
    );
    padding: 90px 0 35px;
    overflow: hidden;
	font-family: 'Montserrat', 'Poppins', sans-serif;

}

/* Glow superior */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 120px;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(0,255,180,0.15),
        transparent 70%
    );
    pointer-events: none;
}

/* ================= GRID ================= */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* ================= TITULOS ================= */
.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.6px;
    position: relative;
}

/* Linea neon debajo del titulo */
.footer-col h4::after {
    content: '';
    width: 35px;
    height: 2px;
    background: var(--gradient-neon);
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

/* ================= TEXTO ================= */
.footer-col p {
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.footer-col i {
    color: var(--gradient-neon);
    font-size: 17px;
}

/* ================= LINKS ================= */
.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    transition: all 0.7s ease;
}

/* underline animado */
.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gradient-neon);
    transition: width 0.7s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links a:hover::after {
    width: 100%;
}

/* ================= SOCIAL ================= */
.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        145deg,
        var(--bg-card),
        #0b0b0b
    );
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.35s ease;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.05),
        0 0 0 rgba(0,0,0,0);
}

.social-links a:hover {
    color: #000;
    background: var(--gradient-neon);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 10px 30px rgba(0,255,180,0.35);
}

/* ================= BOTTOM ================= */
.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.4px;
}















/* ========================================
   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;
        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: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.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: 0 2px 6px rgba(0, 0, 0, 0.2);
}



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

.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);
}

/* ========================================
   ABOUT SECTION
======================================== */
.section-about {
    background: var(--bg-fondo);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    background: var(--text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	text-align:left;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
	text-align: justify;
}

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

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   GRID 4 COLUMNAS
======================================== */
.section-grid3 {
    background: var(--bg-fondo);
}

.grid3-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.grid3-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.35s ease;
}

.grid3-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.grid3-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid3-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.grid3-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-content p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========================================
   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;
}

/* ========================================
   FOOTER SOCIALS
======================================== */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text);
    font-size: 18px;
    transition: var(--transition);
}

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

.footer-logo-img {
    max-height: 50px;
    margin-bottom: 15px;
}

/* ========================================
   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;
}

.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*/
}

.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;
}

/* 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;
}

.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);
}

.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;
    }
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--card);
}

.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;
}

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

/* 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(255,255,255,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% / 8);

    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% / 5);
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .categories-grid {
        grid-auto-columns: 22%; /* 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: 710px !important;
        min-height: 710px !important;
        max-height: 710px !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;
}
