.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;
}

.product-item {
  margin: 200px 0px;
}

.Image_Product {
  width: 500px;
  height: 500px;
  border: 5px solid #000000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d9fced;
  margin: 0px 50px;
}
.Image_Product .main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-product {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.thumbnail-product::-webkit-scrollbar {
  height: 6px;
}
.thumbnail-product::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}
.thumbnail-product img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: 0.3s;
}
.thumbnail-product img:hover {
  transform: scale(1.05);
  border: 5px solid #27F5BB;
}

.active-thumb {
  border: 2px solid orange;
}

.product-info {
  display: inline;
}

.product-heading {
  color: #4303f4;
  font-weight: 700pt;
  margin: 20px 0px;
}

.product-price {
  display: flex;
  margin: 10px 0px;
}

.pro-title {
  font-size: 14pt;
  color: #160328;
  font-weight: 500;
  margin: 40px 0px;
}

.pro-price {
  padding: 0 50px;
  font-size: 20pt;
  font-weight: 900;
  color: #f53527;
  margin: 35px 0px;
}

.product-vendor {
  display: flex;
}
.product-vendor .pro-vendor1 {
  font-size: 15pt;
}
.product-vendor .pro-vendor2 {
  padding: 0 20px;
  font-size: 15pt;
  font-weight: 700;
  color: #e5499f;
}

.item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-qty .pro-number {
  font-weight: bold;
  margin: 40px 0px;
}
.item-qty button {
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}
.item-qty button:hover {
  border: 2px solid #151515;
  background: #11ffdb;
}
.item-qty input {
  width: 60px;
  height: 35px;
  text-align: center;
  border: 1px solid #ccc;
}

.btn-add-cart,
.btn-buy-now {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  margin: 20px 0px;
  transition: 0.3s;
}

.btn-add-cart {
  background-color: #215E61;
  border: solid 2px #f801a5;
  color: #F5FBE6;
}
.btn-add-cart:hover {
  background-color: #1ef08e;
  border: solid 4px #f87801;
  color: #000000;
}

.btn-buy-now {
  background-color: #1B9C85;
  color: #E6FFFD;
}
.btn-buy-now:hover {
  background-color: #1ef0ec;
  border: solid 4px #f87801;
  color: #000000;
}/*# sourceMappingURL=ProductSlots.css.map */