* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant', serif;
    outline: none; /* Asegura que no haya borde azul */
    box-shadow: none; /* Evita cualquier sombra al presionar */
}

body {
    background-color: #fff;
    color: #333;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px; /* Aumenta el padding vertical (20px) */
    z-index: 1000;
}

/* 📌 Espacio para evitar que el contenido se cubra por el header */
body {
    padding-top: 80px; /* Ajusta según el tamaño del header */
}

/* 📌 Imagen del logo centrada */
.logo {
    flex: 1;
    text-align: center;
}

.logo img {
    height: 90px; /* Ajusta el tamaño de la imagen */
    max-width: 100%;
}


.icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
}


/* 📌 Logo alineado a la izquierda */
.logo h1 {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    font-weight: lighter;
}


/* 📌 Estilos de los enlaces del menú */
.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 20px;
    display: block;
}



/* 📌 Ocultar menú en pantallas grandes */
@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
    
    .nav-links {
        position: static;
        width: auto;
        display: flex;
        flex-direction: row;
        background: none;
        box-shadow: none;
    }
}


/* 📌 Ajuste de imágenes más grandes y productos más juntos */
.products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas */
    gap: 5px; /* Reducir espacio entre productos */
    padding: 10px;
}


/* 📌 Hacer las imágenes más grandes */
.product img {
    width: 100%;
    height: 250px; /* Ajustar altura fija */
    object-fit: cover; /* Asegurar que la imagen cubra todo el espacio */
    border-radius: 5px;
}

.product {
    position: relative;
    width: 100%; /* Ajusta el ancho según sea necesario */

    padding: 10px;
    box-sizing: border-box;
}

.tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #f200af;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.ver-mas-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.ver-mas {
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}
.precio-container {
    display: flex; /* Activa Flexbox */
    align-items: center; /* Alinea verticalmente los elementos */
    gap: 10px; /* Espacio entre los precios */
}

.old-price {
    text-decoration: line-through;
    color: black;
    font-size: smaller; /* Tamaño de fuente más pequeño */
    font-weight: normal; /* Sin negrita */
}

.new-price {
    font-weight: bold; /* Negrita para el nuevo precio */
    color: black;
}

.menu-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: fixed;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f200af; /* Color del texto */
}

.nav-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
}

.nav-links.show {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

h2 {
    color: #f200af; /* Color del texto */
    text-align: center; /* Centrar el texto horizontalmente */
}
/* Estilos generales del carrusel */
.carrusel {
    position: relative;
    width: 100%;
    max-width: 800px; /* Ajusta según sea necesario */
    margin-top: 55px;
    overflow: hidden;
}

/* Contenedor de las imágenes */
.carrusel-contenedor {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Estilos de las imágenes */
.carrusel-img {
    width: 100%;
    flex-shrink: 0;
    display: block;
}

/* Estilos de los botones de navegación */
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    z-index: 10;
}

.carrusel-btn-izquierdo {
    left: 10px;
}

.carrusel-btn-derecho {
    right: 10px;
}

/* Efecto hover para los botones */
.carrusel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Estilos de los indicadores (puntitos) */
.carrusel-indicadores {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carrusel-indicador {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carrusel-indicador.activo {
    background-color: rgba(255, 255, 255, 1);
}