.sun-product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sun-product-category {
    text-align: center;
}

.sun-product-category img {
    width: 100%;
    height: auto;
}

.sun-category-title {
    font-size: 16px;
    margin-top: 10px;
}

/* Адаптивність */
@media (max-width: 1200px) {
    .sun-product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sun-product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sun-product-categories {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) and (orientation: landscape) {
    .sun-product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}