/* Splide CSS - Carousel/Slider functionality */
.splide {
    position: relative;
    visibility: hidden;
}

.splide.is-initialized {
    visibility: visible;
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.splide__list {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.splide__slide {
    flex-shrink: 0;
    position: relative;
    list-style: none;
}

.splide__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.splide__pagination__page {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.splide__pagination__page.is-active {
    background: #e67817;
}

.splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
}

.splide__arrow:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.splide__arrow--prev {
    left: 10px;
}

.splide__arrow--next {
    right: 10px;
}

.splide__arrow svg {
    width: 20px;
    height: 20px;
    fill: #333;
}
