/* ===================================
   SZUPPI - Gemeinsame Styles
   Wird von allen Seiten geladen
   =================================== */

/* Glass Effect (Navigation, Karten) */
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 111, 77, 0.1);
}

/* Pulse Ring Animation (Betriebsferien-Indikator) */
.pulse-ring {
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Produkt-Karten: freigestellte Bilder */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 111, 77, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.product-image--cutout {
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-image--cutout.bg-langos {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.product-image--cutout.bg-pizza {
    background: linear-gradient(135deg, #fee2e2 0%, #fef3c7 100%);
}

.product-image--cutout.bg-burger {
    background: linear-gradient(135deg, #fef9c3 0%, #ffedd5 100%);
}

.product-image--cutout img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)) drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.product-card:hover .product-image--cutout img {
    transform: scale(1.1) rotate(-2deg);
}
