/* Круглі категорії товарів - НОВИЙ ДИЗАЙН */

.categories-circular {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.category-circle-item:hover {
    transform: scale(1.05);
}

.category-circle-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #ee5a52 0%, #ff8a80 100%);
    margin-bottom: 12px;
}

.category-circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-circle-image img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
    object-fit: cover;
    margin: 3px;
}

.category-circle-name {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    max-width: 90px;
    color: #333;
}

.category-circle-item:hover .category-circle-name {
    color: #ee5a52;
}

/* Десктопна версія - ЗБІЛЬШЕНІ РОЗМІРИ */
@media (min-width: 769px) {
    .categories-circular {
        max-width: 800px;
        gap: 40px 30px;
        margin: 50px auto 0;
    }
    
    .category-circle-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .category-circle-name {
        font-size: 14px;
        max-width: 130px;
        font-weight: 600;
    }
    
    /* Відступ від біжучої стрічки для десктопу */
    .categories-section-circular {
        padding-top: 40px;
        padding-bottom: 70px;
    }
}

/* Мобільна версія */
@media (max-width: 768px) {
    .categories-circular {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 18px;
        max-width: none;
        margin: 35px 0 0;
        padding: 0 15px 20px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .categories-circular::-webkit-scrollbar {
        height: 4px;
    }
    
    .categories-circular::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .categories-circular::-webkit-scrollbar-thumb {
        background: rgba(233, 30, 99, 0.3);
        border-radius: 10px;
    }
    
    .category-circle-item {
        flex: 0 0 auto;
    }
    
    .category-circle-wrapper {
        width: 95px;
        height: 95px;
        margin-bottom: 12px;
    }
    
    .category-circle-name {
        font-size: 12px;
        max-width: 100px;
        margin-top: 0;
        line-height: 1.4;
    }
    
    .categories-section-circular {
        padding-top: 25px;
    }
    
    .categories-section.desktop-only {
        display: none;
    }
    
    .categories-section-circular .section-header.mobile-only {
        display: block;
    }
}

@media (max-width: 480px) {
    .categories-circular {
        gap: 15px;
        padding: 0 10px 20px;
        margin-top: 30px;
    }
    
    .category-circle-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 10px;
    }
    
    .category-circle-name {
        font-size: 11px;
        margin-top: 0;
        line-height: 1.4;
    }
}

/* Приховання старих елементів на десктопі */
@media (min-width: 769px) {
    /* Приховуємо мобільні заголовки на десктопі */
    .categories-section-circular .section-header.mobile-only {
        display: none;
    }
    
    /* Показуємо десктопні заголовки */
    .categories-section-circular .section-header.desktop-only {
        display: block;
    }
}

/* Відступи заголовків */
.categories-section-circular .section-header {
    margin-bottom: 20px;
}

@media (min-width: 769px) {
    .categories-section-circular .section-header {
        margin-bottom: 30px;
    }
}
