body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  img {
    width: 100%;
    height: 330px;
  }
  
  .logo img {
    height: 50px;
    /* Điều chỉnh kích thước logo */
    margin-right: 10px;
  }
  
  #top-header {
    background-color: #f2f4f7;
  }
  
  ul {
    margin: 0;
    padding: 0;
  }
  
  #top-contact a {
    text-decoration: none;
    color: #333;
  }
  
  #top-contact a:hover {
    color: red;
  }
  
  #top-header .fab {
    font-size: 20px;
  }
  
  .fa-facebook {
    color: blue;
  }
  
  .fa-instagram {
    color: red;
  }
  
  .fa-tiktok {
    color: black;
  }
  
  .fa-youtube {
    color: red;
  }
  
  .fa-cart-shopping {
    color: orangered;
  }
  
  .nav-item {
    margin-right: 10px;
  }
  
  #navbar-menu {
    background-color: red;
  }
  
  #select-product-category {
    max-width: 160px;
  }
  
  /* Trang trí cho dropdown menu */
  .dropdown-menu {
    background-color: #d45a69;
  }
  
  .dropdown-menu h6 {
    color: rgb(49, 48, 48);
  }
  
  .dropdown-menu a {
    color: #ffffff !important;
    /* Màu chữ trong dropdown menu */
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(255, 192, 203, 0.755);
  }
  
    #input-search-top input[type="text"] {
      width: 300px; /* Tăng chiều rộng của ô nhập */
      border-radius: 5px;
      padding: 5px;
  }

  #nav-form-search {
    margin-left: auto;
  }
  
  .main {
    margin-top: -16px;
    background-color: #f2f4f7;
    height: auto;
  }
  
  #aside {
    border-right: 1px solid black; /* Viền bên phải */
  }
  
  footer {
    background-color: red;
    color: white;
    text-align: center;
    height: 70px;
    line-height: 70px;
  }
  
  .product-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Cho phép xuống dòng khi vượt quá số lượng */
    gap: 20px; /* Khoảng cách giữa các sản phẩm */
    margin-bottom: 30px;
  }
  
  .product-item {
    width: calc(25% - 15px); /* Đảm bảo 4 sản phẩm trên 1 dòng, trừ khoảng cách */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  .product-image {
    width: 100%;
    height: 150px; /* Giảm chiều cao hình ảnh */
    object-fit: contain;
    margin-bottom: 10px;
    transition: none;
  }
  
  .product-name {
    font-weight: 500;
    margin: 10px 0;
    color: #333;
    text-decoration: none;
    display: block;
    height: 40px; /* Đặt chiều cao cố định */
    white-space: normal;
    text-align: center;
  }
  
  .product-name:hover {
    color: #ff6b6b;
  }
  
  .price-container {
    display: flex;
    justify-content: center; /* Căn giữa giá */
    align-items: center;
    gap: 30px; /* Khoảng cách giữa giá sale và giá gốc */
    margin-top: 10px;
  }
  
  .sale-price {
    font-weight: bold;
    font-size: 16px; /* Giảm kích thước chữ */
    color: #e63946;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
  }
  
  .discount-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff6b6b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .installment-info {
    font-size: 12px;
    color: #007bff;
    margin-top: 5px;
  }
  
  .rating-favorite-container {
    display: flex;
    justify-content: space-between; /* Căn đều khoảng cách giữa ngôi sao và trái tim */
    align-items: center;
    margin-top: 10px;
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 2px; /* Khoảng cách giữa các ngôi sao */
  }
  
  .rating i {
    color: #ffc107;
    font-size: 14px;
  }
  
  .favorite {
    display: flex;
    align-items: center;
    gap: 5px; /* Khoảng cách giữa trái tim và chữ */
    font-size: 14px;
    color: #333;
  }
  
  .favorite i {
    color: #e63946;
  }
  @media (max-width: 1200px) {
    .product-item {
        width: calc(33.33% - 15px); /* 3 sản phẩm trên 1 dòng */
    }
  
    .product-name {
        font-size: 17px; /* Giảm kích thước chữ */
    }
  
    .price-container {
        gap: 15px; /* Điều chỉnh khoảng cách giữa giá */
    }
    .sale-price, .original-price {
        font-size: 16px; /* Giảm kích thước chữ */
    }
    .rating i, .favorite i {
    font-size: 16px; /* Giảm kích thước icon */
    }
    .favorite {
        margin-left: 10px; /* Điều chỉnh khoảng cách giữa icon và chữ */
    }
  }
  
  @media (max-width: 955px) {
    .product-item {
        width: calc(50% - 15px); /* 2 sản phẩm trên 1 dòng */
    }
  
    .product-name {
        font-size: 16px; /* Giảm kích thước chữ */
    }
  
    .price-container {
        gap:15px;
    }
  
    .sale-price, .original-price {
        font-size: 15px; /* Giảm kích thước chữ */
    }
    .rating i, .favorite i {
        font-size: 15px; /* Giảm kích thước icon */
    }
    .favorite {
        margin-left: 10px; /* Điều chỉnh khoảng cách giữa icon và chữ */
    }
  }
  @media (max-width: 640px) {
  .product-item {
    width: calc(50% - 15px); /* 2 sản phẩm trên 1 dòng */
  }
  
  .product-name {
    font-size: 15px;
  }
  
  .price-container {
    gap: 10px; /* Điều chỉnh khoảng cách giữa giá */
  }
  
  .sale-price, .original-price {
    font-size: 14px; /* Giảm kích thước chữ */
  }
  
  .rating i, .favorite i {
    font-size: 12px; /* Giảm kích thước icon */
  }
  
  .favorite {
    margin-left: 5px; /* Điều chỉnh khoảng cách giữa icon và chữ */
  }
  }
  @media (max-width: 425px) {
  .product-item {
    width: calc(50% - 15px); /* 2 sản phẩm trên 1 dòng */
  }
  
  .product-name {
    font-size: 14px;
  }
  
  .price-container {
    gap: 10px; /* Điều chỉnh khoảng cách giữa giá */
  }
  
  .sale-price, .original-price {
    font-size: 14px; /* Giảm kích thước chữ */
  }
  
  .rating i, .favorite i {
    font-size: 11px; /* Giảm kích thước icon */
  }
  
  .favorite {
    margin-left: 5px; /* Điều chỉnh khoảng cách giữa icon và chữ */
  }
  }
  @media (max-width: 411px) {
  .product-item {
    width: calc(50% - 15px); /* 2 sản phẩm trên 1 dòng */
  }
  
  .product-name {
    font-size: 12px;
  }
  
  .price-container {
    gap: 10px; /* Điều chỉnh khoảng cách giữa giá */
  }
  
  .sale-price, .original-price {
    font-size: 12px; /* Giảm kích thước chữ */
  }
  
  .rating i, .favorite i {
    font-size: 7px; /* Giảm kích thước icon */
  }
  
  .favorite {
    margin-left: 5px; /* Điều chỉnh khoảng cách giữa icon và chữ */
  }
  footer p {
    font-size: 12px; /* Giảm kích thước chữ */
  }
  }
  