body {
  line-height: 1.5;
  font-size: 18px;
  --gutter-x: 16px;
  --gutter-x2: -16px;
  overflow-x: hidden;
  font-family: var(--main-font);
  color: var(--text-color);
}
body.modal-opened {
  overflow: hidden !important;
  width: 100%;
}
body main {
  overflow-x: clip;
}
p a {
  color: var(--primary-color);
}
.mobile-hamburger-menu {
  z-index: 9;
  position: relative;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 34px;
}
.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(6px);
  background: #000;
  transition: all 0ms 300ms;
  width: 20px;
  height: 2px;
}
.mobile-hamburger-menu .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #000;
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #000;
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-hamburger-menu .hamburger-menu:after,
.mobile-hamburger-menu .hamburger-menu:before {
  width: 20px;
  height: 2px;
}
.mobile-hamburger-menu .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  background: #000;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-hamburger-menu .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background: #000;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.gen-col-mb {
  margin-bottom: 32px;
}
#side-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  justify-content: flex-end;
  backdrop-filter: blur(2px);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#side-menu .backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  flex: 1;
  z-index: 1;
}
#side-menu .content {
  z-index: 2;
  width: 85%;
  max-width: 450px;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 60px 0 40px;
  position: relative;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
}
#side-menu .content.in {
  transform: translateX(0);
}
#side-menu .content .sidebar-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  color: #000;
}
#side-menu .content ul.menu li a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  color: #3E3E3E;
  font-size: 14px;
  border-bottom: 1px solid #e8e8f1;
  position: relative;
}
#side-menu .content ul.menu li.current-menu-item > a {
  font-weight: bold;
}
#side-menu .content ul.menu li.menu-item-has-children > a svg {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  color: #3E3E3E;
  width: 40px;
  height: 40px;
  padding: 8px;
}
#side-menu .content ul.menu li.opened > a svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content ul.menu li.opened > ul.sub-menu {
  max-height: 400px;
  overflow-y: auto;
}
#side-menu .content ul.menu li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0 0 16px ;
}
#side-menu .content ul.menu li ul.sub-menu li a {
  color: var(--text-color);
  border-bottom-color: #e8e8f1;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li a {
  border-bottom-color: #e8e8f1;
}
#side-menu .content .lang-list {
  margin-top: 20px;
}
#side-menu .content .lang-list li div {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  color: #3E3E3E;
  font-weight: 500;
}
#side-menu .content .lang-list li div svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  color: #3E3E3E;
}
#side-menu .content .lang-list li.opened > div svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content .lang-list li .name {
  margin-left: 10px;
}
#side-menu .content ul.social-menu {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#side-menu .content ul.social-menu li a {
  border: 1px solid #3E3E3E;
  background-color: #3E3E3E;
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  display: block;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#side-menu .content ul.social-menu li a:hover {
  background-color: #fff;
  color: #3E3E3E;
}
#left-whatsapp {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
#left-whatsapp a {
  height: 52px;
  width: 52px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58d164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58d164 0%, #2cb842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#left-whatsapp a:hover {
  padding-left: 5px;
  width: 57px;
}
#left-whatsapp a svg {
  color: #fff;
}


#left-instagram {
  position: fixed;
  left: 0;
  top: 56%;
  transform: translateY(-50%);
  z-index: 9;
}
#left-instagram a {
  height: 52px;
  width: 52px;
  background: #833ab4;
  background: -moz-linear-gradient(top, #833ab4 0%, #e1306c 50%, #fcaf45 100%);
  background: -webkit-linear-gradient(top, #833ab4 0%, #e1306c 50%, #fcaf45 100%);
  background: linear-gradient(to bottom, #833ab4 0%, #e1306c 50%, #fcaf45 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#left-instagram a:hover {
  padding-left: 5px;
  width: 57px;
}
#left-instagram a svg {
  color: #fff;
}

#mobile-footer-cta-buttons {
  padding-bottom: 14px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
}
#mobile-footer-cta-buttons:before {
  content: " ";
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--bg-dark-color);
}
#mobile-footer-cta-buttons .row {
  --gutter-x: 4px;
  --gutter-x2: -4px;
}
#mobile-footer-cta-buttons .button-x {
  height: 48px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 0 8px;
  color: #fff;
  gap: 8px;
}
#mobile-footer-cta-buttons .button-x.button-call {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #6e2221;
  /* Old browsers */
  background: -moz-linear-gradient(top, #6e2221 0%, #531918 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #6e2221 0%, #531918 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #6e2221 0%, #531918 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x.button-whatsapp {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58D164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58D164 0%, #2CB842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x span.text {
  font-weight: 400;
  font-size: 14px;
}
.otgs-development-site-front-end {
  display: none !important;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}
