.elementor-8785 .elementor-element.elementor-element-9a19194{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8785 .elementor-element.elementor-element-6d49cda{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8785 .elementor-element.elementor-element-f28279c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-161fc4e */.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #002b36;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
  width: 85px;
  height: auto;
  transition: all 0.3s ease;
}

/* Menu */
.app-header .menu {
  display: flex;
  gap: 14px;
}

/* Canh icon trên cùng một hàng */
.app-header .menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Kích thước icon */
.app-header .menu a i {
  font-size: 14px;
  color: #FFB700;
}

.app-header .menu a:hover i {
  color: #FF8C00;
}

/* Ô tìm kiếm */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 5px 10px;
  border: 1px solid #FFB700;
}

.search-box input {
  border: none;
  outline: none;
  padding: 5px;
  width: 300px;
  font-size: 14px;
  color: black;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #FFB700;
}

/* Ngôn ngữ */
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-switcher .lang-button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.language-switcher .lang-button i {
  font-size: 14px;
  color: #FFB700;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #002b36;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 120px;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 0;
}

.language-switcher:hover .lang-dropdown {
  display: block;
}



/* Ô tìm kiếm mặc định */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  overflow: hidden; /* Đảm bảo nội dung không bị tràn ra ngoài */
  border: 2px solid #FFB700; /* Viền màu vàng để nổi bật */
  
  padding: 5px 10px;
  border: 1px solid #FFB700;
  width: 300px;
  transition: width 0.3s ease;
}

.search-box input {
  border: none;
  outline: none;
  padding: 5px;
  width: 100%;
  font-size: 14px;
  color: black;
  border-radius: 15px; /* Bo góc cho ô nhập liệu */
}

/* Nút tìm kiếm */
.search-box button {
  background: none;
  border: none;
  border-radius: 50%; /* Làm tròn nút tìm kiếm */
  padding: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #FFB700;
}










/* Trên màn hình nhỏ (Mobile) */
@media (max-width: 768px) {
  .search-box {
    width: 35px; /* Ban đầu chỉ hiển thị icon */
    background: rgba(0, 43, 54, 0.9); /* Màu nền trong suốt hơn */
    border-radius: 30px;
    padding: 1px;
    overflow: hidden;
    transition: width 0.3s ease;
  }

  .search-box input {
    display: none; /* Ẩn ô nhập trên mobile */
  }

  .search-box button {
    font-size: 18px;
  }

  /* Khi người dùng nhấn vào ô tìm kiếm */
  .search-box.active {
    width: 300px; /* Mở rộng khi nhấn vào */
  }

  .search-box.active input {
    display: block; /* Hiện ô nhập khi mở */
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-40bb8fe */<style>
/* Chỉnh kích thước danh mục */
.shop-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 2px solid #FFB700; /* Viền vàng */
  border-radius: 20px;
  max-width: 350px; /* Điều chỉnh rộng hơn chút */
  margin: auto; /* Canh giữa trang */
}

/* Chữ danh mục */
.category-item {
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* Hiệu ứng hover */
.category-item:hover {
  color: #FFB700;
  transform: scale(1.05);
}

/* Danh mục con */
.sub-categories {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

/* Hiệu ứng mở danh mục con */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Danh mục con */
.sub-item {
  background: #005f6b;
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 25px;
  width: 180px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.sub-item:hover {
  background: #ffb700;
  color: #002b36;
  transform: scale(1.05);
}

/* Hiển thị sản phẩm */
#product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  padding: 15px;
}

/* Điều chỉnh số cột hiển thị sản phẩm trên màn hình nhỏ */
@media (max-width: 768px) {
  #product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Thiết kế sản phẩm */
.product-item {
  background: #002b36;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  width: 180px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: scale(1.05);
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.product-item h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.product-item p {
  font-size: 14px;
  font-weight: bold;
  color: #FFB700;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #002b36;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  position: relative;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: white;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}


/* Popup sản phẩm */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Nội dung popup */
.popup-content {
  background: #002b36;
  width: 80%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

/* Nút đóng popup */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #FFB700;
}

/* Đảm bảo danh mục cha hiển thị đẹp */
.shop-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 2px solid #FFB700;
  border-radius: 20px;
  max-width: 350px;
  margin: auto;
}



<style>/* End custom CSS */