/* --- BIẾN CSS (COLORS) --- */
:root {
    --shopee-red: #ee4d2d;
    --shopee-orange: #ff5722;
    --shopee-light: #fbeae5;
    --text-dark: #333333;
    --text-light: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* --- GLOBAL & TYPOGRAPHY --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--shopee-light); /* Nền tươi sáng */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    background-color: var(--shopee-red); /* Màu Đỏ Shopee */
    padding: 10px 0;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-light);
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-btn {
    background-color: var(--shopee-orange);
    border-radius: 4px;
    padding: 8px 15px !important;
    font-weight: 700 !important;
}

/* --- BANNER SECTION --- */
.main-banner-bg {
    /* Đặt URL ảnh từ Shopee vào đây */
    background-image: url('https://down-vn.img.susercontent.com/file/sg-11134258-821g0-mh8v1n9xrswb2b');
    
    /* Đảm bảo ảnh nền hiển thị đúng cách */
    background-size: cover;       /* Phóng to ảnh để bao phủ toàn bộ banner */
    background-position: center;  /* Căn giữa ảnh */
    background-repeat: no-repeat; /* Không lặp lại ảnh */
    
    /* Thêm một lớp phủ mờ (overlay) để làm nổi bật chữ trắng */
    position: relative;
    z-index: 1;
}

/* Thêm lớp phủ (overlay) cho banner */
.main-banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lớp phủ tối nhẹ để chữ màu trắng dễ đọc hơn */
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: -1; 
}

.banner-section {
    background: linear-gradient(to right, var(--shopee-red), var(--shopee-orange));
    color: var(--text-light);
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.banner-content {
    padding: 50px 0;
}

.banner-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.cta-banner-btn {
    display: inline-block;
    background-color: var(--shopee-light);
    color: var(--shopee-red);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 20px;
    transition: transform 0.2s;
}

.cta-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- PRODUCT GRID --- */
.section-heading {
    text-align: center;
    font-size: 2em;
    color: var(--shopee-red);
    margin-bottom: 30px;
    padding-top: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px var(--shadow-color);
}

.product-image {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0; /* Placeholder */
}

/* IFRAME Styling */
.product-image iframe {
    /* Đảm bảo iframe chiếm trọn không gian */
    border: none;
}

.product-details {
    padding: 15px;
}

.product-title {
    font-size: 1.2em;
    min-height: 40px; /* Cố định chiều cao để không bị xê dịch */
    margin-bottom: 5px;
}

.price-info {
    margin: 10px 0;
}

.regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 10px;
}

.sale-price {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--shopee-red);
}

.meta-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
}

.buy-link {
    display: block;
    text-align: center;
    background-color: var(--shopee-red);
    color: var(--text-light);
    padding: 10px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.buy-link:hover {
    background-color: var(--shopee-orange);
}

/* --- FOOTER --- */
.main-footer {
    text-align: center;
    padding: 20px 0;
    background-color: var(--text-dark);
    color: #ccc;
    margin-top: 50px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Ẩn menu chính trên mobile */
    }
    .main-header .container {
        justify-content: center;
    }
    .banner-content h1 {
        font-size: 2em;
    }
}