@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "ITC";
  src: url("../fonts/ITC Caslon 224 Std/ITC Caslon 224 Std Book.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ITC";
  src: url("../fonts/ITC Caslon 224 Std/ITC Caslon 224 Std Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ITC";
  src: url("../fonts/ITC Caslon 224 Std/ITC Caslon 224 Std Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
}

html,
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
}
@media only screen and (max-width: 991.98px) {
  html,
  body {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480.98px) {
  html,
  body {
    font-size: 12px;
  }
}

main {
  display: block;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: black;
  transition: all 0.3s ease-in-out;
}
a:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  color: #000000;
}

p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

button {
  background-color: transparent;
}
button:focus-visible {
  outline: none;
}

textarea {
  resize: none;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid #dee2e6;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1184px;
  }
  .container.container-checkout {
    max-width: 1265px;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: transparent;
  opacity: 1;
}
.popup-close:focus {
  box-shadow: none;
}

.password-strength {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.password-strength .line {
  width: 100%;
  height: 2px;
  background-color: #727272;
  border-radius: 200px;
  transition: all 0.3s ease-in-out;
}
.password-strength span {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: #727272;
  flex-shrink: 0;
  text-align: end;
  min-width: 96px;
}
.password-strength.weak .line:nth-child(1) {
  height: 3px;
  background-color: #ff0000;
}
.password-strength.good .line:nth-child(1),
.password-strength.good .line:nth-child(2) {
  height: 3px;
  background-color: #d35c00;
}
.password-strength.strong .line {
  height: 3px;
  background-color: #009500;
}

.bg-half {
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #f9f9f9;
  z-index: 0;
}
@media only screen and (max-width: 991.98px) {
  .bg-half {
    display: none;
  }
}

.right-space {
  margin-right: 55px;
}
@media only screen and (max-width: 1399.98px) {
  .right-space {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .right-space {
    margin-right: 0;
  }
}

.left-space {
  margin-left: 55px;
}
@media only screen and (max-width: 1399.98px) {
  .left-space {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .left-space {
    margin-left: 0;
  }
}

.logo-white {
  padding-top: 75px;
}
.logo-white img {
  width: auto;
  height: auto;
  max-width: 165px;
  max-height: 25px;
}

.bg-smoke {
  background-color: #f9f9f9;
}

h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.policy {
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ededed;
  padding-top: 10px;
  margin-bottom: 167px;
}
.policy a {
  font-size: 14px;
  color: #616161;
  padding: 10px;
}
.policy a:hover {
  color: black;
  text-decoration: underline;
}
@media only screen and (max-width: 1199.98px) {
  .policy a {
    font-size: 12px;
    padding: 5px;
  }
}

.main-btn {
  width: 100%;
  padding: 6.5px 14px;
  font-size: 14px;
  line-height: 1.366;
  font-weight: 400;
  color: #ffffff;
  background-color: #f07d00;
  border-radius: 3px;
  border: 1px solid #f07d00;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.main-btn:hover {
  background-color: #ffffff;
  color: #f07d00;
}
.main-btn:hover svg path {
  fill: #f07d00;
}
.main-btn.main-btn-full {
  width: 100%;
  padding: 10px;
}
.main-btn.main-btn-noborder {
  border-radius: 0;
}
.main-btn.main-btn-16size {
  font-size: 16px;
  line-height: 22px;
  padding: 20px 45px;
}
.main-btn.main-btn-20size {
  font-weight: 700;
  font-size: 20px;
  padding: 20px 45px;
}

.main-slider .main-slider-container {
  overflow: hidden;
}
.main-slider .main-slider-prev,
.main-slider .main-slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  top: 34%;
}
@media only screen and (max-width: 991.98px) {
  .main-slider .main-slider-prev,
  .main-slider .main-slider-next {
    display: none;
  }
}
.main-slider .main-slider-prev svg,
.main-slider .main-slider-next svg {
  width: auto;
  height: auto;
}
.main-slider .main-slider-prev svg path,
.main-slider .main-slider-next svg path {
  transition: all 0.3s ease-in-out;
}
.main-slider .main-slider-prev:hover svg path,
.main-slider .main-slider-next:hover svg path {
  fill: black;
}
.main-slider .main-slider-prev {
  left: calc((100% - 1160px) / 2);
}
@media only screen and (max-width: 1399.98px) {
  .main-slider .main-slider-prev {
    left: calc((100% - 1116px) / 2);
  }
}
@media only screen and (max-width: 1199.98px) {
  .main-slider .main-slider-prev {
    left: calc((100% - 936px) / 2);
  }
}
.main-slider .main-slider-next {
  right: calc((100% - 1160px) / 2);
}
@media only screen and (max-width: 1399.98px) {
  .main-slider .main-slider-next {
    right: calc((100% - 1116px) / 2);
  }
}
@media only screen and (max-width: 1199.98px) {
  .main-slider .main-slider-next {
    right: calc((100% - 936px) / 2);
  }
}
.main-slider.main-slider-center .main-slider-prev,
.main-slider.main-slider-center .main-slider-next {
  top: 50%;
}

.margin-57 {
  margin-bottom: 57px;
}
@media only screen and (max-width: 767.98px) {
  .margin-57 {
    margin-bottom: 30px;
  }
}

.checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox input[type="checkbox"] {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.checkbox .checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  border: 1px solid #dedede;
}
.checkbox .checkmark svg {
  display: none;
}
.checkbox:has(input[type="checkbox"]:checked) .checkmark {
  background-color: #f07d00;
  border-color: #f07d00;
}
.checkbox:has(input[type="checkbox"]:checked) .checkmark svg {
  display: block;
}

.cart-product .cart-checkbox {
  padding-left: 0;
  padding-right: 3px;
}
@media only screen and (max-width: 991.98px) {
  .cart-product .cart-checkbox {
    padding-right: 0;
  }
}
.cart-product .cart-img {
  margin-left: 9px;
}
.cart-product .cart-img img {
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 991.98px) {
  .cart-product .cart-img img {
    width: 64px;
    height: 64px;
  }
}
.cart-product .cart-info {
  padding-left: 3px;
}
@media only screen and (max-width: 991.98px) {
  .cart-product .cart-info {
    width: calc(100% - 110px);
  }
}
.cart-product .cart-info .cart-info-content a {
  font-weight: 800;
  display: block;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cart-product .cart-info .cart-info-content a:hover {
  color: #000000;
}
.cart-product .cart-quantity {
  text-align: center;
  align-items: end;
}
.cart-product .cart-quantity .cart-quantity-form {
  margin: 0 45px;
  border-radius: 3px;
  border: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90px;
  padding-left: 3px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1199.98px) {
  .cart-product .cart-quantity .cart-quantity-form {
    margin: 0 15px;
  }
}
.cart-product .cart-quantity .cart-quantity-form input {
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 1;
}
.cart-product .cart-quantity .cart-quantity-form input:focus-visible {
  outline: none;
}
.cart-product .cart-quantity .cart-quantity-form input.qty {
  min-width: 10px;
  max-width: 30px;
  padding: 10px 8px;
  padding-right: 0;
  font-weight: 600;
  -moz-appearance: textfield;
}
.cart-product
  .cart-quantity
  .cart-quantity-form
  input.qty::-webkit-outer-spin-button,
.cart-product
  .cart-quantity
  .cart-quantity-form
  input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-product .cart-quantity .cart-quantity-form input[type="button"] {
  padding: 10px;
  color: #616161;
}
.cart-product .cart-price {
  text-align: end;
}
.cart-product .cart-price h4 {
  padding-top: 8px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-product .cart-price span {
  font-weight: 400;
  color: #969595;
  text-decoration: line-through;
}
.cart-product .cart-delete {
  padding-left: 25px;
  padding-right: 0;
}
.cart-product .cart-delete button {
  width: 15px;
  border: none;
  background: transparent;
}
.cart-product .cart-delete button i::before{
  color: #f07d00;
}
.cart-product.popup-cart-item .cart-quantity {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media only screen and (max-width: 480.98px) {
  .cart-product.popup-cart-item .cart-quantity {
    margin-top: 10px;
    align-items: center;
  }
}
.cart-product.popup-cart-item .cart-img img {
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 480.98px) {
  .cart-product.popup-cart-item .cart-img img {
    width: 64px;
    height: 64px;
  }
}
.cart-product.popup-cart-item .cart-info {
  padding-left: 11px;
}
.cart-product.popup-cart-item .cart-info .cart-info-content a {
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
}
.cart-product.popup-cart-item .cart-price h4 {
  padding-top: 0;
}

.login-question {
  width: 100%;
  top: -58px;
  left: 0;
}
.login-question p {
  text-align: end;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  height: fit-content;
  color: #333333;
}
.login-question p span {
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}

.clear-input,
.password-input {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.main-form .main-form-question {
  display: block;
  margin-top: 15px;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}
.main-form .main-form-question:hover {
  text-decoration-color: rgba(0, 0, 0, 0.8);
}
.main-form .main-form-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-form .main-form-heading h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
}
.main-form .main-form-group {
  margin-bottom: 41px;
}
@media only screen and (max-width: 480.98px) {
  .main-form .row .col:first-child {
    padding-right: 5px;
  }
  .main-form .row .col:last-child {
    padding-left: 5px;
  }
}
.main-form .main-form-wrapper {
  position: relative;
}
.main-form .main-form-control {
  font-size: 14px;
  font-weight: 300;
  padding: 15px 36px 15px 20px;
  border-radius: 3px;
  border: 1px solid #ededed;
  color: #000000;
  background: transparent;
  margin-bottom: 20px;
  width: 100%;
}
.main-form .main-form-control::placeholder {
  color: #000000;
}
.main-form .main-form-control:focus-visible {
  border: 1px solid #727272;
  box-shadow: none;
}
.main-form .main-form-select {
  position: relative;
}
.main-form .main-form-select label {
  position: absolute;
  top: 9px;
  left: 20px;
  font-size: 10px;
  font-weight: 400;
  color: #727272;
}
.main-form .main-form-select select {
  padding: 23px 20px 7px 20px;
  appearance: none;
  font-weight: 600;
}
.main-form .main-form-select select:focus-visible {
  border: 1px solid #727272;
  box-shadow: none;
  outline: none;
}
.main-form .main-form-select .select-mark {
  position: absolute;
  top: 18px;
  right: 21px;
}
.main-form .main-form-left {
  padding-right: 9px;
}
.main-form .main-form-right {
  padding-left: 9px;
}
.main-form .main-form-check {
  display: flex;
  align-items: center;
  gap: 9px;
}
.main-form .main-form-check label {
  font-size: 14px;
  line-height: 24px;
}
.main-form .main-form-submit {
  margin-top: 20px;
  padding: 20px;
  width: 100%;
  background-color: transparent;
  color: #000000;
  font-weight: 300;
}
.main-form .main-form-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 100px;
}
.main-form .main-form-btn a {
  font-weight: 500;
  font-size: 14px;
}
.main-form .main-form-btn a svg {
  margin-right: 12px;
}
.main-form .main-form-btn button {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 50px;
}

.login .modal-dialog {
  max-width: 548px;
}
.login .login-modal {
  border-radius: 0;
}
.login .login-container {
  padding: 52px 54px 66px 55px;
}
@media only screen and (max-width: 767.98px) {
  .login .login-container {
    padding: 50px 25px;
  }
}
.login .login-container h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 35px;
}
.login .login-form {
  margin-bottom: 25px;
}
.login .login-form .login-form-input {
  padding: 14px 40px 14px 20px;
  margin-bottom: 12px;
  font-weight: 400;
}
.login .login-form .login-form-input::placeholder {
  color: #454545;
}
.login .login-form .login-form-input::-ms-reveal {
  display: none;
}
.login .login-form .login-form-forgot {
  padding-left: 20px;
  font-size: 12px;
  text-decoration: underline rgba(0, 0, 0, 0.4);
  display: block;
  margin-bottom: 22px;
}
.login .login-form .login-form-submit {
  padding: 14px 30px;
  font-weight: 500;
  border-radius: 2px;
}
.login .login-or {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 25px;
}
.login .login-or span {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
.login .login-or::before,
.login .login-or::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
}
.login .login-other {
  margin-bottom: 30px;
}
.login .login-other .login-other-btn {
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 500px;
  border: 1px solid #e9e9e9;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.login .login-other .login-other-btn img {
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 90%;
}
.login .login-other .login-other-btn.login-other-dark {
  background-color: #000000;
  color: #ffffff;
  gap: 12px;
}
.login .login-not {
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
}
.login .login-not button {
  text-decoration: underline;
}
.login .login-check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 22px;
  margin-top: 12px;
}
.login .login-check label {
  font-weight: 300;
  font-size: 12px;
  color: #8c8c8c;
}
.login.tab-pane .login-container {
  padding: 50px 15px;
}

.promotion-btn {
  position: fixed;
  bottom: 100px;
  right: 50px;
  display: none;
}

.promotion .promotion-container {
  padding: 42px 54px;
}
@media only screen and (max-width: 480.98px) {
  .promotion .promotion-container {
    padding: 30px 20px;
  }
}
.promotion h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.45;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 0 32px;
  margin-bottom: 8px;
}
.promotion p {
  padding: 0 16px;
  letter-spacing: 0.015em;
  line-height: 1.75;
  text-align: center;
  color: #727272;
  margin-bottom: 8px;
}
.promotion .promotion-form {
  margin-bottom: 32px;
}
.promotion .promotion-form .promotion-form-field {
  position: relative;
  margin-bottom: 32px;
}
.promotion .promotion-form .promotion-form-field input {
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  padding: 16px 30px 16px 20px;
  background-color: #f5f5f5;
}
.promotion .promotion-form .promotion-form-field input::placeholder {
  color: #727272;
}
.promotion .promotion-form .promotion-form-field input:focus {
  outline: none;
}
.promotion .promotion-form .promotion-form-submit {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
}
.promotion .promotion-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.promotion .promotion-social .promotion-social-item img {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
}
.promotion .promotion-check {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.promotion .promotion-check .check {
  position: relative;
  width: 17px;
  height: 17px;
  background-image: url("../image/promotion-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: 1px solid #454545;
}
.promotion .promotion-check .check input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.promotion .promotion-check .check:has(input:checked) {
  border-color: black;
  background-color: black;
}
.promotion .promotion-check label {
  font-size: 14px;
  line-height: 24px;
  color: #454545;
}

.product .product-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 270/350;
  margin-bottom: 19px;
}
.product .product-img:hover .product-img-default {
  /* opacity: 0; */
  /* visibility: hidden; */
  transform: scale(1.1);
}
.product .product-img:hover .product-img-hover,
.product .product-img:hover .product-wishlist,
.product .product-img:hover .product-quickview {
  opacity: 1;
  visibility: visible;
}
.product .product-img:hover .product-wishlist {
  transform: translateX(0);
}
.product .product-img:hover .product-quickview {
  transform: translateY(0) translateX(-50%);
}
.product .product-img .product-img-default {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
}
.product .product-img .product-img-hover {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.product .product-img .product-wishlist,
.product .product-img .product-quickview {
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991.98px) {
  .product .product-img .product-wishlist,
  .product .product-img .product-quickview {
    opacity: 1;
    visibility: visible;
  }
}
.product .product-img .product-wishlist {
  top: 16px;
  right: 17px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: translateX(100%);
}
.product .product-img .product-wishlist svg {
  margin-top: 3px;
}
.product .product-img .product-wishlist:hover,
.product .product-img .product-wishlist.active {
  background-color: #000000;
}
.product .product-img .product-wishlist:hover svg path,
.product .product-img .product-wishlist.active svg path {
  fill: #ffffff;
}
@media only screen and (max-width: 991.98px) {
  .product .product-img .product-wishlist {
    transform: translateX(0);
  }
}
.product .product-img .product-quickview {
  font-size: 12px;
  line-height: 1.366;
  font-weight: 400;
  bottom: 57px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
@media only screen and (max-width: 991.98px) {
  .product .product-img .product-quickview {
    width: 90px;
    transform: translateY(0) translateX(-50%);
  }
}
.product .product-info .product-type {
  display: block;
  color: #969595;
  font-size: 8px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}
.product .product-info .product-name {
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.product .product-info .product-name:hover {
  color: #1a1a1a;
}
.product .product-info .product-des {
  color: #616161;
  font-size: 14px;
  margin-bottom: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: none;
}
.product .product-info .product-price {
  margin-bottom: 15px;
}
.product .product-info .product-price .product-price-current {
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
}
.product .product-info .product-price .product-price-old {
  font-size: 14px;
  color: #969595;
  text-decoration: line-through;
}
.product .product-info .product-info-wishlist {
  display: none;
}
.product.product-row {
  display: flex;
  gap: 28px;
  padding-bottom: 29px;
  border-bottom: 1px solid #efefef;
}
.address .address-frame iframe {
  width: 100%;
  height: 100%;
}

.products {
  margin-top: 58px;
  position: relative;
  z-index: 1;
}
.products .products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 26px;
  row-gap: 70px;
  padding-bottom: 48px;
  animation: fadeIn ease 0.75s;
}
@media only screen and (max-width: 991.98px) {
  .product.product-row {
    gap: 10px;
  }
}
@media only screen and (max-width: 767.99px) {
  .product .product-info .product-type {
    font-size: 7px;
  }
  .product .product-info .product-name {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 0px;
  }
  .product .product-info .product-price .product-price-current {
    font-size: 14px;
  }
  .main-btn {
    font-size: 12px;
  }
  .product .product-img {
    aspect-ratio: 270/300;
    margin-bottom: 10px;
  }
  .product .product-info .product-price {
    margin-bottom: 10px;
  }
  .products .products-container {
    row-gap: 45px;
  }
}
.product.product-row:last-child {
  border: none;
}
.product.product-row .product-img {
  max-width: 143px;
  aspect-ratio: 143/180;
  margin-bottom: 0;
  flex-shrink: 0;
}
.product.product-row .product-img .product-wishlist,
.product.product-row .product-img .product-quickview {
  display: none;
}
.product.product-row .product-info {
  width: 100%;
}
.product.product-row .product-info .product-info-wishlist {
  display: block;
  cursor: pointer;
}
.product.product-row .product-info .product-info-wishlist svg path {
  transition: all 0.3s ease;
}
.product.product-row .product-info .product-info-wishlist:hover svg path {
  fill: #000000;
}
.product.product-row .product-info .product-info-wishlist.active svg path {
  fill: #ff0000;
}
.product.product-row .product-info .product-info-top {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media only screen and (max-width: 480.98px) {
  .product.product-row .product-info .product-info-top {
    flex-wrap: wrap;
  }
}
.product.product-row .product-info .product-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product.product-row .product-info .product-info-bottom .product-des {
  margin-bottom: 0;
}
@media only screen and (max-width: 480.98px) {
  .product.product-row .product-info .product-info-bottom .product-des {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480.98px) {
  .product.product-row .product-info .product-info-bottom {
    flex-wrap: wrap;
  }
}
.product.product-row .product-info .product-info-btn {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991.98px) {
  .product.product-row .product-info .product-info-btn {
    gap: 10px;
  }
}
.product.product-row .product-info .product-name {
  margin-bottom: 5px;
}
.product.product-row .product-info .product-price {
  margin-top: 25px;
}
@media only screen and (max-width: 480.98px) {
  .product.product-row .product-info .product-price {
    margin: 10px 0;
  }
}
.product.product-row .product-info .product-des {
  display: -webkit-box;
}
@media only screen and (max-width: 480.98px) {
  .product.product-row .product-info .product-des {
    margin-bottom: 0;
  }
}

.list .list-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 26px;
  row-gap: 57px;
}
@media only screen and (max-width: 991.98px) {
  .list .list-container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .list .list-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
}

.gallery {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991.98px) {
  .gallery {
    flex-direction: column-reverse;
  }
}
.gallery .gallery-thumbnail {
  height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
}
.gallery .gallery-thumbnail .gallery-thumbnail-item {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery .gallery-thumbnail .gallery-thumbnail-item .gallery-thumbnail-img {
  transition: all 0.5s ease;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}
.gallery .gallery-thumbnail .gallery-thumbnail-item::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.gallery
  .gallery-thumbnail
  .gallery-thumbnail-item.gallery-thumbnail-item-video {
  position: relative;
}
.gallery
  .gallery-thumbnail
  .gallery-thumbnail-item.gallery-thumbnail-item-video
  video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery
  .gallery-thumbnail
  .gallery-thumbnail-item.gallery-thumbnail-item-video::after {
  content: url(../assets/image/bg-play.svg);
}
.gallery
  .gallery-thumbnail
  .gallery-thumbnail-item.gallery-thumbnail-item-video.active::after {
  content: none;
}
.gallery
  .gallery-thumbnail
  .gallery-thumbnail-item.active
  .gallery-thumbnail-img {
  opacity: 1;
}
@media only screen and (max-width: 991.98px) {
  .gallery .gallery-thumbnail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }
}
.gallery .gallery-view {
  width: 515px;
  aspect-ratio: 515/751;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1199.98px) {
  .gallery .gallery-view {
    width: 400px;
  }
}
@media only screen and (max-width: 991.98px) {
  .gallery .gallery-view {
    width: 100%;
  }
}
.gallery .gallery-view video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .gallery-view img,
.gallery .gallery-view video {
  animation: fadeIn ease 0.75s;
}
.gallery.gallery-popup .gallery-thumbnail .gallery-thumbnail-item {
  width: 45px;
  height: 45px;
}
.gallery.gallery-popup .gallery-view {
  width: 306px;
  aspect-ratio: 306/450;
}
@media only screen and (max-width: 767.98px) {
  .gallery.gallery-popup .gallery-view {
    width: 100%;
  }
}

.detail .detail-container {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}
.detail .detail-container .product-image {
  width: 85%;
}
@media only screen and (max-width: 1199.98px) {
  .detail .detail-container {
    gap: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .detail .detail-container {
    gap: 20px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-container {
    flex-direction: column;
  }
}
.detail h6 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.detail h6 a {
  font-weight: 400;
}
.detail h6 a:hover {
  text-decoration: underline;
}
.detail .detail-wrapper {
  width: 53%;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991.98px) {
  .detail .detail-wrapper {
    width: 100%;
    flex-direction: row-reverse;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-wrapper {
    flex-direction: column-reverse;
  }
}
.detail .detail-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-img {
    flex-direction: row;
    justify-content: space-between;
  }
}
.detail .detail-img .detail-img-slider {
  width: 78px;
  height: 565px;
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-img .detail-img-slider {
    width: 100%;
    height: fit-content;
  }
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-img .detail-img-slider .swiper-slide {
    width: fit-content;
  }
}
.detail .detail-img .detail-img-item {
  width: 78px;
  aspect-ratio: 1;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
  opacity: 0.6;
  cursor: pointer;
}
.detail .detail-img .detail-img-item .play-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail .detail-img .swiper-slide.swiper-slide-thumb-active .detail-img-item {
  opacity: 1;
  border: 2px solid black;
}
.detail
  .detail-img
  .swiper-slide.swiper-slide-thumb-active
  .detail-img-item
  .play-video {
  display: none;
}
.detail .detail-img-prev,
.detail .detail-img-next {
  position: static;
  transform: rotate(90deg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin: 0;
}
.detail .detail-img-prev::after,
.detail .detail-img-next::after {
  content: none;
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-img-prev,
  .detail .detail-img-next {
    display: block;
    transform: none;
  }
}
.detail .detail-img-prev {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  .detail .detail-img-prev {
    display: block;
  }
}
.detail .detail-thumb {
  aspect-ratio: 515/751;
  width: 100%;
  height: fit-content;
  position: relative;
}
.detail .detail-thumb .detail-thumb-item {
  overflow: hidden;
}
.detail .detail-thumb .detail-thumb-item iframe {
  width: 100%;
  height: 100%;
}
.detail .detail-thumb .detail-thumb-wishlist {
  position: absolute;
  top: 25px;
  right: 22px;
  z-index: 100;
  border: none;
  width: 34px;
  aspect-ratio: 1;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}
.detail .detail-thumb .detail-thumb-wishlist svg path {
  transition: all 0.35s ease-in-out;
}
.detail .detail-thumb .detail-thumb-wishlist:hover,
.detail .detail-thumb .detail-thumb-wishlist.active {
  background-color: black;
}
.detail .detail-thumb .detail-thumb-wishlist:hover svg path,
.detail .detail-thumb .detail-thumb-wishlist.active svg path {
  fill: white;
}
.detail .detail-right {
  width: 100%;
}
.detail .detail-info {
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
}
.detail .detail-info .detail-info-heading .product-type {
  line-height: 14px;
  margin-bottom: 0;
}
.detail .detail-info .detail-info-heading .product-name {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}
.detail .detail-info .detail-rating {
  display: flex;
  justify-content: space-between;
  /* margin-top: 17px; */
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .detail .detail-info .detail-rating {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 991.98px) {
  .detail .detail-info .detail-rating {
    flex-wrap: nowrap;
    align-items: start;
    gap: 10px;
  }
}
.detail .detail-info .detail-rating .rating {
  --percent: calc(
    ((var(--rating) - 0.5) * 5 + var(--rating) * 16) / 100 * 100%
  );
  display: block;
  width: 100px;
  height: 16px;
  margin-right: 10px;
  font-size: 12px;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #ffe502 var(--percent),
    #ededed var(--percent)
  );
}
.detail .detail-info .detail-rating .rating img {
  width: 101%;
  height: 101%;
}
@media only screen and (max-width: 480.98px) {
  .detail .detail-info .detail-rating .rating {
    margin-right: 5px;
  }
}
.detail .detail-info .detail-rating .detail-rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 991.98px) {
  .detail .detail-info .detail-rating .detail-rating-item {
    flex-wrap: wrap;
    gap: 3px;
  }
}
.detail .detail-info .detail-rating .detail-rating-item .icon {
  margin-bottom: 2px;
}
.detail .detail-info .detail-rating .detail-rating-item p {
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 480.98px) {
  .detail .detail-info .detail-rating .detail-rating-item p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 480.98px) {
  .detail .detail-info .detail-rating .detail-id {
    font-size: 12px;
    padding-left: 5px;
    margin-left: 5px;
  }
}
.detail .detail-info .detail-info-share {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 991.98px) {
  .detail .detail-info .detail-info-share {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 480.98px) {
  .detail .detail-info .detail-info-share {
    font-size: 12px;
  }
}
.detail .detail-info .detail-info-share svg {
  margin-right: 10px;
}
@media only screen and (max-width: 480.98px) {
  .detail .detail-info .detail-info-share svg {
    margin-right: 5px;
  }
}
.detail .detail-info .detail-info-price {
  /* margin: 20px 0; */
}
.detail .detail-info .detail-info-price .product-price {
  margin-bottom: 20px;
}
.detail .detail-info .detail-info-price .product-price .product-price-current {
  font-size: 24px;
  line-height: 33px;
  font-weight: 800;
}
.detail .detail-variant {
  /* padding-bottom: 20px;
  border-bottom: 1px solid #efefef; */
  margin-bottom: 20px;
}
.detail .detail-variant .detail-variant-list {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199.98px) {
  .detail .detail-variant .detail-variant-list {
    gap: 10px;
  }
}
.detail .detail-variant .detail-variant-item label {
  position: relative;
  padding: 8px 29px;
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  border: 1px solid #c8c8c8;
  transition: all 0.5s ease;
}
.detail .detail-variant .detail-variant-item label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.detail .detail-variant .detail-variant-item label:hover,
.detail
  .detail-variant
  .detail-variant-item
  label:has(input[type="radio"]:checked) {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.detail .detail-variant.detail-variant-popup {
  padding-bottom: 22px;
}
.detail .detail-cart {
  margin-bottom: 30px;
}
.detail .detail-cart .detail-cart-quantity .detail-cart-quantity-form {
  margin: 0;
  width: 150px;
  border-color: #efefef;
}
.detail
  .detail-cart
  .detail-cart-quantity
  .detail-cart-quantity-form
  input[type="button"] {
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
}
.detail
  .detail-cart
  .detail-cart-quantity
  .detail-cart-quantity-form
  input.qty {
  font-weight: 400;
}
.detail .detail-submit {
  margin-bottom: 30px;
}
.detail .detail-des {
  /* border-top: 1px solid #efefef;
  padding-top: 20px; */
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 20px;
}
.detail .detail-download {
  background-color: #ededed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px;
}
.detail .detail-download h4 {
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.detail .detail-download h4 span {
  color: #ff0000;
}
.detail .detail-download .detail-download-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.related {
  padding: 78px 0 103px 0;
}
.related .related-title h3 {
  font-weight: 800;
  text-align: left;
  color: #f07d00;
  margin-bottom: 10px;
}
.related .related-title .line {
  width: 50px;
  height: 3px;
  background: #f07d00;
}
.related .related-container {
  margin-top: 57px;
}

.banner .banner-img {
  width: 100%;
  height: 275px;
}
.banner .banner-img img {
  object-position: center;
}

.breadcrumb {
  background-color: #f9f9f9;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0 8px 0;
  position: relative;
  z-index: 1;
  overflow-x: auto;
}
.breadcrumb .breadcrumb-link {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #616161;
  padding: 10px;
  padding-left: 30px;
  white-space: nowrap;
  position: relative;
}
.breadcrumb .breadcrumb-link:hover {
  color: black;
}
.breadcrumb .breadcrumb-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 9px;
  height: 100%;
  background-image: url("../image/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumb .breadcrumb-link:first-child {
  padding-left: 10px;
}
.breadcrumb .breadcrumb-link:first-child::before {
  content: none;
}
.breadcrumb .breadcrumb-link-current {
  color: #000000;
  font-weight: 500;
}
.breadcrumb .breadcrumb-arrow {
  width: 9px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb .breadcrumb-arrow img {
  width: 100%;
}
.breadcrumb.breadcrumb-white {
  background-color: transparent;
  margin-bottom: 35px;
  border-bottom: 1px solid #ededed;
}
.breadcrumb.breadcrumb-white .breadcrumb-list {
  padding: 0;
}

.newsletter {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991.98px) {
  .newsletter {
    flex-direction: column-reverse;
  }
}
.newsletter .newsletter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  background-color: #000000;
  padding-left: calc((100% - 1160px) / 2 - 51px);
  padding-top: 40px;
  padding-bottom: 59px;
  padding-right: 153px;
}
@media only screen and (max-width: 1399.98px) {
  .newsletter .newsletter-container {
    padding-left: calc((100% - 1116px) / 2);
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .newsletter .newsletter-container {
    padding-left: calc((100% - 936px) / 2);
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991.98px) {
  .newsletter .newsletter-container {
    width: 100%;
    padding-left: calc((100% - 696px) / 2);
    padding-right: calc((100% - 696px) / 2);
  }
}
@media only screen and (max-width: 767.98px) {
  .newsletter .newsletter-container {
    padding-left: calc((100% - 519px) / 2);
    padding-right: calc((100% - 519px) / 2);
  }
}
@media only screen and (max-width: 480.98px) {
  .newsletter .newsletter-container {
    padding: 50px 9px;
  }
}
.newsletter .newsletter-container .newsletter-content {
  max-width: 448px;
}
@media only screen and (max-width: 991.98px) {
  .newsletter .newsletter-container .newsletter-content {
    max-width: none;
  }
}
.newsletter .newsletter-container .newsletter-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199.98px) {
  .newsletter .newsletter-container .newsletter-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991.98px) {
  .newsletter .newsletter-container .newsletter-content h2 {
    text-align: center;
  }
}
.newsletter .newsletter-container .newsletter-content p {
  font-size: 1rem;
  line-height: 1.875;
  color: #ffffff;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .newsletter .newsletter-container .newsletter-content p {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991.98px) {
  .newsletter .newsletter-container .newsletter-content p {
    text-align: center;
    margin-bottom: 30px;
  }
}
.newsletter .newsletter-container .newsletter-form {
  overflow: hidden;
  border-radius: 5px;
  padding: 15px 59px;
  background-color: transparent;
  border: 1px solid #ffffff;
  position: relative;
}
.newsletter .newsletter-container .newsletter-form .newsletter-form-icon {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  left: 24px;
  top: 0;
}
.newsletter .newsletter-container .newsletter-form input {
  font-size: 14px;
  line-height: 30px;
  color: #ffffff;
  background-color: transparent;
  border: none;
  padding: 0;
  width: calc(100% - 100px);
}
.newsletter .newsletter-container .newsletter-form input:focus-visible {
  outline: none;
}
.newsletter .newsletter-container .newsletter-form input::placeholder {
  color: #ffffff;
  font-weight: 300;
}
.newsletter .newsletter-container .newsletter-form .newsletter-form-btn {
  border: none;
  border-radius: 0 5px 5px 0;
  color: #000000;
  background-color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  padding: 16px 28px;
  position: absolute;
  top: 0;
  right: 0;
}
.newsletter .newsletter-img {
  width: 50%;
  aspect-ratio: 800/442;
}
@media only screen and (max-width: 991.98px) {
  .newsletter .newsletter-img {
    width: 100%;
  }
}

.quickview .modal-dialog {
  max-width: 950px;
  width: fit-content;
  margin-top: 50px;
}
@media only screen and (max-width: 991.98px) {
  .quickview .modal-dialog {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767.98px) {
  .quickview .modal-dialog {
    max-width: 95%;
  }
}
.quickview .modal-content {
  border-radius: 0;
}
.quickview .quickview-container {
  display: flex;
  gap: 60px;
  padding: 44px 36px;
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-container {
    gap: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .quickview .quickview-container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 480.98px) {
  .quickview .quickview-container {
    padding: 30px 20px;
  }
}
.quickview .quickview-container .detail-wrapper {
  width: fit-content;
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-container .detail-wrapper {
    width: 50%;
    flex-direction: column-reverse;
    justify-content: start;
  }
}
@media only screen and (max-width: 767.98px) {
  .quickview .quickview-container .detail-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-container .quickview-img {
    flex-direction: row;
  }
}
.quickview .quickview-container .quickview-img .quickview-img-slider {
  width: 45px;
  max-height: 370px;
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-container .quickview-img .quickview-img-slider {
    width: 100%;
    height: fit-content;
  }
  .quickview
    .quickview-container
    .quickview-img
    .quickview-img-slider
    .swiper-slide {
    width: fit-content;
  }
}
.quickview .quickview-container .quickview-img .detail-img-item {
  width: 45px;
}
.quickview
  .quickview-container
  .quickview-img
  .detail-img-item
  .play-video
  svg {
  max-width: 10px;
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-container .quickview-img .quickview-img-prev,
  .quickview .quickview-container .quickview-img .quickview-img-next {
    display: block;
    transform: none;
  }
}
.quickview .quickview-container .quickview-thumb {
  aspect-ratio: 306/450;
  width: 306px;
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-container .quickview-thumb {
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .quickview .quickview-container .quickview-thumb {
    width: 60%;
  }
}
@media only screen and (max-width: 480.98px) {
  .quickview .quickview-container .quickview-thumb {
    width: 100%;
  }
}
.quickview .quickview-container .quickview-thumb .detail-thumb-wishlist {
  top: 21px;
  right: 21px;
  width: 24px;
  height: 24px;
}
.quickview .quickview-container .quickview-thumb .detail-thumb-wishlist svg {
  max-width: 11.5px;
}
@media only screen and (max-width: 991.98px) {
  .quickview .quickview-info {
    width: 100%;
  }
}
.quickview .quickview-info .detail-info-price {
  margin: 10px;
}
.quickview .quickview-info .product .product-name {
  font-size: 22px;
  margin-bottom: 0;
}
.quickview .quickview-info .product .product-price {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.popup .offcanvas.offcanvas-end {
  width: 515px;
  overflow: hidden;
}
.popup .offcanvas .btn-close {
  background: transparent;
  font-size: 14px;
  line-height: 31px;
  font-weight: 300;
  color: #000000;
  opacity: 1;
  height: auto;
  padding: 10px 0;
}
.popup .offcanvas .btn-close:focus {
  box-shadow: none;
}
.popup .offcanvas .offcanvas-body {
  padding: 0 24px;
  overflow-x: hidden;
}
@media only screen and (max-width: 767.98px) {
  .popup .offcanvas .offcanvas-body {
    padding: 0 10px;
  }
}
.popup .popup-border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin-left: -20px;
  width: 150%;
  height: 1px;
  background-color: #d9d9d9;
}
.popup .popup-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.popup .popup-nav .nav-link {
  font-size: 14px;
  line-height: 31px;
  color: #000000;
  padding: 10px 0;
}
.popup .popup-nav .nav-link.active {
  font-weight: 600;
  background: transparent;
  position: relative;
}
.popup .popup-nav .nav-link.active::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.popup .popup-cart {
  margin-right: -20px;
  padding-right: 20px;
  max-height: 295px;
  overflow-x: hidden;
  overflow-y: auto;
}
.popup .popup-cart::-webkit-scrollbar {
  width: 3px;
}
.popup .popup-cart::-webkit-scrollbar-track {
  background: #e0e0e0;
}
.popup .popup-cart::-webkit-scrollbar-thumb {
  background: #727272;
}
.popup .popup-cart .popup-cart-item {
  display: flex;
  padding-top: 25px;
  padding-bottom: 19px;
  position: relative;
}
.popup .popup-cart .popup-cart-item .checkbox {
  margin-top: 47px;
}
@media only screen and (max-width: 480.98px) {
  .popup .popup-cart .popup-cart-item .checkbox {
    margin-top: 25px;
  }
}
.popup .popup-cart .popup-cart-item .cart-content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.popup .popup-cart .popup-cart-item .cart-info {
  width: 100%;
}
@media only screen and (max-width: 480.98px) {
  .popup .popup-cart .popup-cart-item .cart-info {
    width: calc(100% - 100px);
  }
}
.popup .popup-cart .popup-cart-item .cart-info-content {
  margin-bottom: 16px;
}
@media only screen and (max-width: 480.98px) {
  .popup .popup-cart .popup-cart-item .cart-info-content {
    margin-bottom: 2px;
  }
}
.popup .popup-cart .popup-cart-item .cart-info-content a {
  margin-bottom: 0;
}
.popup .popup-cart .popup-cart-item .cart-info-content span {
  font-size: 12px;
}
.popup .popup-cart .popup-cart-item .cart-btn {
  gap: 34px;
  display: flex;
}
@media only screen and (max-width: 480.98px) {
  .popup .popup-cart .popup-cart-item .cart-btn {
    gap: 10px;
  }
}
.popup .popup-cart .popup-cart-item .cart-btn button {
  border: none;
  margin-bottom: 18px;
  height: fit-content;
  background: transparent;
}
.popup .popup-cart .popup-cart-item .cart-btn button svg path {
  transition: all 0.35s ease-in-out;
}
.popup .popup-cart .popup-cart-item .cart-btn button:hover svg path {
  fill: black;
}
.popup .popup-cart .popup-cart-item .cart-wishlist.active svg path {
  fill: #ff0000;
}
.popup .popup-cart .popup-cart-item .cart-price {
  display: flex;
  align-items: end;
  gap: 4px;
}
.popup .popup-cart .popup-cart-item .cart-price span {
  font-size: 16px;
}
@media only screen and (max-width: 480.98px) {
  .popup .popup-cart .popup-cart-item .cart-price span {
    font-size: 12px;
  }
}
.popup .popup-cart .popup-cart-item .cart-quantity .cart-quantity-form {
  margin: 0;
}
.popup
  .popup-cart
  .popup-cart-item
  .cart-quantity
  .cart-quantity-form
  input.qty {
  padding: 8px;
}
.popup .popup-discount {
  position: relative;
  padding-top: 18px;
  padding-bottom: 18px;
}
.popup .popup-discount .popup-discount-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup .popup-discount h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0;
}
.popup .popup-discount .popup-discount-icon .line {
  width: 12px;
  height: 1px;
  background-color: #616161;
}
.popup .popup-discount .popup-discount-icon .line:last-child {
  transform: rotate(90deg);
}
.popup .popup-btn {
  margin: 30px 0;
  padding: 15px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}
.popup .popup-btn span {
  font-weight: 700;
}
.popup .popup-btn::before {
  top: -30px;
}
.popup .popup-pay {
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 36px;
  row-gap: 21px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 480.98px) {
  .popup .popup-pay {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 50px;
  }
}
.popup .popup-pay .popup-pay-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}
.popup .popup-pay .popup-pay-item img {
  width: auto;
  height: auto;
  max-width: 215px;
  max-height: 46px;
}

.header .header-topbar {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #f5f5f5;
}
.header .header-topbar a,
.header .header-topbar p {
  font-weight: 600;
  font-size: 12px;
  color: #f07d00;
  margin: 0;
}
@media only screen and (max-width: 480.98px) {
  .header .header-topbar a,
  .header .header-topbar p {
    font-size: 10px;
  }
}
.header .header-topbar .header-topbar-content {
  align-items: center;
  height: 42px;
}
@media only screen and (max-width: 480.98px) {
  .header .header-topbar .header-topbar-content {
    height: 30px;
  }
}
.header .header-topbar .header-topbar-info {
  gap: 30px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .header .header-topbar .header-topbar-info {
    display: none;
  }
}
.header .header-topbar .header-topbar-info .header-topbar-info-icon {
  display: flex;
  align-items: center;
}
.header .header-topbar .header-topbar-info .header-topbar-info-icon i::before {
  color: #f07d00;
}
.header .header-topbar .header-topbar-info .header-topbar-info-icon img {
  width: auto;
  height: auto;
  max-width: 16px;
  max-height: 15px;
}
.header .header-topbar .header-topbar-info-item {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-topbar .header-topbar-notice {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.header .header-topbar .header-topbar-notice a {
  font-weight: 400;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.header .header-topbar .header-topbar-notice a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.header .header-topbar .header-topbar-notice .header-topbar-slider p {
  text-align: center;
}
.header .header-main {
  /* padding: 20px 0;
  height: 80px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 480.98px) {
  .header .header-main {
    height: 70px;
  }
}
@media only screen and (max-width: 480.98px) {
  .header .header-logo {
    max-width: 140px;
  }
  .header .header-logo img {
    width: auto;
    height: auto;
    max-width: 164px;
  }
}
/* .header .header-nav {
  width: 100%;
} */
@media only screen and (max-width: 991.98px) {
  .header-nav {
    /* display: none; */
  }
}
.header-nav .nav-item {
  color: #000000;
  font-size: 14px;
  transition: all 0.5s ease;
  padding: 10px 0;
}
.header-nav .nav-list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0 20px;
  background: #f5f5f5;
}
@media only screen and (max-width: 1199.98px) {
  .header-nav .nav-list {
    gap: 30px;
  }
}
.header-nav .nav-list .nav-list-lv0 {
  position: absolute;
  top: 45px;
  left: 0;
  box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  padding: 10px 20px;
  z-index: 2;
  background: #fff;
  min-width: 200px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.header-nav .nav-list .nav-list-lv0 li {
  padding: 7px 0;
  transition: all 0.5s ease;
}
.header-nav .nav-list .nav-list-lv0 li:hover {
  padding-left: 15px;
}
.header-nav .nav-list li {
  padding: 10px 0;
  position: relative;
}
.header-nav .nav-list li .submenu-header {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: #ffffff;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.header-nav .nav-list li .submenu-header li {
  white-space: nowrap;
  border-bottom: 1px solid #fafafa;
}
.header-nav .nav-list li:hover .submenu-header {
  display: block;
  transition: all 0.3s ease;
}
.header-nav .nav-list li .submenu-header li:hover a {
  color: #f07d00;
}
.header-nav .nav-list li:hover .nav-list-lv0 {
  visibility: visible;
  opacity: 1;
}
.header .header-left {
  display: flex;
  align-items: center;
  max-width: 20%;
}
@media (max-width: 767.99px) {
  .header .header-left {
    max-width: 50%;
  }
  .header .header-wrapper {
    width: fit-content !important;
  }
}
.header .header-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 50%;
}
.header .header-right {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: end;
  width: 100%;
}
@media only screen and (max-width: 480.98px) {
  .header .header-right {
    gap: 15px;
  }
}
.header .header-cart .header-cart-img {
  padding-right: 7px;
}
.header .header-cart .header-cart-quantity {
  position: absolute;
  background: #f07d00;
  border-radius: 500px;
  border: 1px solid #ffffff;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 9px;
  line-height: 13px;
  right: 1px;
}
.header .header-icon {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-icon .acount-info-home {
  position: absolute;
  top: 150%;
  left: 0;
  z-index: 100;
  background: #ffffff;
  color: #000000;
  padding: 20px;
  width: fit-content;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
}
.header .header-icon .acount-info-home .user-name {
  white-space: nowrap;
}
.header .header-icon .acount-info-home .btn-logout {
  margin-top: 15px;
}
.header .header-icon .acount-info-home .btn-logout a {
  white-space: nowrap;
  color: #f07d00;
  font-size: 14px;
}
.header .header-icon .acount-info-home .btn-logout a:hover {
  text-decoration: underline;
}
.header .header-icon .acount-info-home .btn-logout i {
  margin-right: 5px;
}
.header .header-search .search-input {
  visibility: hidden;
  opacity: 0;
  width: 420px;
  top: calc(100% + 25px);
  right: -30px;
  z-index: 990;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  color: #000000;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  transition: all 0.5s ease;
  will-change: transform;
  padding: 10px 20px;
}
@media only screen and (max-width: 767.98px) {
  .header .header-search .search-input {
    width: 320px;
  }
}
@media only screen and (max-width: 480.98px) {
  .header .header-search .search-input {
    top: calc(100% + 22px);
    width: 270px;
    padding: 10px;
  }
}
.header .header-search .search-input .search-smart {
  width: 100%;
}
.header .header-search .search-input .header-search-form {
  position: relative;
}
.header .header-search .search-input .header-search-form input {
  width: 100%;
  padding: 5px 45px 5px 5px;
}
.header .header-search .search-input .header-search-form input:focus-visible {
  outline: none;
}
.header .header-search .search-input .header-search-form .enter-search {
  right: -5px;
  top: -2px;
}
.header .header-search:hover .search-input {
  visibility: visible;
  opacity: 1;
}
.header .show-menu-mobile {
  margin-left: 25px;
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .header .show-menu-mobile {
    display: block;
  }
}
@media only screen and (max-width: 480.98px) {
  .header .show-menu-mobile {
    margin-left: 15px;
  }
}
.header #menumobile {
  width: 80vw;
  max-width: 450px;
}
.header #menumobile .submenu-header {
  margin: 10px 0 0 20px;
}
.header #menumobile .mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 15px;
  gap: 15px;
}
.header #menumobile .mobile-search {
  width: 100%;
}
.header #menumobile .mobile-search input {
  border: 1px solid black;
  width: 100%;
  padding: 7px 15px;
  border-radius: 3px;
}
.header #menumobile .nav-mobile {
  margin-top: 40px;
}
.header #menumobile .nav-mobile li {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #dedede;
}
.header #menumobile .nav-mobile li a {
  color: #000000;
  font-size: 16px;
}
.header #menumobile .nav-mobile li:last-child {
  border: none;
}
.header #menumobile .nav-mobile .nav-item-bold {
  font-weight: 600;
}
.header #menumobile .btn-close {
  right: 10px;
  position: absolute;
  top: 10px;
}
.header #menumobile .nav-list .nav-list-lv0 {
  padding-left: 30px;
}
.header #menumobile .nav-list .nav-list-lv0 .nav-list-lv1 {
  list-style: none;
  padding-left: 15px;
  padding-bottom: 10px;
}
.header #menumobile .nav-list .nav-list-lv0 .nav-list-lv1 li {
  list-style: none;
}
.header #menumobile .nav-list .close-sub-nav {
  position: absolute;
  top: 13px;
  right: 0px;
  padding: 10px 0 10px 20px;
}
.header #menumobile .nav-list .close-sub-nav svg {
  width: 16px;
}
.header #menumobile .nav-list .close-sub-nav svg path {
  fill: #606060;
}
.header #menumobile .nav-list .close-sub-nav svg:nth-child(1) {
  display: none;
}
.header #menumobile .nav-list .close-sub-nav.collapsed svg:nth-child(1) {
  display: block !important;
}
.header #menumobile .nav-list .close-sub-nav.collapsed svg:nth-child(2) {
  display: none;
}
.header .mega-menu {
  position: absolute;
  left: 0;
  top: 120px;
  width: 100%;
  z-index: 4;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 54px 0 71px 0;
  transition: all 0.5s ease;
  display: none;
  animation: updown 0.5s ease forwards;
  box-shadow: 0px 40px 50px 0px rgba(0, 0, 0, 0.4);
}
.header .mega-menu:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.header .mega-menu .mega-menu-main {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.header .mega-menu .mega-menu-main .mega-menu-list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 68px;
  row-gap: 47px;
}
@media only screen and (max-width: 1399.98px) {
  .header .mega-menu .mega-menu-main .mega-menu-list {
    column-gap: 30px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .header .mega-menu .mega-menu-main .mega-menu-list {
    column-gap: 20px;
  }
}
.header .mega-menu .mega-menu-main .mega-menu-list .mega-menu-col {
  flex: 0 0 230px;
}
@media only screen and (max-width: 1199.98px) {
  .header .mega-menu .mega-menu-main .mega-menu-list .mega-menu-col {
    flex: 0 0 190px;
  }
}
.header
  .mega-menu
  .mega-menu-main
  .mega-menu-list
  .mega-menu-col
  .nav-item-parent {
  color: #000000;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 9px;
  text-transform: capitalize;
  display: inline-block;
}
.header .mega-menu .mega-menu-main .mega-menu-list .mega-menu-col li {
  padding: 0;
  transition: all 0.5s ease;
}
.header .mega-menu .mega-menu-main .mega-menu-list .mega-menu-col li a {
  padding: 0;
  color: #000000;
  font-size: 16px;
  line-height: 2.3;
  text-transform: capitalize;
}
.header .mega-menu .mega-menu-main .mega-menu-list .mega-menu-col li:hover {
  padding-left: 15px;
}
.header .mega-menu .mega-menu-main .mega-menu-side {
  flex: 0 1 293px;
  flex-shrink: 0;
}
.header .mega-menu .mega-menu-main .mega-menu-side a {
  float: right;
}
.header .mega-menu .mega-menu-main .mega-menu-side a span {
  font-weight: 500;
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: underline rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  margin-right: 6px;
}
.header .mega-menu .mega-menu-main .mega-menu-side a:hover span {
  text-decoration: underline rgba(0, 0, 0, 0.5);
}
.header .mega-menu .mega-menu-main .mega-menu-image {
  aspect-ratio: 293/390;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.header li:hover .mega-menu {
  display: block;
}

.footer {
  padding-top: 50px;
  border-top: 1px solid #f07d00;
}
.footer .footer-element {
  max-width: 200px;
}
@media only screen and (max-width: 991.98px) {
  .footer {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
.footer .footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991.98px) {
  .footer .footer-main {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .footer .footer-element {
    max-width: unset;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-main {
    flex-direction: column;
    gap: 32px;
  }
}
.footer .footer-element h5 {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer .footer-element ul p,
.footer .footer-element ul a {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 12px;
  transition: all 0.5s ease-in-out;
}
.footer .footer-element ul a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-element .footer-grid {
    column-count: 2;
  }
}
.footer .footer-element.footer-element-center {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-element.footer-element-center {
    width: 100%;
  }
  .footer .footer-element.footer-element-center h5 {
    text-align: center;
  }
}
.footer .footer-element.footer-element-info {
  max-width: 270px;
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-element.footer-element-info {
    max-width: none;
  }
}
.footer .footer-element.footer-element-download h5 {
  margin-bottom: 15px;
}
.footer .footer-element.footer-element-download .download-icon {
  display: block;
  width: 129px;
  height: auto;
  margin-bottom: 9px;
}
.footer .footer-element.footer-element-download .download-icon img {
  width: auto;
  height: auto;
  max-width: 127px;
  max-height: 37px;
}
.footer .footer-element-download .download-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-group {
    width: 100%;
  }
}
.footer .footer-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 47px;
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-social {
    justify-content: center;
    gap: 24px;
  }
}
.footer .footer-social .footer-social-item img {
  width: 38px;
  height: 38px;
}
.footer .footer-end {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 44px;
  border-top: 1px solid #d9d9d9;
}
@media only screen and (max-width: 991.98px) {
  .footer .footer-end {
    padding-top: 12px;
    flex-direction: column;
  }
}
.footer .footer-end p {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
@media only screen and (max-width: 991.98px) {
  .footer .footer-end p {
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-end p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
.footer .footer-pay {
  display: flex;
  gap: 36px;
}
.footer .footer-pay img {
  width: auto;
  height: auto;
  max-height: 30px;
  max-width: 75px;
}
@media only screen and (max-width: 991.98px) {
  .footer .footer-pay {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer .footer-pay {
    gap: 20px;
    align-items: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes updown {
  from {
    transform: translateY(7%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
.slider .slider-item {
  position: relative;
  width: 100%;
  /* aspect-ratio: 1600/743; */
}
@media only screen and (max-width: 991.98px) {
  .slider.slider-banner {
    aspect-ratio: 700/410;
  }
}
.slider .slider-item .slider-item-content {
  z-index: 2;
  top: 165px;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 1399.98px) {
  .slider .slider-item .slider-item-content {
    top: 100px;
  }
}
@media only screen and (max-width: 991.98px) {
  .slider .slider-item .slider-item-content {
    top: 50px;
  }
}
.slider .slider-item .slider-item-content h6 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991.98px) {
  .slider .slider-item .slider-item-content h6 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480.98px) {
  .slider .slider-item .slider-item-content h6 {
    font-size: 8px;
  }
}
.slider .slider-item .slider-item-content h2 {
  font-family: "ITC", serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 75px;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 991.98px) {
  .slider .slider-item .slider-item-content h2 {
    font-size: 3rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 480.98px) {
  .slider .slider-item .slider-item-content h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
  }
}
.slider .slider-item .slider-item-content a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: underline 1px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.slider .slider-item .slider-item-content a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.slider .slider-pagination {
  bottom: 41px;
}
@media only screen and (max-width: 991.98px) {
  .slider .slider-pagination {
    bottom: 20px;
  }
}
.slider .slider-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 0.5;
  background-color: #ffffff;
  margin: 0 7.5px;
  border-radius: 0;
}
.slider .slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.benefits {
  border-bottom: 1px solid #d9d9d9;
}
.benefits .benefits-scroll {
  width: 100%;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1199.98px) {
  .benefits .benefits-scroll {
    overflow: auto;
  }
}
@media only screen and (max-width: 480.98px) {
  .benefits .benefits-scroll .benefits-box .benefits-img {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
  .benefits .benefits-scroll .benefits-box p {
    line-height: 1.4;
  }
  .benefits .benefits-scroll .benefits-box .vertical-line {
    height: 100%;
  }
}
.benefits .benefits-scroll .benefits-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 299px;
  padding: 25px;
}
.benefits .benefits-scroll .benefits-box .benefits-img {
  flex-shrink: 0;
}
.benefits .benefits-scroll .benefits-box .benefits-img img {
  width: auto;
  height: auto;
  max-width: 45px;
  max-height: 35px;
}
.benefits .benefits-scroll .benefits-box p {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 500;
}
.benefits .benefits-scroll .benefits-box p a:hover {
  text-decoration: underline;
}
.benefits .benefits-scroll .benefits-box:not(:first-child) {
  border-left: solid 1px #d9d9d9;
}
.benefits .benefits-scroll .benefits-box .vertical-line {
  border-left: solid 1px #d9d9d9;
  height: calc(100% - 18px);
  margin: 0 12px;
  margin-top: auto;
  margin-bottom: auto;
}
.justin {
  /* margin-top: 84px; */
  margin-bottom: 108px;
}
.home-collection .home-collection-banners .home-collection-banner-img {
  width: 50%;
}
.justin .justin-container {
  /* padding-top: 20px;
    border-top: 1px solid #d9d9d9; */
}
.wishlist-promotion .wishlist-promotion-link {
  background: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 35px;
}
.wishlist-promotion .wishlist-promotion-link:hover {
  background: #c2c2c2;
}

.confirm {
  margin: 5.25rem 0;
}
.confirm .confirm-content {
  margin-bottom: 6.75rem;
}
.confirm .confirm-content h2 {
  font-weight: 600;
  font-size: 2.625rem;
  text-align: center;
  margin-bottom: 22px;
}
.confirm .confirm-content p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2;
  text-align: center;
  color: #646464;
  margin-bottom: 3.5rem;
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
}
.confirm .confirm-icon {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.1875rem;
}
.confirm .confirm-icon img {
  width: auto;
  height: auto;
  max-width: 66px;
  max-height: 66px;
}
.confirm .confirm-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
}
.confirm .confirm-help .confirm-help-link img {
  width: auto;
  height: auto;
  max-width: 17px;
  max-height: 14px;
}
.confirm .confirm-help .confirm-help-link:first-child {
  border: none;
} /*# sourceMappingURL=style.css.map */

#product-home .home-collection .title {
  border-top: 1px solid #0087cb;
}
#product-home .home-collection_title h3 {
  text-transform: uppercase;
  display: inline-block;
  height: auto;
  line-height: normal;
  padding: 0px 10px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
#product-home .home-collection:nth-child(2) .title {
  border-top: 1px solid #ed6699;
}
#product-home .home-collection:nth-child(3) .title {
  border-top: 1px solid #24a8ac;
}

#product-home .home-collection .home-collection_title {
  background: #0087cb;
}
#product-home .home-collection:nth-child(2) .home-collection_title {
  background: #ed6699;
}
#product-home .home-collection:nth-child(3) .home-collection_title {
  background: #24a8ac;
}

#product-home .home-collection_title {
  height: 50px;
  display: inline-block;
  width: 200px;
  position: relative;
}
#product-home .banner-product img {
  width: 200px;
}
#product-home .view-more a {
  font-size: 14px;
  font-weight: 500;
}
#product-home .view-more a:hover {
  color: #0087cb;
}
#product-home .view-more a i {
  margin-left: 3px;
}
@media only screen and (max-width: 767.98px) {
  .justin .justin-container {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575.99px) {
  .justin {
    margin-bottom: 30px;
  }
  .benefits .benefits-scroll .benefits-box {
    min-width: 200px;
    padding: 15px;
  }
  .benefits .benefits-scroll .benefits-box p {
    font-size: 12px;
  }
  #product-home .justin .home-collection-banners {
    margin-bottom: 30px;
  }
  #product-home .home-collection_title h3 {
    font-size: 12px;
  }
  #product-home .home-collection_title {
    height: 40px;
    width: 180px;
  }
  #product-home .view-more a {
    font-size: 12px;
  
  }
}


