/* Định dạng tổng thể */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


/* Tạo khung trang web */

#khung {
    border: 2px solid black;
    width: 90%;
    max-width: 12000px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
}


/* Thanh điều hướng ngang */

#navngang {
    padding: 10px;
    text-align: center;
}

#navngang a {
    color: blue;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

#navngang a:hover {
    text-decoration: underline;
}


/* Ô tìm kiếm */

#search {
    text-align: right;
    margin: 20px;
}

#search input {
    padding: 8px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#search button {
    padding: 8px 12px;
    border: none;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#search button:hover {
    background-color: #218838;
}


/* Bố cục chính */

section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}


/* Sidebar danh mục */

nav {
    width: 250px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

nav h2 {
    font-size: 18px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

nav a {
    display: block;
    padding: 8px 0;
    color: purple;
    font-weight: bold;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}


/* Khu vực sản phẩm */

article {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}


/* Form đăng nhập */

#wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#form-login {
    margin-top: -30px;
    background: white;
    padding: 30px;
    width: 520px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #ccc;
}

.form-heading {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

.form-submit:hover {
    background-color: #0056b3;
}


/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 20px;
    border-radius: 5px;
}


/* Sản Phẩm */


/* Bố cục chung */

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* Mỗi sản phẩm */

.product-item {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
}


/* Hiệu ứng khi rê chuột vào sản phẩm */

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Hình ảnh sản phẩm */

.product-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}


/* Tên sản phẩm */

.product-item a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
    text-decoration: none;
}

.product-item a:hover {
    color: #007bff;
}


/* Giá sản phẩm */

.product-item del {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
}

.product-item b {
    color: #e74c3c;
    font-size: 18px;
}