/* ===== Banner scorrevole ===== */
.ibly-banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1600 / 500;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5em;
}

.ibly-banner-slider__pista {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.ibly-banner-slider__slide {
    flex: 0 0 100%;
    height: 100%;
}

.ibly-banner-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ibly-banner-slider__freccia {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    cursor: pointer;
    color: #1747c9;
}
.ibly-banner-slider__freccia--sx { left: 16px; }
.ibly-banner-slider__freccia--dx { right: 16px; }
.ibly-banner-slider__freccia:hover { background: #ffffff; }

.ibly-banner-slider__pallini {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.ibly-banner-slider__pallino {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
}
.ibly-banner-slider__pallino--attivo {
    background: #ffffff;
}

/* ===== Barra categorie ===== */
.ibly-barra-categorie {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1.5em;
    overflow-x: auto;
}
.ibly-barra-categorie ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
    margin: 0;
    padding: 0.8em 1em;
    white-space: nowrap;
}
.ibly-barra-categorie a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95em;
}
.ibly-barra-categorie a:hover {
    color: #1747c9;
}
