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

.ayan-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ayan-slide {
    min-width: 100%;
    position: relative;
}

.ayan-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.ayan-home-slider {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ayan-home-slider .swiper-slide img {
    border-radius: 12px;
    object-fit: cover;
}

/* Custom Navigation Arrows */
.custom-nav-arrow {
    width: 40px !important;
    height: 40px !important;
    background: #fff;
    border-radius: 50%;
    color: #333 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-nav-arrow::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Custom Pagination Fraction */
.custom-pagination-fraction {
    position: absolute;
    top: 15px !important;
    right: 15px !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

/* Circular Categories */
.home-circular-categories {
    margin-bottom: 20px;
}

.circular-swiper {
    padding: 10px 0;
}

.circular-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    gap: 8px;
    transition: transform 0.2s;
}

.circular-item:hover {
    transform: translateY(-5px);
    color: var(--navy);
}

.circle-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-item span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* Promo Banners */
.home-promo-banners {
    margin-bottom: 30px;
}

.promo-grid-wrapper {
    padding-bottom: 20px;
}

.promo-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.swiper-scrollbar {
    background: #eee !important;
    height: 4px !important;
}

.swiper-scrollbar-drag {
    background: var(--navy) !important;
}

@media (max-width: 991px) {
    .promo-grid-wrapper .swiper-slide {
        width: 80%;
    }

    .circular-swiper .swiper-slide {
        width: 85px;
    }
}