.collection {
  margin-bottom: 127px;
}
@media only screen and (max-width: 991.98px) {
  .collection {
    margin-bottom: 50px;
  }
}
.collection .collection-container {
  margin-top: 59px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media only screen and (max-width: 991.98px) {
  .collection .collection-container {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.collection .collection-item {
  width: 100%;
  aspect-ratio: 284/227;
  overflow: hidden;
  position: relative;
}
.collection .collection-item .collection-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 10px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 480.98px) {
  .collection .collection-item .collection-item-content {
    gap: 10px;
    padding-bottom: 20px;
  }
}
.collection .collection-item .collection-item-content h5 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(160%);
  transition: all 0.5s ease;
}
@media only screen and (max-width: 480.98px) {
  .collection .collection-item .collection-item-content h5 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 991.98px) {
  .collection .collection-item .collection-item-content h5 {
    transform: translateY(0);
  }
}
.collection .collection-item .collection-item-content .collection-item-btn {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 480.98px) {
  .collection .collection-item .collection-item-content .collection-item-btn a {
    padding: 10px 32px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991.98px) {
  .collection .collection-item .collection-item-content .collection-item-btn {
    visibility: visible;
    opacity: 1;
  }
}
.collection .collection-item .collection-item-content:hover h5 {
  transform: translateY(0);
}
.collection
  .collection-item
  .collection-item-content:hover
  .collection-item-btn {
  visibility: visible;
  opacity: 1;
}
.collection .collection-item:nth-child(1) {
  order: 1;
}
.collection .collection-item:nth-child(2) {
  order: 4;
}
@media only screen and (max-width: 991.98px) {
  .collection .collection-item:nth-child(2) {
    order: 2;
  }
}
.collection .collection-item:nth-child(4) {
  order: 3;
}
.collection .collection-item:nth-child(5) {
  order: 5;
}
.collection .collection-item:nth-child(3) {
  order: 2;
  aspect-ratio: 551/443;
  grid-column: 2 span;
  grid-row: 2 span;
}
.collection .collection-item:nth-child(3) .collection-item-content {
  gap: 13px;
  padding-bottom: 42px;
}
.collection .collection-item:nth-child(3) .collection-item-content h5 {
  transform: translateY(0);
  font-size: 40px;
  letter-spacing: 0;
}
@media only screen and (max-width: 480.98px) {
  .collection .collection-item:nth-child(3) .collection-item-content h5 {
    letter-spacing: 0.1em;
    font-size: 2rem;
  }
}
.collection
  .collection-item:nth-child(3)
  .collection-item-content
  .collection-item-btn {
  visibility: visible;
  opacity: 1;
}
.collection
  .collection-item:nth-child(3)
  .collection-item-content
  .collection-item-btn
  a {
  padding: 9.5px 39.5px;
  font-size: 16px;
}
@media only screen and (max-width: 480.98px) {
  .collection
    .collection-item:nth-child(3)
    .collection-item-content
    .collection-item-btn
    a {
    padding: 10px 32px;
  }
}

.video {
  width: 100%;
  aspect-ratio: 1600/690;
  overflow: hidden;
  position: relative;
  margin-bottom: 91px;
}
@media only screen and (max-width: 767.98px) {
  .video {
    margin-bottom: 70px;
  }
}
.video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
.video .video-thumbnail .video-play {
  position: absolute;
  top: 42%;
  left: 48%;
  right: auto;
  z-index: 10;
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .video .video-thumbnail .video-play {
    top: 38%;
  }
}
@media only screen and (max-width: 767.98px) {
  .video .video-thumbnail .video-play {
    top: 30%;
    left: 42%;
  }
}
.video .video-thumbnail.hidden {
  opacity: 0;
  visibility: hidden;
}

.overview {
  position: relative;
  margin-bottom: 108px;
}
@media only screen and (max-width: 767.98px) {
  .overview {
    margin-bottom: 60px;
  }
}
.overview .overview-bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.overview .overview-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 111px 0 103px 0;
  justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
  .overview .overview-container {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 480.98px) {
  .overview .overview-container {
    padding: 40px 0;
  }
}
.overview .overview-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
@media only screen and (max-width: 767.98px) {
  .overview .overview-item {
    gap: 20px;
  }
}
.overview .overview-item .overview-item-icon {
  width: 85px;
  aspect-ratio: 1;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overview .overview-item .overview-item-icon img {
  width: auto;
  height: auto;
  max-width: 65%;
  max-height: 65%;
}
@media only screen and (max-width: 767.98px) {
  .overview .overview-item .overview-item-icon {
    width: 60px;
  }
}
.overview .overview-item .overview-item-label {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 991.98px) {
  .overview .overview-item .overview-item-label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .overview .overview-item .overview-item-label {
    font-size: 14px;
  }
}

.testimonials {
  margin-bottom: 106px;
}
@media only screen and (max-width: 767.98px) {
  .testimonials {
    padding: 0 9px;
  }
}
.testimonials .testimonials-container {
  margin-top: 92px;
}
@media only screen and (max-width: 1199.98px) {
  .testimonials .testimonials-container {
    margin-top: 50px;
  }
}
.testimonials .testimonials-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 43px;
}
@media only screen and (max-width: 1399.98px) {
  .testimonials .testimonials-item {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .testimonials .testimonials-item {
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .testimonials .testimonials-item {
    padding: 0 50px;
  }
}
.testimonials .testimonials-item .testimonials-item-rating {
  --percent: calc(
    ((var(--rating) - 0.5) * 5 + var(--rating) * 16) / 100 * 100%
  );
  display: block;
  width: 100px;
  height: 16px;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 30px;
  background: linear-gradient(
    90deg,
    black var(--percent),
    #909090 var(--percent)
  );
}
.testimonials .testimonials-item .testimonials-item-rating img {
  width: 101%;
  height: 101%;
}
.testimonials .testimonials-item .testimonials-item-account {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.testimonials .testimonials-item .testimonials-item-avatar {
  width: 65px;
  height: 76px;
}
.testimonials .testimonials-item .testimonials-item-name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 3px;
}
.testimonials .testimonials-item .testimonials-item-job {
  font-size: 14px;
}
.testimonials .testimonials-item .testimonials-item-speak {
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.testimonials .testimonials-item .testimonials-item-des {
  font-weight: 300;
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 15px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  min-height: 96px;
}
.testimonials .testimonials-prev,
.testimonials .testimonials-next {
  top: 35%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials .testimonials-prev svg,
.testimonials .testimonials-next svg {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 100%;
}
.testimonials .testimonials-prev svg path,
.testimonials .testimonials-next svg path {
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991.98px) {
  .testimonials .testimonials-prev,
  .testimonials .testimonials-next {
    display: none;
  }
}
.testimonials .testimonials-prev:hover svg path,
.testimonials .testimonials-next:hover svg path {
  fill: black;
}
.testimonials .testimonials-prev {
  left: calc((100% - 1160px) / 2);
}
@media only screen and (max-width: 1399.98px) {
  .testimonials .testimonials-prev {
    left: calc((100% - 1116px) / 2);
  }
}
@media only screen and (max-width: 1199.98px) {
  .testimonials .testimonials-prev {
    left: calc((100% - 936px) / 2);
  }
}
.testimonials .testimonials-next {
  right: calc((100% - 1160px) / 2);
}
@media only screen and (max-width: 1399.98px) {
  .testimonials .testimonials-next {
    right: calc((100% - 1116px) / 2);
  }
}
@media only screen and (max-width: 1199.98px) {
  .testimonials .testimonials-next {
    right: calc((100% - 936px) / 2);
  }
}

.instagram .instagram-container {
  margin-top: 54px;
}
@media only screen and (max-width: 480.98px) {
  .instagram .instagram-container {
    margin-top: 30px;
  }
}
.instagram .instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.partner {
  margin-bottom: 106px;
}
@media only screen and (max-width: 991.98px) {
  .partner {
    margin-bottom: 60px;
  }
}
.partner .partner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 100px;
  gap: 30px;
}
@media only screen and (max-width: 767.98px) {
  .partner .partner-container {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 991.98px) {
  .partner .partner-container {
    overflow: auto;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .partner .partner-item {
    max-height: 35px;
  }
}
.partner .partner-item img {
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 46px;
}

.home-list {
  margin-bottom: 98px;
}

.notfound {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 87px;
  padding-bottom: 176px;
  width: 100%;
  flex-direction: column;
}
@media only screen and (max-width: 991.98px) {
  .notfound {
    margin-top: 30px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 480.98px) {
  .notfound {
    margin-top: 20px;
    padding-bottom: 80px;
  }
}
.notfound img {
  width: auto;
  height: auto;
  max-width: 52.414%;
  margin-bottom: 32px;
}
@media only screen and (max-width: 991.98px) {
  .notfound img {
    max-width: 70%;
  }
}
@media only screen and (max-width: 480.98px) {
  .notfound img {
    max-width: 90%;
    margin-bottom: 0;
  }
}
.notfound h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  text-align: center;
  color: #969595;
  margin-bottom: 40px;
  max-width: 712px;
}
@media only screen and (max-width: 991.98px) {
  .notfound h1 {
    font-size: 2rem;
    max-width: 61%;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 480.98px) {
  .notfound h1 {
    max-width: none;
    margin-bottom: 15px;
  }
}
.notfound a {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 118px;
}
@media only screen and (max-width: 991.98px) {
  .notfound a {
    padding: 15px 48px;
  }
}

.checkout {
  margin-top: 28px;
}
@media only screen and (max-width: 480.98px) {
  .checkout .main-form .main-form-btn {
    margin-top: 32px;
    margin-bottom: 64px;
  }
  .checkout .main-form .main-form-btn a svg {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 480.98px) {
  .checkout .main-form .checkout-submit {
    padding: 15px 28px;
    font-size: 16px;
  }
}
.checkout input::placeholder {
  color: #000000;
}
.checkout .checkout-express h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 52px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 480.98px) {
  .checkout .checkout-express h4 {
    margin-bottom: 0;
  }
}
.checkout .checkout-express .checkout-express-select {
  margin-bottom: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-express .checkout-express-select {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media only screen and (max-width: 480.98px) {
  .checkout .checkout-express .checkout-express-select {
    column-gap: 20px;
  }
}
.checkout .checkout-express .checkout-express-select img {
  width: auto;
  height: auto;
  max-width: 125px;
  max-height: 45px;
}
.checkout .checkout-or {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 9px;
}

.payment {
  position: relative;
  z-index: 2;
}
.payment .payment-list {
  padding-right: 10px;
  margin-bottom: 29px;
  max-height: 260px;
  overflow-y: auto;
}
.payment .payment-list::-webkit-scrollbar {
  width: 3px;
}
.payment .payment-list::-webkit-scrollbar-track {
  background: #e0e0e0;
}
.payment .payment-list::-webkit-scrollbar-thumb {
  background: #727272;
}
.payment .payment-product {
  position: relative;
  padding: 8px 0;
  display: flex;
  margin-bottom: 26px;
}
@media only screen and (max-width: 480.98px) {
  .payment .payment-product {
    flex-wrap: wrap;
  }
}
.payment .payment-product .count {
  position: absolute;
  top: 0;
  left: 89px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
}
@media only screen and (max-width: 480.98px) {
  .payment .payment-product .count {
    left: 48px;
  }
}
.payment .payment-product .payment-product-img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  flex-shrink: 0;
}
@media only screen and (max-width: 480.98px) {
  .payment .payment-product .payment-product-img {
    width: 64px;
    height: 64px;
    margin-right: 12px;
  }
}
.payment .payment-product .payment-product-info {
  width: 100%;
}
@media only screen and (max-width: 480.98px) {
  .payment .payment-product .payment-product-info {
    width: calc(100% - 140px);
  }
}
.payment .payment-product .payment-product-info a {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #333333;
}
.payment .payment-product .payment-product-info p {
  font-size: 12px;
  line-height: 16px;
  color: #616161;
}
.payment .payment-product .payment-product-price {
  width: 100px;
  text-align: end;
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 480.98px) {
  .payment .payment-product .payment-product-price {
    text-align: left;
    float: right;
    width: fit-content;
  }
}
.payment .payment-discount {
  position: relative;
  margin-bottom: 26px;
}
.payment .payment-discount input {
  width: 100%;
  height: 53px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px;
  outline: none;
  border: 1px solid #ededed;
  transition: all ease 0.3s;
}
.payment .payment-discount input:focus {
  border-color: #7a7a7a;
}
.payment .payment-discount input::placeholder {
  color: #000000;
}
.payment .payment-discount .payment-discount-apply {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0px 31px;
  font-size: 14px;
  line-height: 51px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 3px 3px 0;
}
.payment .payment-bill table tr th,
.payment .payment-bill table tr td {
  background-color: transparent;
  border: none;
  font-size: 14px;
  line-height: 24px;
  padding: 0;
  padding-bottom: 10px;
  color: #000000;
}
.payment .payment-bill table tr th {
  font-weight: 300;
}
.payment .payment-bill table tr td {
  font-weight: 600;
  text-align: end;
}
.payment .payment-bill table tr td span {
  color: #ff0000;
  font-weight: 600;
}
.payment .payment-bill table tr td h5 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 9px;
}
@media only screen and (max-width: 480.98px) {
  .payment .payment-bill table tr td h5 {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.payment .payment-bill table tr td h5 img {
  width: auto;
  height: auto;
  max-width: 14px;
  max-height: 14px;
  margin-right: 6px;
}
.payment .payment-bill table tbody tr:last-child td {
  padding-bottom: 23px;
}
.payment .payment-bill table tfoot {
  border-top: 1px solid #eeeeee;
}
.payment .payment-bill table tfoot tr th,
.payment .payment-bill table tfoot tr td {
  padding-top: 20px;
}
.payment .payment-bill table tfoot tr th {
  font-weight: 500;
}
.payment .payment-bill table tfoot tr th span {
  font-size: 12px;
  font-weight: 300;
}
.payment .payment-bill table tfoot tr td {
  font-size: 20px;
}

.contact {
  margin-top: 58px;
  margin-bottom: 148px;
}
@media only screen and (max-width: 991.98px) {
  .contact {
    margin-bottom: 100px;
  }
}
.contact .contact-form .contact-form-heading {
  margin-top: 52px;
  margin-bottom: 25px;
}
.contact .contact-form .contact-form-heading p,
.contact .contact-form .contact-form-heading span {
  font-weight: 300;
  font-size: 14px;
}
.contact .contact-form .contact-form-heading p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 480.98px) {
  .contact .contact-form .contact-form-heading p {
    display: block;
  }
}
.contact .contact-form .contact-form-submit {
  margin-top: 50px;
}

.address {
  margin-bottom: 148px;
}
@media only screen and (max-width: 991.98px) {
  .address {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 480.98px) {
  .address {
    margin-bottom: 50px;
  }
}
.address .address-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
  .address .address-container {
    flex-direction: column-reverse;
  }
}
.address .address-info {
  max-width: 362px;
}
.address .address-info .address-info-item {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991.98px) {
  .address .address-info .address-info-item {
    margin-bottom: 20px;
  }
}
.address .address-info .address-info-item h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.address .address-info .address-info-item a {
  text-decoration: underline;
}
.address .address-info .address-info-item p,
.address .address-info .address-info-item a {
  font-size: 16px;
  font-weight: 300;
}
.address .address-frame {
  width: 50%;
  aspect-ratio: 580/315;
}
@media only screen and (max-width: 991.98px) {
  .address .address-frame {
    aspect-ratio: 580/450;
  }
}
@media only screen and (max-width: 767.98px) {
  .address .address-frame {
    width: 100%;
    aspect-ratio: 580/315;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .products .products-container {
    column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.products .products-container.products-row {
  grid-template-columns: repeat(1, 1fr);
  row-gap: 26px;
}
.products h1 {
  font-size: 28px;
  font-weight: 600;
  border-bottom: 3px solid #f07d00;
  padding-bottom: 5px;
}
@media only screen and (max-width: 991.98px) {
  .products h1 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 575.98px) {
  .products h1 {
    font-size: 21px;
  }
}
.products .quantity {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: rgba(97, 97, 97, 0.7);
}
.products .products-filter-toggle {
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 32px;
  display: none;
  width: fit-content;
}
@media only screen and (max-width: 767.98px) {
  .products .products-filter-toggle {
    display: block;
  }
}
.products .products-filter-list {
  padding-right: 25px;
  transform: translate(0);
}
@media only screen and (max-width: 991.98px) {
  .products .products-filter-list {
    padding-right: 15px;
    margin-top: 56px;
  }
}
@media only screen and (max-width: 767.98px) {
  .products .products-filter-list {
    padding-right: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    padding: 50px 10.5px 0;
    background-color: #ffffff;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
  }
  .products .products-filter-list.active {
    transform: translateX(0%);
  }
}
.products .products-filter-list .products-filter-close {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  .products .products-filter-list .products-filter-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10.5px;
    padding: 10px 15px;
    border-radius: 3px;
    color: #000000;
    font-weight: 700;
  }
}
.products .products-filter-item {
  /* margin-top: 30px; */
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .products .products-filter-item {
    margin-left: auto;
    margin-right: auto;
  }
}
.products
  .products-filter-item:not(:has(.collapse.show))
  .products-filter-heading
  .icon
  .line:first-child {
  transform: rotate(90deg);
}
.products .products-filter-item .text {
  font-weight: 500;
  font-size: 14px;
  color: #686868;
}
.products .products-filter-item .products-filter-heading {
  margin-bottom: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 20px;
  background: #f07d00;
  border-radius: 5px;
}
.products .products-filter-item .products-filter-heading .heading {
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  color: #fff;
}
.products .products-filter-item .products-filter-heading .icon {
  position: relative;
  cursor: pointer;
}
.products .products-filter-item .products-filter-heading .icon .line {
  width: 12px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.products
  .products-filter-item
  .products-filter-heading
  .icon
  .line:last-child {
  position: absolute;
  top: 0;
  left: 0;
}
.products .products-filter-item .clear-button {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2px;
  width: fit-content;
  margin: 17px 0 0 auto;
  cursor: pointer;
}
.products .products-filter-item .clear-button .icon {
  width: 12px;
  display: flex;
  align-items: center;
}
.products .products-filter-item .clear-button .icon svg {
  width: 100%;
}
.products .products-filter-item .clear-button .text {
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
}
.products .products-filter-criteria {
  max-height: 600px;
  height: fit-content;
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.products .products-filter-criteria::-webkit-scrollbar {
  width: 7px;
}
.products .products-filter-criteria::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 100px;
}
.products .products-filter-criteria::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 100px;
}
.products .products-filter-criteria::-webkit-scrollbar-thumb:hover {
  background: #8f8f8f;
}
.products .products-filter-criteria li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 21px;
}
.products .products-filter-criteria li:last-child {
  margin-bottom: 0;
}
.products .products-filter-criteria li input[type="checkbox"] {
  width: 19px;
  height: 19px;
  position: relative;
  background: transparent;
  appearance: none;
  cursor: pointer;
}
.products .products-filter-criteria li input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border: 1px solid #dedede;
}
.products .products-filter-criteria li input[type="checkbox"]:checked::before {
  background-image: url("../image/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f07d00;
  border-color: #f07d00;
}
.products .products-filter-criteria label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #686868;
}
.products .products-filter-criteria label .icon {
  display: inline-block;
}
.products .products-filter-criteria label .icon svg {
  margin-bottom: 4px;
  margin-right: 10px;
}
.products .products-filter-size {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media only screen and (max-width: 767.98px) {
  .products .products-filter-size {
    grid-template-columns: repeat(5, 1fr);
  }
}
.products .products-filter-size label {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 55px;
  width: 100%;
  height: auto;
  border: 1px solid #c8c8c8;
  font-size: 12px;
  line-height: 1.366;
  padding: 4.5px;
  font-weight: 500;
  transition: all 0.5s ease;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .products .products-filter-size label {
    max-width: none;
  }
}
.products .products-filter-size label input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.products .products-filter-size label:has(input:checked) {
  background-color: #000000;
  color: #ffffff;
}
.products .products-filter-search input {
  border-radius: 3px;
  border: 1px solid #dedede;
  outline: none;
  padding: 10px 9px 7px;
  margin: -5px 0 29px;
  width: 100%;
}
.products .products-filter-radio {
  margin-top: 21px;
  margin-left: 48px;
}
.products .products-filter-radio .products-filter-radio-item {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #616161;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.products .products-filter-radio .products-filter-radio-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.products
  .products-filter-radio
  .products-filter-radio-item
  input:checked
  ~ .checkmark::after {
  display: block;
}
.products .products-filter-radio .products-filter-radio-item .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  border-radius: 300px;
  border: 1px solid #dedede;
}
.products .products-filter-radio .products-filter-radio-item .checkmark::after {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 300px;
  background: #000000;
}
.products
  .products-filter-radio
  .products-filter-radio-item:hover
  input
  ~ .checkmark::after {
  background: #000000;
}
.products .products-filter-select .products-filter-select-item {
  display: flex;
  gap: 17px;
  align-items: center;
}
.products .products-filter-select .products-filter-select-item .text {
  font-size: 12px;
  font-weight: 300;
}
.products .products-filter-select .products-filter-select-item select {
  border-radius: 3px;
  border: 1px solid #dedede;
  outline: none;
  font-size: 12px;
  font-weight: 300;
  padding: 8px 12px 7px;
  width: 100%;
  background-color: #ffffff;
  height: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../image/select-dropdown.svg");
  background-position: center right 5px;
  background-repeat: no-repeat;
}
.products .products-filter-select .products-filter-select-item select:focus {
  border: 1px solid #000000;
}
.products .products-filter-range .products-filter-range-slider {
  background-color: #f2f2f2;
}
.products
  .products-filter-range
  .products-filter-range-slider
  .range-slider__thumb {
  width: 22px;
  height: 22px;
  border: 2px solid #e6e6e6;
  background-color: #ffffff;
}
.products
  .products-filter-range
  .products-filter-range-slider
  .range-slider__range {
  background-color: #a6a6a6;
}
.products .products-filter-range .products-filter-range-input {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products .products-filter-range .products-filter-range-input .min,
.products .products-filter-range .products-filter-range-input .max {
  max-width: 90px;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  outline: none;
  border-radius: 3px;
  border: 1px solid #dedede;
  text-align: center;
}
.products
  .products-filter-range
  .products-filter-range-input
  .min::-webkit-outer-spin-button,
.products
  .products-filter-range
  .products-filter-range-input
  .min::-webkit-inner-spin-button,
.products
  .products-filter-range
  .products-filter-range-input
  .max::-webkit-outer-spin-button,
.products
  .products-filter-range
  .products-filter-range-input
  .max::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.products .products-filter-range .products-filter-range-input .line {
  width: 8px;
  height: 1px;
  background-color: #686868;
}
.products .products-filter-color {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.products .products-filter-color label {
  aspect-ratio: 38/24;
  border-radius: 3px;
  width: 38px;
  background-color: var(--color);
  position: relative;
}
.products .products-filter-color label input {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.products .products-filter-color label input::before {
  content: none;
}
.products .products-filter-color label:has(input:checked) {
  border: 1px solid black;
}
.products .products-filter-rating li {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
}
.products .products-filter-rating li img {
  width: 120px;
}
.products .products-filter-rating li input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.products .products-filter-rating li:has(input:checked) p {
  font-weight: 600;
}
@media only screen and (max-width: 991.98px) {
  .products .products-list {
    margin-left: -10px;
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767.98px) {
  .products .products-list {
    margin-left: 0;
  }
}
.products .products-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0 31px;
  /* border-bottom: 1px solid #dedede; */
}
.products .products-sort .sub-taxonomy-title {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}
.products .products-sort .sub-taxonomy-title .sub-taxonomy-title_item {
  list-style: none;
  font-size: 12px;
}
@media only screen and (max-width: 991.98px) {
  .products .products-sort {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480.98px) {
  .products .products-sort {
    row-gap: 20px;
  }
}
.products .products-sort .products-sort-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 991.98px) {
  .products .products-sort .products-sort-view {
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
  }
}
.products .products-sort .products-sort-view .products-sort-view-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.products .products-sort .products-sort-view .products-sort-view-status .text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}
.products .products-sort .products-sort-view .products-sort-view-status select {
  border-radius: 3px;
  border: 1px solid #dedede;
  outline: none;
  padding: 8.5px 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #616161;
  background-color: #ffffff;
  height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../image/select-dropdown.svg");
  background-position: center right 5px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 991.98px) {
  .products
    .products-sort
    .products-sort-view
    .products-sort-view-status
    select {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.products .products-sort .products-sort-view .products-sort-view-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
}
.products .products-sort .products-sort-view .products-sort-view-mode .text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
}
.products
  .products-sort
  .products-sort-view
  .products-sort-view-mode
  .mode-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.products
  .products-sort
  .products-sort-view
  .products-sort-view-mode
  .mode-list
  .mode-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transition: all ease 0.5s;
  cursor: pointer;
}
.products
  .products-sort
  .products-sort-view
  .products-sort-view-mode
  .mode-list
  .mode-item:has(input:checked) {
  background-color: #000000;
}
.products
  .products-sort
  .products-sort-view
  .products-sort-view-mode
  .mode-list
  .mode-item:has(input:checked)
  rect {
  fill: #ffffff;
  transition: all ease 0.5s;
}
.products
  .products-sort
  .products-sort-view
  .products-sort-view-mode
  .mode-list
  .mode-item
  svg {
  width: 12px;
}
.products
  .products-sort
  .products-sort-view
  .products-sort-view-mode
  .mode-list
  .mode-item
  input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.products .products-list-item {
  margin: 0 auto 66px;
  max-width: 275px;
}
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 4px;
  padding-top: 40px;
  border-top: 1px solid #efefef;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199.98px) {
  .products-pagination {
    row-gap: 20px;
  }
}
@media only screen and (max-width: 480.98px) {
  .products-pagination {
    row-gap: 20px;
  }
}
.products-pagination .products-pagination-result {
  font-size: 14px;
  color: #000000;
  font-weight: 300;
}
.products-pagination .products-pagination-page {
  gap: 20px;
}
@media only screen and (max-width: 480.98px) {
  .products-pagination .products-pagination-page {
    justify-content: space-between;
    gap: unset;
    width: 100%;
  }
}
.products-pagination
  .products-pagination-page
  .products-pagination-page-button {
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding: 6px 9px;
  text-align: center;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #616161;
  background-color: #efefef;
  cursor: pointer;
  transition: background-color ease 0.5s;
}
.products-pagination
  .products-pagination-page
  .products-pagination-page-button:hover,
.products-pagination
  .products-pagination-page
  .products-pagination-page-button.active {
  font-weight: 600;
  color: #ffffff;
  background-color: #a6a6a6;
}
.products-pagination
  .products-pagination-page
  .products-pagination-page-button:hover
  svg
  path,
.products-pagination
  .products-pagination-page
  .products-pagination-page-button.active
  svg
  path {
  fill: #ffffff;
}
.products-pagination
  .products-pagination-page
  .products-pagination-page-button.prev,
.products-pagination
  .products-pagination-page
  .products-pagination-page-button.next {
  gap: 7px;
  padding: 6px 12px;
}
.products-pagination
  .products-pagination-page
  .products-pagination-page-button.prev
  .icon,
.products-pagination
  .products-pagination-page
  .products-pagination-page-button.next
  .icon {
  display: flex;
  align-items: center;
}
.products .products-guide {
  margin-top: 50px;
  margin-bottom: 50px;
}
.products .products-guide p {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .products .products-guide {
    margin-bottom: 140px;
  }
}
.products .products-guide .heading {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 14px;
}
@media only screen and (max-width: 991.98px) {
  .products .products-guide .heading {
    padding-left: 0;
  }
}
.products .products-guide .heading::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: #f07d00;
}
.products .products-guide .products-guide-content {
  /*max-height: 540px;*/
  height: auto;
  transition: max-height 0.7s ease;
  overflow: hidden;
  position: relative;
}
.products .products-guide .products-guide-content .products-guide-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 99px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 2;
}
.products .products-guide .products-guide-content.show {
  max-height: 1500px;
}
.products .products-guide .products-guide-content.show .products-guide-more {
  opacity: 0;
}
.products .products-guide .products-guide-btn {
  width: fit-content;
  font-size: 14px;
  line-height: 28px;
  padding: 5px 20px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products .products-guide .products-guide-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.products .products-guide .products-guide-btn:hover svg path {
  fill: #ffffff;
}

.products-2 {
  margin-top: 58px;
  position: relative;
  z-index: 1;
}
.products-2 select {
  border-radius: 3px;
  border: 1px solid #000000;
  outline: none;
  padding: 8px 30px 8px 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../assets/image/select-dropdown.svg");
  background-position: center right 5px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 480.98px) {
  .products-2 select {
    max-width: 100px;
    padding: 10px 4px 7px;
  }
}
.products-2 .products-container {
  margin-bottom: 95px;
}
.products-2 .products-heading {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991.98px) {
  .products-2 .products-heading {
    font-size: 24px;
    line-height: 1.4;
  }
}
.products-2 .products-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 30px;
  margin: 23px 0 29px;
  gap: 10px;
}
@media only screen and (max-width: 767.98px) {
  .products-2 .products-sort {
    flex-wrap: wrap;
  }
}
.products-2 .products-sort .products-sort-group {
  display: flex;
  align-items: center;
  gap: 38px;
}
@media only screen and (max-width: 767.98px) {
  .products-2 .products-sort .products-sort-group {
    gap: 10px;
  }
}
@media only screen and (max-width: 480.98px) {
  .products-2 .products-sort .products-sort-group {
    width: 100%;
    justify-content: space-between;
  }
}
.products-2 .products-sort .products-sort-view {
  gap: 30px;
}
@media only screen and (max-width: 991.98px) {
  .products-2 .products-sort .products-sort-view {
    justify-content: space-between;
    width: 100%;
  }
}
.products-2 .products-sort .products-sort-view .products-sort-view-status {
  display: flex;
  align-items: center;
  gap: 16px;
}
.products-2
  .products-sort
  .products-sort-view
  .products-sort-view-status
  .text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
}
@media only screen and (max-width: 767.98px) {
  .products-2 .products-sort .products-sort-view .products-sort-view-status {
    gap: 5px;
  }
}
@media only screen and (max-width: 480.98px) {
  .products-2 .products-sort .products-sort-view .products-sort-view-status {
    justify-content: end;
  }
}
.products-2 .products-filter-button {
  min-width: fit-content;
  padding: 8px 20px;
  border-radius: 3px;
  border: 1px solid #000000;
  transition: all 0.5s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.products-2 .products-filter-button svg {
  display: inline-block;
  margin-left: 20px;
}
.products-2 .products-filter-button:hover {
  background-color: #000000;
  color: #ffffff;
}
.products-2 .products-filter-button:hover svg path {
  fill: #ffffff;
}
.products-2 .products-wrapper {
  overflow: hidden;
  margin-bottom: 39px;
}
.products-2 .products-filter h6 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 13px;
}
.products-2 .products-filter .products-filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
@media only screen and (max-width: 767.98px) {
  .products-2 .products-filter .products-filter-container {
    gap: 15px;
  }
}
@media only screen and (max-width: 480.98px) {
  .products-2 .products-filter .products-filter-container {
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
}
.products-2 .products-filter .products-filter-container select {
  padding: 10px 10px;
  height: 50px;
  background-image: url(../assets/image/select-dropdown-large.svg);
  background-position: center right 10px;
  max-width: 271px;
}
@media only screen and (max-width: 480.98px) {
  .products-2 .products-filter .products-filter-container select {
    height: fit-content;
    flex-shrink: 0;
    padding: 7px 10px;
    width: fit-content;
  }
}
.products-2 .quantity {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: rgba(97, 97, 97, 0.7);
}
.products-2 .products-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 40px;
  border-top: 1px solid #efefef;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199.98px) {
  .products-2 .products-pagination {
    row-gap: 20px;
  }
}
@media only screen and (max-width: 480.98px) {
  .products-2 .products-pagination {
    row-gap: 20px;
  }
}
.products-2 .products-pagination .products-pagination-result {
  font-size: 14px;
  color: #000000;
  font-weight: 300;
}
.products-2 .products-pagination .products-pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 480.98px) {
  .products-2 .products-pagination .products-pagination-wrapper {
    justify-content: space-between;
    gap: unset;
    width: 100%;
  }
}
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button {
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #000000;
  padding: 6px 9px;
  text-align: center;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: background-color ease 0.5s;
}
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button:hover,
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button.active {
  font-weight: 600;
  color: #ffffff;
  background-color: #000000;
}
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button:hover
  svg
  path,
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button.active
  svg
  path {
  fill: #ffffff;
}
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button.prev,
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button.next {
  gap: 7px;
  padding: 6px 12px;
}
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button.prev
  .icon,
.products-2
  .products-pagination
  .products-pagination-wrapper
  .products-pagination-button.next
  .icon {
  display: flex;
  align-items: center;
}
.products-2 .products-guide {
  margin-top: 108px;
  margin-bottom: 200px;
  max-width: 864px;
}
.products-2 .products-guide p {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .products-2 .products-guide {
    margin-bottom: 140px;
  }
}
.products-2 .products-guide .heading {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 14px;
}
@media only screen and (max-width: 991.98px) {
  .products-2 .products-guide .heading {
    padding-left: 0;
  }
}
.products-2 .products-guide .heading::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: #000000;
}
.products-2 .products-guide .products-guide-content {
  max-height: 540px;
  height: auto;
  transition: max-height 0.7s ease;
  overflow: hidden;
  position: relative;
}
.products-2 .products-guide .products-guide-content .products-guide-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 99px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 2;
}
.products-2 .products-guide .products-guide-content.show {
  max-height: 1500px;
}
.products-2 .products-guide .products-guide-content.show .products-guide-more {
  opacity: 0;
}
.products-2 .products-guide .products-guide-btn {
  width: fit-content;
  font-size: 14px;
  line-height: 28px;
  padding: 5px 20px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products-2 .products-guide .products-guide-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.products-2 .products-guide .products-guide-btn:hover svg path {
  fill: #ffffff;
}

.tabs {
  margin-top: 50px;
  margin-bottom: 81px;
}
.tabs .tabs-list {
  gap: 60px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991.98px) {
  .tabs .tabs-list {
    gap: 30px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}
.tabs .tabs-list .tabs-link {
  flex-shrink: 0;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #616161;
  padding: 0;
  padding-bottom: 15px;
  position: relative;
  background: transparent;
  margin-bottom: 0;
}
.tabs .tabs-list .tabs-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  display: block;
  background: black;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
}
.tabs .tabs-list .tabs-link:hover,
.tabs .tabs-list .tabs-link:focus {
  border: none;
  color: black;
}
.tabs .tabs-list .tabs-link:focus-visible {
  box-shadow: none;
  outline: none;
}
.tabs .tabs-list .tabs-link.active {
  border: none;
  font-weight: 600;
  color: black;
}
.tabs .tabs-list .tabs-link.active::after {
  width: 100%;
}
.tabs .tabs-content {
  max-width: 1061px;
  width: 100%;
}
.tabs .tabs-content p {
  font-size: 14px;
  line-height: 30px;
  font-weight: 300;
  margin-bottom: 20px;
}
.tabs .tabs-content p:last-child {
  margin-bottom: 0;
}
.tabs .tabs-content ul {
  margin-bottom: 20px;
}
.tabs .tabs-content ul li {
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
}

.review {
  margin-top: 92px;
  margin-bottom: 97px;
}
.review .review-heading {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
}
.review .review-heading h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 14px;
  width: fit-content;
  position: relative;
}
.review .review-heading h5::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 3px;
  display: block;
  background-color: #000000;
}
.review .review-heading span {
  font-weight: 400;
  font-size: 14px;
}
.review .review-container {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 35px;
  max-width: 660px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 991.98px) {
  .review .review-container {
    max-width: none;
  }
}
.review .review-container .review-btn {
  float: right;
  text-align: end;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}
.review .review-content {
  margin-top: 53px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .review .review-content {
    flex-direction: column;
  }
}
.review .review-star {
  padding-left: 33px;
  padding-right: 65px;
}
.review .review-star h2 {
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 9px;
}
.review .review-star svg {
  margin-bottom: 10px;
}
.review .review-star h6 {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  padding-bottom: 15px;
}
.review .review-rating {
  --percent: calc(
    ((var(--rating) - 0.5) * 5 + var(--rating) * 16) / 100 * 100%
  );
  display: block;
  width: 100px;
  height: 16px;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 30px;
  background: linear-gradient(
    90deg,
    black var(--percent),
    #e5e5e5 var(--percent)
  );
}
.review .review-rating img {
  width: 101%;
  height: 101%;
}
.review .review-rate {
  width: 100%;
  padding-left: 50px;
  border-left: 1px solid #f2f2f2;
}
@media only screen and (max-width: 767.98px) {
  .review .review-rate {
    border: 0;
    padding-left: 0;
    width: fit-content;
  }
}
.review .review-rate .review-rate-item {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 2px;
  width: fit-content;
}
@media only screen and (max-width: 480.98px) {
  .review .review-rate .review-rate-item {
    gap: 10px;
  }
}
.review .review-rate .review-rate-item span {
  font-weight: 400;
  font-size: 14px;
  min-width: 9px;
}
.review .review-rate .review-rate-item .review-rate-line {
  display: block;
  background-color: #f2f2f2;
  width: 248px;
  height: 6px;
  border-radius: 3px;
  position: relative;
}
.review .review-rate .review-rate-item .review-rate-line::after {
  content: "";
  position: absolute;
  width: var(--rating);
  height: 6px;
  border-radius: 3px;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.review .review-comments {
  max-width: 660px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 34px 34px 32px 20px;
}
@media only screen and (max-width: 991.98px) {
  .review .review-comments {
    padding: 34px 20px;
  }
}
@media only screen and (max-width: 991.98px) {
  .review .review-comments {
    padding: 34px 10px;
  }
}
.review .review-comments h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 23px;
}
.review .review-comments .review-comments-form {
  border: 1px solid #ededed;
  border-radius: 3px;
}
.review .review-comments .review-comments-form .review-comments-group {
  display: flex;
  padding: 6px 10px 12px 10px;
  gap: 8px;
}
@media only screen and (max-width: 767.98px) {
  .review .review-comments .review-comments-form .review-comments-group {
    flex-wrap: wrap;
  }
}
.review .review-comments .review-comments-form .review-comments-input,
.review .review-comments .review-comments-form label {
  border-radius: 3px;
  border: 1px solid #ededed;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.98px) {
  .review .review-comments .review-comments-form .review-comments-input,
  .review .review-comments .review-comments-form label {
    width: 100%;
  }
}
.review .review-comments .review-comments-form .review-comments-input {
  padding: 6px 20px;
  font-weight: 300;
  font-size: 14px;
}
.review
  .review-comments
  .review-comments-form
  .review-comments-input::placeholder {
  color: #5f5f5f;
}
.review
  .review-comments
  .review-comments-form
  .review-comments-input:focus-visible {
  border: 1px solid #5f5f5f;
}
.review .review-comments .review-comments-form .review-comments-img {
  position: relative;
  width: 70px;
  background-image: url("../assets/image/camera-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  .review .review-comments .review-comments-form .review-comments-img {
    width: 100%;
    height: 35px;
  }
}
.review .review-comments .review-comments-form textarea {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid #ededed;
  width: 100%;
  resize: both;
}
.review .review-comments .review-comments-form textarea::placeholder {
  color: #5f5f5f;
}
.review .review-comments .review-comments-form textarea:focus-visible {
  outline: 1px solid #5f5f5f;
}
.review .review-comments .review-comments-form .review-comments-submit {
  padding: 6px 23px;
  border-radius: 5px;
}
@media only screen and (max-width: 767.98px) {
  .review .review-comments .review-comments-form .review-comments-submit {
    margin-left: auto;
    margin-right: auto;
  }
}

.detail-page {
  margin-top: 81px;
  margin-bottom: 90px;
}
@media only screen and (max-width: 991.98px) {
  .detail-page {
    margin-top: 40px;
  }
}

.list-recent {
  margin-bottom: 156px;
}

.feature {
  display: flex;
}

.pictures {
  padding-top: 90px;
  width: calc(100% - 427px);
  position: relative;
  transition: width cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
}
@media only screen and (max-width: 1199.98px) {
  .pictures {
    width: calc(100% - 390px);
  }
}
@media only screen and (max-width: 991.98px) {
  .pictures {
    width: 100%;
    padding-top: 22px;
    margin-bottom: 310px;
  }
}
.pictures.full {
  width: 100%;
}
.pictures .pictures-nav {
  padding: 0 47px 22px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pictures .pictures-mode {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pictures .pictures-mode .pictures-mode-btn {
  cursor: pointer;
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-mode .pictures-mode-btn {
    display: none;
  }
}
.pictures .pictures-mode .pictures-mode-btn span {
  font-size: 14px;
  margin-left: 9px;
}
.pictures .pictures-view-prev svg,
.pictures .pictures-view-next svg {
  width: 12px;
}
.pictures .pictures-view-prev.swiper-button-disabled,
.pictures .pictures-view-next.swiper-button-disabled {
  opacity: 0.3;
}
.pictures .pictures-view-pagination {
  font-weight: 700;
  font-size: 16px;
  width: 36px;
}
.pictures .pictures-action {
  display: flex;
  align-items: center;
  gap: 23px;
}
.pictures .pictures-action .pictures-action-zoomin,
.pictures .pictures-action .pictures-action-zoomout {
  opacity: 0.4;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-action .pictures-action-zoomin,
  .pictures .pictures-action .pictures-action-zoomout {
    display: none;
  }
}
.pictures .pictures-action .pictures-action-zoomin svg,
.pictures .pictures-action .pictures-action-zoomout svg {
  width: 24px;
  height: 24px;
}
.pictures .pictures-action .pictures-action-zoomin.active,
.pictures .pictures-action .pictures-action-zoomout.active {
  opacity: 1;
  cursor: pointer;
}
.pictures .pictures-action .pictures-action-fullscreen {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-action .pictures-action-fullscreen {
    display: none;
  }
}
.pictures
  .pictures-action
  .pictures-action-fullscreen
  .pictures-action-fullscreen-default {
  opacity: 1;
  visibility: visible;
}
.pictures
  .pictures-action
  .pictures-action-fullscreen
  .pictures-action-fullscreen-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.pictures
  .pictures-action
  .pictures-action-fullscreen.full
  .pictures-action-fullscreen-default {
  opacity: 0;
  visibility: hidden;
}
.pictures
  .pictures-action
  .pictures-action-fullscreen.full
  .pictures-action-fullscreen-back {
  opacity: 1;
  visibility: visible;
}
.pictures .pictures-action .pictures-action-back {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-action .pictures-action-back {
    display: block;
  }
}
.pictures .pictures-view {
  height: 90vh;
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-view {
    height: 65vh;
  }
}
@media only screen and (max-width: 767.98px) {
  .pictures .pictures-view {
    height: 55vh;
  }
}
.pictures .pictures-view .pictures-view-item {
  max-height: calc(100vh - 140px);
  max-width: 100%;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn ease 0.75s;
}
.pictures .pictures-view .pictures-view-item img {
  width: auto;
  height: auto;
  max-height: calc(100vh - 140px);
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-view .pictures-view-item img {
    max-width: 100%;
    max-height: none;
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-view .pictures-view-item {
    max-height: none;
    max-width: none;
    display: block;
    height: auto;
    position: relative;
    overflow-y: scroll;
    height: 100%;
  }
  .pictures .pictures-view .pictures-view-item::-webkit-scrollbar {
    width: 10px;
    background-color: #e3e3e3;
    display: none;
  }
  .pictures .pictures-view .pictures-view-item::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 20px;
  }
  .pictures .pictures-view .pictures-view-item img {
    width: 100%;
    max-height: none;
  }
}
.pictures .pictures-view.zoom .pictures-view-item {
  max-height: none;
  max-width: none;
  display: block;
  height: auto;
  position: relative;
  overflow-y: scroll;
  height: 100%;
}
.pictures .pictures-view.zoom .pictures-view-item::-webkit-scrollbar {
  width: 10px;
  background-color: #e3e3e3;
  display: none;
}
.pictures .pictures-view.zoom .pictures-view-item::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
}
.pictures .pictures-view.zoom .pictures-view-item img {
  width: 100%;
  max-height: none;
}
.pictures .pictures-preview {
  height: calc(100vh - 136px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 17px 10px 50px 10px;
  transform: translateX(-100%);
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
}
.pictures .pictures-preview.active,
.pictures .pictures-preview.show {
  transform: translateX(0%);
}
.pictures .pictures-preview .pictures-preview-slider {
  height: 100%;
  overflow: hidden;
}
.pictures .pictures-preview .pictures-preview-item {
  width: 65px;
  height: 90px;
  padding: 5px;
  border-radius: 4px 5px;
  border: 1px solid transparent;
  background-color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}
.pictures .pictures-preview .pictures-preview-item.swiper-slide-thumb-active {
  border: 1px solid #000000;
}
.pictures .pictures-preview .pictures-preview-next {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 11;
  padding-top: 15px;
  padding-bottom: 25px;
  background-color: #ffffff;
}
.pictures .pictures-padding {
  padding: 0 84px;
}
@media only screen and (max-width: 1399.98px) {
  .pictures .pictures-padding {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .pictures .pictures-padding {
    padding: 0;
  }
}
.pictures .pictures-side-hover {
  position: absolute;
  top: 136px;
  left: 0;
  height: calc(100vh - 136px);
  width: 20px;
  z-index: 5;
}
@media only screen and (max-width: 991.98px) {
  .pictures .pictures-side-hover {
    display: none;
  }
}

.review-2 {
  margin-top: 83px;
  margin-bottom: 87px;
}
.review-2 .review-heading {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
}
.review-2 .review-heading h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 14px;
  width: fit-content;
  position: relative;
}
.review-2 .review-heading h5::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 3px;
  display: block;
  background-color: #000000;
}
.review-2 .review-heading span {
  font-weight: 400;
  font-size: 14px;
}
.review-2 .review-container {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 35px;
  max-width: 660px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 991.98px) {
  .review-2 .review-container {
    max-width: none;
  }
}
.review-2 .review-container .review-btn {
  float: right;
  text-align: end;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}
.review-2 .review-content {
  margin-top: 53px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .review-2 .review-content {
    flex-direction: column;
  }
}
.review-2 .review-star {
  padding-left: 33px;
  padding-right: 65px;
}
.review-2 .review-star h2 {
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 9px;
}
.review-2 .review-star svg {
  margin-bottom: 10px;
}
.review-2 .review-star h6 {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  padding-bottom: 15px;
}
.review-2 .review-rating {
  --percent: calc(
    ((var(--rating) - 0.5) * 5 + var(--rating) * 16) / 100 * 100%
  );
  display: block;
  width: 100px;
  height: 16px;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 30px;
  background: linear-gradient(
    90deg,
    black var(--percent),
    #e5e5e5 var(--percent)
  );
}
.review-2 .review-rating img {
  width: 101%;
  height: 101%;
}
.review-2 .review-rate {
  width: 100%;
  padding-left: 50px;
  border-left: 1px solid #f2f2f2;
}
@media only screen and (max-width: 767.98px) {
  .review-2 .review-rate {
    border: 0;
    padding-left: 0;
    width: fit-content;
  }
}
.review-2 .review-rate .review-rate-item {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 2px;
  width: fit-content;
}
@media only screen and (max-width: 480.98px) {
  .review-2 .review-rate .review-rate-item {
    gap: 10px;
  }
}
.review-2 .review-rate .review-rate-item span {
  font-weight: 400;
  font-size: 14px;
  min-width: 9px;
}
.review-2 .review-rate .review-rate-item .review-rate-line {
  display: block;
  background-color: #f2f2f2;
  width: 248px;
  height: 6px;
  border-radius: 3px;
  position: relative;
}
@media only screen and (max-width: 1199.98px) {
  .review-2 .review-rate .review-rate-item .review-rate-line {
    width: 180px;
  }
}
.review-2 .review-rate .review-rate-item .review-rate-line::after {
  content: "";
  position: absolute;
  width: var(--rating);
  height: 6px;
  border-radius: 3px;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.review-2 .review-comments {
  max-width: 660px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 34px 34px 32px 20px;
}
@media only screen and (max-width: 991.98px) {
  .review-2 .review-comments {
    max-width: none;
    padding: 34px 20px;
  }
}
.review-2 .review-comments h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 23px;
}
.review-2 .review-comments .review-comments-form {
  border: 1px solid #ededed;
  border-radius: 3px;
}
.review-2 .review-comments .review-comments-form .review-comments-group {
  display: flex;
  padding: 6px 10px 12px 10px;
  gap: 8px;
}
@media only screen and (max-width: 767.98px) {
  .review-2 .review-comments .review-comments-form .review-comments-group {
    flex-wrap: wrap;
  }
}
.review-2 .review-comments .review-comments-form .review-comments-input,
.review-2 .review-comments .review-comments-form label {
  border-radius: 3px;
  border: 1px solid #ededed;
}
@media only screen and (max-width: 767.98px) {
  .review-2 .review-comments .review-comments-form .review-comments-input,
  .review-2 .review-comments .review-comments-form label {
    width: 100%;
  }
}
.review-2 .review-comments .review-comments-form .review-comments-input {
  padding: 6px 20px;
  font-weight: 300;
  font-size: 14px;
  width: 100%;
}
.review-2
  .review-comments
  .review-comments-form
  .review-comments-input::placeholder {
  color: #5f5f5f;
}
.review-2
  .review-comments
  .review-comments-form
  .review-comments-input:focus-visible {
  border: 1px solid #5f5f5f;
}
.review-2 .review-comments .review-comments-form .review-comments-img {
  position: relative;
  width: 70px;
  background-image: url("../image/camera-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.98px) {
  .review-2 .review-comments .review-comments-form .review-comments-img {
    height: 34px;
  }
}
.review-2 .review-comments .review-comments-form .review-comments-img span {
  display: none;
  font-weight: 300;
  font-size: 14px;
  color: #5f5f5f;
}
@media only screen and (max-width: 767.98px) {
  .review-2 .review-comments .review-comments-form .review-comments-img span {
    display: inline-block;
    position: absolute;
    right: -160%;
    top: 5px;
  }
}
.review-2 .review-comments .review-comments-form textarea {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid #ededed;
  width: 100%;
  resize: both;
}
.review-2 .review-comments .review-comments-form textarea::placeholder {
  color: #5f5f5f;
}
.review-2 .review-comments .review-comments-form textarea:focus-visible {
  outline: 1px solid #5f5f5f;
}
.review-2 .review-comments .review-comments-form .review-comments-submit {
  padding: 6px 23px;
  border-radius: 5px;
}

.recent {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991.98px) {
  .recent {
    display: none;
  }
}
.recent .recent-heading {
  font-weight: 800;
  font-size: 24px;
  text-align: left;
  margin-bottom: 43px;
}
.recent .recent-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recent .recent-item .recent-item-img {
  display: block;
  width: 100%;
  aspect-ratio: 312/210;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
}
.recent .recent-item .recent-item-img img {
  transition: all 0.7s ease;
}
.recent .recent-item .recent-item-img:hover img {
  transform: scale(1.2);
}
.recent .recent-item .recent-item-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  transition: all 0.5s ease;
  margin-bottom: 25px;
}
.recent .recent-item .recent-item-title:hover {
  text-decoration: underline;
  text-decoration-line: 1px;
}
.recent .recent-item .recent-item-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
.recent .recent-item .recent-item-price .recent-item-price-old {
  font-weight: 400;
  text-decoration: line-through;
  color: #939393;
  margin-left: 10px;
}

.side {
  flex-shrink: 0;
  width: 427px;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.2);
  transform: translateX(0%);
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
}
@media only screen and (max-width: 1199.98px) {
  .side {
    width: 390px;
  }
}
@media only screen and (max-width: 991.98px) {
  .side {
    display: none;
  }
}
.side.close {
  transform: translateX(100%);
  box-shadow: none;
}
.side .side-main {
  padding-top: 15px;
  height: calc(100% - 141px);
  overflow: hidden;
}
.side .side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0px 34px 0 37px;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-header {
    padding: 0 20px;
  }
}
.side .side-wishlist {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.side .side-wishlist:hover,
.side .side-wishlist .active {
  background-color: #000000;
}
.side .side-wishlist:hover svg path,
.side .side-wishlist .active svg path {
  fill: #ffffff;
}
.side .side-close {
  width: 21px;
  height: 21px;
}
.side .side-close svg {
  width: 100%;
  height: 100%;
}
.side .side-name {
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  padding: 0px 31px 0 37px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-name {
    padding: 0 20px;
  }
}
.side .side-review {
  display: flex;
  justify-content: space-between;
  padding: 15px 31px 15px 37px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-review {
    padding: 15px 20px;
  }
}
.side .side-review .side-review-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.side .side-review .side-review-item img {
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 16px;
}
.side .side-review .side-review-content {
  font-size: 14px;
  color: #616161;
}
.side .side-price {
  padding: 0 37px;
  margin-bottom: 27px;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-price {
    padding: 0 20px;
  }
}
.side .side-price .side-price-discount {
  font-weight: 700;
  font-size: 24px;
}
.side .side-price .side-price-old {
  font-size: 16px;
  color: #969595;
  text-decoration: line-through;
  margin-left: 7px;
}
.side .side-action {
  padding: 0px 30px 0 37px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-action {
    padding: 0 20px;
  }
}
.side .side-btn {
  display: block;
  border-radius: 500px;
  border: 1px solid #000000;
  width: 100%;
  padding: 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #000000;
  margin-bottom: 25px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.side .side-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.side .side-btn.side-btn-fill {
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
}
.side .side-btn.side-btn-fill:hover {
  color: #000000;
  background-color: #ffffff;
}
.side .side-descript {
  height: calc(100% - 490px);
  overflow: hidden;
  padding-bottom: 10px;
}
.side .side-descript h6 {
  padding-left: 37px;
  padding-right: 50px;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-descript h6 {
    padding-left: 20px;
    padding-right: 30px;
  }
}
.side .side-descript .side-descript-content {
  padding-left: 37px;
  padding-right: 50px;
  padding-bottom: 20px;
  overflow-y: scroll;
  height: 100%;
}
.side .side-descript .side-descript-content p {
  font-size: 16px;
  color: #969595;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-descript .side-descript-content {
    padding-left: 20px;
    padding-right: 30px;
  }
}
.side .side-descript .side-descript-content::-webkit-scrollbar {
  width: 5px;
}
.side .side-descript .side-descript-content::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #f1f1f1;
}
.side .side-descript .side-descript-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #727272;
}
.side .side-footer {
  height: 141px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.side .side-footer .side-footer-group {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  margin-bottom: 22px;
}
.side .side-footer .side-footer-group .side-footer-group-line {
  height: 30px;
  width: 1px;
  display: block;
  background-color: #ededed;
}
.side .side-footer .side-footer-share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 16px;
}
.side .side-footer .side-footer-share img {
  width: auto;
  height: auto;
  max-width: 14px;
  max-height: 14px;
}
.side .side-footer .side-footer-share .side-footer-share-content {
  font-weight: 500;
  font-size: 14px;
}
.side .side-footer .side-footer-tag {
  padding: 0px 31px 0 37px;
  font-size: 16px;
  color: #616161;
}
@media only screen and (max-width: 1199.98px) {
  .side .side-footer .side-footer-tag {
    padding: 0 20px;
  }
}

.particular {
  margin-top: 71px;
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .particular {
    display: block;
  }
}
.particular .particular-border {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.particular .particular-name {
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 14px;
}
.particular .particular-statistic {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
}
.particular .particular-statistic .particular-statistic-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #616161;
}
.particular .particular-statistic .particular-statistic-item img {
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 16px;
}
.particular .particular-des {
  margin-top: 25px;
  margin-bottom: 48px;
}
.particular .particular-des h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.particular .particular-des p {
  font-size: 16px;
  line-height: 1.5;
  color: #969595;
  margin-bottom: 20px;
}
.particular .particular-share {
  padding: 16px 0;
  display: flex;
  justify-content: center;
  gap: 100px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.particular .particular-share img {
  width: auto;
  height: auto;
  max-width: 14px;
  max-height: 14px;
}
@media only screen and (max-width: 480.98px) {
  .particular .particular-share {
    gap: 60px;
  }
}
.particular .particular-share .particular-share-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #000000;
}
.particular .particular-share .particular-share-line {
  width: 1px;
  height: 30px;
  background-color: #ededed;
}
.particular .particular-tag {
  font-size: 16px;
  color: #616161;
  margin-top: 22px;
}

.action-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  display: none;
  padding-top: 30px;
  padding-bottom: 24px;
  background-color: #ffffff;
  box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 991.98px) {
  .action-mobile {
    display: block;
  }
}
.action-mobile .action-mobile-wishlist {
  float: right;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.action-mobile .action-mobile-wishlist:hover,
.action-mobile .action-mobile-wishlist .active {
  background-color: #000000;
}
.action-mobile .action-mobile-wishlist:hover svg path,
.action-mobile .action-mobile-wishlist .active svg path {
  fill: #ffffff;
}
.action-mobile .action-mobile-price {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.action-mobile .action-mobile-price .action-mobile-price-old {
  font-size: 16px;
  color: #939393;
  text-decoration: line-through;
  margin-left: 7px;
}
.action-mobile .action-mobile-btn {
  display: block;
  border-radius: 500px;
  border: 1px solid #000000;
  width: 100%;
  padding: 20px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #000000;
  margin-bottom: 25px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.action-mobile .action-mobile-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.action-mobile .action-mobile-btn.action-mobile-btn-fill {
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
}
.action-mobile .action-mobile-btn.action-mobile-btn-fill:hover {
  color: #000000;
  background-color: #ffffff;
}

.information {
  margin-top: 60px;
}
@media only screen and (max-width: 767.98px) {
  .information {
    margin-top: 10px;
  }
}
.information .information-toggle-button {
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 32px;
  display: none;
  width: fit-content;
}
@media only screen and (max-width: 991.98px) {
  .information .information-toggle-button {
    display: block;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991.98px) {
  .information .information-side {
    padding-right: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    padding: 80px 10.5px 0;
    background-color: #ffffff;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.75s;
  }
  .information .information-side.active {
    transform: translateX(0%);
  }
}
.information .information-side .information-side-close {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .information .information-side .information-side-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10.5px;
    padding: 10px 15px;
    border-radius: 3px;
    background-color: #000000;
    color: #ffffff;
    font-weight: 700;
  }
}
.information .information-nav .information-nav-item {
  margin-bottom: 10px;
}
.information .information-nav .information-nav-link {
  padding: 10px 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #000000;
}
.information .information-nav .information-nav-link.active {
  font-weight: 800;
}
@media only screen and (max-width: 991.98px) {
  .information .information-nav .information-nav-link {
    font-size: 14px;
    padding: 5px 0;
  }
}
.information .information-nav .information-nav-line {
  width: 100%;
  height: 1px;
  background-color: #ededed;
  margin-top: 17px;
  margin-bottom: 23px;
}
.information .information-container {
  margin-top: 33px;
  margin-bottom: 143px;
}
.information .information-container .information-group {
  padding-bottom: 30px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 45px;
}
.information .information-container h2 {
  font-weight: 400;
  font-size: 32px;
  padding-bottom: 13px;
  position: relative;
  margin-bottom: 36px;
}
.information .information-container h2::after {
  content: "";
  width: 35px;
  height: 3px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.information .information-container h4 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.information .information-container h5 {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 15px;
}
.information .information-container p {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 15px;
}
.information .information-container ol {
  list-style-type: decimal;
  padding-left: 40px;
}
.information .information-container ol li {
  font-size: 14px;
  line-height: 30px;
  padding-left: 20px;
  margin-bottom: 15px;
}
.information .information-container .information-address {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.information .information-container .information-address img {
  padding-right: 37px;
  max-width: 200px;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 480.98px) {
  .information .information-container .information-address img {
    padding-right: 15px;
    max-width: 150px;
  }
}
.information
  .information-container
  .information-address
  .information-address-line {
  height: 47px;
  width: 1px;
  background-color: #c2c2c2;
  margin-right: 40px;
}
@media only screen and (max-width: 480.98px) {
  .information
    .information-container
    .information-address
    .information-address-line {
    margin-right: 15px;
  }
}
.information
  .information-container
  .information-address
  .information-address-content {
  max-width: 298px;
}
.information
  .information-container
  .information-address
  .information-address-content
  h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}
.information
  .information-container
  .information-address
  .information-address-content
  p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}
@media only screen and (max-width: 480.98px) {
  .information
    .information-container
    .information-address
    .information-address-content
    p {
    font-size: 12px;
    line-height: 1.5;
  }
}
.information .information-container .information-contact {
  max-width: 580px;
}
.information .information-account {
  margin-bottom: 9rem;
}
.information .information-account h1 {
  font-weight: 700;
  font-size: 2rem;
  text-transform: capitalize;
  padding-bottom: 16px;
  margin-bottom: 3.375rem;
  position: relative;
}
.information .information-account h1::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: black;
  position: absolute;
  left: 0;
  bottom: 0;
}
.information .information-header {
  margin-bottom: 4rem;
}
.information .information-header .information-header-bg {
  aspect-ratio: 897/201;
  background-color: #4e4e4e;
  border-radius: 100px 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .information .information-header .information-header-bg {
    border-radius: 60px 0 0 0;
  }
}
.information .information-header .information-header-container {
  margin-top: -2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
}
@media only screen and (max-width: 480.98px) {
  .information .information-header .information-header-container {
    flex-wrap: wrap;
  }
}
.information .information-header .information-header-main {
  display: flex;
  align-items: end;
  gap: 36px;
}
@media only screen and (max-width: 991.98px) {
  .information .information-header .information-header-main {
    gap: 15px;
  }
}
.information .information-header .information-avatar {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
}
@media only screen and (max-width: 991.98px) {
  .information .information-header .information-avatar {
    width: 110px;
  }
}
.information .information-header .information-header-info h3 {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.1818;
  margin-bottom: 6px;
}
.information .information-header .information-header-info h4 {
  font-size: 1rem;
  line-height: 1.625;
  color: #727272;
  margin-bottom: 1.375rem;
}
.information .information-header .information-header-edit {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  padding: 12px 30px;
  background-color: black;
  color: white;
  border-radius: 500px;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  transition: all 0.45s ease-in-out;
}
@media only screen and (max-width: 480.98px) {
  .information .information-header .information-header-edit {
    padding: 7px 20px;
  }
}
.information .information-header .information-header-edit:hover {
  background-color: #5f5f5f;
}
.information .information-group {
  margin-bottom: 3.875rem;
}
.information .information-group h2 {
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.information .information-line {
  display: flex;
  padding: 26px 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #ededed;
}
@media only screen and (max-width: 480.98px) {
  .information .information-line {
    padding: 12px 0;
  }
}
.information .information-line.information-no-line {
  border: 0;
}
.information .information-line a {
  font-weight: 600;
}
.information .information-line p,
.information .information-line .account-email,
.information .information-line .account-password,
.information .information-line input {
  flex: 1;
  position: relative;
}
.information .information-line p button,
.information .information-line .account-email button,
.information .information-line .account-password button,
.information .information-line input button {
  position: absolute;
  left: 220px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991.98px) {
  .information .information-line p button,
  .information .information-line .account-email button,
  .information .information-line .account-password button,
  .information .information-line input button {
    left: 170px;
  }
}
.information .information-line .information-line-title {
  flex: 0 0 222px;
  align-self: self-start;
}
@media only screen and (max-width: 991.98px) {
  .information .information-line .information-line-title {
    flex: 0 0 150px;
  }
}
@media only screen and (max-width: 480.98px) {
  .information .information-line .information-line-title {
    flex: 0 0 60px;
  }
}
.information .show-data svg:first-child {
  display: none;
}
.information .hidden-data svg:last-child {
  display: none;
}

.shopping-cart {
  margin-bottom: 122px;
}
.shopping-cart .shopping-cart-heading {
  position: relative;
  margin-top: 47px;
  margin-bottom: 23px;
}
.shopping-cart .shopping-cart-heading h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 52px;
  color: #f07d00;
}
.shopping-cart .shopping-cart-heading h1 span {
  font-size: 20px;
  line-height: 16px;
  font-weight: 400;
  color: #616161;
  margin-left: 7px;
}
.shopping-cart .shopping-cart-table {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .shopping-cart .shopping-cart-table {
    margin-bottom: 69px;
  }
}
.shopping-cart .shopping-cart-table table {
  border-top: 1px solid #ededed;
}
@media only screen and (max-width: 767.98px) {
  .shopping-cart .shopping-cart-table table {
    margin-top: 90px;
  }
}
.shopping-cart .shopping-cart-table table span {
  font-size: 12px;
  line-height: 16px;
  color: #616161;
}
@media only screen and (max-width: 767.98px) {
  .shopping-cart .shopping-cart-table table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    border-bottom: 1px solid #ededed;
    padding-bottom: 20px;
  }
}
.shopping-cart .shopping-cart-table table tr td {
  padding-top: 25px;
  padding-bottom: 25px;
  border-color: #ededed;
}
.shopping-cart .shopping-cart-table table tr td:first-child,
.shopping-cart .shopping-cart-table table tr td:last-child {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 767.98px) {
  .shopping-cart .shopping-cart-table table tr td {
    border: none;
    padding-top: 10px;
    padding-bottom: 5px;
  }
}
.shopping-cart .shopping-cart-label {
  padding-left: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1199.98px) {
  .shopping-cart .shopping-cart-label {
    padding-left: 10px;
  }
}
.shopping-cart .order {
  margin-bottom: 5px;
}
.shopping-cart .order .order-bg {
  width: 100%;
  height: 25px;
  background-image: url(../image/bg-top-order.svg);
  background-repeat: repeat;
}
.shopping-cart .order .order-container {
  background-color: #f9f9f9;
  padding: 25px 26px 39px 26px;
}
.shopping-cart .order .order-container h5 {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.shopping-cart .order .order-container button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}
.shopping-cart .order .order-container button.button-get-order{
 color: #fff;
 background-color: #f07d00;
}
@media only screen and (max-width: 991.98px) {
  .shopping-cart .order .order-container button {
    padding: 7px 10px;
  }
}
.shopping-cart .order .order-container .order-table {
  margin-bottom: 38px;
}
.shopping-cart .order .order-container .order-table tr,
.shopping-cart .order .order-container .order-table th,
.shopping-cart .order .order-container .order-table td {
  border: none;
  background-color: #f9f9f9;
  font-size: 14px;
  line-height: 24px;
  padding: 5px;
}
.shopping-cart .order .order-container .order-table tr img,
.shopping-cart .order .order-container .order-table th img,
.shopping-cart .order .order-container .order-table td img {
  width: auto;
  height: auto;
  max-width: 12px;
  max-height: 12px;
}
.shopping-cart .order .order-container .order-table tbody tr th {
  font-weight: 300;
  color: #000000;
}
.shopping-cart .order .order-container .order-table tbody tr td {
  text-align: end;
  font-weight: 600;
}
.shopping-cart .order .order-container .order-table tbody tr td.discount {
  font-size: 12px;
  font-weight: 400;
}
.shopping-cart .order .order-container .order-table tbody tr:last-child th,
.shopping-cart .order .order-container .order-table tbody tr:last-child td {
  padding-bottom: 23px;
}
.shopping-cart .order .order-container .order-table tfoot {
  border-top: 1px solid #ededed;
}
.shopping-cart .order .order-container .order-table tfoot tr th {
  font-weight: 500;
  padding-top: 20px;
  /* width: 100%;
  text-align: end; */
}
.shopping-cart .order .order-container .order-table tfoot tr th span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 4px;
}
.shopping-cart .order .order-container .order-table tfoot tr td {
  font-size: 20px;
  font-weight: 600;
  text-align: end;
  padding-top: 20px;
}
.shopping-cart .protection .protection-content {
  background-color: #f9f9f9;
  padding: 29px 40px 13px 43px;
}
.shopping-cart .protection .protection-content p {
  font-size: 12px;
  text-align: center;
  line-height: 18px;
}
.shopping-cart .protection .protection-content h6 {
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  margin-bottom: 4px;
}
.shopping-cart .protection .protection-content h6 svg {
  margin-right: 6px;
}
.shopping-cart .protection .protection-bg {
  width: 100%;
  height: 20px;
  background-image: url(../image/bg-bottom-order.svg);
  background-repeat: repeat;
}

