* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
  color-scheme: light;
}

body {
    background-color: #FFF0F5;
    padding: 20px;
}

/* Sección Sobre Mí */
.sobre-mi {
    padding: 4rem 2rem;
    background-color: #FFF8F8;
    text-align: center;
}

.sobre-mi-contenido {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-mi h2 {
    color: #DB7093;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.sobre-mi p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Botón de contacto */
.boton-contacto {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF69B4;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.boton-contacto:hover {
    background-color: #FF1493;
}

@media (max-width: 768px) {
    .sobre-mi {
        padding: 2rem 1rem;
    }
    
    .sobre-mi h2 {
        font-size: 2rem;
    }
}

.burbujas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background-color: #FFF0F5;
    text-align: center;
}

.burbuja {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    border-radius: 12px;
    padding: 1rem;
    height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: box-shadow 0.3s ease; /* Solo transición en la sombra */
}

/* Eliminado el transform y escala en hover */
.burbuja:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.burbuja-icono {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
    border: 2px solid white;
    object-fit: cover;
}

.burbuja-texto {
    flex: 1;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
}

/* Colores */
.burbuja[data-section="cursos"] { background-color: #FF69B4; }
.burbuja[data-section="tiradas"] { background-color: #FF69B4; }
.burbuja[data-section="constelaciones"] { background-color: #FF69B4; }
.burbuja[data-section="biodescodificacion"] { background-color: #FF69B4; }

@media (max-width: 768px) {
    .burbujas {
        grid-template-columns: 1fr;
    }
    
    .burbuja {
        height: 100px;
    }
    
    .burbuja-icono {
        width: 60px;
        height: 60px;
    }
    
    .burbuja-texto {
        font-size: 1.2rem;
    }
}
/* Animación flotante */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.burbuja {
    animation: float 4s ease-in-out infinite;
}


h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #FF69B4;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(255,105,180,0.2);
    padding: 25px;
    box-shadow: 4px 4px 4px 6px rgba(255, 255, 255, 0);
}

.title{
    font-size: 2rem;
    text-align: center;
    margin: 0 auto 40px; /* Centrado mejorado */
    color: #FF69B4;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(255,105,180,0.2);
    padding: 25px;
    /* Nuevos estilos para la caja blanca */
    background: rgba(255, 255, 255, 0.9); /* Fondo blanco con ligera transparencia */
    border-radius: 15px; /* Bordes redondeados como el h2 */
    border: 1px solid rgba(255, 105, 180, 0.3); /* Borde sutil rosa */
    box-shadow: 
        4px 4px 4px 6px rgba(255, 105, 180, 0.1), /* Sombra rosa exterior */
        inset 0 0 15px rgba(255, 255, 255, 0.9); /* Sombra interior para brillo */
    max-width: 800px; /* Ancho máximo como el h2 */
    width: 90%; /* Ancho responsive */
    position: relative;
}

h2 {
    color: #cf2a8b; /* Rosa oscuro/magenta */
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 800px;
    padding-left: 50px;
    background: rgba(255, 182, 193, 0.15);
    border-radius: 15px;
    border-left: 1px solid #FF69B4;
    box-shadow: 4px 4px 4px 6px rgba(255, 105, 180, 0.1);
    position: relative;
    margin-left: auto;
}

.list{
    text-align: left;
}

/* Efecto decorativo opcional */
h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF69B4, transparent);
}

.readings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.reading-card {
    background: white;
    padding: 25px;
    padding-bottom: 25px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255,105,180,0.1);
    transition: transform 0.3s ease;
}

.reading-card:hover {
    transform: translateY(-5px);
}

.reading-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFB6C1;
}

.reading-title {
    color: #DB7093;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.reading-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.5;
}

.reading-price {
    color: #FF1493;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
}

.buy-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF69B4;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #FF1493;
}

.buy-button:hover {
    background-color: #FF1493;
    transform: scale(1.05);
}

.test-section {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    background: rgba(255,182,193,0.1);
    border-radius: 15px;
}

.test-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFB6C1;
    color: #DB7093 !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FF69B4;
    box-shadow: 0 3px 10px rgba(255,182,193,0.3);
    margin: 15px 0;
}

.test-button:hover {
    background-color: #FF69B4;
    color: white !important;
    transform: translateY(-2px);
}

.test-warning {
    color: #DB7093;
    font-size: 0.8em;
    margin-top: 10px;
    font-style: italic;
}

/* Estilos del Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    margin: 0;
}

.nav-list li {
    margin: 0 1.5rem;
}

.nav-list a {
    text-decoration: none;
    color: #DB7093;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-list a:hover {
    color: #FF1493;
}

/* Sección Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 182, 193, 0.3), rgba(105, 1, 51, 0.3)),
                url("antonela.jpg");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 10px; /* Para compensar el header fixed */
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-top: 20rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-style: italic;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-list li {
        margin: 0 1rem;
    }

    .hero{
        margin-top: 0;
        background-size: 150%;
    }
}

/* Estilos About */
.about-content {
    padding: 4rem 2rem;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(255,105,180,0.05);
}

