/* ==========================================================================
   TEMA PREMIUM PIZZERÍA (Con Textura de Ruido y Fondo Degradado)
   ========================================================================== */

/* 1. Fondo con Degradado Radial y Textura Sutil de Ruido/Pizarra */
body.tema-pizzeria {
    padding-top: 50px;
    background-color: #ff5e00;

    /* Inyectamos la textura de ruido con mayor intensidad (opacity 0.18) y el degradado */
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.18'/%3E%3C/svg%3E"),
        radial-gradient(circle at 0% 0%, #ffcc00 0%, #ff5e00 40%, #cc2900 100%);

    /* MAGIA: Fusiona la textura con el fondo para crear el efecto piedra/pizarra */
    background-blend-mode: overlay, normal;

    background-attachment: fixed;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* 2. Efecto de Superposición (Overlapping) para morder el banner */
.overlap-container {
    margin-top: -60px;
    position: relative;
    z-index: 30;
}

@media (min-width: 768px) {
    .overlap-container {
        margin-top: -100px;
    }
}

/* 3. Estilos de las Tarjetas de Pizza tipo Nicepage */
.tarjeta-pizza {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tarjeta-pizza:hover {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

/* 4. Cabecera Fija Blanca */
.sticky-header-pizzeria {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

/* Ocultar scrollbar en la navegación de categorías */
.category-nav::-webkit-scrollbar {
    display: none;
}


/* Efecto de superposición para morder el banner */
.overlap-pizzeria {
    margin-top: -120px !important;
    position: relative;
    z-index: 30;
}