.news .news-img {
  aspect-ratio: 351/409;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}
.news .news-img img {
  transition: all 0.45s ease-in-out;
}
.news .news-img:hover img {
  transform: scale(1.1);
}
@media only screen and (max-width: 480.98px) {
  .news .news-img {
    margin-bottom: 10px;
  }
}
.news .news-reference {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
  justify-content: space-between;
}
.news .news-reference i {
  margin-right: 5px;
}
@media only screen and (max-width: 991.98px) {
  .news .news-reference {
    margin-bottom: 5px;
  }
}
.news .news-date,
.news .news-tag {
  font-size: 14px;
  line-height: 1.714;
}
@media only screen and (max-width: 991.98px) {
  .news .news-date,
  .news .news-tag {
    font-size: 12px;
  }
}
@media only screen and (max-width: 480.98px) {
  .news .news-date,
  .news .news-tag {
    font-size: 10px;
  }
}
.news .news-date {
  color: #727272;
}
.news .news-tag {
  color: black;
}
.news .news-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.news .post-brief p {
  color: #727272;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  margin-top: 10px;
  font-size: 14px;
}
.news .news-title:hover {
  color: #f07d00;
}
@media only screen and (max-width: 480.98px) {
  .news .news-title {
    font-size: 12px;
  }
  .news .post-brief p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}
