/* main.scss */
.home-banner {
  display: flex;
}

.vertical-menu {
  background-color: #085375;
  color: red;
  display: flexbox;
  justify-content: center;
}
.vertical-menu ul {
  display: inline;
  list-style: none;
}
.vertical-menu ul li {
  border-bottom: solid whitesmoke 1px;
  margin: 5px;
}
.vertical-menu ul li:hover {
  background-color: #3399ff;
  transform: translateY(-2px);
  color: rebeccapurple;
}
.vertical-menu ul li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
}
.vertical-menu ul li a:hover {
  font-weight: bold;
  color: #fffab3;
}

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

.item-home-banner {
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.item-home-banner h4 a {
  text-decoration: none;
  font-size: 40px;
  font-weight: 600;
}

/* IMAGE HOVER */
.image-home-panner {
  transition: 0.3s;
}
.image-home-panner:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 0 15px #ff4fed;
  border-radius: 12px;
}

/* BUTTON */
.btn-home-banner {
  box-sizing: border-box;
  padding: 10px 20px;
  background-color: whitesmoke;
  color: rgb(81, 81, 247);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.item-section-home a {
  text-decoration: none;
  list-style: none;
}
.item-section-home p {
  color: blue;
  font-size: 20pt;
}

.image-item-model:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 0 32px #f71717;
  border-radius: 12px;
}

.section-home-category {
  padding: 120px 0px;
  justify-content: center;
  text-align: center;
}

.sectionHeading h3 {
  padding: 20px 20px;
  color: #00a5cf;
  font-weight: 600;
  font-size: 30pt;
}

.col-custom-5 {
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .col-custom-5 {
    width: 33.33%;
  }
}
@media (max-width: 768px) {
  .col-custom-5 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .col-custom-5 {
    width: 100%;
  }
}

.list-product {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  overflow: hidden;
}
.product-card a {
  text-decoration: none;
  text-align: left;
}
.product-card:hover .imgthum-default {
  opacity: 0;
  transform: scale(1.08);
}
.product-card:hover .imgthum-hover {
  opacity: 1;
  transform: scale(1);
}
.product-card:hover .add-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.product-image {
  width: 100%;
  aspect-ratio: 1/1.4;
  justify-content: center;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: 0.4s;
}

.imgthum-default {
  opacity: 1;
  position: absolute;
  transform: scale(1);
}

.imgthum-hover {
  opacity: 0;
  transform: scale(1.08);
}

.product-vendor {
  text-transform: uppercase;
  font-size: 10pt;
  font-weight: 600;
  text-decoration: none;
  color: red;
  margin: 0;
}

.product-name {
  color: black;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}

.product-price {
  font-size: 17pt;
  color: black;
  font-weight: bold;
}

.add-card {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: #085375;
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.add-card a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.newsletter-title {
  text-align: center;
}

.status .status-heading {
  font-size: 20pt;
}
.status .status-heading a {
  text-decoration: none;
}
.status .status-describe {
  text-align: left;
}
.status img {
  width: 100%;
  margin-top: 20px;
}
.status img:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 0 30px #4fff52;
  border-radius: 12px;
}

.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;
}/*# sourceMappingURL=style.css.map */