.container {
  padding: 0;
  margin: 0;
  background-color: #fbfffe;
}

/* ================= LOGO / SEARCH ================= */
.image-Logo {
  display: flex;
  justify-content: center;
}

.search {
  width: 540px;
  height: 40px;
}

.btn-search {
  width: 120px;
  height: 40px;
}

/* ================= HEADER ================= */
.header {
  background-color: #092d67;
  border-radius: 10px;
}
.header-middle {
  border-bottom: solid blue;
}
.header-info {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* LOGIN + CART */
.login,
.cart {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
.login p,
.cart p {
  margin: 0;
}
.login .cart-icon,
.cart .cart-icon {
  position: relative;
}
.login .cart-count,
.cart .cart-count {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  right: -15px;
  transform: translateY(-50%);
  background-color: red;
  color: rgb(255, 255, 255);
  height: 25px;
  width: 25px;
  font-size: 11px;
  border-radius: 999px;
}
.login:hover,
.cart:hover {
  color: #f18701;
  font-weight: bold;
  border-radius: 5px;
}

/* ================= HEADER BOTTOM ================= */
.header-bottom {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

/* MENU NGANG */
.horizontal-menu {
  list-style: none;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background-color: #ffffff;
  padding: 10px 16px;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.horizontal-menu li {
  margin: 0 10px;
}
.horizontal-menu li a {
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}
.horizontal-menu li:hover {
  background-color: #b185db;
  border-radius: 9px;
}
.horizontal-menu li:hover a {
  color: #fff;
  transform: translateY(-2px);
}

/* ================= VERTICAL MENU TITLE ================= */
.head-tile-vmenu {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background-color: #00405d;
  color: wheat;
  border-bottom: solid whitesmoke;
  height: auto;
  width: 180px;
  justify-self: center;
  font-weight: 600;
  cursor: pointer;
}
.head-tile-vmenu i {
  margin: -16px;
  padding: 0 20px;
  font-size: 32px;
}
.head-tile-vmenu p {
  margin: 0;
  font-size: 16px;
}

.footer {
  background-color: #343058;
  height: 400px;
}
.footer-top {
  color: white;
  background-color: #353935;
  padding: 20px;
}
.footer-center {
  text-align: center;
  color: white;
}
.footer-bottom {
  background-color: #343058;
  color: #1fff8f;
  text-align: center;
  padding: 10px;
}

.newsletter-mail {
  display: flex;
}
.newsletter-mail input {
  width: 90%;
}
.newsletter-mail button {
  background-color: #00405d;
  color: white;
}

.cart-item {
  border-bottom: 1px solid #eee;
  border-radius: 15px;
  padding: 14px;
}

.media-line-item {
  display: flex;
  align-items: center;
}

.media-left {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.9);
}

.media-right {
  padding-left: 10px;
}

.item-info {
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.item-price {
  font-weight: 600;
  color: #e53935;
}

.media-total {
  text-align: right;
}

.item-qty {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 8px 0;
  gap: 5px;
}
.item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.item-qty button:hover {
  border: 1px solid #38f8ff;
  background: #0affbe;
}
.item-qty input {
  width: 45px;
  height: 28px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.item-total-price {
  font-weight: 700;
  color: #333;
}

.btnDelete {
  border: 1px solid #de1010;
  background: #ffffff;
  cursor: pointer;
  border-radius: 4px;
}
.btnDelete:hover {
  border: 1px solid #ff00a6;
  background: #ff785a;
}

.btnPay {
  display: flex;
  text-align: center;
}
.btnPay button {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 20px;
  background-color: #07ac80;
}
.btnPay button:hover {
  border: 1px solid #ff8548;
  background-color: #21f9dd;
  color: #333;
}

.sum-money {
  color: #5D3FD3;
  font-weight: bolder;
  font-size: 14pt;
}/*# sourceMappingURL=Cart.css.map */