.news .news-des {
  display: none;
  font-size: 12px;
  line-height: 1.6667;
  color: #616161;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.news.news-full {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991.98px) {
  .news.news-full {
    margin-bottom: 0;
  }
}
.news.news-full .news-img {
  aspect-ratio: 267/200;
  border-radius: 3px;
}
.news.news-full .news-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991.98px) {
  .news.news-full .news-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .news.news-full .news-title {
    font-size: 14px;
  }
}
.news.news-full .news-des {
  display: block;
}

.blog-container {
  margin-top: 65px;
  margin-bottom: 150px;
}
.blog-container .title {
  margin-bottom: 65px;
}
.blog-container .title h1 {
  font-weight: 600;
  font-size: 2rem;
  text-align: start;
  color: #f07d00;
  padding-bottom: 10px;
}
.title .line {
  height: 3px;
  width: 50px;
  background: #f07d00;
}
@media only screen and (max-width: 991.98px) {
  /* .blog-container h1 {
    margin-bottom: 10px;
  } */
  .blog-container {
    margin-top: 40px;
  
  }
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 53px;
  row-gap: 70px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991.98px) {
  .blog-list {
    column-gap: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480.98px) {
  .blog-list {
    column-gap: 10px;
    row-gap: 40px;
  }
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.blog-pagination .blog-pagination-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #616161;
  opacity: 0.5;
  position: relative;
  padding-bottom: 2px;
}
.blog-pagination .blog-pagination-link:hover {
  opacity: 1;
}
.blog-pagination .blog-pagination-link.active {
  opacity: 1;
}
.blog-pagination .blog-pagination-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background: black;
}

