        /* Carousel Styles */
        .banner-carousel {
            margin-bottom: 3rem;
        }
        .carousel-item {
            height: 400px;
            overflow: hidden;
            position: relative;
        }
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        /**
         * Estilos para el texto que se muestra en cada diapositiva del carrusel.
         *
         * position: absolute;  // Posiciona el elemento en relaci n con su contenedor
         * top: 50%;            // Centra el elemento verticalmente
         * transform: translateY(-50%); // Ajusta la posici n vertical del elemento
         * bottom: auto;        // Desactiva la posici n bottom
         * text-align: center;  // Centra el texto horizontalmente
         * left: 10%;           // Deja un margen izquierdo del 10%
         * right: 10%;          // Deja un margen derecho del 10%
         */
        .carousel-caption {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-align: center;
            left: 10%;
            right: 10%;
            display: flex !important;
            flex-direction: column;
            align-content: center;
            justify-content: flex-start;
            align-items: center;
        }
        .carousel-caption h2 {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .carousel-caption p {
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            max-width: 600px;
        }
        @media (max-width: 768px) {
            .carousel-caption {
                display: block !important;
                padding: 1rem;
            }
            .carousel-caption h2 {
                font-size: 1.5rem;
            }
            .carousel-caption p {
                font-size: 1rem;
            }
            .carousel-caption .btn {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
            }
        }
        
        /* Floating Buttons Styles */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        /* Cart Float Button Styles */
        .cart-float {
            position: relative;        }
        .cart-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        .cart-btn i {
            font-size: 24px;
        }
        .cart-btn:hover {
            background-color: #0056b3;
            transform: scale(1.1);
        }
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #dc3545;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }
        .whatsapp-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            animation: pulse 1.5s infinite;
        }
        .whatsapp-btn i {
            font-size: 32px;
        }
        .whatsapp-btn:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
            animation: none;
        }
        
        /* Cart Sidebar Styles */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 350px;
            max-width: 100%;
            height: 100%;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1010;
            transition: right 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
        }
        .cart-sidebar.open {
            right: 0;
        }
        .cart-header {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cart-header h4 {
            margin: 0;
            font-weight: 600;
        }
        .close-cart {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #666;
            transition: color 0.2s;
        }
        .close-cart:hover {
            color: #dc3545;
        }
        .cart-items {
            flex-grow: 1;
            overflow-y: auto;
            padding: 20px;
        }
        .empty-cart-message {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 200px;
            color: #999;
            text-align: center;
        }
        .empty-cart-message i {
            font-size: 50px;
            margin-bottom: 15px;
        }
        .cart-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .cart-item-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
        }
        .cart-item-details {
            flex-grow: 1;
        }
        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        .cart-item-price {
            color: #007bff;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        .quantity-btn {
            width: 30px;
            height: 30px;
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .quantity-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: #e9ecef;
        }
        .quantity-input {
            width: 40px;
            height: 30px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }
        .cart-item-price-selector {
            margin-top: 8px;
        }
        .price-type-select {
            width: 100%;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f8f9fa;
            font-size: 0.9em;
        }
        .cart-item-remove {
            color: #dc3545;
            background: none;
            border: none;
            cursor: pointer;
            margin-left: auto;
            align-self: flex-start;
        }
        .cart-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        /* Cart Overlay */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1005;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .cart-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        
        /* Notification Styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            background-color: #28a745;
            color: white;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1100;
        }
        
        /* Product Price Select Styles */
        .form-select.product-price-select {
            font-size: 0.9rem;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            background-color: #f8f9fa;
            border: 1px solid #ced4da;
        }
        .notification.show {
            transform: translateY(0);
            opacity: 1;
        }
        .notification.error {
            background-color: #dc3545;
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .view-product-btn {
            background-color: rgb(0, 0, 0) !important;
            color: white;
            border: none;
            border-color: white;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        .view-product-btn:hover {
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
        }
        .btn-secondary {
            background-color: rgb(0, 0, 0) !important;
        }
        .btn-secondary:hover {
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
        }


        .btn-cart-wpp{
            background-color: #25D366;
            color: white;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        .btn-cart-wpp:hover {
            background-color: #128C7E;
            color: white;
        }