/* ====================
    1. Estilos Globales
    ==================== */
:root {
    --primary-color: #5b38ed;
    --secondary-color: #1a1a1a;
    --dark-background: #000000;
    --dark-surface: #1a1a1a;
    --text-color-light: #e0e0e0;
    --text-color-dark: #333;
    --success-color: #28a745; /* Nueva variable para notificaciones */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color-light);
    line-height: 1.6;
    background-color: var(--dark-background);
    display: flex;
    flex-direction: column;
}

.main {
    flex-grow: 1;
    padding-top: 80px; /* Espacio para el header fijo */
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

/* ====================
    2. Encabezado y Navegación (ACTUALIZADO - ORIGINAL)
    ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.header__logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

/* Navegación principal */
.nav {
    display: block;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary-color);
}

/* Sistema de menú hamburguesa para móvil */
.nav__toggle {
    display: none;
}

.nav__toggle-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    content: '';
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    position: absolute;
}

.nav__toggle-icon {
    position: relative;
}

.nav__toggle-icon::before {
    top: -8px;
}

.nav__toggle-icon::after {
    bottom: -8px;
}

/* Animación del menú hamburguesa */
.nav__toggle:checked + .nav__toggle-label .nav__toggle-icon {
    background-color: transparent;
}

.nav__toggle:checked + .nav__toggle-label .nav__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav__toggle:checked + .nav__toggle-label .nav__toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Contador del carrito */
.cart-count {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 1.2rem;
    text-align: center;
    display: inline-block;
}

/* ====================
    3. Hero Section (ORIGINAL)
    ==================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('img/hero-background.jpg') no-repeat center center/cover;
    color: white;
}

.hero__content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem 4rem;
    border-radius: 10px;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ====================
    4. Botones (ORIGINAL)
    ==================== */
.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
}

.btn--primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}


/* ====================
    5.1 id="category-products-grid)
    ==================== */

.category-product-grid {
  /* 1. Activa el modo flexible */
    display: flex;
  /* 2. Permite que los elementos se ajusten a la línea siguiente */
    /* ELIMINAR ESTA LÍNEA INVÁLIDA: flex-direction: column repeat(3,3fr); */
    flex-wrap: wrap; /* Añadir esta línea para que los elementos se ajusten */
  /* (Opcional) Para que los elementos se distribuyan uniformemente */
    justify-content: space-between;
    /* Los siguientes estilos no tienen sentido en este contexto y deben ser removidos */
    /* height: 100px; */ 
    /* margin-bottom: 10px */
}


/* ====================
    5. Tarjetas de Producto y Catálogo (MODIFICADO)
    ==================== */
.featured-products, .catalogo {
    padding: 2rem 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
    gap: 2rem;
    max-width: 1200px;
    height: fit-content;
    margin: 0 auto;
}