.section-title {
    text-align: center;
    color: #DB7093;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.about-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    text-align: center;
    margin: 2rem 0;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    border: 3px solid #FFB6C1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #FFB6C1;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #FF69B4;
    border-radius: 50%;
    border: 3px solid #FFD1DC;
}

@media (max-width: 768px) {
    .about-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

/* Estilos Contacto */
.contact-section {
    padding-left: 25px;
    background: #FFF0F5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-container {
    max-width: 1200px;
    margin: auto auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255,105,180,0.1);
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.contact-icon {
    font-size: 2rem;
    color: #FF69B4;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-direction: row;
}

.social-icon {
    font-size: 1.8rem;
    color: #DB7093;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FF1493;
}

@media (max-width: 768px) {
    .contact-card {
        max-width: 90%;
    }
    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}


.video-container {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

video {
    max-width: 600px; /* Ajusta según tus necesidades */
    margin: 0 auto;
    display: block;
}

/* Centrar el video */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.video-container iframe {
    width: 80%;  /* Limita el ancho al 80% de la pantalla */
    max-width: 800px; /* Máximo tamaño para evitar estiramiento */
    aspect-ratio: 16 / 9; /* Mantiene la proporción del video */
    border-radius: 10px; /* Esquinas redondeadas opcionales */
    border: none;
}

/* Centrar los botones */
.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.download-button, .back-to-store {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #DB7093;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-button:hover, .back-to-store:hover {
    background-color: #FF1493;
}

/* Estilos del formulario de envío */
.shipping-form-section {
    padding: 4rem 2rem;
    background: #fff;
}

.shipping-container {
    max-width: 800px;
    margin: 0 auto;
}

.shipping-form {
    display: grid;
    gap: 1.5rem;
    padding: 2rem;
    background: #FFF0F5;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(255,105,180,0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #DB7093;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #FFB6C1;
    border-radius: 8px;
    font-size: 1rem;
}

.whatsapp-button {
    background-color: #25D366;
    color: white !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.whatsapp-button i {
    font-size: 1.3rem;
}


        .faq-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .faq-item {
            background: #fff5f8;
            margin-bottom: 20px;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .faq-item h3 {
            color: #7a2048;
            margin-top: 0;
        }
        
        .back-to-store {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 20px;
            background: #7a2048;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }

/* Agrega estos estilos al CSS */
.products-section {
    padding: 4rem 2rem;
    background: #fff0f5;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255,105,180,0.1);
}

.product-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.add-to-cart {
    background: #FF69B4;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #FF1493;
    transform: scale(1.05);
}

/* Estilos del carrito */
.cart-icon {
    position: fixed;
    top: 20px;
    right: 30px;
    background: #FF69B4;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF1493;
    color: white;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1.5rem;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #DB7093;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Nuevos estilos para productos y carrito */
.products-main {
    padding: 100px 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255,105,180,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.product-price {
    color: #FF69B4;
    font-size: 1.4em;
    font-weight: 700;
}

.add-to-cart {
    background: #FF69B4;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #FF1493;
}

/* Estilos mejorados del carrito */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: #FFF0F5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #FFB6C1;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.shipping-form {
    background: #FFF8F8;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.shipping-form h4 {
    color: #DB7093;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #FFB6C1;
    border-radius: 8px;
    font-size: 16px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    font-size: 1.2em;
    font-weight: 700;
    color: #FF69B4;
}

.whatsapp-btn {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para eliminar productos */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.item-info {
    flex: 1;
}

.item-details {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #666;
    font-size: 0.9em;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: #cc0000;
    transform: scale(1.1);
}

.remove-item i {
    font-size: 1.2em;
}

/* Notificaciones */
.cart-notification.removed {
    background: #ff4444;
    border-color: #cc0000;
}
.cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
    z-index: 2000;
}

.cart-notification.removed {
    background: #ff4444;
}

@keyframes slideUp {
    from {
        bottom: -50px;
        opacity: 0;
    }
    to {
        bottom: 20px;
        opacity: 1;
    }
}

/* En styles.css */
#checkout-btn {
    background: #009ee3;
    order: -1; /* Prioridad antes de WhatsApp */
    margin-bottom: 15px;
}

#checkout-btn:hover {
    background: #007fad;
}

.mp-btn {
    background: #009ee3 !important;
    display: block !important;
    width: 100%;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50; /* Verde */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Oculto por defecto */
    z-index: 1000;
}

.cart-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
}

.cart-icon {
    position: right;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
}

/* Menú hamburguesa para móviles */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #DB7093;
    cursor: pointer;
    position: fixed;
    margin-top: 20px;
    
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
    }

    /* Estilos para el menú en móviles */
    .nav-list {
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 0;
        transition: max-height 0.3s ease-in-out;
    }
    
    .nav-list.active {
        max-height: 500px; /* Un valor suficiente para mostrar el menú */
        padding: 10px;
    }
    

.menu-toggle {
    display: block;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 24px;
}


    .cart-icon {
        margin-left: auto; /* Alinea el ícono del carrito a la derecha */
        margin-top: 0;
    }
}
