@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #111111;
  overflow-x: hidden;
  background: #F2F2F2;
}

a {
  color: #111111;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}

.text-orange {
  color: #F37121;
}

.text-green {
  color: #36B44A;
}

.bg-green {
  background: #36B44A;
}

.border-green {
  border-color: #36B44A !important;
}

.form-control {
  font-size: 14px;
  min-height: 40px;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  box-shadow: 0px 0px 6px 0px rgba(54, 180, 74, 0);
  transition: 0.15s ease-in-out;
}
.form-control:focus {
  border-color: #36b44a;
  box-shadow: 0px 0px 6px 0px rgba(54, 180, 74, 0.6);
  background: #fff;
}

.container {
  max-width: 1200px;
  padding: 0 0;
}

header form .form-control {
  background: #F2F2F2;
  border-color: #F2F2F2;
  height: 48px;
  border-radius: 30px;
  width: 480px;
  padding: 6px 30px;
}
header form .btn {
  outline: none;
  right: 6px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
header form .btn:hover {
  background: #36b44a;
}
header .btn-cart {
  border-radius: 30px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
header .btn-cart .count {
  width: 20px;
  height: 20px;
  font-size: 10px;
  top: 4px;
  left: 30px;
  background: #F37121;
  border-radius: 100%;
}

.section-nav {
  z-index: 2;
}
.section-nav a {
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.section-nav a svg {
  transition: inherit;
}
.section-nav a:hover {
  background: #F37121;
  color: #36B44A;
}
.section-nav a:hover svg {
  transform: scale(1, -1);
}
.section-nav li:hover .ul-lv-1 {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.section-nav li:hover .ul-lv-1 li:hover .ul-lv-2 {
  opacity: 1;
  visibility: visible;
}
.section-nav .ul-lv-1 {
  z-index: 2;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: calc(100% + 10px);
  left: 0;
  width: 1200px;
  background: #fff;
  width: 290px;
  transition: 0.15s ease-in-out;
}
.section-nav .ul-lv-1 li {
  border-bottom: 1px solid #DDDDDD;
}
.section-nav .ul-lv-1 a:hover {
  background: #F2F2F7;
}
.section-nav .ul-lv-2 {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 290px;
  height: 100%;
  width: 910px;
  top: 0;
  padding: 12px;
  background: #F2F2F2;
}
.section-nav .ul-lv-2 > li {
  border-bottom: none;
}
.section-nav .ul-lv-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
  width: 100%;
}

.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 100%;
  transition: 0.15s ease-in-out;
}
.slick-dots li button {
  outline: none;
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.5;
  padding: 0;
  border-radius: 100%;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
}
.slick-dots li.slick-active {
  border: 1px solid #fff;
}
.slick-dots li.slick-active button {
  opacity: 1;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #F37121;
  border-radius: 100%;
  color: #F37121;
  transition: 0.15s ease-in-out;
}
.slick-arrow.slick-prev {
  left: 30px;
}
.slick-arrow.slick-next {
  right: 30px;
}
.slick-arrow:hover {
  color: #fff;
  background: #F37121;
}

.star-rating {
  --percent: calc(var(--rating) / 5* 100%);
  font-family: Font Awesome\ 5 Pro;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
}
.star-rating::before {
  content: "\f005\f005\f005\f005\f005";
  background: linear-gradient(90deg, #F37121 var(--percent), #777777 var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.product-layout {
  line-height: normal;
  position: relative;
  border-radius: 8px;
}
.product-layout .product-image {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #F2F2F2;
  display: block;
  margin-bottom: 12px;
  transition: 0.15s ease-in-out;
}
.product-layout .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.product-layout .product-info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.product-layout .product-info span {
  padding: 1px 8px;
  font-size: 12px;
  background: #EEEEEE;
  border-radius: 4px;
}
.product-layout .product-title {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
  height: 34px;
  transition: 0.15s ease-in-out;
}
.product-layout .product-rate {
  display: flex;
  align-items: center;
  grid-gap: 6px;
  margin-bottom: 12px;
}
.product-layout .product-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  height: 36px;
}
.product-layout .product-price .percent {
  font-size: 10px;
  border-radius: 2px;
  border: 1px solid #F37121;
  color: #F37121;
  padding: 2px 8px;
}
.product-layout .product-price span {
  font-size: 12px;
}
.product-layout .product-price .price-old {
  text-decoration: line-through;
  color: #757575;
  font-size: 13px;
}
.product-layout .product-price .price-public {
  font-size: 16px;
  font-weight: 500;
}
.product-layout .product-add-cart {
  background: #36B44A;
  border-radius: 4px 4px 8px 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}
.product-layout .product-add-cart:hover {
  background: #F37121;
}
.product-layout:hover .product-image {
  border-color: #F37121;
}
.product-layout:hover .product-title {
  color: #F37121;
}
.product-layout.product-hot .product-image {
  padding: 5px;
  border: none;
  background: linear-gradient(177deg, rgb(243, 113, 33) 35%, rgb(253, 177, 57) 100%);
}
.product-layout.product-hot .product-image img {
  padding: 7px;
  background: #fff;
}
.product-layout.product-hot::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 130px;
  height: 35px;
  background: url("../images/product-hot-icon.svg") no-repeat;
  background-size: contain;
}

.product-layout-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

.voucher-layout {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  margin-right: 20px;
  line-height: normal;
}
.voucher-layout .voucher-title {
  font-size: 18px;
}
.voucher-layout .voucher-price {
  color: #F37121;
  border: 1px solid #F37121;
  border-right-style: dashed;
  border-right-width: 1px;
  border-radius: 8px;
  background: #FCF3E8;
}
.voucher-layout .voucher-info {
  border: 1px solid #F37121;
  border-left: none;
  border-radius: 8px;
  background: #FCF3E8;
}
.voucher-layout .voucher-btn {
  background: #F37121;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
}
.voucher-layout.voucher-freeship .voucher-price {
  color: #36B44A;
  border-color: #36B44A;
}
.voucher-layout.voucher-freeship .voucher-info {
  border-color: #36B44A;
}
.voucher-layout.voucher-freeship .voucher-btn {
  background: #36B44A;
}

.fs-13 {
  font-size: 13px;
}

.section-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: 20px;
}
.news-layout .news-title {
  font-size: 16px;
}

footer a {
  transition: 0.15s ease-in-out;
}
footer a:hover {
  color: #F37121;
}
footer .footer-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
footer .item-contact {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
}
footer .item-store .store-area {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
}
footer .item-store .store-address {
  display: grid;
  grid-template-columns: 16px auto;
  align-items: center;
}

.pagination .page-link {
  height: 40px;
  width: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100% !important;
  font-weight: 600;
  font-size: 16px;
  border: none;
  background: #fff;
  color: inherit;
  box-shadow: none;
}
.pagination .page-link:hover {
  background: #36B44A;
  color: #fff;
}
.pagination .page-item.active .page-link {
  background: #36B44A;
  color: #fff;
}

.cart-just-added {
  width: 400px;
  border-radius: 8px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 30px;
  background: #fff;
  display: none;
}
.cart-just-added .item-cart-just-added {
  padding: 8px 12px;
  display: grid;
  grid-template-columns: auto 24px;
  gap: 12px;
  align-items: center;
}
.cart-just-added .item-cart-just-added a:nth-child(1) {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 12px;
}
.cart-just-added .item-cart-just-added a:nth-child(1) img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cart-just-added .item-cart-just-added a:nth-child(1) .title {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
  height: 34px;
  line-height: 17px;
}
.cart-just-added .bottom-cart-just-added {
  border: 1px solid #fff;
  background: #F2F2F2;
  padding: 12px;
}

@media (max-width: 1200px) {
  .section-nav {
    display: none;
  }
  .container {
    padding: 0 10px;
  }
  header .menu {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #36b44a;
  }
  header .contact {
    display: none !important;
  }
  header .header-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px !important;
  }
  header form {
    transition: 0.15s ease-in-out;
    grid-area: 2/1/2/4;
  }
  header form .form-control {
    width: 100%;
  }
  header .btn-cart {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  header .btn-cart .count {
    top: -8px;
    left: 24px;
  }
  header .btn-cart .text {
    display: none;
  }
  header.is-sticky .header-wrapper {
    grid-template-columns: 40px 1fr 40px;
  }
  header.is-sticky .logo {
    display: none;
  }
  header.is-sticky form {
    width: 100%;
    grid-area: unset;
  }
}
.offcanvas-menu .offcanvas-menu-item {
  padding: 8px 0;
  font-weight: 500;
}
.offcanvas-menu .card-body {
  font-size: 16px;
  font-weight: 500;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #afcfb4;
}

@media (max-width: 768px) {
  .product-layout-5 {
    grid-template-columns: 1fr 1fr;
  }
  .section-footer {
    grid-template-columns: 1fr 1fr;
  }
  footer .footer-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  footer .footer-layout .item-col:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .news-layout {
    grid-template-columns: 1fr 1.8fr;
  }
  .section-breadcrumb .container {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=main.css.map */