.iti__country-list {
  background-color: #fff;
  color: var(--primary-color);
}
.iti__country-list .iti__flag-box,
.iti__country-list .iti__country-name {
  color: #000;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-left: 50px !important;
}
.success {
  position: absolute;
  top: 100%;
  margin-top: 40px;
  padding: 15px;
  border-radius: 15px;
  background: #389d26;
  color: #FFF;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.success.show {
  opacity: 1;
  margin-top: 20px;
}
.unsuccessful {
  position: absolute;
  top: 100%;
  margin-top: 40px;
  padding: 15px;
  border-radius: 15px;
  background: red;
  color: #FFF;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.unsuccessful.show {
  opacity: 1;
  margin-top: 20px;
}
.button-area {
  position: relative;
}
.form-loader {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 1.2;
}
.section-text {
  font-size: 18px;
  color: var(--text-color);
}
.section-btn {
  min-width: 220px;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: 500;
  width: max-content;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  color: #fff;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}
.section-btn.btn-primary {
  background-color: var(--primary-color);
}
.section-btn.btn-primary:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
}
.section-btn.btn-secondary {
  background-color: var(--secondary-color);
}
.section-btn.btn-secondary:hover {
  background-color: var(--secondary-hover-color);
  transform: translateY(-2px);
}
header .header-inner-area {
  width: 100%;
  border-bottom: 2px solid var(--primary-color);
  gap: 40px;
  padding: 12px 0px 4px;
}
header .header-inner-area .col-left,
header .header-inner-area .col-right {
  flex: 1;
  gap: 12px;
}
header .header-inner-area .col-center {
  width: fit-content;
}
header .header-inner-area .right-top,
header .header-inner-area .right-bottom,
header .header-inner-area .left-top,
header .header-inner-area .left-bottom {
  gap: 32px;
  width: 100%;
}
header .header-logo .logo-img {
  width: 240px;
  height: auto;
}
header .header-shop-navs {
  gap: 16px;
}
header .header-shop-navs li a {
  display: block;
  border: 1px solid var(--primary-color);
  padding: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--primary-color);
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-shop-navs li a svg {
  width: 18px;
  height: 18px;
}
header .header-shop-navs li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
header .header-socials {
  gap: 8px;
}
header .header-socials li a {
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  padding: 6px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-socials li a svg {
  width: 20px;
  height: 20px;
}
header .header-socials li a:hover {
  color: #fff;
  background-color: var(--primary-color);
}
header .header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header .header-menu > li {
  position: relative;
}
header .header-menu > li > a {
  display: inline-block;
  font-size: 18px;
  color: var(--text-color);
  padding: 8px 12px;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(12px);
  pointer-events: auto;
}
header .header-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  background: var(--bg-soft-color);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 9;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-menu li ul.sub-menu::before {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 100%;
  height: 16px;
}
header .header-menu li ul.sub-menu li {
  position: relative;
}
header .header-menu li ul.sub-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #030303;
  white-space: nowrap;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-menu li ul.sub-menu li a:hover {
  color: var(--primary-color);
}
header .header-menu li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  transform: translate(2px, 10px);
}
header .header-menu li ul.sub-menu li ul.sub-menu::before {
  content: '';
  height: 100%;
  position: absolute;
  right: 100%;
  width: 4px;
  top: 0;
}
header .header-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(2px, 0px);
  pointer-events: auto;
}
header .product-search-form {
  width: 200px;
  max-width: 100%;
}
header .product-search-form .form-input-area {
  display: flex;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  border: 0.5px solid var(--primary-color);
  overflow: hidden;
  padding: 0 8px;
}
header .product-search-form .form-input-area input {
  width: 100%;
  height: 32px;
  padding: 0 12px;
  border: none;
  font-size: 16px;
  background-color: transparent;
  color: var(--primary-color);
}
header .product-search-form .form-input-area input::placeholder {
  color: var(--primary-color);
}
header .product-search-form .form-input-area .form-button {
  color: var(--primary-color);
  background-color: transparent;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
header .product-search-form .form-input-area .form-button svg {
  width: 20px;
  height: 20px;
}
footer {
  background-color: var(--bg-dark-color);
}
footer .footer-top {
  padding: 80px 0;
}
footer .footer-top .footer-col {
  margin-bottom: 24px;
}
footer .footer-top .footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
}
footer .footer-top .footer-menu li a {
  color: var(--text-color);
  font-size: 18px;
  line-height: 2;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-top .footer-menu li a:hover {
  opacity: 0.6;
}
footer .footer-copyright {
  padding: 15px 0;
}
footer .footer-copyright .copyright {
  font-size: 14px;
  color: var(--text-color);
}
footer .footer-copyright .footer-cr-logo img {
  width: 150px;
  height: auto;
}
.product-card {
  height: 100%;
  border: 1px solid #f3f3f3;
}
.product-card .card-image-wrapper {
  margin-bottom: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-card .card-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease-in-out;
}
.product-card .card-image-wrapper:hover .card-image {
  transform: scale(1.2);
}
.product-card .card-text-area {
  flex: 1;
  padding: 6px 8px;
}
.product-card .card-text-area .card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 4px;
}
.product-card .card-text-area .card-text {
  font-size: 16px;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .card-text-area .card-top {
  margin-bottom: 4px;
}
.product-card .card-text-area .card-bottom {
  gap: 8px 12px;
}
.product-card .card-text-area .card-bottom .card-rate {
  font-size: 16px;
}
.product-card .card-text-area .card-bottom .card-rate .rate-stars {
  color: #ffb100;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card .card-text-area .card-bottom .review-count {
  color: var(--text-color);
  opacity: 0.6;
  font-size: 16px;
}
.product-card .card-text-area .card-bottom .card-price {
  background-color: var(--primary-color);
  font-size: 18px;
  color: #fff;
  padding: 4px 12px;
  line-height: 1;
  display: block;
}
.product-card .card-text-area .card-bottom .card-price .out-of-stock {
  font-size: 14px;
}
.product-card .card-btn,
.product-card .button {
  margin-top: 16px;
  padding: 8px 12px;
  text-align: center;
  font-size: 18px;
  width: 100%;
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card .card-btn:hover,
.product-card .button:hover {
  background-color: var(--primary-hover-color);
}
.tab-system {
  position: relative;
  z-index: 3;
}
.tab-system .tab-navs .nav-item {
  cursor: pointer;
}
.tab-system .tab-elements .tab-element {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-system .tab-elements .tab-element.current {
  overflow: visible;
  height: max-content;
  display: block;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-delay: 0.1s;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#section-quality-area .quality-boxes-area .quality-box {
  gap: 16px;
}
#section-quality-area .quality-boxes-area .quality-box .box-image-wrapper {
  padding: 12px;
  background-color: var(--bg-soft-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#section-quality-area .quality-boxes-area .quality-box .box-image-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
#section-quality-area .quality-boxes-area .quality-box .box-text-area .box-title {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 500;
}
#section-campaign-banner .inner-area {
  background-color: var(--bg-soft-color);
  padding: 32px 44px;
}
#section-campaign-banner .inner-area .banner-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}
#section-campaign-banner .inner-area .text-area .banner-text {
  font-size: 18px;
  color: #4D4C4C;
}
#section-campaign-banner .inner-area .text-area .banner-link {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary-color);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#section-campaign-banner .inner-area .text-area .banner-link:hover {
  background-color: var(--secondary-color);
}
#mobile-shop-navs {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
}
#mobile-shop-navs .mobile-search-form {
  width: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 100%;
  margin-top: 8px;
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-shop-navs .mobile-search-form.search-opened {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
#mobile-shop-navs .mobile-search-form .form-input-area {
  width: 100%;
  overflow: hidden;
  background-color: #f3f3f3;
  display: flex;
  border: 1px solid #ebebeb;
}
#mobile-shop-navs .mobile-search-form .form-input-area input {
  padding: 0 12px 0 24px;
  height: 48px;
  background-color: transparent;
  border: none;
  width: 100%;
  font-size: 16px;
  color: #000;
  font-family: var(--main-font);
}
#mobile-shop-navs .mobile-search-form .form-input-area input::placeholder {
  color: #737B8B;
  font-family: var(--main-font);
}
#mobile-shop-navs .mobile-search-form .form-input-area .form-btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 8px;
  color: #2E3A59;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-shop-navs .mobile-search-form .form-input-area .form-btn svg {
  width: 28px;
  height: 28px;
}
#mobile-shop-navs .mobile-search-form .form-input-area .form-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}
#mobile-shop-navs .nav-area {
  position: relative;
  z-index: 2;
  background-color: var(--primary-color);
  padding: 8px 0;
}
#mobile-shop-navs ul {
  gap: 8px;
}
#mobile-shop-navs ul li {
  flex: 1 1 20%;
}
#mobile-shop-navs ul li a,
#mobile-shop-navs ul li div {
  height: 100%;
  gap: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  font-size: 12px;
  position: relative;
}
#mobile-shop-navs ul li a svg,
#mobile-shop-navs ul li div svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-shop-navs ul li a .cross,
#mobile-shop-navs ul li div .cross {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  scale: 0;
}
#mobile-shop-navs ul li a.search-opened .cross,
#mobile-shop-navs ul li div.search-opened .cross {
  opacity: 1;
  scale: 1;
}
#mobile-shop-navs ul li a.search-opened .search,
#mobile-shop-navs ul li div.search-opened .search {
  opacity: 0;
  scale: 0;
}
@media (max-width: 1441.98px) {
  header .header-inner-area .right-top,
  header .header-inner-area .right-bottom,
  header .header-inner-area .left-top,
  header .header-inner-area .left-bottom {
    gap: 24px;
  }
  header .header-logo .logo-img {
    width: 200px;
  }
  header .header-menu > li > a {
    font-size: 16px;
  }
  header .header-shop-navs {
    gap: 12px;
  }
  footer .footer-top {
    padding: 40px 0;
  }
  footer .footer-top .footer-title {
    font-size: 18px;
  }
  footer .footer-top .footer-menu li a {
    font-size: 16px;
  }
  .section-title {
    font-size: 40px;
  }
  .section-text {
    font-size: 16px;
  }
  .section-btn {
    min-width: 180px;
    font-size: 16px;
  }
  #section-campaign-banner .inner-area .banner-title {
    font-size: 32px;
  }
  .product-card .card-image-wrapper {
    margin-bottom: 16px;
  }
  .product-card .card-text-area .card-title {
    font-size: 16px;
  }
  .product-card .card-text-area .card-text {
    font-size: 14px;
  }
  .product-card .card-text-area .card-bottom .card-rate {
    font-size: 14px;
  }
  .product-card .card-text-area .card-bottom .card-rate .rate-stars {
    gap: 2px;
  }
  .product-card .card-text-area .card-bottom .review-count {
    font-size: 14px;
  }
  .product-card .card-text-area .card-bottom .card-price {
    font-size: 16px;
  }
  .product-card .card-btn,
  .product-card .button {
    margin-top: 12px;
    padding: 8px 12px;
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 36px;
  }
  header {
    border-bottom: 2px solid #dedede;
  }
  header .header-inner-area {
    border: none;
  }
  header .header-inner-area {
    padding: 8px 0;
  }
  header .header-inner-area .col-center {
    width: 100%;
  }
  footer .footer-top {
    padding: 40px 0 20px;
  }
}
@media (max-width: 991.98px) {
  .section-title {
    font-size: 32px;
  }
  #section-quality-area .quality-boxes-area .quality-box {
    gap: 12px;
  }
  #section-quality-area .quality-boxes-area .quality-box .box-image-wrapper img {
    width: 64px;
    height: 64px;
  }
  #section-quality-area .quality-boxes-area .quality-box .box-text-area .box-title {
    font-size: 16px;
    text-align: center;
  }
  #section-campaign-banner .inner-area {
    text-align: center;
  }
  #section-campaign-banner .inner-area .banner-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  #section-campaign-banner .inner-area .text-area .banner-link {
    margin-top: 16px;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }
  header .header-logo .logo-img {
    width: 180px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-text {
    font-size: 14px;
  }
  .section-btn {
    min-width: 160px;
    font-size: 14px;
  }
  #section-quality-area .quality-boxes-area .quality-box {
    gap: 8px;
  }
  #section-quality-area .quality-boxes-area .quality-box .box-image-wrapper img {
    width: 52px;
    height: 52px;
  }
  #section-quality-area .quality-boxes-area .quality-box .box-text-area .box-title {
    font-size: 14px;
  }
  #section-campaign-banner .inner-area {
    padding: 24px 32px;
  }
  #section-campaign-banner .inner-area .banner-title {
    margin-bottom: 12px;
    font-size: 24px;
  }
  footer .footer-copyright {
    padding: 20px 0 80px;
  }
  footer .footer-copyright .copyright {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  #section-campaign-banner .inner-area {
    padding: 20px 24px 24px;
  }
}
