        :root {
            --primary-color: #FF4B2B;
            --secondary-color: #2B2D42;
            --text-color: #FFFFFF;
            --background-color: #1A1A1A;
            --card-background: #2C2C2C;
            --hover-color: #FF6B4A;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .banner {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://impacta100.com/wp-content/uploads/2024/09/harburguesa-comida-rapida.jpeg');
            background-size: cover;
            background-position: center;
            padding: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 60px;
            color: white;
        }

        .logo {
            width: 160px; /* Permite que conserve su tamaño original */
            height: auto; /* Permite que conserve su altura original */
            margin-bottom: 10px; /* Mantén el margen inferior si es necesario */
            background-color: transparent; /* Elimina cualquier fondo adicional */
            border-radius: 0; /* Elimina el efecto circular */
            padding: 0; /* Elimina el padding adicional */
        }

        .restaurant-name {
            font-size: 24px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .ver-mas-btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
            font-weight: bold;
        }

        .expanded-content {
            display: none;
            margin-top: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 15px;
            border-radius: 10px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .contact-capsule {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 8px 15px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .contact-capsule i {
            font-size: 16px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-icons a {
            color: var(--text-color);
            font-size: 24px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary-color);
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .category-dropdown {
            width: 100%;
            padding: 12px 20px;
            font-size: 16px;
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            background-color: var(--secondary-color);
            color: var(--text-color);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF4B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }

        .category-dropdown:hover, .category-dropdown:focus {
            border-color: var(--hover-color);
            box-shadow: 0 0 0 2px rgba(255, 75, 43, 0.2);
            outline: none;
        }

        .category-dropdown option {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }

        .categories {
            width: 100%;
            max-width: 300px;
            margin: 0 auto 15px;
        }

        .icons {
            display: flex;
            gap: 20px;
        }

        .icon-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .icon {
            position: relative;
            background-color: transparent;
            color: var(--text-color);
            border: none;
            font-size: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 50%;
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cart-indicator {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--primary-color);
            color: var(--text-color);
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 12px;
            font-weight: bold;
            display: none;
        }

        .icon:hover::after {
            content: attr(title);
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .icon:hover::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent var(--secondary-color) transparent;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .icon:hover::after,
        .icon:hover::before {
            opacity: 1;
        }

        .search-bar {
            margin: 20px auto;
            max-width: 600px;
            width: 90%;
            position: relative;
        }
        
        .search-bar input {
            width: 100%;
            padding: 10px;
            border-radius: 20px;
            border: 1px solid #ccc;
            background-color: var(--secondary-color);
            color: var(--text-color);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-bar input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 5px var(--primary-color);
        }
        

        /* Asegura que las imágenes del producto tengan el mismo tamaño */
.product-image, .carousel-image, .featured-card img {
    width: 100% !important; /* Ancho completo */
    height: 200px !important; /* Altura fija */
    object-fit: cover !important; /* Asegura que la imagen cubra el espacio sin deformarse */
}

/* Asegurar que el contenedor del carrusel se vea bien */
.image-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 200px; /* Altura fija igual a las imágenes */
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Ocultar todas las imágenes excepto la activa */
}

.carousel-image.active {
    display: block; /* Mostrar la imagen activa */
}

/* Botones del carrusel */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

        
        /* Fondo del modal */
.image-modal {
    display: none; /* Ocultar por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

/* Imagen dentro del modal */
.modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Botón de cierre */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2100;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}


        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 20px;
        }

        .product-card {
            background-color: var(--card-background);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(255,255,255,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

       /* Estilo para centrar títulos en productos destacados y tienda */
       .product-title, .featured-info h3 {
        text-align: center; /* Centrar texto */
        margin: 15px 0; /* Espaciado superior e inferior */
        font-size: 18px; /* Tamaño consistente */
        color: var(--primary-color); /* Asegurar color primario */
    }

        .product-description {
            font-size: 16px;
            color: #CCCCCC;
            margin-bottom: 10px;
        }

        .product-price, .featured-price {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #e8350d;
            text-align: center;
        }

        .product-variations {
            font-size: 16px;
            padding: 10px;
            margin-bottom: 15px;
            background-color: var(--secondary-color);
            color: var(--text-color);
            border: none;
            border-radius: 10px;
            width: 100%;
        }

        .product-extras {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 15px;
        }

        .product-extras label {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Contenedor de productos destacados */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Igual que .products-grid */
    gap: 20px;
    padding: 20px;
}

/* Tarjeta de producto destacado */
.featured-card {
    background-color: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Asegura el contenido centrado */
    text-align: center; /* Títulos y texto centrado */
    padding: 20px; /* Espaciado interno */
}

.featured-card:hover {
    transform: translateY(-5px);
}


/* Información del producto */
.featured-info {
    padding: 20px 0 10px 0; /* Margen superior/inferior ajustado */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-info h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 10px; /* Margen superior para separarlo */
    margin-bottom: 10px; /* Margen inferior como espacio */
    text-align: center; /* Centrado */
}

.featured-info p {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 10px;
    text-align: center; /* Asegurar centrado */
}



/* Resaltar la palabra "Destacado" */
.featured-grid .featured-card .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #FF4500, #FF6347);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}




/* Botón de los productos destacados */
.featured-info .add-to-cart {
    background-color: var(--primary-color); /* Color primario */
    color: var(--text-color); /* Texto en blanco */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Centrar botones */
.featured-info .product-actions {
    display: flex;
    gap: 10px;
    justify-content: center; /* Centrar los botones */
    width: 100%; /* Asegurar que ocupe todo el ancho */
}

.featured-info .add-to-cart:hover {
    background-color: var(--hover-color); /* Cambia al color de hover */
}

.add-to-cart, .share-product {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.add-to-cart:hover {
    background-color: var(--hover-color);
}

.share-product {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.share-product:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilo para los títulos de las secciones principales */
.featured-products h2, .store-products h2 {
    text-align: center; /* Centrar el texto */
    font-size: 30px; /* Ajustar tamaño del título */
    margin-top: 30px; /* Margen superior */
    margin-bottom: 20px; /* Espaciado inferior */
    color: var(--primary-color); /* Color principal */
}

/* Centrar el contenedor de productos destacados */
.featured-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Cuatro columnas */
    gap: 20px; /* Espaciado entre tarjetas */
    justify-content: center; /* Centrar horizontalmente */
    padding: 20px;
}



        
        .store-products h2 {
            font-size: 24px;
            color: var(--text-color);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        
        .btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.2s ease;
        }

        .btn-full {
            width: 100%; /* Ocupa el ancho completo del contenedor */
            display: block; /* Asegura que el botón sea un elemento de bloque */
            text-align: center; /* Centra el texto dentro del botón */
        }
        
        
        .btn-primary {
            background-color: #0066cc;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #0055aa;
        }
        
        .btn-secondary {
            background-color: #e0e0e0;
            color: #333;
        }
        
        .btn-secondary:hover {
            background-color: #d0d0d0;
        }
        
        .stories-categories {
            display: flex;
            gap: 15px;
            padding: 20px;
            overflow-x: scroll; /* Changed from auto to scroll */
            background: var(--bg-color);
            justify-content: center; /* Changed to center for desktop */
            -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
            padding-left: 20px; /* Ensure first category is visible */
            scrollbar-width: none; /* Hide scrollbar Firefox */
            -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
            width: 100%; /* Added to contain width */
            box-sizing: border-box; /* Added to include padding in width calculation */
            background: linear-gradient(45deg, #ff401e, #ff9f05);

          }
          @media screen and (max-width: 768px) {
            .stories-categories {
              justify-content: flex-start; /* Override center alignment on mobile */
              padding: 20px; /* Even padding all around */
            }
        
            .story-category:first-child {
              margin-left: 0; /* Reset margin for first category */
            }
          }
          .story-category {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
            cursor: pointer;
            flex-shrink: 0; /* Prevent category from shrinking */
          }
          .story-category:first-child {
            margin-left: 0; /* Ensure first category starts at the left edge */
          }
          .story-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            padding: 3px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            margin-bottom: 8px;
          }
          .story-circle.active {
            background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
          }
          .story-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid white;
            object-fit: cover;
          }
          .story-name {
            font-size: 12px;
            text-align: center;
            color: var(--text-color);
          }
          .category-tabs {
            display: none; /* Removed old category tabs */
          }
        
        

        .add-to-cart {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: auto;
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .add-to-cart:hover {
            background-color: var(--hover-color);
        }

        .cart {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background-color: var(--card-background);
            border-left: 2px solid var(--primary-color);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            transition: right 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            padding: 20px;
            overflow-y: auto;
            z-index: 2000;
        }

        .cart.open {
            right: 0;
            opacity: 1;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--primary-color);
            padding-bottom: 15px;
        }

        .cart-close {
            font-size: 24px;
            cursor: pointer;
            color: var(--text-color);
            transition: color 0.3s;
        }

        .cart-close:hover {
            color: var(--primary-color);
        }

        .cart-items {
            margin-bottom: 20px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .cart-item-info {
            flex-grow: 1;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 5px;
            margin: 0 10px;
        }

        .quantity-btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .quantity-btn:hover {
            background-color: var(--hover-color);
        }

        .cart-item-remove {
            color: var(--primary-color);
            cursor: pointer;
        }

        .cart-total {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .delivery-method {
            margin-bottom: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
        }

        .delivery-method select {
            width: 100%;
            padding: 10px;
            background-color: var(--card-background);
            color: var(--text-color);
            border: 1px solid var(--primary-color);
            border-radius: 5px;
        }

        .delivery-form {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            display: none;
        }

        .store-pickup-form {
            display: none;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
        }

        .table-form {
            display: none;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #2C2C2C;
            color: var(--text-color);
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--hover-color);
            outline: none;
        }

     
      .checkout-btn {
    margin: 20px 0; /* Añade espacio de 20px arriba y abajo del botón */
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}



        .checkout-btn:hover {
            background-color: #FF0000;
            transform: translateY(-3px);
        }

        footer {
            background-color: var(--secondary-color);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        footer p {
            margin: 5px 0;
        }

        footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .footer-logo {
            max-width: 150px;
            margin-top: 10px;
        }

        .qr-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1500;
        }

        .qr-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--card-background);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        #qr-code {
            margin-bottom: 20px;
        }

        #download-qr,
        #close-qr {
            margin: 10px;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            border-radius: 20px;
            cursor: pointer;
        }

        #download-qr:hover,
        #close-qr:hover {
            background-color: var(--hover-color);
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1500;
        }

        .popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--card-background);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        #table-number {
            margin: 10px 0;
            padding: 5px;
            width: 100%;
        }

        #call-waiter,
        #close-waiter-popup {
            margin: 10px;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            border-radius: 20px;
            cursor: pointer;
        }

        #call-waiter:hover,
        #close-waiter-popup:hover {
            background-color: var(--hover-color);
        }

        .share-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1500;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .share-popup.active {
            opacity: 1;
        }

        .share-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--card-background);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .share-content button {
            display: block;
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .share-content button:hover {
            background-color: var(--hover-color);
        }

        footer p strong {
            white-space: nowrap;
            display: inline-block;
        }

        @media (max-width: 768px) {
            footer p strong {
                font-size: 18px;
            }
        }

    
 @media (max-width: 768px) {
            .menu-header {
                flex-direction: column;
                gap: 15px;
            }

            .categories {
                margin-bottom: 15px;
            }

            .icons {
                justify-content: space-around;
                width: 100%;
            }

            .icon-container {
                flex: 1;
                max-width: 25%;
            }

            .icon {
                margin-bottom: 5px;
            }

            .icon-label {
                display: block;
                font-size: 12px;
                margin-top: 5px;
                color: var(--text-color);
            }

            .icon-container {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .icon {
                font-size: 28px;
                width: 50px;
                height: 50px;
            }

            .products-grid, .featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Cuatro columnas en pantallas grandes */
    gap: 20px;
    padding: 20px;
}

            .product-card {
                font-size: 14px;
            }

            .product-title {
                font-size: 25px;
            }

            .product-description {
                font-size: 18px;
            }

            .product-price {
                font-size: 30px;
            }

            .add-to-cart {
                font-size: 14px;
                padding: 10px;
            }

            .cart {
                width: 100%;
                right: -100%;
            }

            .cart.open {
                right: 0;
            }

            .qr-content,
            .popup-content,
            .share-content {
                width: 90%;
                max-width: 300px;
            }
        }

    /* Ajuste para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
    .products-grid, .featured-grid {
        grid-template-columns: 1fr !important;  /* Una columna en pantallas pequeñas */
        gap: 15px !important;  /* Menor espacio entre los productos */
        padding: 10px !important;  /* Ajuste de padding */
    }

    .product-card, .featured-card {
        display: block !important; /* Asegura que los productos sean bloques */
    }
}

/* Ajuste adicional para móviles más pequeños */
@media screen and (max-width: 480px) {
    .products-grid, .featured-grid {
        grid-template-columns: 1fr !important;  /* Una columna */
        gap: 10px !important;  /* Espacio más pequeño entre productos */
        padding: 5px !important;  /* Ajuste más estrecho */
    }
}

