.category-showcase {
    padding: 60px 0;
    background: #fff;
}

.category-showcase__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.category-showcase__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    width: calc(16.666% - 25px);
    max-width: 150px;
}

@media (max-width: 1024px) {
    .category-showcase__item {
        width: calc(25% - 20px);
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .category-showcase__item {
        width: calc(33.333% - 15px);
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .category-showcase__item {
        width: calc(50% - 10px);
        max-width: 120px;
    }
}

.category-showcase__item:hover {
    transform: translateY(-5px);
}

.category-showcase__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.category-showcase__item:hover .category-showcase__image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-showcase__item:hover .category-showcase__image img {
    transform: scale(1.1);
}

.category-showcase__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.category-showcase__placeholder span {
    font-size: 36px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

.category-showcase__title {
font-family: var(--ds-font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

.category-showcase__item:hover .category-showcase__title {
    color: #000;
}

@media (max-width: 1024px) {
    .category-showcase__grid {
        gap: 25px;
    }
    
    .category-showcase__image {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .category-showcase {
        padding: 40px 0;
    }

    .category-showcase__grid {
        gap: 20px;
    }

    .category-showcase__image {
        width: 100px;
        height: 100px;
    }

    .category-showcase__title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .category-showcase__grid {
        gap: 20px;
    }

    .category-showcase__image {
        width: 120px;
        height: 120px;
    }

    .category-showcase__title {
        font-size: 13px;
    }
}
