<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ðŸ”¹ RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fefefe;
    color: #333;
    line-height: 1.6;
}

/* ðŸ”¹ HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #DDB8FEE6;
    color: white;
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* ðŸ”¹ LOGO */
header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .logo img {
    max-width: 50px;
}

header .logo h1 {
    font-size: 2rem;
    color: white;
}

/* ðŸ”¹ NAV MENU */
.navegacion {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #6A4C9C;
}

/* ðŸ”¹ MENÃš HAMBURGUESA */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* ðŸ”¹ SEARCH BAR &amp; CART */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ðŸ”¹ Buscador (SE OCULTA EN PANTALLAS PEQUEÃ‘AS) */
.search-bar {
    display: flex;
    align-items: center;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 5px;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    color: #DDB8FEE6;
}

/* ðŸ”¹ ÃCONO CARRITO */
.cart-icon {
    position: relative;
}

.cart-icon i {
    font-size: 24px;
    color: white;
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
}

/* ðŸ”¹ CATÃLOGO */
.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.product {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 15px;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product h3 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #333;
}

.product p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #555;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
    color: #DDB8FEE6;
}

.product-options {
    margin: 10px 0;
}

.product-options label {
    margin-right: 5px;
}

button.add-to-cart {
    background: #DDB8FEE6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

button.add-to-cart:hover {
    background: #6A4C9C;
}

/* ðŸ”¹ FOOTER */
footer {
    background-color: #DDB8FEE6;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
/* Estilos para la notificaciÃ³n */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6A4C9C;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9999;
    max-width: 90%;
    word-wrap: break-word;
}

/* Mostrar la notificaciÃ³n */
.notification.show {
    opacity: 1;
    visibility: visible;
}

/* Inicialmente oculta */
.notification.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ðŸ”¹ RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .header-container {
        flex-direction: flex;
    }

    .logo {
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(127, 75, 141, 0.6); /* Fondo semitransparente */
        backdrop-filter: blur(10px);
        padding: 15px 0;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(127, 75, 141, 0.3);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        text-transform: uppercase;
        color: rgb(0, 0, 0);
        text-decoration: none;
    }
    
    nav ul li a {
        text-decoration: none;
        font-weight: bold;
        color: #fff;
        background-color: #7F4B8D; /* Lila suave */
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 0px 10px rgba(127, 75, 141, 0.6); /* Brillo lila */
    }
    
    nav ul li a:active, 
nav ul li a:focus {
    background-color: #9B4D96 !important; /* Lila fuerte */
    box-shadow: 0px 0px 20px rgba(155, 77, 150, 1), 0px 0px 30px rgba(255, 209, 255, 0.8); /* Efecto neÃ³n */
    transform: scale(1.1);
}
    .menu-toggle {
        background: rgba(214, 166, 253, 0); /* Fondo semitransparente en el botÃ³n */
        border: none;
        padding: 10px;
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1000;
    }

    .menu-toggle i {
        font-size: 30px;
    }

    /* Opcional: animaciÃ³n suave para el menÃº */
    .nav-links {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }


    .cart-icon {
        margin-left: auto;
    }

    .catalog {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .search-bar {
        display: none;
    }
    .notification {
        font-size: 14px; /* Reducir tamaÃ±o de fuente en dispositivos mÃ¡s pequeÃ±os */
        padding: 8px 16px; /* Ajustar el relleno en pantallas pequeÃ±as */
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
    }

    .catalog {
        gap: 15px;
    }

    .product {
        padding: 10px;
    }

    .product img {
        height: 100px;
    }

    .product h3 {
        font-size: 0.9rem;
    }

    button.add-to-cart {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    .notification {
        font-size: 12px; /* Reducir aÃºn mÃ¡s el tamaÃ±o de la fuente en mÃ³viles */
        padding: 6px 12px; /* Ajustar el relleno para pantallas muy pequeÃ±as */
    }
}</pre></body></html>