.blog-space {
  margin-top: 9rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 991.98px) {
  .blog-space {
    margin-top: 5rem;
    margin-bottom: 4rem;
  }
}

.blog-related h2 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991.98px) {
  .blog-related .blog-related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .blog-related .blog-related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480.98px) {
  .blog-related .blog-related-list {
    column-gap: 10px;
  }
}

.blog-detail {
  padding-left: 50px;
}
.blog-detail h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991.98px) {
  .blog-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .blog-detail {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 991.98px) {
  .blog-detail {
    padding-left: 0;
    margin-bottom: 5rem;
  }
}

.blog-info {
  padding: 15px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 37px;
}
@media only screen and (max-width: 991.98px) {
  .blog-info {
    padding: 10px 0;
    margin-bottom: 15px;
  }
}
.blog-info p {
  color: #616161;
  padding-left: 13px;
  position: relative;
}
.blog-info p span {
  font-size: 0.875em;
}
.blog-info p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  background-color: #616161;
}
.blog-info p:first-child {
  padding-left: 0;
}
.blog-info p:first-child::before {
  content: none;
}
@media only screen and (max-width: 991.98px) {
  .blog-info p {
    font-size: 12px;
  }
}

.blog-content p {
  line-height: 2;
  margin-bottom: 2rem;
}
.blog-content img {
  margin-bottom: 25px;
}
.blog-content h3 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.77778;
  margin-bottom: 1.5625rem;
  text-align: left;
}
.blog-content blockquote {
  line-height: 2;
  background-color: #f4f4f4;
  color: #191c1f;
  padding: 2.5rem 4.875rem 2.5rem 7.5rem;
  background-image: url("../image/quote.svg");
  background-repeat: no-repeat;
  background-size: 3.5rem;
  background-position: top 2.5rem left 2.5rem;
  box-shadow: 4px 0px 0px 0px #939393 inset;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767.98px) {
  .blog-content blockquote {
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    background-size: 2rem;
    background-position: top 1.5rem left 0.8rem;
  }
}

