/* --- STRUTTURA FONDAMENTALE --- */
.raif-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.swiper, .swiper-wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.raif-slide-item {
    width: 100% !important; /* Forza larghezza piena */
    height: 100% !important; /* Forza altezza piena */
    
    /* FIX IMMAGINI: Posizionamento bloccato */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
}

/* --- SFUMATURA E TESTI --- */
.raif-slide-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.raif-content-box {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.raif-title {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.raif-subtitle {
    color: #e0e0e0;
    margin: 0;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
}

/* --- NAVIGAZIONE GLASSMORPHISM --- */
.raif-slider-container .swiper-button-next,
.raif-slider-container .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
    transition: all 0.3s ease;
    z-index: 10;
}

.raif-slider-container .swiper-button-next:after,
.raif-slider-container .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.raif-slider-container .swiper-button-next:hover,
.raif-slider-container .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
}

/* --- PALLINI PILLOLA --- */
.raif-slider-container .swiper-pagination {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.raif-slider-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.5;
    margin: 0 !important;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.raif-slider-container .swiper-pagination-bullet-active {
    width: 20px;
    opacity: 1;
    background: #ffffff;
}