html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url("/assets/background/bg-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; /* Center horizontally */
}

.product-small {
  transition: transform 0.3s ease-in-out; /* Hiệu ứng mượt */
}

.product-small img {
  transition: transform 0.3s ease-in-out;
}

.product-small p {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600; /* Màu cam tươi */
  text-shadow: 2px 2px 5px rgba(255, 102, 0, 0.5); /* Đổ bóng chữ */
  margin-top: 10px;
  transition: transform 0.3s ease-in-out, color 0.3s;
}

/* 🔥 Hiệu ứng khi hover vào cả khối */
.product-small:hover {
  transform: scale(1.3);
}

/* 🔥 Hiệu ứng zoom ảnh */
.product-small:hover img {
}

/* 🔥 Hiệu ứng đổi màu chữ khi hover */
.product-small:hover p {
  color: #ff3300; /* Màu đỏ hơn khi hover */
  transform: translateY(-5px); /* Đẩy chữ lên chút xíu */
}

/* Bold typography for first-level menu items */
.navbar-nav .nav-link {
  font-weight: bold;
}

/* Countdown timer styles */
.countdown-timer {
  max-width: 600px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Center horizontally */
  text-align: center; /* Center content inside */
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.countdown-box {
  border: 2px solid #ff6600;
  padding: 15px;
  border-radius: 5px;
  font-size: 2em;
  font-weight: bold;
  color: #ff6600;
  background-color: #ffe6e6; /* Light pink background */
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown-box span {
  font-size: 0.5em;
  margin-top: 5px;
}

.countdown-unit {
  font-size: 1em;
  color: #ff6600;
  width: 80px;
  text-align: center;
  margin-top: -10px; /* Adjust to center below the box */
}

#additional-info {
  font-size: 1.2em;
  color: #333;
}

/* Zoom in and zoom out effect for the image */
.zoom-effect {
  animation: zoomInOut 5s infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Beautiful button with zoom effect */
.btn-zoom {
  padding: 10px 20px !important;
  font-size: 1.2em !important;
  font-weight: bold !important;
  color: #fff !important;
  background-color: #ff3399 !important; /* Pink background */
  border: none !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  transition: transform 0.3s ease-in-out, background-color 0.3s;
  animation: zoomInOut 3s infinite; /* Zoom in and out effect */
}

/* Responsive margin-top adjustment for mobile devices */
@media (max-width: 767px) {
  .products .col-md-6.d-flex.align-items-center {
    margin-top: 60px;
  }
  .col-right {
    margin-top: 40px;
  }
}

.btn-form {
  width: 90% !important;
  margin: 0 auto;
  display: block;
}

/* Fixed contact widget styles */
.contact-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-widget a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.contact-widget a:hover {
  transform: scale(1.1);
}

.contact-widget img {
  width: 30px;
  height: 30px;
}

.btn-banner {
  position: absolute;
  left: 30px;
  bottom: 120px;
  width: 150px !important;
}

.branch-name {
  font-family: "Playfair Display", serif; /* Font chữ sang trọng */
  text-transform: uppercase; /* Chữ in hoa */
  letter-spacing: 2px; /* Giãn cách chữ */
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Đổ bóng mềm mại */
  padding: 10px;
}

h4.branch-name {
  font-size: 32px; /* Kích thước lớn hơn */
  color: #d4af37; /* Màu vàng gold */
  border-bottom: 3px solid #d4af37; /* Gạch chân vàng gold */
  padding-bottom: 5px;
}

h5.branch-name {
  font-size: 24px;
  color: #8b5e3b; /* Màu nâu bánh ngọt */
  margin-top: 5px;
}
