/**
 * Sikulo Interactive Catering - Frontend Styles
 * Luxury Mediterranean Design with Glassmorphism
 */

/* ============================================
   CSS VARIABLES - Palette Sikulo
   ============================================ */
:root {
    /* Colors */
    --sikulo-turquoise: #00b8a9;
    --sikulo-turquoise-light: #2dd4bf;
    --sikulo-turquoise-dark: #00897b;
    --sikulo-red: #e63946;
    --sikulo-red-light: #ff6b6b;
    --sikulo-beige: #f8f4e6;
    --sikulo-beige-dark: #e8e0cc;
    --sikulo-dark: #1a1a2e;
    --sikulo-gray: #6b7280;
    
    /* Glassmorphism */
    --glass-bg: rgba(248, 244, 230, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --spacing-hero: 100px;
    --spacing-card: 20px;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-cinematic: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
.sikulo-catering-hero {
    position: relative;
    width: 100%;
    overflow: visible; /* CRITICAL: permette cards orbitali fuori */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box; /* FIX v2.2.1: senza questo, padding causava overflow orizzontale su mobile (width:100% + padding = larghezza reale > viewport) */
}

.sikulo-catering-hero,
.sikulo-catering-hero *,
.sikulo-modal-container,
.sikulo-modal-container *,
.sikulo-mobile-hint {
    box-sizing: border-box;
}

/* ============================================
   BACKGROUND ELEMENTS - RIMOSSI
   ============================================ */
.sikulo-hero-background {
    display: none; /* Background orbs disabilitato */
}

/* ============================================
   BACKGROUND ELEMENTS - RIMOSSI
   ============================================ */
.sikulo-hero-background {
    display: none;
}

.sikulo-gradient-orb {
    display: none;
}

/* ============================================
   HERO CONTAINER
   ============================================ */
.sikulo-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
/*
    max-width: 1400px;
    height: 900px;
*/
    display: flex;
    align-items: center;
    justify-content: center;
    /* NO overflow hidden - permette cards orbitali fuori */
}

/* ============================================
   HERO CIRCLE - Central Element
   ============================================ */
.sikulo-hero-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
    z-index: 100;
    /* Clean circle - NO border */
/*
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05) inset;
*/
    animation: float-hero 6s ease-in-out infinite;
    opacity: 1 !important;
}

@keyframes float-hero {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.sikulo-hero-circle:hover {
    transform: translateY(-12px) scale(1.03);
}

.sikulo-hero-circle.is-clicked {
    /* Stato dopo click - nessuna espansione fullscreen */
}

.sikulo-hero-image-wrapper {
    position: relative;
    width: 100%;  /* FIX v2.2.1 CRITICO: era 400px fisso! Su mobile .sikulo-hero-circle si restringe (280px) ma questo wrapper restava 400px e FUORIUSCIVA dal box (nessun overflow:hidden sul parent), causando il cerchio spostato/tagliato visto su mobile */
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.sikulo-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-cinematic);
}

.sikulo-hero-circle:hover .sikulo-hero-image {
    transform: scale(1.1);
}

.sikulo-hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent; /* RIMOSSO gradient overlay */
    opacity: 0; /* Disabilitato */
    pointer-events: none;
}

/* Hero Content */
.sikulo-hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    transition: opacity 0.5s ease;
}

/* Hero content NON diventa trasparente quando aperta */
.sikulo-hero-circle.is-opened .sikulo-hero-content {
    opacity: 1; /* Sempre visibile (era 0.3) */
}

.sikulo-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.sikulo-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0 0 20px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Badge Esplora - Versione Raffinata */
.sikulo-explore-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px; /* Ridotto da 12px 24px */
    background: rgba(230, 57, 70, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 6px; /* Meno arrotondato (era 100px) */
    color: #fff;
    font-size: 0.8rem; /* Ridotto da 0.95rem */
    font-weight: 500; /* Meno bold (era 600) */
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sikulo-explore-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    background: rgba(230, 57, 70, 1);
}

.sikulo-hero-circle.is-opened .sikulo-explore-badge {
    opacity: 0;
    pointer-events: none;
}

.sikulo-explore-badge svg {
    width: 14px; /* Ridotto da 20px */
    height: 14px;
    opacity: 0.9;
}

/* Ripple Effect */
.sikulo-hero-ripple {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #ebe3d9;
    opacity: 0;
    animation: ripple-pulse 3s ease-out infinite;
}

@keyframes ripple-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ============================================
   FLOATING CARDS - Orbital Layout
   ============================================ */
.sikulo-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible; /* CRITICAL */
}

.sikulo-floating-card-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Stato iniziale: sovrapposto alla hero */
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    pointer-events: auto;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 50;
}

/* Posizionamento orbitale dopo esplosione */
.sikulo-floating-card-wrapper.is-visible {
    opacity: 1;
    transform: translate(
        calc(-50% + var(--card-x)),
        calc(-50% + var(--card-y))
    ) scale(1);
}

