#slider-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#slider-loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #FEC700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-slider .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-slider .slide {
    position: relative;
}

.custom-slider .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-slider .slider-button {
    position: absolute;
    background-color: #FFC72C;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    margin: 30px;
    border-radius: 30px;
    z-index: 10;
}

.custom-slider .slider-button.top-left {
    top: 0;
    left: 0;
}

.custom-slider .slider-button.top-right {
    top: 0;
    right: 0;
}

.custom-slider .slider-button.bottom-left {
    bottom: 0;
    left: 0;
}

.custom-slider .slider-button.bottom-right {
    bottom: 0;
    right: 0;
}

.custom-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    z-index: 5;
}

.custom-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    appearance: none;
}

.custom-slider .slick-dots li.slick-active {
    background-color: white;
    width: 15px;
    height: 15px;
}

/* Hide #slick-slide-control elements */
[id^="slick-slide-control"] {
    display: none !important;
}

/* Hide slick-dots on mobile */
@media (max-width: 767px) {
    .custom-slider .slick-dots {
        display: none !important;
    }
}
