---

## 📁 FILE 4: lam-bang-bao-gia.css
```css
/**
 * AIOHG Quote Table - Frontend Styles
 * Version: 1.3.0
 * Tuân thủ: AIOHG 2025.3.x + WordPress Core
 */

/* ===== TABLE BASE ===== */
.aiohg-quote-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    line-height: 1.6;
}

/* ===== TITLE ROW ===== */
.aiohg-quote-title {
    border: 1px solid #ddd;
    font-weight: 700;
    text-align: center;
	padding: 10px 0px;
}
.aiohg-quote-title h2,
.aiohg-quote-title h3,
.aiohg-quote-title h4,
.aiohg-quote-title h5,
.aiohg-quote-title h6,
.aiohg-quote-title p {
    color: inherit !important;
    margin: 0 !important;
}


/* ===== HEADER ===== */
.aiohg-quote-th {
    border: 1px solid #ddd;
    padding: 15px 0px;
    font-weight: 600;
    text-align: center;
}

.aiohg-quote-title,
.aiohg-quote-th {
    text-transform: none !important;
}

/* ===== CELLS ===== */
.aiohg-quote-td {
    border: 1px solid #ddd;
    padding: 10px 5px !important;
    text-align: left;
    vertical-align: middle;
    color: #000000 !important;
}

/* ===== XEN KẺ MÀU HÀNG (chỉ tbody) ===== */
.aiohg-quote-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.aiohg-quote-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* ===== HOVER EFFECT ===== */
.aiohg-quote-table tbody tr:hover {
    background: #f0f6fc;
    transition: background 0.2s ease;
}

/* ===== GIÁ BÁN (MÀU ĐỎ) ===== */
.aiohg-quote-price-sale, 
.aiohg-quote-price-sale span {
    color: #d63638 !important;
    font-weight: 600;
}

/* ===== GIÁ NIÊM YẾT (GẠCH NGANG) ===== */
.aiohg-quote-price-regular-strikethrough {
    text-decoration: line-through;
    color: #646970;
}

/* ===== HÌNH ẢNH ===== */
.aiohg-quote-td img {
    max-width: 100%;
    height: auto;
    display: block;
    text-align: center !important;
}

/* ===== FOOTER ===== */
.aiohg-quote-footer-image {
    text-align: center;
}

.aiohg-quote-footer-desc {
    padding: 15px;
}

/* ===== RESPONSIVE MOBILE ===== */
@media screen and (max-width: 768px) {
    .aiohg-quote-table {
		width: 100% !important;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .aiohg-quote-th,
    .aiohg-quote-td {
        padding: 8px;
    }
    
    .aiohg-quote-title {
        font-size: 16px;
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .aiohg-quote-table {
        font-size: 11px;
    }
    
    .aiohg-quote-th,
    .aiohg-quote-td {
        padding: 6px;
    }
}