.blog-img-group {
  display: flex;
  gap: 26px;
}
@media only screen and (max-width: 480.98px) {
  .blog-img-group {
    gap: 10px;
  }
}
.blog-img-group img {
  flex: 1;
  max-width: calc(50% - 13px);
  border-radius: 4px;
}
@media only screen and (max-width: 480.98px) {
  .blog-img-group img {
    max-width: calc(50% - 5px);
  }
}

.blog-action {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 767.98px) {
  .blog-action {
    flex-wrap: wrap;
  }
}

.blog-tag {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  .blog-tag {
    gap: 10px;
  }
}
.blog-tag a:hover {
  text-decoration: underline;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-share i::before {
  font-size: 20px;
}
.blog-share p {
  letter-spacing: 0.005em;
  color: #454545;
  margin-right: 9px;
}
.blog-share a img {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
}

.wishlist-process {
  margin-top: 76px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-process {
    margin-bottom: 50px;
  }
}
.wishlist-process .wishlist-process-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-process .wishlist-process-list {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .wishlist-process .wishlist-process-list {
    flex-wrap: wrap;
  }
}
.wishlist-process .wishlist-process-item {
  max-width: 271px;
  flex: 1;
  padding: 35px 11px 28px 12px;
  border: 1px solid #cdcdcd;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .wishlist-process .wishlist-process-item {
    min-width: 200px;
  }
}
.wishlist-process .wishlist-process-item h3 {
  font-weight: 700;
  font-size: 16px;
  color: #302501;
  text-align: center;
  margin-bottom: 8px;
}
.wishlist-process .wishlist-process-item p {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #727272;
}
.wishlist-process .wishlist-process-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid white;
}
.wishlist-process .wishlist-process-icon img {
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 50%;
}

