.shop-cat-wrapper {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
}

.shop-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.shop-cat-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #0a0a2a;
}

.see-all-link {
    color: #0056d2;
    font-size: 16px;
    text-decoration: underline;
}

/* GRID */
.shop-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    text-align: center;
}

/* CATEGORY BOX */
.shop-cat-item {
    text-decoration: none;
    color: #0a0a2a;
    font-family: inherit;
}

.cat-img-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-img-wrap img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.cat-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cat-count {
    font-size: 15px;
    opacity: 0.8;
}

/* Responsive */
@media(max-width: 768px) {
    .shop-cat-header h2 {
        font-size: 22px;
    }
}

@media(max-width: 480px) {
    .shop-cat-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
