/* --- THIẾT LẬP CHUNG --- */
body {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    margin: 0;
    padding: 20px 0;
}

/* Yêu cầu đề bài: Đặt cố định độ rộng layout web là 900px */
.web-wrapper {
    width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 10px;
}

/* --- TOP HEADER (Logo và Nút bấm) --- */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 10px;
}
.logo-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.logo-box {
    background-color: #666;
    color: white;
    font-weight: bold;
    width: 150px;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
.sub-link {
    font-size: 12px;
    color: #333;
}
.buttons-area {
    display: flex;
    gap: 5px;
}
.buttons-area button {
    background-color: white;
    border: 1px solid #aaa;
    color: #333;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    border-radius: 2px;
}

/* --- NAVIGATION MENU (Thanh xám đen) --- */
.main-nav {
    background-color: #555555;
    margin-bottom: 20px;
}
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.main-nav li {
    border-right: 1px solid #777;
}
.main-nav a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 18px;
}
.main-nav a:hover {
    background-color: #444;
}

/* --- CHIA GRID LAYOUT CHÍNH: 2 CỘT DỌC --- */
.main-layout {
    display: grid;
    /* Cột trái chiếm nhiều diện tích hơn cột phải */
    grid-template-columns: 2.2fr 1fr; 
    gap: 30px;
}

/* Kiểu dáng tiêu đề dòng kẻ xám của các phần */
.block-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
    margin-top: 0;
    margin-bottom: 15px;
}
.section-box {
    margin-bottom: 35px;
}

/* --- CỘT TRÁI: CHI TIẾT SẢN PHẨM & LƯỚI 6 Ô --- */
.product-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.product-image-large {
    background-color: #7f7f7f;
    color: #000;
    font-weight: bold;
    width: 280px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.product-info h3 {
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: bold;
}
.product-info p {
    margin: 0;
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
}

/* Lưới phụ chứa 6 ô vuông nhỏ nằm ngang */
.product-sub-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.sub-img-box {
    background-color: #b2b2b2;
    height: 40px;
}

/* Khối tin tức */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news-item {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}
.news-item:last-child {
    border-bottom: none;
}
.news-date {
    font-size: 12px;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}
.news-text {
    margin: 0;
    font-size: 12px;
    color: #0056b3;
    line-height: 1.4;
}

/* Khối liên hệ màu xám đen cuối trang */
.content-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* --- CỘT PHẢI: TIN LIÊN QUAN & BANNER --- */
.related-links {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
}
.related-links li {
    margin-bottom: 4px;
    position: relative;
}
/* Tạo dấu chấm tròn xanh dương trước link giống mẫu */
.related-links li::before {
    content: "•";
    color: blue;
    font-weight: bold;
    position: absolute;
    left: -12px;
    top: -1px;
}
.related-links a {
    color: blue;
    text-decoration: none;
    font-size: 12px;
}
.related-links a:hover {
    text-decoration: underline;
}

/* Danh sách các Banner bo góc màu xám */
.banner-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}
.banner-item {
    background-color: #a6a6a6;
    color: #333;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    padding: 15px 0;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* ĐỊNH DẠNG LINK QUAY LẠI TRANG CHỦ */
.back-link {
    color: #444;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}
.back-link:hover {
    text-decoration: underline;
}