body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf5f3;
    margin-top: 80px;
}
body.translate-active .navbar.fixed-top {
    top: 50px !important;
}
.language-dropdown {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

.lang-toggle-btn {
  background: #e53935;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.language-options {
  display: none;
  flex-wrap: wrap;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #fdf5f3;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  padding: 6px;
  margin-bottom: 8px;
  max-width: 160px; /* Đủ rộng để hiển thị 3 hình */
  width: 160px !important; /* Đảm bảo chiều rộng của thẻ */
  gap: 6px;
}

.lang-btn img {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  transition: transform 0.2s;
}

.lang-btn img:hover {
  transform: scale(1.5);
}

/* Đặt kích thước lớn cho hình ảnh Vietnamese */
.lang-btn .large-flag {
  width: 140px;  /* Kích thước lớn hơn hình bình thường */
  height: 80px;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  flex: 0 0 calc(33.33% - 4px); /* trừ 4px để tính gap chính xác */
  display: flex;
  justify-content: center;
}

.lang-btn img {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  transition: transform 0.2s;
}

.lang-btn img:hover {
  transform: scale(1.5);
}

	
.nav-item.active {
    position: relative;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #ff7f50;
}

.banner {
    background-color: #fff3ed;
    padding: 50px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.show-on-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.banner p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

.banner .btn {
    background-color: #ff7f50;
    color: #fff;
    margin-top: 20px;
    padding: 10px 30px;
    border-radius: 25px;
}

.banner .btn:hover {
    background-color: #ff6347;
}

.banner-image img {
    max-width: 100%;
    border-radius: 10px;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.about-section .content {
    max-width: 600px;
}

.about-section .content h2 {
    font-size: 2.5rem;
    color: #d85d5d;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.about-section .content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.about-section .content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.about-section .image {
    margin-right: 50px;
}

.about-section .image img {
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.about-section {
    background: #fff3ed;
}

.footer {
    background-color: #f8f9fa; /* Màu nền nhạt */
    color: #111; /* Chỉnh màu chữ để phù hợp với nền sáng */
    padding: 40px 0;
    width: 100%;
}

.footer a {
    color: #111; /* Màu chữ phù hợp với nền mới */
    text-decoration: none;
}

.footer a:hover {
    color: #ff6600; /* Màu khi hover */
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600;
}

.footer .social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #111;
}

.footer .payment-icons img {
    height: 30px;
    margin-right: 10px;
}

.footer .col-md-4 iframe {
    width: 100%;
    height: 150px; /* Điều chỉnh chiều cao của iframe */
    border-radius: 10px;
}
.progress-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 30px;
    justify-content: space-between;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #ddd;
    z-index: 0;
    transform: translateY(-50%);
}

.status {
    position: relative;
    text-align: center;
    z-index: 1;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.circle.active {
    background-color: rgb(0, 128, 255);
    box-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd;
    animation: pulse 1.5s infinite, bounce 0.5s infinite alternate;
    transform-origin: center;
}

.circle.active::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #0d6efd;
    border-radius: 50%;
    animation: ripple 1.5s infinite;
    opacity: 1;
    z-index: -1;
}

.circle:not(.active)::after {
    display: none;
}

.circle2 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.circle2.active {
    background-color: rgb(255, 128, 64);
    box-shadow: 0 0 10px pink, 0 0 20px pink;
    animation: pulse 1.5s infinite, bounce 0.5s infinite alternate;
    transform-origin: center;
}

.circle2.active::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: pink;
    border-radius: 50%;
    animation: ripple 1.5s infinite;
    opacity: 1;
    z-index: -1;
}

.circle2:not(.active)::after {
    display: none;
}
/* Hiệu ứng sóng động lan tỏa */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Hiệu ứng ánh sáng động */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd;
    }
    50% {
        box-shadow: 0 0 20px #0d6efd, 0 0 40px #0d6efd;
    }
    100% {
        box-shadow: 0 0 10px #0d6efd, 0 0 20px #0d6efd;
    }
}

