.shop-category-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid #eee;
    background: #fff;
}

.shop-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.shop-category-card__icon {
    color: #282828;
    transition: color 0.2s ease;
}

.shop-category-card__title {
    font-weight: 700;
    color: #282828;
    font-size: 1rem;
}

.shop-category-card__count {
    color: #888;
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.shop-category-card__cta {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.35rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #282828;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-categories-grid {
    margin-top: 0;
}

.shop-categories-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.shop-categories-empty i {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.shop-categories-empty h3 {
    color: #282828;
}

.shop-categories-empty p {
    color: #888;
}
