    /* Hero frío 
        .hero-congelados {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #1a3a4a 0%, #0c2b46 50%, #1a4a5a 100%);
            color: #fff;
            padding: 2rem;
            overflow: hidden;
        }
        .hero-congelados .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(12, 43, 70, 0.6);
            z-index: 1;
        }
        /* Efecto escarcha / nieve sutil 
        .hero-congelados::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 60%);
            pointer-events: none;
            z-index: 2;
        }
        .hero-congelados .hero-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
        }
        .hero-congelados h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 8vw, 5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.4);
            letter-spacing: 2px;
        }
        .hero-congelados h1 span {
            color: #8fcbff;
        }
        .hero-congelados p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .hero-congelados .btn {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .hero-congelados .btn:hover {
            background: rgba(255,255,255,0.25);
            transform: scale(1.03);
            box-shadow: 0 0 30px rgba(143, 203, 255, 0.3);
        }

        */

        /* Grid de productos congelados */
        .congelados-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .congelado-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(12, 43, 70, 0.12);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(143, 203, 255, 0.2);
        }
        .congelado-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(12, 43, 70, 0.2);
        }
        .congelado-card .card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
            background: #eaf4fc;
        }
        .congelado-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .congelado-card:hover .card-image img {
            transform: scale(1.03);
        }
        /* Etiqueta de "Congelado" */
        .congelado-card .badge-frio {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(12, 43, 70, 0.8);
            backdrop-filter: blur(4px);
            color: #8fcbff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.3rem 0.9rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            border: 1px solid rgba(143, 203, 255, 0.3);
        }
        .congelado-card .card-body {
            padding: 1.5rem;
        }
        .congelado-card .card-body h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #0C2B46;
        }
        .congelado-card .card-body .desc {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }
        .congelado-card .card-body .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #2c5a7a;
            margin-bottom: 1rem;
            background: #f2f9ff;
            padding: 0.6rem 1rem;
            border-radius: 12px;
        }
        .congelado-card .card-body .meta i {
            margin-right: 0.4rem;
            color: #4a8db7;
        }
        .congelado-card .card-body .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0C2B46;
            margin-bottom: 0.8rem;
        }
        .congelado-card .card-body .price small {
            font-weight: 400;
            font-size: 0.9rem;
            color: #6a8fa8;
        }
        .congelado-card .card-body .btn-add {
            width: 100%;
            padding: 0.7rem;
            background: linear-gradient(135deg, #0C2B46, #1a4a6a);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .congelado-card .card-body .btn-add:hover {
            background: linear-gradient(135deg, #1a4a6a, #2a6a8a);
            transform: scale(1.02);
        }
        .congelado-card .card-body .btn-add i {
            font-size: 1.1rem;
        }

        /* Mensaje vacío */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            background: #f8fcff;
            border-radius: 24px;
            border: 2px dashed #b0d4eb;
            color: #2c5a7a;
        }
        .empty-state i {
            font-size: 3rem;
            color: #8fcbff;
            margin-bottom: 1rem;
        }
        .empty-state h3 {
            font-size: 1.5rem;
            font-weight: 500;
        }

        /* Sección de información extra */
        .info-congelados {
            background: #f2f9ff;
            padding: 2rem 0;
            margin-top: 2rem;
            border-radius: 30px;
        }
        .info-congelados .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        .info-congelados .info-item i {
            font-size: 2.5rem;
            color: #1a4a6a;
            margin-bottom: 0.5rem;
        }
        .info-congelados .info-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: #0C2B46;
        }
        .info-congelados .info-item p {
            font-size: 0.9rem;
            color: #3d6b85;
        }

        @media (max-width: 600px) {
            .congelados-grid {
                grid-template-columns: 1fr;
            }
            .hero-congelados {
                min-height: 50vh;
            }
            .hero-congelados h1 {
                font-size: 2.2rem;
            }
        }