body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Nền sáng để làm nổi bật các phần tử */
    color: #333;
}

header {
    background-color: #f4f4f4; /* Màu nền sáng cho header */
    padding: 15px 0;
    border-bottom: 0.25px solid #fdfdff; /* Đường viền nhẹ để phân cách */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .logo img {
    max-height: 100px;
} */

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    text-decoration: none;
    color: #083ed1; /* Sử dụng màu xanh dương cho liên kết */
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #03ae0b; /* Chuyển sang màu xanh lá cây khi hover */
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: center;
    background-color: #f4f4f4; /* Sử dụng màu nền sáng để đồng bộ với header và footer */
}
.product-card {
    background-color: #9fbccb; /* Nền trắng để làm nổi bật nội dung sản phẩm */
    border-radius: 8px;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1); /* Bóng đổ nhẹ */
    overflow: hidden;
    margin-bottom: 20px;
    flex: 1 1 calc(50% - 20px);
    max-width: 800px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-content h2 {
    font-size: 1.5em;
    color: #083ed1; /* Màu xanh dương cho tiêu đề sản phẩm */
    margin: 0 0 10px;
}

.product-content p {
    margin: 5px 0;
    line-height: 1.6;
    font-size: 1em;
    color: #666; /* Màu chữ nhạt hơn để dễ đọc */
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #fffcfc;
    width: 100%;
}

.product-footer .icon {
    font-size: 1.5em;
    color: #03ae0b; /* Màu xanh lá cây cho biểu tượng */
}

footer {
    background: linear-gradient(135deg, #083ed1 0%, #03ae0b 100%); /* Gradient mượt mà từ xanh dương sang xanh lá cây */
    color: white;
    padding: 30px 20px; /* Padding rộng hơn để tạo cảm giác rộng rãi */
    display: flex;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Bóng đổ nhẹ để tạo chiều sâu */
}

.footer-section {
    flex: 1;
    margin: 0 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff; /* Màu trắng cho tiêu đề trong footer */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
    border-bottom: 0.5px solid #444; /* Đường kẻ dưới nhạt hơn */
    padding-bottom: 5px;
}

.custom-link {
    color: #090909; /* Màu chữ sáng cho liên kết trong footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: #03ae0b; /* Màu xanh lá cây cho hover */
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        flex: 1 1 100%;
        max-width: 600px;
        margin-bottom: 10px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .product-content h2 {
        font-size: 1.2em;
    }

    .product-content p {
        font-size: 0.9em;
    }

    nav ul li a {
        font-size: 14px;
    }
}
/*Review*/

.review{
    
}

.review h1{
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.review h1 span{
    background: linear-gradient(to left, #c72092 , #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 15px;    
}

.review .review_box{
    width: 95%;
    position: relative;
    top: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.review .profile .profile_image{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 5px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.review .profile .profile_image:hover{
    transform: scale(1.2);
}

.review .profile_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.review .profile{
    display: flex;
    align-items: center;
}

.review .review_box .review_card{
    width: 500px;
    background: #fffefef4;
    padding: 20px 25px;
    border-radius: 5px;
    margin: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.review .review_box .review_card .card_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review .review_box .review_card .card_top .profile .name{
    margin-left: 20px;
    line-height: 22px;
}

.review .review_box .review_card .card_top .profile .name strong{
    font-size: 20px;
}

.review .review_box .review_card .card_top .profile .name .like i{
    color: orange;
    display: inline-block;
    font-size: 12px;
}

.review .review_box .review_card .comment p{
    text-align: justify;
    line-height: 22px;
    margin-top: 15px;
}


/* Responsive cho phần review */
@media (max-width: 768px) {
    .review h1 {
        font-size: 40px;
    }

    .review .review_box {
        width: 100%;
        top: 0;
    }

    .review .review_card {
        width: 100%;
        margin: 10px 0;
        padding: 15px 20px;
    }

    .review .profile .profile_image {
        width: 50px;
        height: 50px;
    }

    .review .profile .profile_image:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .review h1 {
        font-size: 30px;
    }

    .review .review_box {
        width: 100%;
        top: 0;
    }

    .review .review_card {
        width: 100%;
        margin: 10px 0;
        padding: 10px 15px;
    }

    .review .profile .profile_image {
        width: 40px;
        height: 40px;
    }

    .review .profile .profile_image:hover {
        transform: scale(1.05);
    }

    .review .review_box .review_card .card_top .profile .name {
        font-size: 16px;
    }

    .review .review_box .review_card .comment p {
        font-size: 0.9em;
    }
}
