/* CSS riêng cho trang chủ */
.hero-section .btn-primary {
    background: #1a6fb7;
    border: none;
    box-shadow: 0 2px 8px rgba(26,111,183,0.08);
}
.hero-section .btn-primary:hover {
    background: #155a96;
}

/* Đặt font chữ Be Vietnam cho toàn bộ trang */
body, body * {
  font-family: 'Be Vietnam', sans-serif !important;
}



/* Banner section - 2 ảnh xám bên phải */
.banner-section .banner-images {
  gap: 2%;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.banner-section .banner-img-box {
  width: 49%;
  height: 120px; /* Chỉ cao ngang chữ bên trái */
  background: #d6d6d6;
  border-radius: 6px;
  display: inline-block;
}

/* Nút chính */
.btn-primary {
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 40px;
}

/* Card sản phẩm */
.card-product {
  border-radius: 14px;
  min-height: 380px;
}
.card-product .card-img-box {
  width: 100%;
  aspect-ratio: 1.3/1;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.card-product .card-body {
  padding-bottom: 2rem !important;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-product .product-title {
  color: #2196f3;
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.2;
}
.card-product .product-price {
  display: inline-block;
  padding: 4px 16px;
  border: 2px solid #2196f3;
  border-radius: 10px;
  font-weight: 600;
  color: #2196f3;
  font-size: 1.1rem;
  background: #fff;
}
.card-product .btn-buy {
  background: #5cc6f5;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 40px;
  padding: 10px 0;
}

/* ...Thêm các style khác nếu cần... */ 