/* Floating indipendente per ogni card */
.sikulo-floating-card-wrapper.is-visible:nth-child(1) {
    animation: float-card-1 5.5s ease-in-out infinite;
}

.sikulo-floating-card-wrapper.is-visible:nth-child(2) {
    animation: float-card-2 6.2s ease-in-out infinite;
}

.sikulo-floating-card-wrapper.is-visible:nth-child(3) {
    animation: float-card-3 5.8s ease-in-out infinite;
}

.sikulo-floating-card-wrapper.is-visible:nth-child(4) {
    animation: float-card-4 6.5s ease-in-out infinite;
}

@keyframes float-card-1 {
    0%, 100% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y))) scale(1); }
    50% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y) - 8px)) scale(1); }
}

@keyframes float-card-2 {
    0%, 100% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y))) scale(1); }
    50% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y) + 8px)) scale(1); }
}

@keyframes float-card-3 {
    0%, 100% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y))) scale(1); }
    50% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y) - 6px)) scale(1); }
}

@keyframes float-card-4 {
    0%, 100% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y))) scale(1); }
    50% { transform: translate(calc(-50% + var(--card-x)), calc(-50% + var(--card-y) + 6px)) scale(1); }
}

.sikulo-floating-card {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    /* Clean circle - NO border */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05) inset;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sikulo-floating-card:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.sikulo-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Card Media - Circolare in background */
.sikulo-card-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--sikulo-beige-dark);
    border-radius: 50%;
}

.sikulo-card-image,
.sikulo-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-cinematic);
}

.sikulo-floating-card:hover .sikulo-card-image,
.sikulo-floating-card:hover .sikulo-card-video {
    transform: scale(1.15);
}

.sikulo-card-overlay {
    display: none; /* Overlay rimosso - immagini pulite */
}

/* Card Content - Sopra l'immagine */
.sikulo-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 10px;
}

.sikulo-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    padding: 0 10px;
}

.sikulo-card-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    padding: 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card CTA - Compatto per layout circolare */
.sikulo-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--sikulo-turquoise);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(0, 184, 169, 0.4);
    margin-top: auto;
}

.sikulo-card-cta:hover {
    background: var(--sikulo-turquoise-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.5);
}

.sikulo-card-arrow {
    transition: transform 0.3s var(--transition-smooth);
    width: 14px;
    height: 14px;
}

.sikulo-card-cta:hover .sikulo-card-arrow {
    transform: translateX(3px);
}

/* ============================================
   MODAL - Fullscreen Experience
   ============================================ */
.sikulo-modal-container {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-cinematic);
}

.sikulo-modal-container.is-open {
    opacity: 1;
    pointer-events: auto;
}

.sikulo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sikulo-modal-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s var(--transition-cinematic);
}

.sikulo-modal-container.is-open .sikulo-modal-content-wrapper {
    transform: scale(1);
}

.sikulo-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000; /* Aumentato per essere sempre sopra */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.sikulo-modal-close-btn:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.sikulo-modal-close-btn svg {
    color: var(--sikulo-dark);
    width: 24px;
    height: 24px;
}

/* Modal Media (immagini/video nello swiper) */
.sikulo-modal-media {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.sikulo-modal-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 60px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Modal Body - Container for Swiper Gallery */
.sikulo-modal-body {
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 20px;
}

@media (max-width: 768px) {
    .sikulo-modal-body {
        min-height: 70vh;
        padding: 0;
    }
}

/* Modal Gallery */
.sikulo-modal-gallery {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--sikulo-beige-dark);
}

/* Modal Mobile Gallery - Full Screen Swiper */
.sikulo-modal-swiper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

@media (max-width: 768px) {
    .sikulo-modal-swiper {
        min-height: 80vh;
        flex: 1;
    }
}

.sikulo-modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.sikulo-modal-slide-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.sikulo-modal-slide-content img,
.sikulo-modal-slide-content video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 0; /* v2.2.1: l'immagine ora è l'ultimo elemento (dopo titolo+descrizione) */
}

.sikulo-modal-slide-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sikulo-modal-slide-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 20px; /* v2.2.1: spazio prima dell'immagine che ora segue il testo (su mobile) */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Swiper Navigation for Mobile */
.sikulo-modal-swiper .swiper-button-prev,
.sikulo-modal-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--sikulo-turquoise);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sikulo-modal-swiper .swiper-button-prev::after,
.sikulo-modal-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.sikulo-modal-swiper .swiper-pagination {
    bottom: 20px;
}

