/* Thiết lập chung */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Nền nhẹ nhàng */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); /* Bóng đổ nhẹ */
    border-radius: 8px;
}

/* Màu chủ đạo của Shop - Lấy cảm hứng từ nút cam trong hình */
:root {
    --primary-color: #ff6600; 
}

/* Tiêu đề */
.page-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
}

.page-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 5px;
}

.page-header p {
    color: #7f8c8d;
    font-size: 1.1em;
}

/* Các phần nội dung */
section {
    margin-bottom: 30px;
}

section h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

p {
    text-align: justify;
    margin-bottom: 15px;
}

/* Danh sách thương hiệu */
.brand-list h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.brand-list ul {
    list-style-type: '🤖 '; /* Icon nhỏ */
    padding-left: 20px;
}

.brand-list li {
    margin-bottom: 8px;
}

.highlight-text {
    font-weight: 700;
    color: #34495e;
}

/* Phần Cam kết */
.quality-content {
    display: flex;
    gap: 30px;
}

.brand-list, .commitment {
    flex: 1;
}

.quote-box {
    background-color: #fff3e0; /* Nền cam nhạt */
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    font-style: italic;
    color: #e67e22;
    font-size: 1.05em;
}

/* Nút kêu gọi hành động */
.btn-shop {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-shop:hover {
    background-color: #e65c00; /* Đậm hơn khi hover */
}

/* Đường kẻ ngang */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--primary-color), rgba(0, 0, 0, 0));
    margin: 40px 0;
}

/* Footer */
.page-footer {
    text-align: center;
    padding-top: 20px;
    color: #95a5a6;
    font-size: 0.9em;
    border-top: 1px solid #ecf0f1;
    margin-top: 40px;
}

/* Responsive cơ bản */
@media (max-width: 768px) {
    .quality-content {
        flex-direction: column;
    }
    .container {
        margin: 20px 10px;
        padding: 15px;
    }
}