/* ============================================================
   TRANG GÓI DỊCH VỤ (MUA LẺ TÍNH NĂNG) — Page-Specific CSS
   ============================================================ */

.service-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.category-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.category-text h2 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.category-text p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 2px 0 0 0;
}

.features-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.feature-buy-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.feature-buy-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-surface-hover);
}

.feature-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon-box {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.feature-title-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.feature-type-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}

.feature-price {
    font-weight: 700;
    font-size: 15px;
    color: #10b981;
}

.btn-buy-feature {
    padding: 7px 14px;
    font-size: 12px;
}
