header {
  position: sticky;
  top: 0;
  z-index: 9999999999;
  overflow: visible;
}
header .cart a {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}
header .cart a p {
  color: var(--menu-user);
  font-size: 14px;
  font-weight: 600;
}
header .cart a i {
  font-size: 25px;
  color: var(--menu-user);
  position: relative;
}
header .cart a i span {
  font-size: 13px;
  background: var(--background-infomation);
  color: white;
  padding: 3px 0;
  border-radius: 50%;
  left: 13px;
  border: 1px solid white;
  top: -10px;
  width: 22px;
  position: absolute;
}
header .user {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .user .dropdown__menu {
  z-index: 99999;
  transition: all 0.35s ease;
  transform: translateY(15px);
  bottom: -70px;
  opacity: 0;
  width: 150px;
  display: flex;
  visibility: hidden;
  gap: 15px;
  flex-direction: column;
  border-radius: 0 0 5px 5px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: absolute;
  padding: 8px 10px;
}
header .user .dropdown__menu .login__user,
header .user .dropdown__menu .sign__user {
  display: flex;
  padding: 5px 1px;
  background: #fdd835;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  color: black;
  border-radius: 5px;
}
header .user .dropdown__menu li {
  text-align: center;
  width: 100%;
  position: relative;
  list-style-type: none;
}
header .user .fa-user {
  font-size: 25px;
  color: var(--menu-user);
}
header .user .login {
  display: flex;
  flex-direction: column;
}
header .user .login span {
  font-size: 13px;
  font-weight: 500;
  color: var(--menu-user);
}
header .user .login .account {
  font-weight: 600;
}
header .user .login .fa-caret-down {
  font-size: 10px;
}
header .user:hover .dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .inner__menu {
  background: white;
  overflow: visible;
  position: relative;
}
header .inner__menu.active {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
header .inner__menu .category {
  border: 1px solid rgba(159, 159, 159, 0.2);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
  color: #333;
}

header .inner__menu .category:hover {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--background-infomation);
}

header .inner__menu .category i:first-child {
  font-size: 16px;
  color: var(--background-infomation);
}

header .inner__menu .category .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}

header .inner__menu .category:hover .fa-chevron-down {
  transform: rotate(180deg);
}

header .inner__menu .category .menu-mega {
  position: absolute;
  display: none;
  top: 100%;
  left:-100%;
  width: max-content;
  min-width: 1600px;
  max-width: calc(100vw - 20px);
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--background-infomation);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 99999;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

header .inner__menu .category:hover .menu-mega {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Mega Menu Content */
.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 360px;
  gap: 0;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 450px;
}

/* Mega Column */
.mega-column {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.mega-column:hover {
  background: rgba(255, 0, 0, 0.02);
}

.mega-column:last-of-type {
  border-right: none;
}

/* Category Image Header */
.category-img-header {
  position: relative;
  height: 150px;
  overflow: hidden;
  flex-shrink: 0;
}

.category-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mega-column:hover .category-img-header img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-overlay h3 {
  color: white;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Category Links */
.category-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  flex: 1;
  margin: 0;
  list-style: none;
}

.category-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-left: 3px solid transparent;
  color: #333;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 4px;
}

.category-links a:hover {
  border-left-color: var(--background-infomation);
  background: rgba(255, 0, 0, 0.05);
  padding-left: 16px;
  color: var(--background-infomation);
}

.category-links a i {
  font-size: 16px;
  color: var(--background-infomation);
  width: 20px;
  text-align: center;
}

.category-links a span {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}

.category-links a small {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

/* Featured Section */
.mega-featured {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: white;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
}

.featured-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-color: var(--background-infomation);
}