/* Hiệu ứng nảy nhẹ */
@keyframes bounce {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.status p {
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
}


/* Điều chỉnh cho các phần tử hiển thị phù hợp trên màn hình nhỏ */
@media (max-width: 768px) {
	body {
	    margin-top: -30px;
	    padding-bottom: 10px; /* Thêm khoảng cách để không bị che khuất */
		margin-top: 70px;
	}
	.badge {
	    font-size: 0.8rem;  /* Kích thước chữ nhỏ lại */
	    padding: 0.3em 0.6em;  /* Điều chỉnh kích thước padding */
	}
	/* Đảm bảo các item trong navbar nằm trên cùng một hàng */
	.navbar-nav {
	    display: flex;
	    flex-direction: row;
	    justify-content: space-around;
	    width: 100%;
	}

	.navbar-nav .nav-link {
       font-size: 0.7rem; /* Giảm kích thước font chữ */
   }

   .navbar-nav .nav-link i {
       font-size: 1rem; /* Giảm kích thước biểu tượng */
   }
	/* Chỉnh sửa thẻ chứa navbar để không có khoảng cách không cần thiết */
	.navbar {
	    padding: 0;
	    width: 100%;
	}

    .footer .container {
        flex-wrap: wrap; /* Cho phép các phần tử gói lại */
        justify-content: center;
    }

    .footer .col-md-2 {
        flex: 1 1 50%; /* Mỗi cột chiếm 50% chiều rộng khi trên màn hình nhỏ */
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer .col-md-4 {
        flex: 1 1 60%; /* Mỗi cột chiếm 60% chiều rộng khi trên màn hình nhỏ */
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer h5 {
        font-size: 1.1rem;
    }

    .footer p, .footer ul li a {
        font-size: 0.8rem;
    }

    /* Đảm bảo "Bạn cần hỗ trợ" nằm ở cuối */
    .footer .cuoicung {
        order: 999; /* Đưa phần này xuống cuối cùng */
    }

    .social-icons, .payment-icons {
        justify-content: space-evenly; /* Đều không gian giữa các biểu tượng */
    }

    .social-icons i, .payment-icons img {
        width: 30px; /* Thay đổi kích thước biểu tượng nếu cần */
        height: 30px;
    }
}
.theme-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 14px;
}

body.theme-dark {
  background-color: #121212;
  color: #ffffff;
}
body.theme-blue {
  background-color: #e3f2fd;
  color: #0d47a1;
}
body.theme-pink {
  background-color: #fce4ec;
  color: #ad1457;
}
body.theme-purple {
  background-color: #f3e5f5;
  color: #6a1b9a;
}
body.theme-green {
  background-color: #e8f5e9;
  color: #2e7d32;
}
body.theme-yellow {
  background-color: #fffde7;
  color: #fbc02d;
}
body.theme-gray {
  background-color: #eeeeee;
  color: #424242;
}
body.theme-red {
  background-color: #ffebee;
  color: #b71c1c;
}
body.theme-orange {
  background-color: #fff3e0;
  color: #ef6c00;
}
body.theme-brown {
  background-color: #efebe9;
  color: #5d4037;
}
.breadcrumb {
    background-color: transparent;
   /* padding: 0.75rem 1rem; */
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-size: 15px;
    font-weight: 500;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #ccc;
    padding: 0 0.5rem;
  }

  .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
  } 
  
  
  #loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.9); /* Nền trắng vẫn phù hợp */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  .loading-logo {
      width: 100px; /* Điều chỉnh kích thước logo theo ý muốn */
      margin-bottom: 20px;
  }

  .pulse-loader {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
  }

  .pulse-loader span {
      display: block;
      width: 20px;
      height: 20px;
      background-color: #e55443; /* Màu đỏ cam chủ đạo (tùy chỉnh theo logo) */
      border-radius: 50%;
      animation: pulse 1.5s infinite ease-in-out;
  }

  .pulse-loader span:nth-child(2) {
      animation-delay: 0.2s;
      background-color: #f28482; /* Một biến thể nhạt hơn của đỏ cam */
  }

  .pulse-loader span:nth-child(3) {
      animation-delay: 0.4s;
      background-color: #e55443; /* Lặp lại màu chủ đạo */
  }

  @keyframes pulse {
      0% { transform: scale(0.8); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(0.8); opacity: 0.8; }
  }

  #loading-overlay p {
      font-size: 1.2em;
      color: #555; /* Màu chữ xám trung tính */
  }
  @media(max-width: 768px){
      .loading-logo {
          width: 50px; /* Điều chỉnh lại kích thước logo để logo vẫn rõ ràng trên màn hình nhỏ */
          margin-bottom: 20px;
      }
  }
  
  /* Tùy chỉnh màu sắc chủ đạo (ví dụ: màu đỏ cam) */
  .bg-primary-sushi {
      background-color: #e53935 !important; /* Một tông màu đỏ cam */
  }

  .text-primary-sushi {
      color: #e53935 !important;
  }

  /* Tùy chỉnh màu nền nhạt */
  .bg-light-sushi {
      background-color: #f8f0e3 !important; /* Màu kem nhạt */
  }

  /* Tùy chỉnh màu chữ đậm hơn */
  .text-dark-sushi {
      color: #333 !important;
  }

  .search-container .btn-outline-primary {
      border-color: #e53935;
      color: #e53935;
  }

  .search-container .btn-outline-primary:hover {
      background-color: #e53935;
      color: white;
  }

  /* Tùy chỉnh badge số lượng giỏ hàng */
  .badge-danger {
      background-color: #e53935;
  }

  /* Tùy chỉnh navbar bottom */
  .navbar-light.fixed-bottom {
      background-color: #fff; /* Giữ màu trắng hoặc thay bằng màu khác */
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05); /* Thêm bóng mờ phía trên */
  }

  .navbar-light .navbar-nav .nav-link {
      color: #555; /* Màu chữ mặc định cho nav item */
  }

  .navbar-light .navbar-nav .nav-link:hover {
      color: #333; /* Màu chữ khi hover */
  }

  .navbar-light .navbar-nav .nav-item.active .nav-link {
      color: #e53935; /* Màu chữ cho item active */
      font-weight: bold;
  }

  .navbar-light .navbar-nav .nav-item .nav-link i {
      font-size: 1.2rem; /* Tăng kích thước icon */
      margin-bottom: 5px;
  }

  /* Thêm transition cho các hiệu ứng hover */
  .navbar-light .navbar-nav .nav-link,
  .search-container .btn-outline-primary {
      transition: all 0.2s ease-in-out;
  }
