body {
    font-family: 'Be Vietnam Pro', sans-serif;
}
#header {
    height: 50px;
    background: #AE36;

    display: flex;
    justify-content: space-between; /* 👈 đẩy 2 bên */
    align-items: center;

    padding: 0 20px; /* tạo khoảng cách 2 bên */
}

.hotline {
    margin: 0;
}

.time {
    margin: 0;
}
#top {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* thằng cha */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 20px;
}

/* thằng con */
.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.logo input {
    height: 40px;
    width: 250px;
    font-size: 16px;
}

.logo button {
    height: 40px;
    width: 50px;
    font-size: 18px;
}
#menu a {
    color: white;
    text-decoration: none;
}

#menu a:visited {
    color: white;
}

#menu a:hover {
    color: yellow;
}
/* Khung chứa cả Banner và Danh mục */
#main-content {
    display: flex;         /* Chia cột */
    gap: 20px;            /* Khoảng cách giữa 2 cột */
    max-width: 1200px;    /* Độ rộng tối đa của trang */
    margin: 20px auto;    /* Căn giữa trang */
    padding: 0 15px;
}

/* Cột bên trái: Banner (Ảnh động) */
.banner {
    flex: 3;              /* Chiếm 3 phần diện tích (khoảng 75%) */
    position: relative;
    height: 450px;        /* Tăng chiều cao cho đẹp */
    overflow: hidden;
    border-radius: 10px;
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideShow 9s infinite;
}

/* Cột bên phải: Danh mục */
.right {
    flex: 1;              /* Chiếm 1 phần diện tích (khoảng 25%) */
    background: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
    height: 400px;  /* Chiều cao vừa đủ nội dung */
}

/* --- Các phần Animation và định dạng giữ nguyên như cũ --- */
@keyframes slideShow {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

.banner img:nth-child(1) { animation-delay: 0s; }
.banner img:nth-child(2) { animation-delay: 3s; }
.banner img:nth-child(3) { animation-delay: 6s; }

.text-sale {
    position: absolute;
    top: 20px;
    left: 20px;
    background: red;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    z-index: 10;
    border-radius: 10px;
}

.right h3 { text-align: center; margin-top: 0; }
.right ul { list-style: none; padding: 0; }
.right li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    transition: 0.3s;
}
.right li a { text-decoration: none; color: black; display: block; }
.right li:hover { background: #ddd; }