.product-image {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.hot-badge {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
}

.new-badge {
  background: linear-gradient(135deg, #00aced 0%, #0099cc 100%);
  color: white;
}

.popular-badge {
  background: linear-gradient(135deg, #ffb700 0%, #ff8800 100%);
  color: white;
}

.price-tag {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.product-name {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  line-height: 1.3;
}

.product-price {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--background-infomation);
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #ffc107;
}

.rating i {
  font-size: 11px;
}

.rating span {
  color: #888;
  margin-left: 2px;
}

/* Promo Banner */
.mega-promo {
  margin-top: auto;
}

.promo-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 120px;
  cursor: pointer;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-banner:hover img {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  transition: all 0.3s ease;
}

.promo-badge {
  background: var(--background-infomation);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.promo-overlay p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.promo-percent {
  font-size: 24px;
  font-weight: 700;
}

.promo-btn {
  background: var(--background-infomation);
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Bottom Category Tags */
.mega-categories-bottom {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 20px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.category-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.category-tag:hover {
  background: linear-gradient(135deg, var(--background-infomation) 0%, #cc0000 100%);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
  border-color: var(--background-infomation);
}

.category-tag i {
  font-size: 18px;
}
header .inner__menu .container {
  padding: 0 10%;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
header .inner__menu .logo img {
  width: 170px;
  height: auto;
}
header .inner__menu .inner__search {
  width: 40%;
}
header .inner__menu .inner__search .list__category ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px;
}
header .inner__menu .inner__search .list__category ul li {
  font-size: 13px;
  list-style-type: none;
}
header .inner__menu .inner__search .list__category ul li a {
  font-weight: 500;
  text-decoration: none;
  color: var(--text-color-dropdown);
  transition: 0.5s ease;
}
header .inner__menu .inner__search .list__category ul li:hover a {
  color: var(--background-infomation);
}
header .inner__menu .inner__search .search {
  margin-bottom: 5px;
  position: relative;
  display: flex;
  align-items: center;
}
header .inner__menu .inner__search .search input {
  border: 0;
  border-radius: 5px;
  height: 40px;
  padding-left: 2%;
  width: 100%;
  background: #ededed;
}
header .inner__menu .inner__search .search input:focus {
  outline: none;
}
header .inner__menu .inner__search .search a {
  align-items: center;
  display: flex;
  gap: 5px;
  background: var(--background-infomation);
  border-radius: 5px;
  padding: 12px;
  right: 0%;
  color: white;
  text-decoration: none;
  font-size: 14px;
  position: absolute;
}
header .inner__menu .inner__search .search a p {
  margin: 0;
  white-space: nowrap;
}
header .inner__infomation {
  padding: 10px 0 !important;
  margin: 0;
  padding: 0;
  background: var(--background-infomation);
  align-items: center;
}
header .inner__infomation .dropdown__menu {
  z-index: 99999;
  transition: all 0.35s ease;
  transform: translateY(15px);
  min-width: 170px;
  top: 28px;
  opacity: 0;
  display: flex;
  visibility: hidden;
  gap: 15px;
  flex-direction: column;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: absolute;
  padding: 5px;
}
header .inner__infomation .dropdown__menu li {
  position: relative;
}
header .inner__infomation .dropdown__menu li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: rgba(161, 161, 161, 0.351);
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}
header .inner__infomation .dropdown__menu li:hover::after {
  width: 100%;
  background: red;
}
header .inner__infomation .dropdown__menu a {
  font-size: 14px;
  padding: 2px 3px;
  color: var(--text-color-dropdown);
  transition: all 0.3s ease;
}
header .inner__infomation .dropdown__menu a:hover {
  color: var(--background-infomation);
}
header .inner__infomation ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
  padding: 0;
  justify-content: center;
  margin: 0;
}
header .inner__infomation ul li {
  position: relative;
  font-size: 14px;
  color: white;
}
header .inner__infomation ul li i {
  margin-right: 3px;
}
header .inner__infomation ul li a {
  text-decoration: none;
  color: #fff;
}
header .inner__infomation ul li:hover .dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=menu.css.map */