.wishlist-container {
  margin-bottom: 130px;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-container {
    margin-bottom: 5rem;
  }
}

@media only screen and (max-width: 767.98px) {
  .wishlist-table {
    overflow-x: auto;
    padding-bottom: 5px;
  }
}
.wishlist-table table {
  width: 100%;
  min-width: 700px;
}
.wishlist-table table th,
.wishlist-table table td {
  text-align: center;
  border: 1px solid #e3e3e3;
  max-width: 330px;
}
.wishlist-table table thead th {
  background-color: black;
  color: white;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding: 18px 30px;
}
@media only screen and (max-width: 1199.98px) {
  .wishlist-table table thead th {
    padding: 18px;
  }
}
@media only screen and (max-width: 991.98px) {
  .wishlist-table table thead th {
    font-size: 12px;
    padding: 10px;
  }
}
.wishlist-table table tbody td {
  padding: 14px 30px;
}
@media only screen and (max-width: 1199.98px) {
  .wishlist-table table tbody td {
    padding: 14px;
  }
}
@media only screen and (max-width: 991.98px) {
  .wishlist-table table tbody td {
    font-size: 12px;
    padding: 10px;
  }
}
.wishlist-table table tbody td .add-cart {
  margin-left: auto;
  margin-right: auto;
}
.wishlist-table table tbody td img {
  width: 48px;
  aspect-ratio: 48/72;
}
.wishlist-table table tbody td a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.wishlist-table table tbody td a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-table table tbody td a {
    font-size: 12px;
  }
}
.wishlist-table table tbody td:last-child {
  min-width: 150px;
}
.wishlist-table .wishlist-delete {
  opacity: 0.7;
}
.wishlist-table .wishlist-delete img {
  width: auto;
  height: auto;
  max-width: 14px;
  max-height: 18px;
}
.wishlist-table .wishlist-delete:hover {
  opacity: 1;
}
.wishlist-table .wishlist-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-table .wishlist-price {
    flex-direction: column;
    gap: 0;
  }
}
.wishlist-table .wishlist-price .current {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-table .wishlist-price .current {
    font-size: 14px;
  }
}
.wishlist-table .wishlist-price .origin {
  font-size: 12px;
  line-height: 24px;
  text-decoration: line-through;
  color: #727272;
  margin-bottom: 0;
}
@media only screen and (max-width: 991.98px) {
  .wishlist-table .wishlist-price .origin {
    font-size: 10px;
  }
}

