.explore-categories {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.explore-categories .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -1px;
}

.see-all {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 2px;
    transition: 0.3s;
}

.see-all:hover {
    color: #ff6600;
}

.slider-outer-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.category-slider {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.circle-cat-item:last-child {
    gap: 0 !important;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1200px) {
    .category-slider:after { content: ''; flex: 0 0 1px; }
}

.circle-cat-item {
    flex: 0 0 calc((100% - (5 * 20px)) / 6);
    margin-right: 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.3s ease;
}

.circle-cat-item:last-child {
    margin-right: 0 !important;
}

.circle-img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-cat-item:hover .circle-img {
    transform: translateY(-8px);
    border-color: #ff6600;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
}

.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    color: #ddd;
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.circle-cat-item:hover .no-img-placeholder {
    color: #ff6600;
}

.cat-name {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}

.slider-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-nav:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.slider-nav.prev { left: -55px; }
.slider-nav.next { right: -55px; }

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: 0.3s;
}

.dot.active {
    background: #ff6600;
    width: 20px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .slider-nav.prev { left: -20px; }
    .slider-nav.next { right: -20px; }
}

@media (max-width: 768px) {
    .explore-categories .container {
        padding: 0 0px;
    }

    .section-header {
        padding: 0 10px;
    }

    .category-slider {
        justify-content: flex-start;
        padding: 0 10px;
        padding-bottom: 10px;
    }

    .circle-cat-item {
        width: 120px;
    }

    .circle-img {
        width: 110px;
        height: 110px;
    }

    .section-title { font-size: 1.6rem; }

    .slider-dots { display: flex; }

    .slider-nav {
        display: none !important;
    }
}