        /* ===== RESET Y BASE ===== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Poppins", sans-serif;
            background: white;
            color: #fff;
            min-height: 100vh;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            overflow-x: hidden;
        }


        /* footer styles (kept) */
        footer .footer-item {
            text-align: center;
            color: black;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        footer .footer-item img {
            width: 28px;
            height: 28px;
            margin-bottom: 2px;
            transition: transform 0.2s ease;
        }

        footer .footer-item:hover img {
            transform: scale(1.3);
        }

        footer .footer-item:hover span {
            color: #f24e1e;
            font-weight: bold;
        }


        #special-product {
            margin-bottom: 20px;
        }


        .product-card {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 14px;
            margin: 10px;
            border-radius: 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
        }

        .product-card-2 {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 14px;
            margin: 10px;
            border-radius: 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
            margin-bottom: 80px;

        }


        .product-image {
            width: 80px;
            height: 80px;
            margin-right: 15px;
            border-radius: 5px;
        }

        .product-info {
            flex-grow: 1;
        }

        .product-name {
            font-size: 16px;
            font-weight: bold;
            text-align: left;
            color: black;
        }

        .product-description {
            font-size: 14px;
            color: #555;
            margin: 13px 0;
            text-align: left;
        }


        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 38px;
        }

        .product-price {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
        }

        .quantity-btn {
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            border-radius: 3px;
            width: 25px;
            height: 15px;
            font-size: 16px;
            cursor: pointer;
        }

        .quantity {
            width: 40px;
            text-align: center;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 5px;
        }

        .imput {
            width: 25px;
            height: 15px;
        }



        button {
            background-color: black;
            color: white;
            border: none;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            cursor: pointer;
            font-size: 16px;
            margin: 0 5px;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #0056b3;
        }


        #container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px;
            padding: 20px;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }


        #total-price {
            font-size: 16px;
            font-weight: bold;
            color: black;
        }

        #next-button {
            padding: 25px 70px;
            font-size: 18px;
            font-weight: bold;
            color: white;
            background-color: green;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arrow {
            margin-left: 10px;
        }



        .cart-title {
            color: white;
            font-size: 2em;
            text-align: center;
            margin: 20px 0;
        }

        h5 {
            color: white;
            font-size: 1em;
            text-align: center;
            margin: 20px 0;
        }



        .instagram-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), -2px -2px 4px rgba(255, 255, 255, 0.7);
            border: 1px solid #ddd;
        }

        .instagram-icon {
            width: 60px;
            height: 60px;
            margin-right: 5px;
        }

        .instagram-container span {
            font-size: 16px;
            color: #333;
            font-weight: bold;
        }


        .button-container-1 {
            position: fixed;
            bottom: 120px;
            right: 15px;
            /* Ajusta el 5% según desees la distancia desde el lado derecho */
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            border-radius: 50%;
            width: 70px;
            /* Tamaño del círculo */
            height: 70px;
            /* Tamaño del círculo */
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .button-container-1:hover {
            transform: scale(1.1);
            /* Efecto de zoom al pasar el mouse */
        }

        .cart-icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .cart-icon img {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

        #cart-count {
            position: absolute;
            top: -10%;
            /* Subir el contador por encima del icono */
            left: 10%;
            /* Mover el contador hacia la izquierda */
            background-color: red;
            color: white;
            font-size: 12px;
            font-weight: bold;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .category-header {
            width: 100%;
            background-color: rgba(240, 9, 9, 0.7);
            /* Fondo negro con transparencia */
            color: white;
            /* Color del texto blanco */
            font-size: 18px;
            /* Tamaño del texto */
            font-weight: bold;
            /* Negrita */
            text-align: center;
            /* Centrar el texto */
            padding: 10px 0;
            /* Espaciado interno vertical */
            margin: 0;
            /* Quitar márgenes */
            margin-bottom: 20px;
            margin-top: 30px;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
            /* Sombra sutil */
        }



        /*IMAGENES AGRANDADAS*/
        /* Contenedor de productos */









        /* Modal */
        .modal {
            display: none;
            /* Ocultar el modal por defecto */
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            overflow: hidden;
        }

        #full-image {
            max-width: 100%;
            max-height: 100%;
        }

        /* Botón de cierre */
        .close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.8);
            color: black;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            cursor: pointer;
        }