
        
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
        }
        .option-section {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 15px;
        }
        .price-display {
            font-size: 1.2em;
            font-weight: bold;
            color: #28a745;
        }
        
        .small, small {
            font-size: .8em;
        }

        .product-card {
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
            /*width: 315px;*/
            height: 200px; /* Altura fija para consistencia */
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            border-color: #007bff;
            box-shadow: 0 8px 15px rgba(0, 123, 255, 0.2);
        }
        
        .product-card:active {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
        }
        
        .product-image-container {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px; /* Altura mínima para la imagen */
        }

        .product-image {
            font-size: 1.5rem;
            text-align: center;
            margin: 1rem 0;
        }
        
        .product-price {
            background: #28a745;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffc107;
            color: #000;
            padding: 0.25rem 0.5rem;
            border-radius: 10px;
            font-size: 0.8em;
            font-weight: bold;
        }
        
        .product-options {
            font-size: 0.85em;
            color: #6c757d;
            line-height: 1.3;
        }
        .product-footer {
            margin-top: auto; /* Empuja el footer hacia abajo */
            text-align: center;
             width: 100%;
        }
        

  