.wishlist-promotion {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  .wishlist-promotion {
    flex-direction: column-reverse;
  }
}
.wishlist-promotion .wishlist-promotion-container {
  padding: 50px 10px;
  width: 100%;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wishlist-promotion .wishlist-promotion-container h2 {
  font-size: 2.25rem;
  color: white;
  text-align: center;
  max-width: 500px;
  margin-bottom: 20px;
}
.wishlist-promotion .wishlist-promotion-container p {
  color: white;
  max-width: 473px;
  text-align: center;
  margin-bottom: 30px;
}
.wishlist-promotion .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}
.wishlist-promotion .countdown .countdown-el {
  padding-left: 32px;
  position: relative;
}
.wishlist-promotion .countdown .countdown-el::before {
  content: ":";
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.wishlist-promotion .countdown .countdown-el h3 {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.4444;
  color: white;
  text-align: center;
  margin-bottom: 0;
}
.wishlist-promotion .countdown .countdown-el p {
  color: white;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
}
.wishlist-promotion .countdown .countdown-el:first-child {
  padding-left: 0;
}
.wishlist-promotion .countdown .countdown-el:first-child::before {
  content: none;
}
.wishlist-promotion .wishlist-promotion-img {
  aspect-ratio: 703/680;
  width: 43.9375%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.98px) {
  .wishlist-promotion .wishlist-promotion-img {
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .confirm .confirm-group {
    gap: 20px;
  }
}
.confirm .confirm-btn {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2;
  padding: 11px 50px;
  border-radius: 400px;
  border: 2px solid black;
  text-align: center;
}
.confirm .confirm-btn:hover {
  background-color: #efefef;
}
.confirm .confirm-btn.confirm-go {
  background-color: black;
  color: white;
}
.confirm .confirm-btn.confirm-go:hover {
  background-color: #333333;
}
.confirm .confirm-help p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
}
.confirm .confirm-help .confirm-help-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 0 11px 0;
  width: fit-content;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 480.98px) {
  .confirm .confirm-help .confirm-help-row {
    width: 100%;
  }
}
.confirm .confirm-help .confirm-help-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 8px 60px 3px 60px;
  font-weight: 500;
  font-size: 14px;
  border-left: 1px solid #d9d9d9;
}
@media only screen and (max-width: 480.98px) {
  .confirm .confirm-help .confirm-help-link {
    flex: 1;
    padding: 8px 20px 3px 20px;
  }
}

#fhm-testimonial {
  padding-bottom: 50px;
}
#fhm-testimonial .title .home-collection_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
#fhm-testimonial .title .home-collection_title i::before {
  font-size: 20px;
  color: #f07d00;
}
#fhm-testimonial .title .home-collection_title h3 {
  color: #f07d00;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0px !important;
}
#fhm-testimonial .section-content {
  border-top: 1px solid #f07d00;
  padding: 15px 0;
}

#fhm-testimonial .section-content p {
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.24px;
  padding: 0 23%;
}

#fhm-testimonial .section-content h3 {
  margin-bottom: 10px;
}

#fhm-testimonial .testimonials-slider {
  /* margin-top: 50px; */
}

.testimonial-item .testimonial-item-img {
  aspect-ratio: 370/240;
}

.testimonial-item .testimonial-item-img img {
  border-radius: 10px;
}

.testimonial-item .testimonial-item-content {
  margin-top: 20px;
}

.testimonial-item .testimonial-item-content span {
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 3.3px;
  text-transform: uppercase;
  display: block;
}

.testimonial-item .testimonial-item-content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.testimonial-item:hover .testimonial-item-img {
  box-shadow: 0px 4px 10px 0px rgba(0.4, 0.4, 0.4, 0.4);
  border-radius: 10px;
}

#fhm-testimonial .view-more a {
  font-size: 14px;
  font-weight: 500;
}
#fhm-testimonial .view-more a:hover {
  color: #f07d00;
}
#fhm-testimonial .view-more a i {
  margin-left: 3px;
}

@media (max-width: 991.99px) {
  #fhm-testimonial .section-content p {
    display: none;
  }

  .testimonial-item .testimonial-item-content span {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .testimonial-item .testimonial-item-content a {
    font-size: 12px;
  }
}
@media (max-width: 767.99px) {
  #fhm-testimonial .title .home-collection_title h3 {
    font-size: 18px;
  }
  #fhm-testimonial .view-more a {
    font-size: 12px;
  }
}

/* HEADER  */
.header-container {
  padding: 10px 0;
  background: #ffffff;
  border-bottom: 1px solid #dbdbdd;
}
.header-container .grid__item .search-form-wrapper,
.header-container .grid__item {
  width: 100%;
}

.input-group {
  height: 40px;
  align-items: center;
  border: 1px solid #dbdbdd;
  overflow: hidden;
  border-radius: 5px;
}

.input-group input {
  font-size: 14px;
  padding: 0 20px;
  width: 85%;
}

.input-group input:focus-visible {
  outline: none;
}

.input-group .input-group-btn {
  background: #f07d00;
  height: 100%;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  margin-left: 0px !important;
}

.input-group .input-group-btn i {
  color: #ffffff;
}

.dropdown:focus-visible {
  outline: none;
  border: none !important;
}
.dropdown .btn.dropdown-toggle {
  outline: none;
  border: none !important;
}

.detail .detail-des span {
  color: #f07d00;
}

/* MODAL LOGIN  */
.modal.show .modal-dialog {
  margin-top: 10%;
}

/* INFORMATION  */
.information {
  margin: 150px 0;
}
.information .container {
  position: relative;
}
.information .information-container {
  padding-left: 45%;
  padding: 0 0 0 53%;
}
.information .information-img {
  position: absolute;
  left: 0;
  width: 45%;
  height: 120%;
  top: -10%;
}
.information:nth-child(2n + 1) .information-img {
  position: absolute;
  right: 0;
  left: auto;
  width: 45%;
  height: 120%;
  top: -10%;
}
.information:nth-child(2n + 1) .information-container {
  padding-right: 45%;
  padding: 0 53% 0 0;
}
.information .information-img img {
  border-radius: 7px;
}
.information-container h3 {
  text-align: start;
}
.information-container p {
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.24px;
}
@media (max-width: 991px) {
  .information {
    /* padding: 50px 0; */
    margin: 20px 0;
  }
  .information:nth-child(2n + 1) .information-container,
  .information .information-container {
    padding: 20px 0;
    margin: 20px 0;
  }
  .information:nth-child(2n + 1) .information-img,
  .information .information-img {
    width: 100%;
    position: relative;
    /* margin-top: -20%; */
  }
  .information .information-img img {
    max-height: 400px;
  }
}
@media (max-width: 575x) {
  .information .information-img {
    margin-top: -30%;
  }
}
@media (max-width: 480x) {
  .information .information-img {
    margin-top: -50%;
  }
}

/* GALLERY  */
#gallery-image {
  padding: 30px 0 50px 0;
}
.gallery-list {
  display: grid;
  grid-template-columns: 0.25fr 0.25fr 0.15fr 0.35fr;
  grid-template-rows: 0.5fr 0.5fr;
  gap: 10px;
}
.gallery-list .item-image-gird:first-child,
.gallery-list .item-image-gird:nth-child(8n) {
  grid-column: span 3;
  grid-row: span 2;
}

/* MAP  */
#fhm-contact-page iframe {
  width: 100%;
  aspect-ratio: 1/0.5;
}

/* CONTACT  */
#fhm-contact {
  margin-top: 75px;
  margin-bottom: 90px;
}
#fhm-contact .box-content-left {
  margin-bottom: 50px;
}
#fhm-contact .box-content-left h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 20px;
}
#fhm-contact .box-content-right h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#fhm-contact .box-content-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  margin-top: 12px;
}
#fhm-contact .box-content-right span {
  font-weight: 600;
}
#fhm-contact .box-content-left p {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}
#fhm-contact .box-content-left span {
  color: #949494;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}
#fhm-contact .contact-container form {
  margin-top: 30px;
}

#fhm-contact .contact-container .form-outline {
  position: relative;
  margin-bottom: 16px;
  color: #616161;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
}

#fhm-contact .contact-container .form-outline .form-label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
  padding: 5px;
}
#fhm-contact .contact-container .form-outline .label-content {
  top: 15%;
}
#fhm-contact .contact-container .form-outline .label-top {
  top: 0;
}

#fhm-contact .contact-container .form-outline .form-control {
  width: 100%;
  padding: 10px;
  transition: border-color 0.2s ease;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
}

#fhm-contact .contact-container .form-outline .form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
#fhm-contact .contact-container .btn-primary {
  display: flex;
  padding: 5px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #f07d00;
  margin-top: 30px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
  border: none;
}
@media (min-width: 992px) {
  #fhm-contact .col-lg-6 {
    width: 45%;
  }
  #fhm-contact .box-content-left {
    margin-bottom: auto;
  }
}