.sikulo-modal-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.sikulo-modal-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .sikulo-modal-inner {
        display: block;
        padding: 0;
        gap: 0;
        height: 100%;
        max-height: none;
        overflow: hidden;
    }
    
    .sikulo-modal-content-wrapper {
        width: 95%;
        height: 90vh;
        max-height: 90vh;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }
    
    .sikulo-modal-close-btn {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }
    
    .sikulo-modal-slide-content {
        padding: 0 12px;
    }
    
    .sikulo-modal-slide-content img,
    .sikulo-modal-slide-content video {
        max-height: 50vh;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .sikulo-modal-slide-title {
        font-size: 22px;
    }
    
    .sikulo-modal-slide-description {
        font-size: 15px;
        margin: 0 0 16px;
    }
    
    .sikulo-modal-swiper .swiper-button-prev,
    .sikulo-modal-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .sikulo-modal-swiper .swiper-button-prev::after,
    .sikulo-modal-swiper .swiper-button-next::after {
        font-size: 16px;
    }
}

.sikulo-swiper {
    width: 100%;
    height: 500px;
}

.sikulo-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sikulo-dark);
}

.sikulo-swiper .swiper-slide img,
.sikulo-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sikulo-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.sikulo-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sikulo-turquoise);
}

.sikulo-swiper .swiper-button-prev,
.sikulo-swiper .swiper-button-next {
    color: #fff;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sikulo-swiper .swiper-button-prev:hover,
.sikulo-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Modal Details */
.sikulo-modal-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sikulo-modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sikulo-dark);
    margin: 0 0 20px;
    line-height: 1.2;
}

.sikulo-modal-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--sikulo-gray);
    margin: 0 0 30px;
}

.sikulo-modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--sikulo-red);
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
    align-self: flex-start;
}

.sikulo-modal-cta-btn:hover {
    background: var(--sikulo-red-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.5);
}

/* ============================================
   MOBILE HINT
   ============================================ */
.sikulo-mobile-hint {
    /* FIX v2.2.1: rimosso position:absolute (causava bug di posizionamento 
       relativo a tutta la pagina invece che all'hero). Ora hidden di default 
       (desktop) e mostrato in flex-flow naturale solo su mobile. */
    display: none;
}

.sikulo-mobile-hint p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--sikulo-dark);
    font-weight: 500;
}

@keyframes hint-fade {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .sikulo-hero-container {
        height: 700px;
    }
    
    .sikulo-hero-circle {
        width: 400px;
        height: 400px;
    }
    
    .sikulo-floating-card {
        width: 280px;
    }
    
    .sikulo-modal-inner {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .sikulo-swiper {
        height: 400px;
    }
    
    .sikulo-hero-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
    .sikulo-catering-hero {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .sikulo-hero-container {
        height: auto;
        flex-direction: column;
        gap: 40px;
        /* RIMOSSO v2.2.1: min-height: 100vh; forzava la sezione a occupare sempre
           tutto lo schermo anche con contenuto corto (cerchio + hint), creando
           un vuoto enorme prima del testo successivo nella pagina */
    }
    
    .sikulo-hero-circle {
        width: 280px;
        height: 280px;
    }
    
    .sikulo-hero-title {
        font-size: 2rem;
    }
    
    .sikulo-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile: HIDE floating cards - use modal gallery instead */
    .sikulo-floating-cards {
        display: none !important;
    }
    
    .sikulo-floating-card-wrapper {
        display: none !important;
    }
    
    .sikulo-card-title {
        font-size: 1.1rem;
    }
    
    .sikulo-card-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .sikulo-card-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .sikulo-modal-inner {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .sikulo-swiper {
        height: 300px;
    }
    
    .sikulo-modal-title {
        font-size: 1.75rem;
    }
    
    .sikulo-modal-description {
        font-size: 1rem;
    }
    
    .sikulo-mobile-hint {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 100px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        animation: hint-fade 2s ease-in-out 1s infinite;
        flex-shrink: 0; /* Non si comprime nel flex column */
    }
}

/* ============================================
   RESPONSIVE - Mobile Piccolo (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .sikulo-catering-hero {
        padding: 24px 16px;
    }
    
    .sikulo-hero-container {
        gap: 28px;
    }
    
    .sikulo-hero-circle {
        width: 240px;
        height: 240px;
    }
    
    .sikulo-mobile-hint {
        padding: 10px 20px;
    }
    
    .sikulo-mobile-hint p {
        font-size: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE - Extra Small (≤375px)
   ============================================ */
@media (max-width: 375px) {
    .sikulo-catering-hero {
        padding: 20px 12px;
    }
    
    .sikulo-hero-container {
        gap: 20px;
    }
    
    .sikulo-hero-circle {
        width: 210px;
        height: 210px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.sikulo-floating-card:focus-visible,
.sikulo-card-cta:focus-visible,
.sikulo-modal-close-btn:focus-visible {
    outline: 3px solid var(--sikulo-turquoise);
    outline-offset: 4px;
}


.sikulo-hero-title,
.sikulo-hero-subtitle,
.sikulo-explore-badge{
    display: none;
}


.sikulo-hero-image-wrapper img,
img.sikulo-card-image{
    height: 100% !important;
}


