/* ===================================
   VARIABLES Y RESET MODERNO
   =================================== */
:root {
    --primary: #0a9396;
    --secondary: #94d2bd;
    --accent: #ee9b00;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --spacing-xs: 1rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ===================================
   FUENTE PERSONALIZADA
   =================================== */
@font-face {
    font-family: 'Christmas Market';
    src: url('../fonts/Christmas Market.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   CONTENEDOR PRINCIPAL
   =================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===================================
   NAVBAR MODERNA Y MINIMALISTA
   =================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 2rem;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    font-family: 'Christmas Market', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-logo a:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   HERO SECTION - OPTIMIZADO
   =================================== */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 147, 150, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(238, 155, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-family: 'Christmas Market', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: normal;
    letter-spacing: 3px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero .btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(238, 155, 0, 0.4);
    border: 2px solid var(--accent);
}

.hero .btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECCIONES COMPACTAS
   =================================== */
.section-compact {
    padding: var(--spacing-md) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* ===================================
   MISIÓN Y VISIÓN - DISEÑO MODERNO
   =================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-sm);
}

.mission-card,
.vision-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.vision-card {
    border-left-color: var(--accent);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(10, 147, 150, 0.1);
    border-radius: var(--radius-sm);
}

.vision-card .card-icon {
    color: var(--accent);
    background: rgba(238, 155, 0, 0.1);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.vision-card h3 {
    color: var(--accent);
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===================================
   QUIÉNES SOMOS - LAYOUT MODERNO
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: var(--spacing-sm);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text p strong {
    color: var(--primary);
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   PRODUCTOS - GRID MODERNO
   =================================== */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-sm);
}

.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-modern:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 147, 150, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.product-info-modern {
    padding: 1.5rem;
}

.product-info-modern h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info-modern p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   GALERÍA MODERNA - MASONRY STYLE
   =================================== */
.gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.gallery-item-modern {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item-modern:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.gallery-item-modern img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-modern:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(238, 155, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-modern:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ===================================
   FOOTER MODERNO Y COMPACTO
   =================================== */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3137 100%);
    color: var(--white);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   WHATSAPP FLOTANTE
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   BACKGROUND LIGHT
   =================================== */
.bg-light {
    background-color: #fafbfc;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        height: 65vh;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 350px;
    }
}

/* Móviles (hasta 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        height: 60vh;
        margin-top: 60px;
    }

    .section-compact {
        padding: var(--spacing-sm) 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }

    .products-grid-modern {
        grid-template-columns: 1fr;
    }

    .gallery-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-item-modern img {
        height: 220px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-list {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .hero {
        height: 55vh;
    }

    .section-compact {
        padding: var(--spacing-xs) 0;
    }

    .mission-card,
    .vision-card {
        padding: 1.2rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        height: 280px;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .gallery-modern {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-item-modern img {
        height: 250px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Pantallas grandes (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero {
        height: 80vh;
    }
}

/* ===================================
   ESTILOS PÁGINA DE TIENDA
   =================================== */

/* Wrapper de la tienda */
.tienda-wrapper {
    padding: var(--spacing-md) 0;
    min-height: calc(100vh - 400px);
}

/* Header de la tienda */
.tienda-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.tienda-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tienda-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    font-weight: 300;
}

/* Contenedor de filtros modernos */
.filtros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.filtro-group {
    flex: 1;
    min-width: 200px;
}

.filtro-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.filtro-group label i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.filtro-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--dark);
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filtro-select:hover {
    border-color: var(--secondary);
}

.filtro-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

.btn-limpiar {
    padding: 0.8rem 1.5rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-limpiar:hover {
    background-color: #d88a00;
    transform: translateY(-2px);
}

.btn-limpiar i {
    font-size: 1rem;
}

/* Contador de productos */
.productos-contador {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Descripciones de categorías */
.categorias-descripcion {
    margin: 2rem 0 3rem 0;
}

.categoria-block {
    display: none;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.05) 0%, rgba(148, 210, 189, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out;
}

.categoria-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.categoria-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.categoria-content p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Grid de productos de la tienda */
.productos-grid-tienda {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card de producto moderna */
.producto-card-tienda {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.5s ease-out both;
}

.producto-card-tienda:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.producto-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.badge-categoria {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-categoria.damas {
    background: linear-gradient(135deg, #ee9b00, #f4a261);
    color: var(--white);
}

.badge-categoria.ninas {
    background: linear-gradient(135deg, #ff6b9d, #ffa6c9);
    color: var(--white);
}

.badge-categoria.caballeros {
    background: linear-gradient(135deg, #0a9396, #005f73);
    color: var(--white);
}

.producto-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.producto-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.producto-card-tienda:hover .producto-image-container img {
    transform: scale(1.1);
}

.producto-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 147, 150, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.producto-card-tienda:hover .producto-overlay-hover {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.overlay-content span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.producto-info-tienda {
    padding: 1.5rem;
}

.producto-nombre {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.producto-descripcion {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.producto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.producto-precio {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.btn-ver-mas {
    padding: 0.6rem 1.2rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-ver-mas:hover {
    background-color: var(--dark);
    transform: translateX(3px);
}

.btn-ver-mas i {
    transition: var(--transition);
}

.btn-ver-mas:hover i {
    transform: translateX(3px);
}

/* Estados de carga y vacío */
.loading-state,
.empty-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-state i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.loading-state p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-light);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Sección de reseñas moderna */
.reviews-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.03) 0%, rgba(148, 210, 189, 0.03) 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.reviews-stars-average {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stars-display {
    font-size: 2rem;
    color: #f5b400;
    letter-spacing: 0.2rem;
}

.reviews-count {
    color: var(--text-light);
    font-size: 1rem;
}

.reviews-count strong {
    color: var(--primary);
    font-weight: 700;
}

/* Grid de reseñas moderno */
.reviews-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease-out both;
    position: relative;
    border-top: 3px solid var(--primary);
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.review-stars {
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.stars-filled {
    color: #f5b400;
}

.stars-empty {
    color: #e0e0e0;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.review-verified i {
    font-size: 1rem;
}

/* Botón scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Sistema de notificaciones */
.notification {
    position: fixed;
    top: 90px;
    right: -400px;
    max-width: 350px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transition: right 0.3s ease-out;
    border-left: 4px solid var(--primary);
}

.notification.show {
    right: 25px;
}

.notification i:first-child {
    font-size: 1.5rem;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-success i:first-child {
    color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-error i:first-child {
    color: #dc3545;
}

.notification-info {
    border-left-color: var(--primary);
}

.notification-info i:first-child {
    color: var(--primary);
}

.notification span {
    flex: 1;
    color: var(--dark);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.3rem;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--dark);
}

/* Animación para elementos que aparecen */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Navbar con scroll */
.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Link activo en navegación */
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* ===================================
   RESPONSIVE - TIENDA
   =================================== */

@media (max-width: 1024px) {
    .productos-grid-tienda {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .categoria-block {
        flex-direction: column;
        text-align: center;
    }
    
    .categoria-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tienda-wrapper {
        padding: var(--spacing-sm) 0;
    }
    
    .filtros-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filtro-group {
        width: 100%;
    }
    
    .btn-limpiar {
        width: 100%;
        justify-content: center;
    }
    
    .productos-grid-tienda {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .categoria-block {
        padding: 1.5rem;
    }
    
    .categoria-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .notification {
        max-width: calc(100vw - 50px);
        right: -100%;
    }
    
    .notification.show {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .producto-image-container {
        height: 220px;
    }
    
    .producto-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-ver-mas {
        justify-content: center;
        width: 100%;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* ===================================
   ESTILOS PÁGINA DE PRODUCTO
   =================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 1.5rem 0;
    background-color: #fafbfc;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Wrapper del detalle */
.producto-detalle-wrapper {
    padding: var(--spacing-md) 0;
    min-height: 60vh;
}

/* Layout del producto */
.producto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: fadeInUp 0.6s ease-out;
}

/* Galería de imágenes */
.producto-galeria {
    position: sticky;
    top: 90px;
}

.imagen-principal {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #f5f5f5;
    margin-bottom: 1rem;
}

.imagen-principal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.imagen-principal .badge-categoria {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Miniaturas */
.miniaturas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
}

.miniatura {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    height: 80px;
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.miniatura:hover {
    border-color: var(--secondary);
}

.miniatura.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

/* Información del producto */
.producto-info-detalle {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.producto-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.producto-titulo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

.btn-favorito {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-favorito:hover {
    border-color: #ff6b9d;
    color: #ff6b9d;
    transform: scale(1.1);
}

.btn-favorito.active {
    background: #ff6b9d;
    color: var(--white);
    border-color: #ff6b9d;
}

/* Precio */
.producto-precio-detalle {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.05) 0%, rgba(148, 210, 189, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.precio-actual {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.precio-anterior {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.descuento-badge {
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Rating */
.producto-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.estrellas-rating {
    display: flex;
    gap: 0.2rem;
}

.estrellas-rating i {
    color: #f5b400;
    font-size: 1.2rem;
}

.rating-numero {
    font-weight: 600;
    color: var(--dark);
}

.resenas-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Descripción */
.producto-descripcion {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid #e9ecef;
}

.producto-descripcion h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.producto-descripcion p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Características */
.producto-caracteristicas {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid #e9ecef;
}

.producto-caracteristicas h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.producto-caracteristicas ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.producto-caracteristicas li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.producto-caracteristicas li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Detalles técnicos */
.producto-detalles-tecnicos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detalle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.detalle-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.detalle-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.detalle-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detalle-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detalle-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.detalle-value.disponible {
    color: #28a745;
}

/* Acciones */
.producto-acciones {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-whatsapp-grande {
    flex: 1;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-grande:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-grande i {
    font-size: 1.5rem;
}

.btn-consultar {
    padding: 1.2rem 1.5rem;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-consultar:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Garantías */
.producto-garantias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: var(--radius-md);
}

.garantia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.garantia-item i {
    font-size: 2rem;
    color: var(--primary);
}

.garantia-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Productos relacionados */
.productos-relacionados-section {
    padding: var(--spacing-lg) 0;
    background: #fafbfc;
}

/* ===================================
   RESPONSIVE - PRODUCTO
   =================================== */

@media (max-width: 1024px) {
    .producto-layout {
        gap: 2rem;
    }
    
    .imagen-principal img {
        height: 400px;
    }
    
    .producto-galeria {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .producto-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .imagen-principal img {
        height: 350px;
    }
    
    .producto-titulo {
        font-size: 1.8rem;
    }
    
    .precio-actual {
        font-size: 2rem;
    }
    
    .producto-detalles-tecnicos {
        grid-template-columns: 1fr;
    }
    
    .producto-acciones {
        flex-direction: column;
    }
    
    .btn-consultar {
        justify-content: center;
    }
    
    .producto-garantias {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .imagen-principal img {
        height: 300px;
    }
    
    .miniaturas-container {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    
    .miniatura {
        height: 60px;
    }
    
    .producto-header-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-favorito {
        align-self: flex-end;
        width: 45px;
        height: 45px;
    }
    
    .producto-precio-detalle {
        padding: 1rem;
    }
    
    .precio-actual {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp-grande {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .producto-descripcion,
    .producto-caracteristicas {
        padding: 1rem;
    }
}