.product-card {
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card__title {
    font-size: 1rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.product-card__price {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card__description {
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card__rating {
    margin-bottom: 1rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-stars .far {
    color: #666;
}

/* Categorías en la página principal */
.categories {
    padding: 4rem 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-card {
    background-color: var(--dark-surface);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card__title {
    padding: 0.5rem;
    text-align: justify;
    color: #fff;
    margin: 0;
}

/* ====================
    6. Footer (ORIGINAL)
    ==================== */
.footer {
    background-color: var(--dark-surface);
    color: #b0b0b0;
    padding: 4rem 2rem 1rem;
    margin-top: auto;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer__column {
    margin-bottom: 2rem;
}

.footer__logo-link img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer__heading, .footer__subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__address {
    font-style: normal;
}

.footer__address i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links__icon {
    font-size: 1.5rem;
    color: #b0b0b0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links__icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Estilos adicionales para WhatsApp */
.whatsapp-icon {
    color: #25d366;
}

.whatsapp-icon:hover {
    color: #128c7e;
}

.footer__bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.9rem;
    margin: 0;
}

.footer__policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ====================
    7. Media Queries para Navegación Móvil (ORIGINAL)
    ==================== */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Reducir el min ancho */ gap: 1rem; /* Reducir el espacio */
    }

    .product-card__image {
        height: 250px; /* Altura fija para uniformidad visual en móvil */ 
    }

    /* Mostrar botón hamburguesa en móvil */
    .nav__toggle-label {
        display: flex;
    }

    /* Ocultar navegación por defecto en móvil */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    /* Mostrar navegación cuando el checkbox está activado */
    .nav__toggle:checked ~ .nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__item:last-child {
        border-bottom: none;
    }

    .nav__link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Ajustes para el hero en móvil */
    .hero__title {
        font-size: 2rem;
    }

    .hero__content {
        padding: 2rem;
        margin: 0 1rem;
    }

    /* Footer responsive */
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 1rem;
    }

    .header__logo {
        font-size: 1.5rem;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .section__title {
        font-size: 2rem;
    }
}

/* ====================
    8. Estilos de la Ficha de Producto (ORIGINAL)
    ==================== */
.product-detail {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    color: #fff;
}

.product-gallery {
    flex: 1 1 500px;
    position: relative;
}

.main-image-container {
    background-color: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    padding: 1rem;
    margin-bottom: 1rem;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.product-thumbnails { 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    scroll-snap-type: x mandatory; 
} 
.product-thumbnail { 
    scroll-snap-align: start; 
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.product-thumbnail:hover,
.product-thumbnail.thumbnail-active {
    border-color: var(--primary-color);
}

.product-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    text-align: justify;
}

.product-short-description {
    font-size: 1.0rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 1rem;
}

.product-full-description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-price-new {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ====================
    9. Galería de Producto con Navegación (ORIGINAL)
    ==================== */
.main-image-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-carousel .prev-button,
.main-image-carousel .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-carousel .prev-button:hover,
.main-image-carousel .next-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.main-image-carousel .prev-button {
    left: 10px;
}

.main-image-carousel .next-button {
    right: 10px;
}

@media (max-width: 768px) {
    .main-image-carousel .prev-button,
    .main-image-carousel .next-button {
        font-size: 1.2rem;
        padding: 8px;
        width: 35px;
        height: 35px;
    }
}

/* ====================
    10. Estilos de Infografía (Carrusel y Galería) - ORIGINAL
    ==================== */
.unclick-infographic-section {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #000000 0%, #1e1e1e 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    color: white;
}

/* Estilos generales de sección */
.unclick-infographic-section .infographic-section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 12px;
    background: black;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}
.unclick-infographic-section .infographic-section.no-background {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.unclick-infographic-section .infographic-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.unclick-infographic-section .section-text {
    font-size: 1.1em;
    color: white;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Estilos para el contenedor de 3 columnas (Flexbox) */
.unclick-infographic-section .grid-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1350px;
    margin: 20px auto;
    padding: 20px;
    flex-wrap: wrap;
}
.unclick-infographic-section .grid-item {
    position: relative;
    flex: 1 1 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.unclick-infographic-section .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.unclick-infographic-section .grid-item h2 {
    position: static;
    transform: none;
    text-align: center;
    padding: 10px 0;
    margin-top: 15px;
    background: transparent;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    white-space: normal;
}

/* Estilos para el Carrusel Principal (FUNCIONAL) */
.unclick-infographic-section #main-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1350px;
    height: 600px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: rgba(231, 235, 238, 0.7);
}

.unclick-infographic-section #carousel-container {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.unclick-infographic-section .carousel-slide {
    width: 20%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.unclick-infographic-section .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.unclick-infographic-section .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.unclick-infographic-section .carousel-caption h3 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 2.5em;
    font-weight: bold;
}

.unclick-infographic-section .carousel-caption p {
    color: #ecf0f1;
    margin: 0;
    font-size: 1.0em;
}

/* Botones de navegación */
.unclick-infographic-section #carousel-prev,
.unclick-infographic-section #carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.unclick-infographic-section #carousel-prev { left: 20px; }
.unclick-infographic-section #carousel-next { right: 20px; }

/* Puntos de navegación */
.unclick-infographic-section .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.unclick-infographic-section .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.unclick-infographic-section .carousel-dot.active {
    background: rgba(255,255,255,0.9);
}

/* Estilos para la Galería Interactiva */
.unclick-infographic-section .gallery-container {
    display: flex;
    width: 100%;
    max-width: 1350px;
    height: 720px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 auto;
}
.unclick-infographic-section .gallery-item {
    position: relative;
    flex: 1;
    height: 100%;
    transition: flex 0.5s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}
.unclick-infographic-section .gallery-item:hover {
    flex: 4;
}
.unclick-infographic-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: contrast(0.9);
    transition: all 0.5s ease-in-out;
}
.unclick-infographic-section .gallery-item:hover img {
    opacity: 1;
    filter: contrast(1);
}
.unclick-infographic-section .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}
.unclick-infographic-section .gallery-item:hover .gallery-caption {
    opacity: 1;
}
.unclick-infographic-section .gallery-caption h2 {
    color: white;
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
}
.unclick-infographic-section .buy-button {
    background: #5b38ed;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-block;
}
.unclick-infographic-section .buy-button:hover {
    background: #4a2ac7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ====================
    11. Media Queries para Infografía (ORIGINAL)
    ==================== */
@media (max-width: 1024px) {
    .product-info-grid { 
        flex-direction: column; 
        align-items: center; } 
        
    .product-gallery, .product-info {
        flex: 1 1 100%;
    }
    .unclick-infographic-section .grid-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .unclick-infographic-section .grid-item {
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
}
@media (max-width: 768px) {
    .unclick-infographic-section .infographic-title { font-size: 1.8em; }
    .unclick-infographic-section .infographic-section h2 { font-size: 1.6em; }
    .unclick-infographic-section .infographic-section p, .unclick-infographic-section .section-text { font-size: 0.9em; }

    .unclick-infographic-section .grid-container {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .unclick-infographic-section .grid-container::-webkit-scrollbar {
        display: none;
    }
    .unclick-infographic-section .grid-item {
        flex: 0 0 80%;
        scroll-snap-align: center;
        height: 250px;
    }
    .unclick-infographic-section .grid-item:hover {
        transform: none;
        box-shadow: none;
    }
    .unclick-infographic-section #main-carousel-container {
        height: 350px;
    }
    .unclick-infographic-section .carousel-caption h3 {
        font-size: 1.2em;
    }
    .unclick-infographic-section .carousel-caption p {
        font-size: 0.8em;
    }
    .unclick-infographic-section .gallery-container {
        flex-direction: column;
        height: auto;
    }
    .unclick-infographic-section .gallery-item {
        height: 200px;
        flex: 1 !important;
    }
    .unclick-infographic-section .gallery-item:hover {
        flex: 1 !important;
    }
    .unclick-infographic-section .gallery-caption {
        opacity: 1;
        pointer-events: auto;
    }
    .unclick-infographic-section .gallery-caption h2 {
        font-size: 1.3em;
    }
}
@media (max-width: 480px) {
    .unclick-infographic-section .infographic-title {
        font-size: 1.5em;
    }
    .unclick-infographic-section .infographic-section h2 {
        font-size: 1.4em;
    }
    .unclick-infographic-section #main-carousel-container {
        height: 300px;
    }
}

/* ====================
    12. Estilos de la Sección de Contacto (ORIGINAL)
    ==================== */
.contact {
    text-align: center;
    padding: 4rem 2rem;
}
/* ... resto de estilos de contacto originales ... */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}
.contact__text {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}
.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.btn--whatsapp {
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}
.btn--whatsapp:hover {
    background-color: #128C7E;
}

/* ====================
    13. Estilos de la Sección Sobre Nosotros (ORIGINAL)
    ==================== */
.about {
    padding: 4rem 2rem;
    background-color: var(--dark-surface);
    text-align: center;
}
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}
.about-text {
    margin-bottom: 3rem;
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.1rem;
}
.about-text p {
    margin-bottom: 1rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(91, 56, 237, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: rgba(91, 56, 237, 0.2);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ====================
    14. Estilos del Catálogo Mejorado (ORIGINAL)
    ==================== */
/* Contenedor del selector de ordenamiento */
.sort-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    padding: 0 2rem;
}
.sort-select {
    background-color: var(--dark-surface);
    color: var(--text-color-light);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 250px;
}
.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}
/* Grid del catálogo - 3 columnas */
.catalogo .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tarjetas del catálogo */
.catalog-product-card {
    background-color: var(--dark-surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.catalog-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Contenedor de imagen */
.product-card-image-container {
    position: relative;
    width: 100%;
    height: 50%;
    overflow: hidden;
    background-color: #151616;
}

.catalog-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.catalog-product-card:hover .catalog-product-image {
    transform: scale(1.05);
}
/* Badge de oferta */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: black;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}
/* Contenido de la tarjeta */
.catalog-product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}
.catalog-product-title {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    height: 3.5rem;
    overflow: hidden;
    display: -webkit-box;
}
.catalog-product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}
.catalog-product-rating {
    margin-bottom: 0.8rem;
}
.catalog-product-category {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.catalog-buy-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.catalog-buy-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 56, 237, 0.3);
}
.catalog-buy-button:active {
    transform: translateY(0);
}

/* ====================
    15. Estilos adicionales para categorías (ORIGINAL)
    ==================== */
/* Hero de categorías */
.categories-hero {
    background: linear-gradient(135deg, #000000 0%, #1e1e1e 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}
.categories-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.categories-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-top: 1rem;
}
/* Grid principal de categorías */
.categories-grid-section {
    padding: 4rem 2rem;
    background: var(--dark-background);
}
.categories-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    }
/* Tarjetas modernas de categoría */
.category-card-modern {
    background: linear-gradient(135deg, var(--dark-surface) 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 56, 237, 0.1) 0%, rgba(91, 56, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}


/* estilos de la barra de busqueda (ORIGINAL DE UN SNIPPET ANTERIOR QUE DEBE MANTENERSE)*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background:var(--secondary-color) ;
}


/*barra de busqueda*/
.search-bar {
    flex: wrap;
    flex-direction: column;
    margin: 10 25px;
    position: relative;
    width: 40%;
    background: white;
    border-radius: 20px;
    }

.search-bar input {
    width: 100%;
    padding: 12px 20px 25px 20px;
    border: white;
    border-radius: 20px;
    outline: none;
    }
/* Estilos flotantes (ORIGINAL DE UN SNIPPET ANTERIOR QUE DEBE MANTENERSE)*/
.floating-card {
    position: absolute;
    background-color: white;
    color: var(--dark-surface);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    animation: floatingCard 3s infinite ease-in-out;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-audio {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-video {
    top: 55%;
    right: -15%;
    animation-delay: 1s;
}

.card-light {
    bottom: 25%;
    left: -5%;
    animation-delay: 2s;
}

/* =========================================================================
    16. ESTILOS AÑADIDOS PARA EL NUEVO INDEX.HTML (SIN ROMPER LO ANTERIOR)
    ========================================================================= */

/* --- Contenedor de ancho completo para barras (Nuevo Global) --- */
.container-fluid {
    width: 100%;
    height: max-content;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Layout Principal: Sidebar + Contenido --- */
.main-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    width: 1920px;
    margin: 0 auto;
    /* Ajuste para el header fijo de 2 niveles */
    padding-top: 10%; 
    
}

.main-content-wrapper {
    padding: 20px 0;
}

/* =======================================
    17. Header Enhanced (NUEVO)
    ======================================= */
.header-enhanced {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--dark-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.top-bar {
    border-bottom: 1px solid var(--dark-surface);
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.header__logo img {
    max-width: 100px;
    height: auto;
    display: block;
}

/* Barra de búsqueda mejorada */
.search-bar-enhanced {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    background-color: var(--dark-surface);
    border-radius: 8px;
    overflow: hidden;
}

.search-bar-enhanced input,
.search-bar-enhanced select {
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    background-color: transparent;
    color: var(--text-color-light);
    outline: none;
    appearance: none;
}

.search-bar-enhanced input {
    flex-grow: 1;
}

.search-bar-enhanced select {
    border-left: 1px solid #333;
    cursor: pointer;
    min-width: 150px;
}

.search-bar-enhanced option {
    background-color: var(--dark-surface);
}

.search-bar-enhanced button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-bar-enhanced button:hover {
    background-color: var(--secondary-color);
}

/* Iconos y Contacto */
.header-icons-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-label {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.contact-number {
    font-weight: bold;
    color: var(--text-color-light);
}

.icon-btn {
    position: relative;
    color: var(--text-color-light);
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.icon-btn:hover {
    color: var(--primary-color);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    line-height: 1;
    min-width: 10px;
    text-align: center;
    transform: translate(30%, -30%);
}

/* Navegación principal (Barra inferior - NUEVA) */
.nav-enhanced {
    background-color: var(--dark-surface);
    padding: 0;
}

.nav-enhanced .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list-enhanced {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__item-enhanced a {
    padding: 1rem 0;
    display: block;
    text-decoration: none;
    color: var(--text-color-light);
    transition: color 0.3s ease;
}

.nav__item-enhanced a:hover {
    color: var(--primary-color);
}

.nav-special .btn-nav-special {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-special:hover {
    background-color: var(--secondary-color);
}


/* =======================================
    18. Sidebar de Categorías (NUEVO)
    ======================================= */
.sidebar-categories {
    background-color: var(--dark-surface);
    border-radius: 10px;
    padding: 1rem;
    height: fit-content;
    position: sticky;
    top: 160px; /* Ajuste para el header enhanced */
    min-height: 300px;
}

.sidebar-header {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.sidebar-title {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-item {
    border-bottom: 1px solid #333;
}

.sidebar-category-item:last-child {
    border-bottom: none;
}

.sidebar-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    text-decoration: none;
    color: var(--text-color-light);
    transition: color 0.3s ease;
}

.sidebar-category-link:hover {
    color: var(--primary-color);
}

.category-desc {
    font-size: 0.8rem;
    color: #b1b1b1;
}

/* Sidebar Promo */
.sidebar-promo {
    background-color: var(--secondary-color);
    margin-top: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.sidebar-promo h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: white;
}

.sidebar-promo .promo-btn {
    display: block;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}


/* =======================================
    19. Hero Slider (NUEVO)
    ======================================= */
.hero-slider-section {
    padding: 10;
    margin-bottom: 2rem;
}

.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 90%;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    z-index: 5;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.slide-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4rem;
    /* Oscurecer el fondo para el texto */
    background-color: rgba(0, 0, 0, 0.3); 
}

.slide-content {
    color: lab(74.49% 0.35 0.12);
    max-width: 90%;
    padding: 2rem 0;
}

.slide-content h2 {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.0rem;
    margin-bottom: 1.0rem;
    }

.slide-discount {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slide-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.price-unit {
    font-size: 1.5rem;
    margin-left: 5px;
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}

/* Controles del Slider */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
}

/****************************************************************************/
/****Envio rapido - Caracteristicas destacadas ****************/
/****************************************************************************/
.features-section {
    /* Define el padding para separar la sección del resto del contenido */
    padding: 2rem 0;
    background-color: var(--dark-surface); /* Usa tu color de superficie oscuro */
}

/* 1. Contenedor de la Cuadrícula */
.features-grid {
    /* Usa el contenedor fluido si lo tienes, o define un ancho máximo */
    max-width: 1200px; 
    height: max-content;
    margin: 0 auto;
    padding: 0 20px;
    
    /* Configuración de la cuadrícula: 4 columnas */
    display: grid;
    /* Repite 4 columnas, ajustándose automáticamente si el espacio es limitado */
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); 
    gap: 20px;
}

/* 2. Estilo de Cada Caja de Característica */
.feature-box {
    background-color: var(--dark-background); /* Fondo de la tarjeta */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-height: 180px; /* Asegura una altura mínima uniforme */
    text-align: center;
    
    /* Alinear contenido en la parte inferior (lo que buscabas) */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ¡Esta es la propiedad clave! */
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: #151515; /* Oscurecer un poco al pasar el ratón */
}

/* 3. Estilo del Icono */
.feature-icon {
    /* Mueve el icono a la esquina superior (separándolo del contenido inferior) */
    align-self: center; 
    margin-bottom: 20px; 
    
    /* Círculo de color para el icono */
    background-color: rgba(91, 56, 237, 0.1); /* Color primario con transparencia */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color); /* Color primario para el icono */
}

/* 4. Estilo del Contenido de Texto */
.feature-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 5px 0 5px 0;
}

.feature-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Media Query para móvil */
@media (max-width: 768px) {
    .features-grid {
        /* En móvil, solo 2 columnas o 1, según prefieras. Aquí lo dejo en 2 flexibles. */
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}



/* =======================================
    20. Mejoras en Tarjeta de Producto (NUEVO)
    ======================================= */
/* Contenedor de imagen y acciones rápidas */
.product__image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

/* Acciones rápidas (Botones de favoritos, etc.) */
.quick-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 15;
}

.product-card:hover .quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.quick-action-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Ajustes de contenido */
.product-card__content {
    text-align: center; /* Alineación a la izquierda en el nuevo diseño */
}

.product__category {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.product-card__title {
    font-size: 1.0em;
    line-height: 1.4;
    height: 5em; /* Limita a 3 líneas */
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1rem;
}

/* Contenedor de precios (Añade el precio tachado) */
.product__price-box {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.price__current {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.price__old {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

/* Rating y Contador */
.product__rating-box {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-left: 5px;
}

/* Botón Añadir al carrito mejorado */
.btn-add-to-cart {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-add-to-cart:hover {
    background-color: var(--secondary-color);
}


/* =======================================
    21. Notificaciones (NUEVO - Requerido por index-logic.js)
    ======================================= */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-surface);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 5000;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-success {
    border-left: 5px solid var(--success-color);
}

.notification-info {
    border-left: 5px solid var(--primary-color);
}

/* =======================================
    22. Media Queries Adicionales (NUEVO)
    ======================================= */
@media (max-width: 1200px) {
    /* Ajuste de márgenes para el hero slider */
    .slide-container {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    /* Desactivar el diseño de cuadrícula principal y ocultar la sidebar */
    .main-container {
        grid-template-columns: 1fr;
        padding-top: 130px; /* Ajuste el padding-top para el header */
        gap: 0;
    }

    .sidebar-categories {
        display: none;
        position: static;
        width: 100%;
        border-radius: 0;
        margin-bottom: 1rem;
        padding: 1rem 20px;
    }

    /* Mostrar botón toggle para abrir la sidebar en móvil */
    .sidebar-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        max-width: 1400px;
        margin: 10px auto 0;
        padding: 0.8rem;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }
    
    .hero-slider {
        height: 350px;
    }
    .slide-image img {
        max-width: 300px;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .price-tag {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Ocultar elementos del header en móvil */
    .contact-info, .search-bar-enhanced {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }

    /* Ocultar la barra de navegación inferior en móvil */
    .nav-enhanced {
        display: none;
    }

    .main-container {
        padding-top: 80px;
    }

    .hero-slider {
        height: 300px;
    }
    .slide-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 1rem;
    }
    .slide-content {
        max-width: 100%;
    }
    .slide-image {
        display: none; /* Ocultar imagen en móvil para dar espacio al texto */
    }
}