/* Khung bọc danh mục */
.shop-categories-container {
    margin-bottom: 25px;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Tiêu đề vùng danh mục */
.categories-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Lưới hiển thị các danh mục */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

/* Thẻ danh mục dạng bấm được */
.category-card {
    background: #ffffff;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.category-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.08);
    transform: translateY(-2px);
}

/* Khối cấu trúc nội dung phía trên */
.category-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.category-icon {
    font-size: 18px;
    background: #f0f4f8;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-text h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: bold;
    color: #2c3e50;
}

.category-text p {
    margin: 0;
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Nhãn số lượng sản phẩm ở đáy thẻ */
.category-badge {
    align-self: flex-start;
    font-size: 11px;
    background: #e3f2fd;
    color: #0d47a1;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Trạng thái trống */
.categories-empty {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    border: 1px dashed #cfd8dc;
    color: #7f8c8d;
    font-size: 14px;
}