.form-step .builder-section > .container,
.form-step .builder-section > .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* <--------------------------------------------------------- HEADER ---------------------------------------------------------> */
.btn-primary {
  --bs-btn-hover-bg: var(--primary-color);
}
header {
  background: var(--black);
}

header .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  margin: calc(0px - var(--bs-nav-link-padding-y));
  font-size: 0.9rem;
}

header .navbar-menu .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
}

/* header .navbar-nav .nav-item:before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: var(--transition-fast);
} */
/* header .navbar-nav .nav-item:hover:before,
header .navbar-nav .nav-item.active:before {
  width: 100%;
} */

header .navbar {
  padding: 1rem 0;
}

header .navbar .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 13rem;
}
header .navbar .navbar-brand img {
  width: 100%;
  height: auto;
}

.navbar-utilities .nav-utility a svg path {
  stroke: var(--white);
}

header .navbar {
  display: grid;
  grid-template: auto / auto 1fr;
  row-gap: 1rem;
}

.page-slug-landing-page header .navbar {
  display: none;
}

header .navbar-menu {
  border-top: 1px solid #ffffff3b;
  padding-top: 1rem;
  grid-column: 1 / 3;
}

header .navbar-menu .navbar-nav {
  width: 100%;
  justify-content: space-between;
}

header .navbar-menu .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
  transition: var(--transition-fast);
}

header .navbar-utilities {
  gap: 2rem !important;
}
header .navbar-utilities .nav-utility {
  display: flex;
}
header .navbar-utilities .nav-utility .utility {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--white);
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
}
header .navbar-utilities .nav-utility .utility .icon-wrapper {
  position: relative;
}

header .navbar-utilities .nav-utility .utility .icon-wrapper .count {
  position: absolute;
  background: var(--primary-color);
  top: 0;
  right: 0;
  font-size: 70%;
  font-weight: 500;
  line-height: 16px;
  vertical-align: middle;
  min-width: 16px;
  height: 16px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  top: -30%;
  right: -30%;
  animation: pop 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

header .navbar-utilities .nav-utility .utility .icon-wrapper .count.cart-count {
  right: -40%;
}

header .navbar-utilities .nav-utility .utility:after {
  content: "";
  position: absolute;
  bottom: calc(-1rem - 1.5px);
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: var(--transition-fast);
}
header .navbar-utilities .nav-utility .utility:hover:after {
  width: 100%;
}

header .navbar-utilities .nav-utility .utility .icon {
  display: flex;
}
header .navbar-utilities .nav-utility .utility .icon svg {
  height: 1.1rem;
  width: auto;
}
header .navbar-utilities .nav-utility .utility .icon svg path {
  stroke-width: 1.5px;
}

header .navbar-utilities .search-form .search_form {
  background: #1c1c1c;
  border-radius: var(--border-radius-xxl);
  align-items: center;
  padding: 0 1rem;
  width: 100%;
  position: relative;
  background: var(--white);
  position: relative;
}

header .navbar-utilities .search-form .search_form.active::before {
  content: "";
  position: absolute;
  width: calc(100% - 2rem);
  height: 1px;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.2);
}

header .search-form .search_form.active {
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  z-index: 2;
  background: var(--white);
}

header .search-form .search_form .search-close-icon {
  display: none;
}

header .search-form .search_form.active .search-close-icon {
  display: block;
}

header .search-form .search_form .search-close-icon #close-search {
  display: flex;
  padding: 0.5rem;
  margin: -0.5rem;
}

header .navbar-utilities .search-form {
  /* margin: auto; */
  /* width: 50%; */
  flex-grow: 1;
  margin-left: 2rem;
}

.search-form .search-backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.search-form.active .search-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1;
}

header .navbar-utilities .search-form .form-control {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0.5rem 1rem;
  width: 100%;
}

.search-form .search_form .search_input[type="search"]::-webkit-search-decoration,
.search-form .search_form .search_input[type="search"]::-webkit-search-cancel-button,
.search-form .search_form .search_input[type="search"]::-webkit-search-results-button,
.search-form .search_form .search_input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

header .navbar-utilities .search-form .form-control::placeholder {
  color: #9f9f9f;
  font-family: "Montserrat";
  font-weight: 400;
}

header .navbar-utilities .search-form .icon-search {
  display: flex;
}

header .navbar-utilities .search-form .icon-search svg path {
  stroke: var(--white);
}

header .header-banner-wrapper {
  padding: 0.75rem 0;
  background: var(--h-gradient-color);
  display: flex;
  position: relative;
}

header .header-banner-wrapper .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  opacity: 0.25;
  transform: translate(-45%, -50%);
}

header .header-banner > div > * {
  color: var(--white);
  font-weight: 600;
}

/* <--------------------------------------------------------- SECTION ---------------------------------------------------------> */

/* Hero section */

.hero-section {
  height: calc(100vh - var(--header-height));
  background: var(--v-gradient-color);
}

.hero-section > .container {
  height: 100%;
}

.hero-section > .container > .row {
  height: 100%;
  align-items: center;
}

.hero-section .hero-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Categories card */
.categories-cards-section > .container > .row {
  row-gap: var(--bs-gutter-x);
}
.module-category-card .category-item {
  position: relative;
}

.module-category-card .category-item .category-image {
  width: 100%;
  border-radius: var(--border-radius-md);
}

.module-category-card .category-item .category-title {
  padding: 0.5rem;
  background: rgba(217, 217, 217, 0.75);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  width: calc(100% - 8rem);
  height: fit-content;
  position: absolute;
  inset: 0;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
}

/* Product banner */

.product-banner > .container-fluid > .row {
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-banner .product-banner-slider-col {
  position: relative;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.product-banner .product-banner-slider .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.product-banner .product-banner-slider {
  padding: 6.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.product-banner .product-banner-slider .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-banner .product-banner-slider .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-banner .slick-arrow {
  position: absolute;
  z-index: 99;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
  padding: 0;
  cursor: pointer;
}

.product-banner .slick-arrow.slick-arrow-right {
  right: calc(var(--container-padding) - 25px);
}

.product-banner .slick-arrow.slick-arrow-left {
  left: calc(var(--container-padding) - 25px);
}

.product-banner .slick-arrow .arrow svg {
  max-width: 25px;
  max-height: 100%;
}

.product-banner .slick-arrow .arrow svg path {
  stroke: var(--white);
}

/* Product card */

.product-slider {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.products-grid .product-card {
  border: 1px solid #cccccc;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  margin-bottom: 1px;
}
.products-grid .product-card .product-image {
  position: relative;
  padding-top: 70%;
}
.products-grid .product-card .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-grid .product-card .product-body .product-details .product-description {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}
.products-grid .product-card .product-body .product-details .product-description .title > * {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.products-grid .product-card .product-body .product-details .product-description .title {
  text-transform: uppercase;
}

.products-grid .product-card .product-body .product-details .product-description .short-description {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
  font-weight: 400;
}

.products-grid .product-card .product-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: space-between;
}

.products-grid .product-card .product-body .product-details {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  /* height: 100%; */
  /* justify-content: space-between; */
}

.products-grid .product-card .product-review {
  display: flex;
  justify-content: space-between;
}

.products-grid .product-card .review-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.star-rating {
  display: flex;
  align-items: center;
  max-width: 6rem;
  gap: 0.188rem;
}
.star-rating svg {
  width: 100%;
  height: auto;
}

.products-grid .product-card .product-body .product-details .product-review .average-rating,
.products-grid .product-card .product-body .product-details .product-review .count-rating {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
}

.products-grid .product-card .product-body .product-purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.products-grid .product-card .out-of-stock {
  font-weight: 500;
  color: var(--white);
  font-size: 0.675rem;
  text-align: center;
  line-height: 1em;
  background: var(--black);
  padding: 0.5rem;
  display: flex;
  border-radius: var(--border-radius-sm);
}

.products-grid .product-card .product-price {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.products-grid .product-card .product-price .sale-price {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  color: #808080;
}

.products-grid .product-card .regular-price {
  font-weight: 600;
  color: #000;
  font-size: 1.1rem;
}

.products-grid .product-card .add-to-cart {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
  padding: 0.65rem;
}

.products-grid .product-card .add-to-cart .icon {
  display: flex;
  align-items: center;
}

.products-grid .product-card .add-to-cart .icon svg {
  width: 1.25rem;
  height: auto;
}
.products-grid .product-card .add-to-cart .icon svg path {
  stroke: var(--white);
}

.products-grid .product-card .product-image .new-tag {
  background: var(--black);
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--white);
  padding: 0.313rem 0.625rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}

.products-grid .product-card .product-image .discount {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  background: var(--h-gradient-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-card .btn-favorite {
  background: transparent;
  border: none;
  padding: 1rem;
  margin: -1rem;
  position: absolute;
  top: 0;
  right: 0;
}

.btn-favorite {
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.btn-favorite.active .icon svg {
  animation: pop 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.btn-favorite.active .icon svg path {
  stroke: var(--red);
  fill: var(--red);
}

@keyframes pop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.product-slider .slick-list {
  display: grid;
}

.product-slider .slick-list .slick-track .slick-slide {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: 1px;
}

.products-grid .arrow-slider-section {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.products-grid .arrow-slider-section .slick-arrow-secondary {
  padding: 1rem;
  margin: -1rem;
  cursor: pointer;
}
.products-grid .arrow-slider-section .slick-arrow-secondary .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-grid .arrow-slider-section .slick-arrow-left {
  order: 1;
}

.products-grid .arrow-slider-section .slick-dots {
  order: 2;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.products-grid .arrow-slider-section .slick-arrow-right {
  order: 3;
}

.products-grid .product-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products-grid .product-category .title {
  border-bottom: 1px solid var(--black);
  padding-bottom: 5px;
}

/* Video section */
.video-section .module-video {
  display: flex;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.video-section .video-js {
  width: 100%;
}

/* Section text-image */

.text-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.text-image .text-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-image .text-inner .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.text-image > .container > .row {
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.banner-section .inside-text {
  position: absolute;
  top: calc(100% - 5.5rem);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
}

.banner-section .inside-text .module-text * {
  text-align: center;
  margin-bottom: 0;
}

.banner-section {
  margin-bottom: 10rem;
}

/* Header products */

.hero-section .hero-products-col {
  height: 100%;
  position: relative;
}

.hero-section .hero-products-col .hero-products {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 2rem 0;
}

.hero-section .hero-products-col .hero-products .module-product-card {
  height: 100%;
  margin: 0;
}

.hero-products .module-product-card {
  display: flex;
}

.hero-products .arrow-slider-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.hero-products .arrow-slider-section .slick-arrow-secondary {
  cursor: pointer;
  padding: 1rem;
  margin: -1rem;
}
.hero-products .arrow-slider-section .arrow {
  display: flex;
  align-items: center;
}

.hero-products .arrow-slider-section .slick-arrow-secondary svg path {
  stroke: var(--white);
}

.hero-products .arrow-slider-section .slick-arrow-right {
  order: 3;
}

.hero-products .arrow-slider-section .slick-dots {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.hero-products .arrow-slider-section .slick-dots li {
  width: 100%;
}

.hero-products .arrow-slider-section .slick-dots li button {
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.hero-products .arrow-slider-section .slick-dots li.slick-active button {
  background: var(--white);
}

.hero-products .module-product-card .slick-track {
  height: 100%;
}

.hero-section .hero-products-col .hero-products .module-product-card .product-item-wrapper {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-section .hero-products .module-product-card .product-image-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transform: rotate(0);
  padding-top: 2rem;
  object-fit: cover;
  transition: var(--transition-slow);
}
.hero-section .hero-products .module-product-card .slick-current .product-image-bg {
  transform: rotate(30deg);
}

.module-product-card .product-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(38px);
  -webkit-backdrop-filter: blur(38px);
  padding: 1rem;
  border-radius: var(--border-radius-md);
}

.module-product-card .product-item {
  display: flex;
  gap: 1rem;
}

.module-product-card .product-item .product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.module-product-card .product-item .product-body .product-purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-product-card .product-item .product-body .product-purchase .product-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.module-product-card .product-item .product-body .product-purchase .product-buttons .btn-favorite {
  border: none;
  background: transparent;
  padding: 0.5rem;
}

.module-product-card .product-item .product-body .product-purchase .product-buttons .add-to-cart {
  background: transparent;
  padding: 0.5rem;
  font-size: 0;
}

.module-product-card .product-item .product-image {
  background: var(--white);
  border-radius: var(--border-radius-md);
  position: relative;
  padding: 15%;
}

.module-product-card .product-item .product-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 1rem;
}

.module-product-card .product-item .product-body .product-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Newsletter */

.newsletter-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 12.5rem;
}

.newsletter-section .newsletter-inner-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-section .image-inner-col {
  margin-top: -6.25rem;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}

.newsletter-section .newsletter-inner-col .newsletter-inner {
  padding: 2rem 0;
}

.module-newsletter #subscribeNewsletter {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.module-newsletter .item-acceptance label * {
  color: var(--white);
}

.module-newsletter .item-acceptance input {
  display: inline-block;
  margin-right: 0.2rem;
  border: none;
}

.module-newsletter .item-acceptance .acceptance-text > * {
  display: inline;
}

.module-newsletter .newsletter-form .newsletter-input {
  display: flex;
}

.module-newsletter .newsletter-form .newsletter-input .btn {
  white-space: nowrap;
  margin: 0.313rem;
  padding: 0.5rem 1rem;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.module-newsletter .newsletter-form .newsletter-input .form-control {
  background: transparent;
  border: none;
}

.module-newsletter .newsletter-form .newsletter-input {
  background: var(--white);
  border-radius: var(--border-radius-sm);
}

.module-newsletter .newsletter-form .newsletter-input .form-control:focus {
  box-shadow: none;
}

.module-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-newsletter {
  max-width: 900px;
  position: relative;
  padding: 3rem 5rem;
}

.module-newsletter::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  bottom: 0;
  width: 120%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgb(178 109 209 / 20%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: var(--border-radius-sm);
  padding: 3rem 6rem;
}

/* Footer */

footer {
  background: var(--black);
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
footer p {
  color: var(--white);
}

.footer-description > * {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

footer .module-contact li a svg path {
  stroke: var(--white);
}

footer .module-social svg path {
  fill: var(--white);
}

footer .footer-content {
  padding: 4rem 0;
}

footer .footer-content > .container > .row {
  display: grid;
  grid-template: auto / 2fr 1fr 1fr auto;
}

footer .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
}

footer .module-social {
  margin-top: 1rem;
}

footer .gdpr-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

footer .footer-copyright {
  border-top: 1px solid #ffffff21;
}

footer .footer-copyright > .container > .row {
  align-items: center;
  padding: 1.5rem 0;
}

footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .footer-contact .company-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer .footer-contact .company-details-wrapper .list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

footer .footer-contact .company-details-wrapper .list ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-copyright-text {
  font-size: 0.875rem;
}

.checkbox-wrapper * {
  box-sizing: border-box;
}

.checkbox-wrapper .checkbox-label span:first-child {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease;
  background: var(--white);
  cursor: pointer;
  margin-top: -4px;
  margin-right: 0.35rem;
}

.checkbox-wrapper .checkbox-label:hover span:first-child {
  border-color: var(--black);
}

.checkbox-wrapper .checkbox-input {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper .checkbox-input:checked + .checkbox-label span:first-child {
  background-color: var(--white);
  border-color: var(--black);
  animation: wave 0.4s ease;
}

.checkbox-wrapper .checkbox-input:checked + .checkbox-label span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper .checkbox-label svg {
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0.15rem;
}

.checkbox-wrapper .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

/****** css search ******/
.search_input.loading {
  background-color: rgba(255, 255, 255, 0.8); /* Fundal alb semi-transparent */
  pointer-events: none; /* Dezactivează interacțiunea în timpul încărcării */
}

.search_input {
  position: relative; /* Necesită pentru a poziționa ::after */
}

.loading {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--primary-color) 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, var(--primary-color));
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 2px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}

.search_form .search-container {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--white);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  height: 50vh;
  top: 100%;
  padding: 0 1rem;
  overflow: hidden;
}

.search_form .search-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1rem;
  background: linear-gradient(180deg, #ffffff 10%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.search_form .search-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1rem;
  background: linear-gradient(0deg, #ffffff 10%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.search_form .search-container .search-brands {
  height: 100%;
  overflow-y: auto;
  padding: 1rem 0;
}

.search_form .search-container .search-brands::-webkit-scrollbar {
  display: none;
}

.search_form .search-container .search-brands {
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search_form .search-container .search-results .empty-results {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.search_form .search-container .search-results::-webkit-scrollbar {
  display: none;
}

.search_form .search-container .search-results {
  overflow-y: auto;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.search_form .search-container .search-results .results-inner .results-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search_form .search-container .search-results .results-inner .results-wrapper .results-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}

.search_form .search-container .search-results .results-inner .results-wrapper .results-items-wrapper .results-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search_form .search-container .search-results .results-inner .results-wrapper .results-items-wrapper .results-item .desc_search {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.search_form .search-container .search-results .results-inner .results-wrapper .results-items-wrapper .results-item .img_search img {
  max-width: 3.75rem;
  max-height: 3.75rem;
}

.search_form .search-container .search-results .results-inner {
  height: 100%;
  padding: 1rem 0;
}

.search_form .search-container .search-results .results-inner .search_form .search-container .search-results .results-inner .empty-results {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.search_form .search-container .search-brands .brand-item-list {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  padding-left: 0.5rem;
}
/* <--------------------------------------------------------- FONTS ---------------------------------------------------------> */

/* Primary font */

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Black.ttf);
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-ExtraBold.ttf);
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Light.ttf);
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-ExtraLight.ttf);
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Thin.ttf);
  font-weight: 100;
  font-display: swap;
}

/* <--------------------------------------------------------- ROOT ---------------------------------------------------------> */

:root {
  /* Colors */

  /* --primary-color: #8d744b; */
  --primary-color: #ce1d3f;
  --primary-color-rgb: 113, 87, 198;
  --primary-color-10: #f4f1ed;
  --white-secondary: #ededed;
  --gray: #6e6e6e;
  --red: #fa0000;
  --yellow: #f9bf3b;
  --green: #008000;
  --h-gradient-color: linear-gradient(90deg, #5f33ee 0%, #7e69c4 50%, #5f33ee 100%);
  /* background: linear-gradient(90deg, #7E69C4 44%, rgba(126, 105, 196, 0) 100%); */

  --v-gradient-color: linear-gradient(0deg, #8d744b 0%, rgba(140, 121, 100, 0.5) 100%);
  --primary-gradient-color: linear-gradient(180deg, #8d744b 0%, #8c7964 100%);
  --p-color: #4d4d4d;
  --h-color: #000000;
  --a-color: #000000;
  --black: #000000;
  --black-70: rgb(0, 0, 0, 70%);
  --black-60: #666666;
  --black-30: rgb(0, 0, 0, 30%);
  --black-20: rgb(0, 0, 0, 20%);
  --white: #ffffff;
  --white-70: rgb(255, 255, 255, 70%);
  --white-40: rgb(255, 255, 255, 40%);
  --white-20: rgb(255, 255, 255, 20%);
  --white-10: rgb(255, 255, 255, 10%);
  --border-radius-sm: 0.3em;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1em;
  --border-radius-xl: 2em;
  --border-radius-xxl: 3em;
  --border-radius-btn: 50px;

  /* Transition */

  --transition-slow: all 0.5s linear;
  --transition-medium: all 0.35s linear;
  --transition-fast: all 0.25s linear;
  --transition-superfast: all 0.15s linear;

  /* Dynamic height */

  --dynamic-height: calc(var(--vh, 1vh) * 100);
  --header-height: --header-height;

  /* Gap */

  --container-padding: var(--col-gap);
  --row-gap: max(1.75em, 1.75vw);
  --col-gap: max(8rem, 8vw);
  --col-gap-50: calc(var(--col-gap) * 0.5);
}

/* <--------------------------------------------------------- TYPOGRAPHY ---------------------------------------------------------> */

/* Heading */

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
li,
ul,
ol,
span,
strong,
em,
figcaption,
s {
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  font-family: "Montserrat";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--h-color);
  margin-bottom: 0;
}

h1 {
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 1.4634))), 48px);
  font-weight: 400;
}

h2 {
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 1.4634))), 48px);
  font-weight: 500;
}

h3 {
  font-weight: 600;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
  color: var(--h-color);
}

h4 {
  font-weight: 500;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--h-color);
}

h5 {
  font-weight: 500;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--h-color);
}

/* Paragraph */

p {
  font-weight: 300;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--p-color);
}

p:last-of-type {
  margin-bottom: 0;
}

p:not(:last-of-type) {
  margin-bottom: 1rem;
}

/* Anchor */

a {
  font-weight: 300;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--a-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-color);
  transition: var(--transition-fast);
}

/* List */

li {
  font-weight: 300;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--p-color);
}

li::marker {
  color: var(--primary-color);
}

/* Strong */

strong {
  font-weight: 600;
  color: var(--p-color);
}

/* Titles */

.title.black > * {
  color: var(--black);
}

.title.white > * {
  color: var(--white);
}

.title > * {
  color: var(--h-color);
}

.title.xl > * {
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 2.439))), 64px);
}

.title.lg > * {
  font-size: min(max(24px, calc(1.5rem + ((1vw - 2.8px) * 1.4634))), 48px);
}

.title.md > * {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
}

.title.sm > * {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
}

/* Text */

.text.black > * {
  color: var(--black);
}

.text.white > * {
  color: var(--white);
}

.text.gray > *,
.title.gray > * {
  color: var(--gray);
}

.title.red,
.text.red > * {
  color: var(--red);
}

.title.primary,
.text.primary > * {
  color: var(--primary-color);
}

.title.yellow > *,
.text.yellow > * {
  color: var(--yellow);
}

.title.green > *,
.text.green > * {
  color: var(--green);
}

.text > * {
  color: var(--p-color);
}

.text.xxl > * {
  font-size: min(max(20px, calc(1.25rem + ((1vw - 2.8px) * 0.4878))), 28px);
}

.text.xl > * {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
}

.text.lg > * {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
}

.text.md > * {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
}

.text.sm > * {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.2439))), 16px);
}

.text.xsm > * {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
}

/* Font weight */

.title.black > *,
.text.black > * {
  font-weight: 900;
}

.title.extrabold > *,
.text.extrabold > * {
  font-weight: 800;
}

.title.bold > *,
.text.bold > * {
  font-weight: 700;
}

.title.semibold > *,
.text.semibold > * {
  font-weight: 600;
}

.title.medium > *,
.text.medium > * {
  font-weight: 500;
}

.title.regular > *,
.text.regular > * {
  font-weight: 400;
}

.title.light > *,
.text.light > * {
  font-weight: 300;
}

.title.thin > *,
.text.thin > * {
  font-weight: 200;
}

.title.extrathin > *,
.text.extrathin > * {
  font-weight: 100;
}

/* Input */

.form-control {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 0.875rem;
  border-color: transparent;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
}

.help-block {
  font-size: 0.75rem;
  font-family: "Montserrat";
  font-weight: 400;
  color: var(--red);
  margin-top: 0.313rem;
}

.help-block a {
  font-size: 12px;
  font-family: "Montserrat";
  font-weight: 400;
  color: var(--red);
  text-decoration: underline;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  box-shadow: none;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: none;
}

/* <--------------------------------------------------------- GENERALS ---------------------------------------------------------> */

/* Classes */

.mb-title-gap {
  margin-bottom: 3.125rem;
}

.ssp-top {
  padding-top: 3.125rem;
}

.ss {
  margin-bottom: 6.25rem;
}

.bg-sec {
  background: var(--white-secondary);
}

.fs-0 {
  font-size: 0;
}

/* Containers */

body {
  background: var(--body-bg);
}

main {
  margin-top: var(--header-height);
}

.container-fluid {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.container-fluid .row {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.container {
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 1920px;
}
/* .row {
    max-width: 1920px;
    margin: 0 auto;
  } */

/* Buttons */

button {
  font-family: "Montserrat";
}

.btn {
  font-family: "Montserrat";
}

.white .btn-primary {
  background: var(--white);
  color: var(--black);
}

.danger.btn-primary {
  background: #dc3545;
}

.product-view .product-cart .out-of-stock {
  background: #fee5e5;
  color: var(--red);
  padding: 0.938rem 1.875rem;
  border-radius: var(--border-radius-sm);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  display: flex;
  align-items: center;
}

.btn-sm.btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-sm.btn-primary svg {
  width: 0.75rem;
  height: 0.75rem;
}

.btn-sm.btn-primary svg path {
  stroke: var(--white);
}

.btn-primary {
  background: var(--black);
  border-radius: 0;
  color: var(--white);
  font-family: "Montserrat";
  font-weight: 400;
  border: none;
  padding: 0.938rem 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: fit-content;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  border-radius: var(--border-radius-sm);
}

.module-product-card .btn-primary.add-to-cart .icon svg path {
  stroke: var(--black);
}

.btn-primary.add-to-cart .icon svg path {
  stroke: var(--white);
}

.btn-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  margin: -0.5rem;
}

button:focus:not(:focus-visible) {
  outline: none;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.account-page .account-home .user-delivery-options .empty-option .icon svg {
  width: 4.375rem;
  height: 4.375rem;
  filter: opacity(0.8);
}

.account-page .account-home .user-delivery-options:has(.empty-option) .account-box-header {
  text-align: center;
}

.account-page .account-home .user-delivery-options .empty-option {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.account-page .account-home .user-delivery-options .empty-option .text > * {
  text-align: center;
}
/* Body */
body,
main {
  overflow-x: clip;
}

/* Header */
header .navbar-utilities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  /* align-items: center; */
}

html {
  scroll-padding-top: calc(var(--header-height) + 70px);
}

/* Pagination */
.pagination {
  gap: 0.5rem;
  justify-content: center;
}

.pagination .next svg,
.pagination .prev svg {
  max-height: 10px;
  max-width: 10px;
}

.pagination .next.disabled svg path,
.pagination .prev.disabled svg path {
  stroke: #cccccc;
}

.pagination li.disabled > * {
  color: #cccccc;
}

.pagination li.active > * {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.pagination li > * {
  width: 2.188rem;
  height: 2.188rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  border-radius: var(--border-radius-sm);
  font-weight: 400;
  color: var(--black);
  font-size: 0.875rem;
}

/* Slick slider arrow */

.slick-arrow {
  cursor: pointer;
}

/* Dropdown */

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown .dropdown-button {
  background: transparent;
  color: var(--gray);
  border: 1px solid #cccccc;
  border-radius: var(--border-radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.custom-dropdown .dropdown-button:hover {
  transition: var(--transition-fast);
  color: var(--black);
}

.custom-dropdown .dropdown-button.active {
  color: var(--black);
}

.custom-dropdown .dropdown-button .icon {
  display: flex;
}

.custom-dropdown .dropdown-button .arrow-dropdown svg {
  max-width: 8px;
}

.custom-dropdown .dropdown-button .dropdown-label .sort-icon svg {
  max-height: 12px;
  max-width: 12px;
}

.custom-dropdown .dropdown-button .icon svg path {
  transition: var(--transition-fast);
  stroke: var(--gray);
}

.custom-dropdown .dropdown-button:hover .icon svg path {
  transition: var(--transition-fast);
  stroke: var(--black);
}

.custom-dropdown .dropdown-button.active .icon svg path {
  stroke: var(--black);
}

.dropdown-label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.313rem;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 10px 15px #00000014, 0 2px 2px #0000000d, 0 -2px 2px #00000005;
  border-radius: var(--border-radius-sm);
  min-width: 160px;
  z-index: 1;
  margin-top: 0.313rem;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  overflow: hidden;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}

.dropdown-option {
  transition: var(--transition-fast);
  cursor: pointer;
}

.dropdown-option:hover {
  transition: var(--transition-fast);
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-content .dropdown-option > * {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  display: flex;
  width: 100%;
}

/* Module social */
.module-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-social ul {
  display: flex;
  gap: 1rem;
}

/* Module contact */
.module-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-contact ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.module-contact ul li a svg {
  width: 1.1rem;
  height: auto;
}

/* Module image */
.module-image img {
  width: 100%;
  height: auto;
}

/* Module footer menu */
.module-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  padding: 0;
  margin: 0;
}

/* Review user avatar */

.user-avatar {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  overflow: hidden;
}

.user-avatar .skeleton-loader {
  width: 100%;
  height: 100%;
  background-color: #ddd;
  animation: skeleton-loading 1.2s infinite ease-in-out;
}

.user-avatar .thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-avatar .thumbnail .initials {
  color: var(--white);
  font-weight: 300;
}

/* User avatar */

.utility.account .user-avatar {
  width: 2.125rem;
  height: 2.125rem;
}

.utility.account .user-avatar .thumbnail .initials {
  font-size: 0.875rem;
  font-weight: 300;
}

/* Checkout thank you */

.checkout-thank-you .similar-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-thank-you .thanks-order-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-thank-you .thanks-order-details {
  min-height: calc(100vh - var(--header-height));
  justify-content: center;
}

/* Checkout */
.checkout-step-group {
  padding: var(--bs-gutter-x);
  margin-bottom: var(--bs-gutter-x);
  border-radius: var(--border-radius-md);
  background-color: var(--primary-color-10);
}

.checkout-step-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--bs-gutter-x);
}

.checkout-step-number {
  display: block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 2rem;
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.checkout-step-group .tab-pane {
  background: var(--white);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
  padding: 1rem;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) var(--border-radius-sm);
}

.checkout-step-group .input-inner .user-address-box {
  background: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-step-group .input-inner .address-box-action-buttons {
  border-top: none;
}

.checkout-step-group .input-inner .user-address-box .user-address-box-wrapper {
  padding: 0;
}

.checkout-step-group .input-inner .address-box-action-buttons .btn {
  justify-content: start;
  color: white;
  background: black;
  width: fit-content;
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 1rem;
}

.checkout-step-group .input-inner .address-box-action-buttons .btn:hover {
  background: var(--primary-color);
}

.checkout-step-group .user-address-box,
.table .user-address-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}
.table .user-address-box.btn_choose_other_address_save:hover {
  background: #efeaff;
  cursor: pointer;
}

.checkout-step-group .user-address-box .user-address-box-wrapper,
.table .user-address-box .user-address-box-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.checkout-step-group .user-address-box .user-address-box-wrapper .user-address-list,
.table .user-address-box .user-address-box-wrapper .user-address-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.checkout-step-group .user-address-box-wrapper .user-address-list .strong,
.table .user-address-box-wrapper .user-address-list .strong {
  font-weight: 500;
}

.checkout-step-group .user-address-box-wrapper .user-address-icon,
.table .user-address-box-wrapper .user-address-icon {
  background: rgba(0, 0, 0, 0.05);
  width: fit-content;
  border-radius: 100%;
  padding: 0.75rem;
}

.checkout-step-group .user-address-box-wrapper .user-address-icon svg,
.table .user-address-box-wrapper .user-address-icon svg {
  width: 1.875rem;
  height: 1.875rem;
}

.checkout-step-group .user-address-box-wrapper .user-address-icon svg path,
.table .user-address-box-wrapper .user-address-icon svg path {
  fill: var(--primary-color);
}

.checkout-step-group .address-box-action-buttons,
.table .address-box-action-buttons {
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-step-group .address-box-action-buttons .btn,
.table .address-box-action-buttons .btn {
  background: transparent;
  border: none;
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 0;
}

.checkout-step-group .address-box-action-buttons .btn:hover,
.table .address-box-action-buttons .btn:hover {
  background: rgba(111, 85, 198, 0.05);
}

/* .checkout-step-group .address-box-action-buttons .btn:first-child,
.table .address-box-action-buttons .btn:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
} */

/* General modal */

#generalModal .modal-content {
  border: none;
  border-radius: var(--border-radius-md);
}

/* Cart modal */

#cartOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1031;
  opacity: 0;
  transition: all 1s cubic-bezier(0.76, 0, 0.3, 1) forwards;
}

#cartModal {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  background-color: white;
  z-index: 1032;
  transition: right 1s cubic-bezier(0.76, 0, 0.3, 1) forwards;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 100%;
  max-width: 500px;
}

#cartModal .cart-modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#cartModal .cart-modal-content .cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  flex-direction: column;
}

#cartModal .cart-modal-content .cart-modal-header .close {
  padding: 1rem;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: 400;
  cursor: pointer;
}

#cartModal .cart-modal-content .cart-modal-header .close svg path {
  stroke: #fff;
  stroke-width: 1.5px;
}

#cartModal .cart-modal-header .cart-modal-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

#cartModal .cart-modal-body {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

#cartModal .cart-modal-body .cart-item {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}

#cartModal .cart-modal-body .cart-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#cartModal .cart-modal-body .cart-item .cart-image {
  position: relative;
  padding: 15%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  overflow: hidden;
}

#cartModal .cart-modal-body .cart-item .cart-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}

#cartModal .cart-modal-body .cart-item .cart-item-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: space-between;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .quantity-control input::-webkit-outer-spin-button,
#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .quantity-control input[type="number"] {
  -moz-appearance: textfield;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .quantity-control button {
  background: transparent;
  border: none;
  padding: 0;
}

#cartModal .cart-modal-content .cart-modal-body .cart-item .cart-item-body .remove-item {
  padding: 0;
  border: none;
  background: transparent;
  width: fit-content;
  padding: 0.5rem;
  margin: -0.5rem;
  margin-left: auto;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-title-description {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .quantity-control {
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .quantity-control .item-quantity-selector {
  border: none;
  cursor: pointer;
  font-family: "Montserrat";
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item:hover {
  transition: var(--transition-fast);
  border-color: rgba(0, 0, 0, 0.2);
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item {
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  height: fit-content;
  padding: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
  border-radius: var(--border-radius-md);
  margin: 0;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-image {
  aspect-ratio: 4 / 3;
  border: none;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-image .btn-favorite {
  position: absolute;
  top: 0;
  right: 0;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-item-body {
  /* position: relative; */
  transform: translateY(0);
  background-color: transparent;
  backdrop-filter: blur(0px);
  transition: transform 0.3s ease-in-out, background-color 0.25s ease-in-out, backdrop-filter 0.25s ease-in-out;
  padding-top: 1rem;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item:hover .cart-item-body {
  transform: translateY(-100%);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease-in-out, background-color 0.25s ease-in-out, backdrop-filter 0.25s ease-in-out;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-image img {
  transition: transform 0.3s ease-in-out;
  object-fit: contain;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item:hover .cart-image img {
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .cart-modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-item-body .cart-item-price-quantity .product-price {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-item-body .cart-item-price-quantity .product-price .product-sale-price {
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.313rem;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-item-body .cart-item-price-quantity .product-price .product-regular-price .regular-price {
  font-size: 0.875rem;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-item-body .cart-item-price-quantity .product-price .btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  position: absolute;
  bottom: -100%;
  width: 100%;
  justify-content: center;
}

#cartModal .cart-modal-content .cart-modal-body .upsell-container .upsell-products .cart-item .cart-item-body .cart-item-title-description .cart-item-title a {
  font-size: 0.75rem;
}

.quantity-control .item-quantity-selector:focus-visible {
  outline: none;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .product-price .product-sale-price {
  display: flex;
  flex-direction: column;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .product-price .product-sale-price .regular-price {
  font-size: 12px;
  margin-left: auto;
  color: var(--gray);
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .product-price .product-sale-price .sale-price {
  color: var(--primary-color);
  font-weight: 600;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-title-description .cart-item-title > * {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#cartModal .cart-modal-body .cart-item .cart-item-body .cart-item-price-quantity .product-regular-price .regular-price {
  color: var(--primary-color);
  font-weight: 600;
}

#cartModal .cart-modal-content .cart-modal-footer {
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#cartModal .cart-modal-content .cart-modal-footer .cart-item-total-price .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cartModal .cart-modal-content .cart-modal-footer .cart-item-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#cartModal .cart-modal-content .cart-modal-footer .cart-item-buttons .btn.btn-checkout {
  background: var(--black);
  color: var(--white);
}

#cartModal .cart-modal-content .cart-modal-footer .cart-item-buttons .btn.btn-cart {
  border: 1px solid var(--black);
}

#cartModal .cart-modal-content .cart-modal-footer .cart-item-buttons .btn {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
}

#cartModal .cart-modal-body .show-more-btn-wrapper .show-more-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  justify-content: center;
}

#cartModal .cart-modal-body .show-more-btn-wrapper {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.hidden-item {
  display: none !important;
}

.loader {
  display: none;
  margin: 10px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}
/* Cart page */

.cart-page-content > .container {
  display: flex;
  flex-direction: column;
  row-gap: var(--bs-gutter-x);
}

.cart-page-content .col-cart-page-products {
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.cart-page-content .cart-page-products {
  background: var(--primary-color-10);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.cart-page-content .cart-page-products .spinner-wrapper {
  background: var(--primary-color-10);
}

.cart-page-content .cart-page-products .product-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.cart-page-content .cart-page-products .product-item .product-specification {
  display: flex;
}

.cart-page-content .cart-page-products .cart-page-products-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-page-content .cart-page-products .product-item .product-specification {
  gap: 1rem;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-image {
  position: relative;
  padding: 6%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-md);
  background: var(--white);
}

.cart-page-content .cart-page-products .product-item .product-specification .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-title-description {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .quantity-control {
  padding: 0.313rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  width: fit-content;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .quantity-control .item-quantity-selector {
  border: none;
  background: var(--primary-color-10);
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-title-description .remove-cart-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  margin: -0.5rem;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-title-description .remove-cart-item svg {
  max-width: 18px;
  max-height: 18px;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-title-description .remove-cart-item svg path {
  stroke-width: 1.7px;
  stroke: var(--gray);
  transition: var(--transition-fast);
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-title-description .remove-cart-item:hover svg path {
  stroke: var(--black);
  transition: var(--transition-fast);
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-title-description .product-title {
  display: flex;
  justify-content: space-between;
}

.limited-stock {
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  background: #fee5e5;
  width: fit-content;
  margin-top: 0.5rem;
}

.limited-stock > * {
  color: var(--red);
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-quantity-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-quantity-price .product-price .product-sale-price {
  display: flex;
  flex-direction: column;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-quantity-price .product-price .product-sale-price .regular-price {
  font-size: 12px;
  color: var(--gray);
  margin-left: auto;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-quantity-price .product-price .product-sale-price .sale-price {
  color: var(--primary-color);
  font-weight: 600;
}

.cart-page-content .cart-page-products .product-item .product-specification .product-details .product-quantity-price .product-price .product-regular-price .regular-price {
  color: var(--primary-color);
  font-weight: 600;
}

.cart-page-content .col-cart-page-summary .cart-page-summary {
  background: var(--primary-color-10);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-page-content .col-cart-page-summary .cart-page-summary .btn {
  width: 100%;
  justify-content: center;
}

.cart-page-content .col-cart-page-summary .cart-page-summary .cart-page-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-page-content .col-cart-page-summary .cart-page-summary .cart-page-summary-line {
  display: flex;
  justify-content: space-between;
}

.cart-page-content .col-cart-page-summary .cart-page-summary .cpsl-button-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-page-content .col-cart-page-summary .cart-page-summary .cpsl-button-payment-methods .cpsl-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 0.313rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 0.5rem;
}

.cart-page-content .col-cart-page-summary .cart-page-summary .cpsl-button-payment-methods .cpsl-payment-methods .payment-icon svg {
  width: 100%;
  height: 100%;
  filter: invert();
}

.cart-page-content .col-cart-page-summary .cart-page-summary .cpsl-button-payment-methods .cpsl-payment-methods .payment-icon {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.cart-page-content .col-cart-page-summary .cart-page-summary-wrapper .cpsl-voucher-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--primary-color-10);
  border-radius: var(--border-radius-md);
}

.cart-page-content .col-cart-page-summary .cart-page-summary-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--bs-gutter-x);
}

.cart-page-content .col-cart-page-summary .cart-page-summary-wrapper .cpsl-voucher-info .voucher-icon {
  max-width: 20px;
  max-height: 20px;
}

.cart-page-content .col-cart-page-summary .cart-page-summary-wrapper .cpsl-voucher-info .voucher-icon svg {
  width: 100%;
  height: 100%;
}

.cart-page-content .col-cart-page-similar .similar-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  background: var(--primary-color-10);
}

.cart-page-content .col-cart-page-summary {
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.cart-page-content .empty-cart {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  background: var(--primary-color-10);
  border-radius: var(--border-radius-md);
}

.cart-page-content .cart-page-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  background: var(--primary-color-10);
}

/* FAQ */

.module-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-faq .accordion-flush {
  display: grid;
  gap: 1rem;
  grid-template: auto / 1fr 1fr;
}

.module-faq .accordion-flush .accordion-item {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  height: fit-content;
}

.module-faq .accordion-flush#accordionFlush .accordion-item .accordion-header .accordion-button.collapsed {
  background: transparent;
  color: var(--black);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.122))), 18px);
}

.module-faq .accordion-flush#accordionFlush .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: var(--primary-color);
}

.module-faq .accordion-flush#accordionFlush .accordion-item .accordion-collapse .accordion-body a {
  font-weight: 400;
  color: var(--primary-color);
}

.cart-page-faq .module-faq {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-page-faq .cart-page-faq-contact {
  display: flex;
  gap: 2rem;
}

.cart-page-faq .cart-page-faq-contact .title {
  margin-right: auto;
}

.cart-page-faq .cart-page-faq-contact .contact-card {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.cart-page-faq .cart-page-faq-contact .contact-card .cart-contact-phone span {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.cart-page-faq .cart-page-faq-contact .contact-card .cart-contact-text > p {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: rgb(121 119 117);
}

/* Checkout */

.checkout-page-form .checkout-step-group .input-inner .input-wrapper .form-label,
.checkout-page-form .checkout-step-group .tab-content .other-delivery-fields .input-wrapper .form-label {
  display: none;
}

.checkout-page-form .checkout-step-group .input-inner {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 1rem;
}

.checkout-page-form .checkout-step-group .input-inner .mb-3 {
  margin-bottom: 0 !important;
}

.checkout-page-form .input-inner .input-wrapper .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  border-radius: var(--border-radius-sm);
  height: 45px;
  font-family: "Montserrat";
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-weight: 400;
}

.checkout-page-form .input-inner .input-wrapper .form-control::placeholder {
  color: var(--gray);
}

.checkout-voucher .checkout-step-group .input-inner {
  display: flex;
}

.checkout-voucher .checkout-step-group .input-inner .input-wrapper {
  width: 100%;
}

.checkout-voucher .checkout-step-group .input-inner .btn-primary {
  padding: 0.5rem 1rem;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-weight: 500;
}

.checkout-page-form .checkout-step-group .nav-tabs {
  border: none;
  gap: 0.313rem;
}

.checkout-page-form .checkout-step-group .nav-tabs .nav-item .nav-link.active {
  background: rgba(255, 255, 255, 0.5);
  color: var(--black);
}

.checkout-page-form .checkout-step-group .nav-tabs .nav-item .nav-link {
  border: none;
  font-weight: 400;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  color: #808080;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
}

.sticky-step-group {
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.cart-page-content .checkout-page-form .cart-page-products .product-item .product-specification .product-image {
  padding: 13%;
  background: var(--white);
}

.cart-page-content .checkout-page-form .cart-page-products .product-item .product-specification .product-details .product-quantity-price {
  justify-content: flex-end;
}

.cart-page-content .checkout-page-form .cart-page-products {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
}

.checkout-page-form .checkout-summary-part-wrapper .checkout-page-summary-line {
  display: flex;
  justify-content: space-between;
}

.checkout-page-form .checkout-step-group .field-checkoutform-note .form-label .checkout-mentions-title {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--gray);
}

.checkout-page-form .checkout-step-group .col-cart-page-summary .checkout-summary-part-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.cart-page-content .col-cart-page-summary .field-checkoutform-note .checkout-mentions-title {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.313rem;
}

.cart-page-content .col-cart-page-summary .edit-icon:hover svg path {
  transition: var(--transition-fast);
  fill: var(--black);
}

.cart-page-content .col-cart-page-summary .edit-icon svg path {
  transition: var(--transition-fast);
  fill: var(--gray);
}

.checkout-step-group .col-cart-page-summary .field-checkoutform-note .form-label .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  border-radius: var(--border-radius-sm);
  font-family: "Montserrat";
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-weight: 400;
}

.checkout-page-form .payment-method .checkout-step-group .form-check p {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--gray);
}

.checkout-page-form .checkout-btn-wrapper {
  margin-bottom: var(--bs-gutter-x);
}

.product-view .breadcrumbs-container .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.313rem;
  overflow: auto;
}

.product-view .breadcrumbs-container .breadcrumbs::-webkit-scrollbar {
  display: none;
}

.product-view .breadcrumbs-container .breadcrumbs {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-view .breadcrumbs-container .breadcrumbs a,
.product-view .breadcrumbs-container .breadcrumbs span {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  white-space: nowrap;
}

.product-view .breadcrumbs-container .breadcrumbs a {
  color: rgba(0, 0, 0, 0.6);
}

.product-view .breadcrumbs-container .breadcrumbs .current {
  color: rgba(0, 0, 0, 0.4);
}

.product-view .breadcrumbs-container .breadcrumbs svg {
  max-height: 8px;
  max-width: 8px;
  min-width: 8px;
}

.product-view .breadcrumbs-container .breadcrumbs svg path {
  stroke: rgba(0, 0, 0, 0.6);
}

.product-view .product-image-inner .product-gallery .nav-slider .nav-image {
  position: relative;
  padding: 10%;
}

.product-view .product-image-inner .product-gallery .nav-slider .nav-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-view .product-image-inner .main-image img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.product-view .product-image-inner .main-image {
  border: 1px solid var(--white-secondary);
  padding: 1rem;
  border-radius: var(--border-radius-md);
}

.product-image-inner .nav-slider .nav-image {
  padding: 0.313rem 0;
}

.product-image-inner .nav-slider .nav-image img {
  border: 1px solid var(--white-secondary);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-view .product-image-inner .nav-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-view .product-image-inner .nav-slider .slick-arrow {
  display: flex;
  width: 100%;
}

.product-view .product-image-inner .nav-slider .slick-arrow .arrow {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0.313rem;
  cursor: pointer;
}

.product-view {
  padding: 4rem 0;
}

.product-view .review-sku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.product-view .review-sku .product-review {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.product-view .review-sku .product-review .review-stars {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.product-view .product-price .regular-price {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.6098))), 28px);
  font-weight: 600;
  color: var(--primary-color);
}

.product-view .product-price .product-sale-price {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  width: fit-content;
}

.product-view .product-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-view .product-price .product-sale-price .product-discount {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.product-view .product-price .product-sale-price .sale-price {
  color: var(--gray);
  font-weight: 500;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}
.product-view .product-price .product-sale-price .discount {
  background: var(--primary-color);
  padding: 0.156rem 0.313rem;
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.product-view .product-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  justify-content: space-between;
}

.product-view .product-content .product-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-view .product-content .product-body .product-cart {
  display: flex;
  gap: 0.625rem;
}

.product-view .product-content .product-body .product-cart-voucher-stock {
  width: fit-content;
}

.limited-stock {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.625rem;
}

.product-view .product-content .product-body .product-cart .add-to-cart .icon svg path {
  stroke: var(--white);
}

.product-view .product-content .product-body .product-cart .btn-favorite,
.product-view .product-content .product-body .product-cart .btn-compare,
.product-view .product-content .product-body .product-cart .btn-stock-alert {
  padding: 0.5rem 1rem;
  border: none;
  background: var(--white-secondary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
}

.product-view .product-content .product-body .product-cart .btn-favorite svg path,
.product-view .product-content .product-body .product-cart .btn-compare svg path,
.product-view .product-content .product-body .product-cart .btn-stock-alert svg path {
  stroke: var(--gray);
}

.product-view .product-content .product-body .product-cart .btn-favorite.active svg path {
  stroke: var(--red);
}

.product-view .product-content .product-body .product-cart .btn-compare .icon svg {
  animation: rotate 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.product-view .product-content .product-body .product-cart .btn-compare.active .icon svg {
  animation: rotate 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.product-view .product-content .product-body .product-cart .btn-compare.active svg path,
.product-view .product-content .product-body .product-cart .btn-stock-alert.active svg path {
  stroke: var(--primary-color);
}

.product-view .product-content .product-footer .product-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-view .product-content .product-footer .product-info ul li {
  font-weight: 400;
  color: var(--gray);
}

.product-view .product-content .product-footer .product-info ul li span {
  color: var(--black);
  font-weight: 500;
}

.product-view .product-content .product-footer .product-info ul li span a {
  color: var(--black);
  font-weight: 500;
}

.product-view .product-content .product-footer .product-info .share-icons svg {
  max-width: 22px;
  max-height: 22px;
}

.product-view .product-content .product-header .product-description {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.product-view .product-content .product-header .product-description .product-short-secription .short-description .read-more {
  font-weight: 500;
  color: var(--gray);
}

.product-view .product-content .product-body .product-logo {
  width: 100px;
}

.product-view .product-content .product-body .product-logo svg {
  width: 100%;
  height: 100%;
}

.product-view .product-content .product-body .product-voucher .sale-price span {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
}

.product-view .product-content .product-body .product-price-voucher .product-voucher {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: fit-content;
  background: var(--primary-color-10);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem;
  position: relative;
  margin-top: 8px;
}

.product-view .product-content .product-body .product-price-voucher .product-voucher::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 100%;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--primary-color-10);
}

.product-view .product-content .product-body .product-price-voucher .text-percentage .percentage span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

.product-view .product-content .product-body .product-price-voucher .text-percentage .text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
}

.copy-code {
  position: relative;
  cursor: pointer;
}

.product-view .product-content .product-footer .product-info ul li span.tooltip {
  color: rgba(255, 255, 255, 0.8);
}

.product-view .product-content .product-body .product-price-voucher .text-percentage .percentage span.tooltip {
  color: rgba(255, 255, 255, 0.8);
}

.copy-code .tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.3s ease;
  font-size: 0.75rem;
}

.copy-code:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.product-tabs .tabs-nav {
  position: sticky;
  top: var(--header-height);
  background: var(--h-gradient-color);
  z-index: 999;
}

.product-tabs .tabs-nav .nav-tabs {
  border: none;
}

.product-tabs .tabs-nav .nav-tabs .nav-item .nav-link {
  padding: 0.625rem;
  border-radius: 0;
  border: none;
  color: var(--white);
}

.product-tabs .tabs-nav .nav-tabs .nav-item .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.product-tabs .tabs-inner .tab-content {
  padding-top: 2rem;
}

/* Category */

.row-category {
  row-gap: var(--bs-gutter-x);
}

.category-header {
  padding: 2rem 0;
  background: var(--h-gradient-color);
}

.category-header > .container > .row {
  align-items: center;
}

.category-header .text-inner h2 {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
}

.category-header .text-inner * {
  color: var(--white);
}

.category-header .category-image-inner img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
}

.category-products .category-products-header {
  margin-bottom: 2rem;
}

.category-products .category-products-header .category-count-sort .category-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-products .category-products-header .category-count-sort .category-count .text {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.313rem 0.625rem;
  border-radius: var(--border-radius-sm);
}

.category-products .category-products-header .category-breadcrumbs {
  margin-bottom: 0.313rem;
}

.category-products .category-products-header .category-breadcrumbs .breadcrumbs svg {
  max-height: 8px;
  max-width: 8px;
  min-width: 8px;
}

.category-products .category-products-header .category-breadcrumbs .breadcrumbs svg path {
  stroke: rgba(0, 0, 0, 0.6);
}

.category-products .category-products-header .category-breadcrumbs .breadcrumbs a {
  color: rgba(0, 0, 0, 0.6);
}

.category-products .category-products-header .category-breadcrumbs .breadcrumbs .current {
  color: rgba(0, 0, 0, 0.4);
}

.category-products .category-products-header .category-breadcrumbs .breadcrumbs a,
.category-products .category-products-header .category-breadcrumbs .breadcrumbs .current {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  white-space: nowrap;
}

.category-products .category-products-header .category-count-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #cccccc;
}

.category-products .category-list {
  list-style: none;
  padding: 0;
}

/* Login modal */

#loginModal .modal-dialog {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#loginModal .modal-header {
  border-color: var(--white-secondary);
  padding: 0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

#loginModal .modal-header .title > * {
  line-height: normal;
}

#loginModal .modal-header .btn-close {
  background: transparent var(--bs-btn-close-bg) center/0.675rem auto no-repeat;
}

#loginModal .modal-body .modal-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--white-secondary);
  padding-bottom: 1rem;
}

#loginModal .modal-body .modal-switch .auth-switch {
  text-decoration: none;
  border: 1px solid var(--white-secondary);
  color: var(--gray);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 1rem;
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  width: 100%;
}

#loginModal .modal-body .modal-switch .auth-switch.active {
  color: var(--black);
  border-color: var(--black);
}

#loginModal .modal-body {
  display: grid;
  grid-template: auto / 1fr 1fr;
  padding: 0;
}

#loginModal .modal-body .modal-body-wrapper {
  padding: 1rem;
}

#loginModal .modal-body .modal-signup-benefits {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 1rem;
}

#loginModal .modal-body .modal-signup-benefits .modal-signup-benefits-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
  gap: 1rem;
}

#loginModal .modal-body .modal-signup-benefits .modal-signup-benefits-wrapper .benefits-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  margin: 0;
}

#loginModal .modal-body .modal-signup-benefits .modal-signup-benefits-wrapper .benefits-list ul li {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

#loginModal .modal-body .modal-signup-benefits .modal-signup-benefits-wrapper .benefits-list ul li::marker {
  color: rgba(255, 255, 255, 0.8);
}

#loginModal .modal-body .modal-signup-benefits::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

#loginModal .modal-content {
  max-width: 900px;
  border: none;
  overflow: hidden;
}

#loginModal.modal {
  --bs-modal-width: 100%;
}

#loginModal .modal-body .modal-body-ajax {
  position: relative;
}

/* Login modal - Login page */

.site-login .login-form-inner .login-form-wrapper .form-control {
  /*border-color: transparent;*/
  background: var(--white-secondary);
  border-radius: var(--border-radius-sm);
  height: 45px;
}

.site-login .login-form-inner .login-form-wrapper .form-control::placeholder {
  color: var(--gray);
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
}

.site-login .login-form-inner .login-form-wrapper .login-settings {
  display: flex;
  justify-content: space-between;
}

.site-login #login-form-ajax .separator {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.site-login #login-form-ajax .separator .text {
  text-align: center;
  z-index: 1;
  padding: 0 1rem;
  background: var(--white);
}

.site-login #login-form-ajax .social-media-login .form-group {
  display: flex;
  gap: 0.5rem;
}

.site-login #login-form-ajax .social-media-login {
  margin-bottom: 1rem;
}

.site-login #login-form-ajax .social-media-login .form-group .auth-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.2);
  justify-content: center;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  transition: var(--transition-fast);
}

.site-login #login-form-ajax .social-media-login .form-group .auth-link .icon {
  display: flex;
}

.site-login #login-form-ajax .social-media-login .form-group .auth-link .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-login #login-form-ajax .separator::after {
  content: "";
  display: flex;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  left: 0;
}

.site-login .login-form-inner .login-form-wrapper .login-settings .setting-link {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  color: var(--gray);
}

.site-login .login-form-inner .login-form-wrapper .login-settings .form-check {
  color: var(--gray);
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  font-family: "Montserrat";
}

.site-login .btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.site-login-page {
  padding: 5rem 0;
}

.site-login-page .site-login-inner {
  display: grid;
  grid-template: auto / 1fr 1fr;
  border: 1px solid var(--white-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.site-login-page .site-login-inner .site-login-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

.site-login-page .site-login-inner .site-login-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-login-page .site-login-inner .signup-benefits {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
}

.site-login-page .site-login-inner .signup-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.site-login-page .site-login-inner .signup-benefits .signup-benefits-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #0000000f;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 0 1px 0px #fff;
  height: 100%;
  justify-content: center;
}

.site-login-page .site-login-inner .signup-benefits .signup-benefits-wrapper .benefits-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  padding-left: 0;
  list-style-type: none;
}

.site-login-page .site-login-inner .signup-benefits .signup-benefits-wrapper .benefits-list ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.site-login-page .site-login-inner .signup-benefits .signup-benefits-wrapper .benefits-list ul li svg {
  width: 1rem;
  height: auto;
  flex-shrink: 0;
}

.site-login-page .site-login-inner .signup-benefits .signup-benefits-wrapper .benefits-list ul li svg path {
  stroke: var(--white);
}

.site-login .site-login-inner #login-form .social-media-login {
  margin-bottom: 1rem;
}

.site-login .site-login-inner #login-form .social-media-login .auth-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.2);
  justify-content: center;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  transition: var(--transition-fast);
}

.site-login .site-login-inner #login-form .social-media-login .auth-link .icon {
  display: flex;
}

.site-login .site-login-inner #login-form .social-media-login .auth-link .icon svg {
  width: 1.875rem;
  height: 1.875rem;
}

.site-login .site-login-inner #login-form .social-media-login .form-group {
  display: flex;
  gap: 0.5rem;
}

.site-login .site-login-inner #login-form .separator {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.site-login .site-login-inner #login-form .separator::after {
  content: "";
  display: flex;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  left: 0;
}

.site-login .site-login-inner #login-form .separator .text {
  text-align: center;
  z-index: 1;
  padding: 0 1rem;
  background: var(--white);
}

.site-login .site-login-inner #login-form .social-media-login .auth-link:hover {
  transition: var(--transition-fast);
  border-color: rgba(0, 0, 0, 0.4);
}

.site-login #login-form-ajax .social-media-login .form-group .auth-link:hover {
  transition: var(--transition-fast);
  border-color: rgba(0, 0, 0, 0.4);
}

/* Modal skeleton loader */

#loginModal .skeleton-field,
#loginModal .skeleton-checkbox,
#loginModal .skeleton-button,
#loginModal .skeleton-reset-password,
#loginModal .skeleton-text-wrapper .skeleton-text {
  background: #e0e0e0;
  border-radius: var(--border-radius-sm);
}

#loginModal .skeleton-field {
  height: 45px;
}

#loginModal .skeleton-field,
#loginModal .skeleton-checkbox-reset-password,
#loginModal .skeleton-text-wrapper {
  margin-bottom: 1rem;
}

#loginModal .skeleton-field {
  height: 45px;
  width: 100%;
}

#loginModal .skeleton-checkbox {
  height: 24px;
  width: 125px;
}

#loginModal .skeleton-reset-password {
  height: 24px;
  width: 125px;
}

#loginModal .skeleton-button {
  height: 44px;
  width: 100%;
}

#loginModal .skeleton-loader .skeleton-email {
  width: 100%;
}

#loginModal .skeleton-loader .skeleton-password {
  width: 100%;
}

#loginModal .skeleton-loader .skeleton-animation {
  animation: skeleton-loading 1.5s infinite;
}

#loginModal .skeleton-checkbox-reset-password {
  display: flex;
  justify-content: space-between;
}

#loginModal .skeleton-separator {
  height: 19px;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm);
}

#loginModal .skeleton-social-login {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

#loginModal .skeleton-social-login .social-btn {
  height: 38px;
  width: 100%;
  border-radius: var(--border-radius-sm);
}

#loginModal .skeleton-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#loginModal .skeleton-text-wrapper .skeleton-text:first-of-type {
  width: 100%;
}

#loginModal .skeleton-text-wrapper .skeleton-text:last-of-type {
  width: 80%;
}

#loginModal .skeleton-text-wrapper .skeleton-text {
  height: 16px;
  width: 100%;
}

@keyframes skeleton-loading {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f0f0f0;
  }
  100% {
    background-color: #e0e0e0;
  }
}

/* Alert */

.modal-alert {
  position: fixed;
  bottom: -100%;
  z-index: 999999;
  width: 100%;
  display: flex;
  justify-content: center;
  border: none;
  border-radius: 0;
  padding: 0.5rem;
  color: var(--white);
  transition: bottom 1s ease-in-out;
}

.modal-alert.modal-alert-success {
  background: #008000;
}

.modal-alert.modal-alert-danger {
  background: #ff0000;
}

.modal-alert.show {
  bottom: 0;
}

.modal-alert.hide {
  bottom: -100%;
  transition: bottom 1s ease-in-out;
}

/* Spinner loader */

.spinner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 1;
}

.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #8d744b;
  animation: spinner-bulqg1 0.96s infinite linear alternate, spinner-oaa3wk 1.92s infinite linear;
}

@keyframes spinner-bulqg1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }

  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }

  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes spinner-oaa3wk {
  0% {
    transform: scaleY(1) rotate(0deg);
  }

  49.99% {
    transform: scaleY(1) rotate(135deg);
  }

  50% {
    transform: scaleY(-1) rotate(0deg);
  }

  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

/* Alert */

.alert {
  color: white;
  margin: 0;
  border-radius: 0;
  border: none;
  text-align: center;
  font-family: "Montserrat";
  position: fixed;
  width: 100%;
  z-index: 999999;
  bottom: -100%;
  left: 0;
  padding: 0.5rem;
  transition: bottom 1s ease-in-out;
}

.alert.alert-success {
  background: #008000;
}

.alert.alert-danger {
  background: #ff0000;
}

.alert .btn-close {
  padding: 0.5rem;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  opacity: 1;
  filter: invert(1);
  background: transparent var(--bs-btn-close-bg) center/0.875rem auto no-repeat;
}

.alert.show {
  bottom: 0;
}

.alert.hide {
  bottom: -100%;
  transition: bottom 1s ease-in-out;
}

/* Reviews */

.review-utilities {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.review-utilities .rating-bar {
  display: table-row;
}

.review-utilities .rating-label {
  text-align: right;
}

.review-utilities .rating-label {
  display: table-cell;
}

.review-utilities .rating-label > * {
  white-space: nowrap;
}

.review-utilities .review-count {
  display: table-cell;
}

.review-utilities .review-count > * {
  white-space: nowrap;
}

.review-utilities .progress-wrapper {
  display: table-cell;
  width: 100%;
  padding: 0.5rem 0.625rem;
}

.review-utilities .progress {
  background-color: #e0e0e0;
  border-radius: 50px;
  height: 13px;
  overflow: hidden;
}

.review-utilities .progress-bar {
  height: 100%;
  background-color: var(--primary-color);
}

.star-rating {
  display: inline-block;
  position: relative;
  max-width: 100%;
  display: flex;
  gap: 0.125rem;
}

.star-rating .star-wrapper {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.star-rating .empty-star,
.star-rating .filled-star {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
}

.star-rating .star-wrapper .partial-star {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.product-view .product-review .star-wrapper {
  width: 16px;
  height: 16px;
}

.product-view .product-review .star-rating .empty-star,
.product-view .product-review .star-rating .filled-star {
  width: 16px;
  height: 16px;
}

.product-card .product-review .star-wrapper {
  width: 16px;
  height: 16px;
}

.product-card .product-review .star-rating .empty-star,
.product-card .product-review .star-rating .filled-star {
  width: 16px;
  height: 16px;
}

.review-utilities .review-utilities-wrapper {
  display: grid;
  grid-template: auto / 1fr 4fr 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-utilities .review-utilities-wrapper.empty-reviews {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: none;
}

.review-utilities .review-utilities-wrapper.empty-reviews .empty-reviews-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-utilities .rating-summary {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.review-utilities .rating-summary .star-rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.313rem;
}

.review-utilities .rating-distribution {
  display: table-row;
  padding: 0 2rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.review-utilities .add-review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-utilities .add-review .add-review-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.review-utilities .add-review .review-stars-outside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-container .rating-stars .star {
  display: flex;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-utilities .add-review .review-stars-outside .rating-input {
  display: none;
}

.rating-container .rating-stars .empty-stars,
.rating-container .rating-stars .filled-stars {
  display: flex;
  gap: 0.125rem;
}

.rating-container .caption {
  margin: 0;
}

.rating-container .caption .caption-badge {
  background: transparent;
  padding: 0;
  color: var(--black);
  font-family: "Montserrat";
  font-weight: 500;
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
}

.review-utilities .review-stars-outside .btn-primary {
  padding: 0.5rem 1rem;
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
}

.product-page-reviews {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.review-all-image-video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-all-image-video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-all-image-video .review-wrapper .review-image-video .review-images {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.review-all-image-video .review-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.5rem;
}

.review-all-image-video .review-wrapper .product-review-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.313rem;
}

.review-all-image-video .review-wrapper .product-review-title-wrapper .product-review-author {
  text-align: center;
}

.review-all-image-video .review-wrapper .product-review-title-wrapper .star-rating .star-wrapper {
  width: 1rem;
  height: 1rem;
}

.review-all-image-video .review-wrapper .product-review-title-wrapper .star-rating .star-wrapper .empty-star,
.review-all-image-video .review-wrapper .product-review-title-wrapper .star-rating .star-wrapper .filled-star {
  width: 1rem;
  height: 1rem;
}

.review-all-image-video {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-all-image-video .review-wrapper .review-image img {
  max-width: 9.375rem;
  max-height: 9.375rem;
  height: 100%;
  width: 100%;
  aspect-ratio: 4/4;
}

.review-all-image-video .review-wrapper .review-image-video {
  display: flex;
  gap: 1rem;
}

.review-all-image-video .review-wrapper .review-video video {
  width: 100%;
  height: 100%;
  max-width: 9.375rem;
  max-height: 9.375rem;
  aspect-ratio: 4/4;
}

.product-page-reviews .product-reviews .product-review-item {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}

.product-page-reviews .product-reviews .product-review-item:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-page-reviews .product-reviews .product-review-item .product-review-user-meta {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.product-page-reviews .product-reviews .product-review-item .product-review-head {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.product-review-item .product-review-body .star-rating-container .star-rating {
  gap: 0.188rem;
}

.product-review-item .product-review-body .star-rating-container .star-rating .star-wrapper {
  width: 14px;
  height: 14px;
}

.product-review-item .product-review-body .star-rating-container .star-rating .filled-star,
.product-review-item .product-review-body .star-rating-container .star-rating .empty-star {
  width: 14px;
  height: 14px;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .product-review-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .review-body-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .review-body-container .review-video video {
  max-width: 150px;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .review-body-container .review-image {
  position: relative;
  padding: 3%;
  width: fit-content;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .review-body-container .review-images {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .review-body-container .review-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .product-review-title-wrapper .product-review-title > * {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  font-weight: 500;
}

.product-page-reviews .product-reviews .product-review-item .product-review-body .review-body-container .text {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 400;
}

.product-page-reviews .product-reviews .product-review-item .product-review-user-meta .product-review-author {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.product-page-reviews .product-reviews .product-review-item .product-review-user-meta .product-review-data {
  font-size: min(max(10px, calc(0.625rem + ((1vw - 2.8px) * 0.122))), 12px);
  font-weight: 400;
  color: var(--gray);
  margin: 0;
}

#reviewModal.modal {
  --bs-modal-width: 100%;
}

#reviewModal.modal .modal-dialog {
  max-width: 600px;
}

.forms .modal-footer .btn-primary {
  padding: 0.5rem 1rem;
  width: 100%;
  justify-content: center;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
  margin: 0;
}

#reviewModal .modal-body .review-inner .form-container .form-submit-inner .acceptance-text p {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--gray);
  font-weight: 400;
}

#reviewModal .modal-body .review-inner .form-container .form-submit-inner .acceptance-text a {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
  color: var(--black);
  font-weight: 400;
}

#reviewModal .modal-content .modal-body .review-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.forms .modal-content .modal-body .review-inner .form-container {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.forms .modal-content .modal-body .review-inner .form-container .form-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.forms .modal-content .modal-body .review-inner .form-container .form-wrapper .image-preview-container .image-preview {
  width: fit-content;
  display: flex;
  position: relative;
}

.forms .modal-content .modal-body .review-inner .form-container .form-wrapper .image-preview-container .image-preview img {
  max-width: 3.125rem;
}

.forms .modal-content .modal-body .review-inner .form-container .form-wrapper .image-preview-container .image-preview .remove-image {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.313rem;
  border: none;
  background: var(--red);
  right: -0.5rem;
  top: -0.5rem;
  border-radius: 50%;
}

.forms .modal-content .modal-body .review-inner .form-container .form-wrapper .image-preview-container .image-preview .remove-image svg path {
  stroke: var(--white);
}

.forms .modal-content .modal-body .review-inner .form-container .form-wrapper .image-preview-container .image-preview .remove-image svg {
  width: 0.625rem;
  height: 0.625rem;
}

.forms .modal-content .modal-body .review-inner .form-container .image-preview-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

#reviewModal .modal-content .modal-body .review-inner .form-container .form-wrapper #custom-upload .upload-button {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#reviewModal .modal-content .modal-body .review-inner .form-container .form-wrapper .field-review-video input {
  display: none;
}

#reviewModal .modal-content .modal-body .review-inner .form-container .form-wrapper #custom-upload {
  margin-top: 0.5rem;
}

.forms .modal-content .modal-body .review-inner .form-container .form-wrapper label {
  background: transparent;
  padding: 0;
  color: var(--black);
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 0.875rem;
}

#reviewModal .modal-content .modal-body .review-inner .form-container .form-wrapper #custom-upload .upload-button .icon {
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.remove-image .forms .form-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.forms .form-inner .form-wrapper .form-group .form-control {
  border: none;
  background: var(--white-secondary);
  border-radius: var(--border-radius-sm);
  height: 45px;
}

.forms .form-inner .form-wrapper .form-group .form-control::placeholder {
  color: var(--gray);
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
}

.forms .form-inner .form-wrapper .form-group textarea.form-control {
  height: 150px;
}

#reviewModal .rating-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column-reverse;
}

.forms form {
  height: 100%;
  overflow: hidden;
}

.forms form .form-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.forms .modal-dialog {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.forms .modal-dialog .modal-content {
  border: none;
  border-radius: var(--border-radius-md);
}

.forms .modal-dialog .modal-content .modal-header,
.forms .modal-dialog .modal-content .modal-footer {
  border-color: var(--white-secondary);
}

#reviewModal .modal-body .review-inner .form-inner .form-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#reviewModal .modal-body .review-inner .form-inner .form-tags #reviewTitle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#reviewModal .modal-body .review-inner .form-inner .form-tags #reviewTitle .tag-review-title {
  cursor: pointer;
  padding: 0.5rem;
  font-size: 0.75rem;
  background: var(--white-secondary);
  color: var(--gray);
  border-radius: var(--border-radius-sm);
}

/* Compare */

#compareBox {
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 20px;
  width: 80px;
  background: #fff;
  padding: 0.313rem;
  box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  display: none;
}

#compareBox img {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: contain;
}

#compareBox .remove-compare-item {
  position: absolute;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  width: 15px;
  height: 15px;
}

#compareBox .remove-compare-item svg {
  max-width: 7px;
  max-height: 7px;
}

#compareBox .remove-compare-item svg path {
  stroke: var(--red);
}

#compareBox #compareButton {
  padding: 0.188rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.188rem;
}

#compareBox #compareImages {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  margin-bottom: 1rem;
}

#compareBox #compareImages .compare-item {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  aspect-ratio: 4/4;
}

#compareBox #compareImages .compare-item .skeleton-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--border-radius-sm);
  z-index: 1;
}

.compare-page .products-grid {
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
}

.compare-page .products-grid .product-compare {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.compare-page .products-grid .product-compare .btn-primary.remove-compare {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
}

.compare-page .products-grid .product-compare .product-card {
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  border-bottom: none;
  margin: 0;
}

.compare-page .products-grid .product-compare .remove-compare {
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

/* Favorites */
.favorite-page .products-grid {
  position: relative;
}

#favorites-notification {
  position: fixed;
  top: calc(var(--header-height) + 20px);
  right: 20px;
  z-index: 9999;
}

#favorites-notification .notification.show {
  opacity: 1;
  transform: translateX(0);
}

#favorites-notification .notification {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  gap: 1rem;
  max-width: 300px;
  margin: 0;
  padding: 1.25rem;
  box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(calc(100% + 20px));
  transition: transform 0.4s ease, opacity 0.4s ease;
  margin-bottom: 0.875rem;
}

#favorites-notification .notification p {
  font-size: 0.875rem;
}

#favorites-notification .notification .icon {
  display: flex;
  max-height: 2.25rem;
  max-width: 2.25rem;
}

#favorites-notification .notification .icon svg {
  width: 100%;
  height: 100%;
}

#favorites-notification .notification.added .icon svg path {
  stroke: var(--red);
  fill: var(--red);
}

/* <----------- Blog -----------> */

/* View */

.breadcrumbs-container-top {
  background: var(--white-secondary);
  padding: 0.875rem 0;
}

.breadcrumbs-container-top .back-button {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.breadcrumbs-container-top .back-button .icon-wrapper {
  display: flex;
}

.breadcrumbs-container-top .back-button a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--p-color);
}

.breadcrumbs-container-top .back-button .icon-wrapper svg {
  width: 100%;
  height: 100%;
  max-width: 10px;
}

.breadcrumbs-container-top .back-button .icon-wrapper svg path {
  stroke: var(--p-color);
  stroke-width: 2px;
}

.breadcrumbs-container-top .breadcrumbs {
  width: fit-content;
}

.breadcrumbs-container-top .breadcrumbs {
  display: flex;
  align-items: center;
  margin: auto;
  gap: 0.313rem;
}

.breadcrumbs-container-top .breadcrumbs a,
.breadcrumbs-container-top .breadcrumbs span {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.breadcrumbs-container-top .breadcrumbs a {
  color: var(--p-color);
}

.breadcrumbs-container-top .breadcrumbs span {
  color: #696969;
}

.breadcrumbs-container-top .breadcrumbs svg path {
  stroke: var(--p-color);
  stroke-width: 2px;
}

.breadcrumbs-container-top .breadcrumbs svg {
  width: 100%;
  height: 100%;
  max-width: 8px;
  max-height: 8px;
}

.blog-page .blog-container .blog-page-wrapper .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.blog-page .blog-container .blog-page-wrapper .blog-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.blog-page .blog-container .blog-page-wrapper .blog-content-wrapper .blog-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.blog-page .blog-container .blog-page-wrapper .blog-content-wrapper .blog-content .module-text2 h2,
.blog-page .blog-container .blog-page-wrapper .blog-content-wrapper .blog-content .module-text2 h2 > * {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.3659))), 24px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.blog-page .blog-container .blog-page-wrapper .blog-content-wrapper .blog-content .module-text2 h3,
.blog-page .blog-container .blog-page-wrapper .blog-content-wrapper .blog-content .module-text2 h3 > * {
  font-weight: 500;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--black);
  margin-bottom: 1rem;
}

.blog-page .blog-container .blog-page-wrapper .blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-page .blog-container .blog-page-wrapper .blog-share .share-icons {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.blog-page .blog-container .blog-page-wrapper .blog-share .share-icons svg {
  width: 100%;
  height: 100%;
  max-width: 25px;
  max-height: 25px;
}

.blog-page .blog-container .blog-page-wrapper .blog-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.blog-page .blog-container .blog-page-wrapper .blog-navigation .btn-primary {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.blog-page .blog-container .blog-page-wrapper .blog-navigation .btn-primary svg {
  width: 10px;
  height: 10px;
}

.blog-page .blog-container .blog-page-wrapper .blog-navigation .btn-primary svg path {
  stroke: var(--white);
}

/* Similar card */

.blog-page .blog-container .similar-items-wrapper .similar-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card {
  display: grid;
  grid-template: auto / auto 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-image img {
  width: 100%;
  height: 100%;
  max-width: 160px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius-md);
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-content-header .card-details {
  display: flex;
  justify-content: space-between;
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-content-header .card-details .detail,
.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-content-header .card-details .detail a {
  display: flex;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-content-header .card-details .detail svg {
  width: 14px;
  height: 14px;
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-content-header .card-details .detail svg path {
  stroke: var(--gray);
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-button .btn-read {
  display: flex;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-button .btn-read:hover svg path {
  stroke: var(--primary-color);
  transition: var(--transition-fast);
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-button .btn-read svg path {
  transition: var(--transition-fast);
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-button .btn-read svg {
  width: 10px;
  height: 10px;
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-page .blog-container .similar-items-wrapper .similar-items .similar-card .card-content .card-content-header {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.blog-page .blog-container .similar-items-wrapper .title {
  padding-bottom: 1rem;
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-page .blog-container .blog-page-col {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-page .blog-container .similar-items-col {
  position: sticky;
  top: var(--header-height);
  height: fit-content;
}

/* Category cards */

.blog-category-card .card-content .text > * {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.blog-category-page .blog-category-grid .blog-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
  gap: 1rem;
}

.blog-category-card {
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.blog-category-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.blog-category-card .card-body .card-content {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.blog-category-card .card-button .btn-primary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.blog-category-card .card-header .card-image img {
  border-radius: var(--border-radius-md);
}

.blog-category-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-category-card .card-header .blog-category-details {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #cccccc;
}

.blog-category-card .card-header .blog-category-details .detail,
.blog-category-card .card-header .blog-category-details .detail a {
  display: flex;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
}

.blog-category-card .card-header .blog-category-details .detail svg {
  width: 14px;
  height: 14px;
}

.blog-category-card .card-header .blog-category-details .detail svg path {
  stroke: var(--gray);
}

.blog-category-card .card-image {
  position: relative;
}

.blog-category-card .card-image .view-count {
  display: flex;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--black);
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
}

.blog-category-card .card-image .view-count svg {
  width: 16px;
  height: 16px;
}

.blog-category-card .card-image .view-count svg path {
  stroke: var(--black);
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar form {
  display: flex;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar button {
  background: transparent;
  border: none;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0.5rem;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar button svg {
  width: 16px;
  height: 16px;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar button svg path {
  stroke: var(--gray);
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar .search-wrapper {
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar {
  margin-left: auto;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar input {
  font-size: 0.875rem;
  color: var(--black);
  font-family: "Montserrat";
  font-weight: 500;
  border: none;
  padding: 0.5rem;
  height: 34px;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar input:focus-visible {
  outline: none;
}

.blog-category-page .blog-category-grid .blog-category-header .search-bar input::placeholder {
  font-size: 0.875rem;
  color: var(--gray);
  font-family: "Montserrat";
  font-weight: 500;
}

/* My account */

.account-page {
  background: var(--white-secondary);
}

.account-page .user-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper .user-name-wrapper .user-age {
  font-size: 0.75rem;
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper .user-name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper .user-settings {
  margin-left: auto;
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper .user-settings .icon {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--white-secondary);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper .user-settings .icon svg {
  width: 1rem;
  height: 1rem;
}

.user-sidebar .user-sidebar-account .user-sidebar-account-wrapper .user-settings .icon svg path {
  stroke: rgba(0, 0, 0, 0.7);
}

.user-sidebar .list-group {
  border-radius: var(--border-radius-md);
  background: var(--white);
  padding: 0 1rem;
}

.user-sidebar .list-group .list-group-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.user-sidebar .list-group .list-group-item {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.061))), 15px);
  font-weight: 500;
  border: none;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
  transition: var(--transition-fast);
}

.user-sidebar .list-group .list-group-item.active {
  color: var(--primary-color);
  background: transparent;
  border-color: rgba(0, 0, 0, 0.1);
}

.user-sidebar .list-group .list-group-item:first-child,
.user-sidebar .list-group .list-group-item:last-child {
  border-radius: 0;
}

.user-sidebar .list-group .list-group-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-sidebar .list-group .list-group-item .icon svg {
  width: 18px;
  height: 18px;
}

.user-sidebar .list-group .list-group-item .icon svg path {
  fill: rgba(0, 0, 0, 0.6);
  transition: var(--transition-fast);
}

.user-sidebar .list-group .list-group-item.active .icon svg path {
  fill: var(--primary-color);
}

.user-sidebar .list-group .list-group-item-action:hover .icon svg path {
  fill: var(--primary-color);
  transition: var(--transition-fast);
}

.user-sidebar .list-group .list-group-item-action:hover,
.user-sidebar .list-group .list-group-item-action:focus {
  z-index: 1;
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
  transition: var(--transition-fast);
}

.account-page .account-box {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.account-page .account-box .account-box-header,
.account-page .account-box .account-box-body {
  padding: 1rem;
}

.account-page .account-box .account-box-body {
  height: 100%;
  position: relative;
}

.account-page .account-box .account-box-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .account-box .account-box-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .user-avatar .thumbnail .initials {
  font-size: 2.375rem;
}

.account-page .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .user-avatar {
  width: 6.25rem;
  height: 6.25rem;
}

.account-page .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .user-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar {
  display: flex;
  width: fit-content;
  height: fit-content;
  position: relative;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown .dropdown-toggle {
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  bottom: 0;
  right: 0;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown .dropdown-menu {
  margin-top: 0.313rem !important;
  border: none;
  border-radius: var(--border-radius-sm);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown .dropdown-menu .dropdown-item {
  font-size: 0.875rem;
  color: var(--p-color);
  font-weight: 400;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown .dropdown-toggle {
  display: flex;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown .dropdown-toggle svg {
  width: 1rem;
  height: 1rem;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-edit-avatar .dropdown-toggle::after {
  display: none;
}

.account-page .account-home .account-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-account-details {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-account-details .detail-item {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-account-details .detail-item span {
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-account-details .detail-item span:first-child {
  color: var(--p-color);
  flex: 0 0 25%;
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-account-details .detail-item span:last-child {
  flex: 0 0 75%;
  font-weight: 500;
}

.account-page .account-box .account-box-footer .btn-box {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.account-page .account-box .account-box-footer .btn-box:hover {
  transition: var(--transition-fast);
  background: rgba(111, 85, 198, 0.05);
}

.account-page .account-home .user-details .user-details-wrapper .user-details-avatar .user-age {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-left: auto;
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
  flex-direction: column;
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list .activity-count {
  display: flex;
  gap: 0.313rem;
  align-items: center;
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list .activity-count .count {
  font-weight: 600;
  color: var(--p-color);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list .icon svg {
  width: 3.125rem;
  height: 3.125rem;
  filter: opacity(0.85);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list .activity-list-tab a {
  padding: 1rem;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list .activity-list-tab a:hover {
  transition: var(--transition-fast);
  background: rgba(111, 85, 198, 0.05);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list .activity-count .text {
  color: rgba(0, 0, 0, 0.7);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list.cart .icon svg path {
  fill: var(--primary-color);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list.favorites .icon svg path {
  fill: var(--red);
}

.account-page .user-activity .user-activity-list .activity-list-wrapper .activity-list.reviews .icon svg path {
  fill: var(--yellow);
}

.account-page .account-home .user-delivery-options .delivery-option-list .option-list .list {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-page .account-home .user-delivery-options .delivery-option-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .account-home .user-delivery-options .delivery-option-list .option-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-page .account-home .user-delivery-options .delivery-option-list .option-list .list-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.account-page .account-home .user-delivery-options .delivery-option-list .option-list .list .strong {
  font-weight: 500;
}

.account-page .account-addresses .user-addresses .account-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-page .account-addresses .user-addresses .user-address-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper {
  padding: 1rem;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper .user-address-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper .user-address-list .strong {
  font-weight: 500;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper .user-address-icon {
  background: rgba(0, 0, 0, 0.05);
  width: fit-content;
  border-radius: 100%;
  padding: 0.75rem;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper .user-address-icon svg {
  width: 1.875rem;
  height: 1.875rem;
}

.account-page .account-addresses .user-addresses .user-address-box .user-address-box-wrapper .user-address-icon svg path {
  fill: var(--primary-color);
}

.account-page .account-addresses .user-addresses .user-address-box .address-box-action-buttons {
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .account-addresses .user-addresses .user-address-box .address-box-action-buttons .btn {
  background: transparent;
  border: none;
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 0;
}

.account-page .account-addresses .user-addresses .user-address-box .address-box-action-buttons .btn:hover {
  background: rgba(111, 85, 198, 0.05);
}

.account-page .account-addresses .user-addresses .user-address-box .address-box-action-buttons .btn:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.forms.grid-forms .form-inner {
  display: grid;
  grid-template: auto / 1fr 1fr;
  gap: 1rem;
}

.forms.grid-forms .form-inner .fw {
  grid-column: 1/3;
}

.account-page .personal-data .btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  justify-content: center;
}

.account-page .personal-data #form-personal-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .account-companies .user-companies .account-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-page .account-companies .user-companies .user-company-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper {
  padding: 1rem;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper .user-company-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper .user-company-list .strong {
  font-weight: 500;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper .user-company-icon {
  background: rgba(0, 0, 0, 0.05);
  width: fit-content;
  border-radius: 100%;
  padding: 0.75rem;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper .user-company-icon svg {
  width: 1.875rem;
  height: 1.875rem;
}

.account-page .account-companies .user-companies .user-company-box .user-company-box-wrapper .user-company-icon svg path {
  fill: var(--primary-color);
}

.account-page .account-companies .user-companies .company-box-action-buttons {
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .account-companies .user-companies .company-box-action-buttons .btn {
  background: transparent;
  border: none;
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 0;
}

.account-page .account-companies .user-companies .company-box-action-buttons .btn:hover {
  background: rgba(111, 85, 198, 0.05);
}

.account-page .account-companies .user-companies .company-box-action-buttons .btn:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .company-address-empty {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.account-page .company-address-empty .icon svg {
  width: 12.5rem;
  height: 12.5rem;
}

.account-page .company-address-empty .company-address-empty-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.account-page .company-address-empty .company-address-empty-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.account-page .account-favorites .user-favorites .account-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-page .account-favorites .products-grid {
  position: relative;
}

.account-page .account-return .account-box .account-box-body .order-product-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body {
  padding: 1rem;
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .product-image {
  position: relative;
  padding: 3%;
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .order-product-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .order-product-wrapper .product-details > * {
  font-size: 0.875rem;
  font-weight: 400;
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .order-product-wrapper .product-details .quantity {
  font-weight: 600;
  color: var(--primary-color);
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .order-product-wrapper .product-price {
  margin-left: auto;
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .order-product-wrapper .product-price > * {
  font-weight: 500;
  font-size: 0.875rem;
}

.account-page .account-return .account-box .account-box-body .order-product-card .order-product-body .product-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: contain;
}

.empty-favorites-page .empty-favorites {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.empty-favorites-page .empty-favorites .icon svg {
  width: 12.5rem;
  height: 12.5rem;
}

.empty-favorites-page .empty-favorites .empty-favorites-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.empty-favorites-page .empty-favorites .empty-favorites-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.account-page .security-account #changepassword-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .security-account .account-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-page .security-account #changepassword-form .btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  justify-content: center;
}

.account-page .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .reviews-list .product-review-item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .reviews-list .product-review-item .image-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.5rem;
}

.account-page .reviews-list .product-review-item .item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.5rem;
}

.account-page .reviews-list .product-review-item .item-card .item-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.account-page .reviews-list .product-review-item .item-card .item-body .review-text {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.account-page .reviews-list .product-review-item .item-card .item-body .review-text .star-rating-container .star-rating .star-wrapper {
  width: 14px;
  height: 14px;
}

.account-page .reviews-list .product-review-item .item-card .item-body .review-text .star-rating-container .star-rating .empty-star,
.account-page .reviews-list .product-review-item .item-card .item-body .review-text .star-rating-container .star-rating .filled-star {
  width: 14px;
  height: 14px;
}

.account-page .reviews-list .product-review-item .item-card .item-header .review-date > * {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.75rem;
}

.account-page .account-reviews .account-box-body .pending-review .item-body .review-unapproved {
  background: rgba(250, 0, 0, 0.1);
  padding: 0.75rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.account-page .account-reviews .account-box-body .pending-review .item-body .review-unapproved .icon {
  display: flex;
}

.account-page .account-reviews .account-box-body .pending-review .item-body .review-unapproved .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.account-page .account-reviews .account-box-body .pending-review .item-body .review-unapproved .icon svg path {
  stroke: var(--red);
}

.account-page .empty-account-box .empty-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.account-page .empty-account-box .empty-box .icon svg {
  width: 12.5rem;
  height: 12.5rem;
}

.account-page .empty-account-box .empty-box .empty-box-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.account-page .empty-account-box .empty-box .empty-box-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  gap: 0.313rem;
}

.account-page .pagination {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-bottom: 0;
}

.account-page .account-orders .order-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.account-page .account-orders .order-card .order-card-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account-page .account-orders .order-card .order-card-header .buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .account-orders .order-card .order-card-body .order-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card .product-image {
  position: relative;
  padding: 3%;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.account-page .account-orders .order-card .order-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card .product-price {
  margin-left: auto;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card .product-price > * {
  font-weight: 500;
  font-size: 0.875rem;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card .product-details > * {
  font-size: 0.875rem;
  font-weight: 400;
}

.account-page .account-orders .order-card .order-card-body .order-products .order-product-card .product-details .quantity {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.account-page .account-orders .order-card .order-card-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
}

.account-page .account-orders .order-card .order-card-header .order-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.account-page .account-orders .order-card .order-card-body .user-order-status {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-page .account-orders .order-card .order-card-body .user-order-status .order-details,
.account-page .account-orders .order-card .order-card-body .user-order-status .order-status {
  display: flex;
  justify-content: space-between;
}

.account-page .account-orders .order-card .order-card-body .user-order-status .order-details .price,
.order-status .status {
  font-weight: 600;
}

.account-page .account-box #form-personal-data .form-wrapper .field-personaldataform-birthday .control-label {
  margin-bottom: 0.313rem;
}

.order-status .order-status-processing {
  color: #1a73e8;
}

.order-status .order-status-shipped {
  color: #e91e63;
}

.order-status .order-status-pending {
  color: #7b809a;
}

.order-status .order-status-delivered {
  color: #4caf50;
}

.order-status .order-status-canceled {
  color: #f44335;
}

.order-status .order-status-refunded {
  color: #fb8c00;
}

.account-order-details .account-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-order-details .user-order-details .order-details-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.account-order-details .user-order-details .order-details-breadcrumbs svg {
  height: 0.5rem;
  width: auto;
}

.account-order-details .user-order-details .order-details-breadcrumbs .arrow {
  display: flex;
  align-items: center;
  gap: 0.313rem;
}

.account-page .account-box .account-box-header .order-details-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-order-details .user-order-details .order-details-breadcrumbs .text > * {
  font-size: 0.75rem;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-delivery-details-card {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-delivery-details-card .details-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  height: 100%;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-delivery-details-card .details-card-body .invoice-btn .btn-primary {
  width: 100%;
  justify-content: center;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-delivery-details-card .details-card-body .detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.account-order-details .user-order-details .account-box-body .order-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card .product-image {
  position: relative;
  padding: 3%;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card .product-price {
  margin-left: auto;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card .product-details > *,
.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card .product-price > * {
  font-size: 0.875rem;
  font-weight: 400;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-body .order-items .order-product-card .product-details .quantity {
  font-weight: 600;
  color: var(--primary-color);
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-footer .order-summary {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin-left: auto;
  gap: 0.313rem;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-footer .order-summary .text {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-footer .order-summary .text span {
  flex: 0 0 50%;
}

.account-order-details .user-order-details .account-box-body .order-card .order-card-footer .order-summary .text span:last-child {
  display: flex;
  justify-content: end;
}

#deactivateAccountModal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.jconfirm .jconfirm-content * {
  font-size: 0.875rem;
  font-family: "Montserrat";
  font-weight: 400;
  color: var(--p-color);
}

.jconfirm .jconfirm-title {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Montserrat";
  color: var(--black);
}

.jconfirm .jconfirm-holder .jconfirm-buttons {
  display: flex;
  gap: 0.5rem;
}

.jconfirm .jconfirm-holder .jconfirm-buttons button.btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: none;
  font-family: "Montserrat";
  font-weight: 500;
  margin: 0;
}

/* Brands slider */

.brands-slider img {
  object-fit: contain;
  filter: invert(10%) grayscale(100%);
  background: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

.brands-slider .brands-slide {
  margin: 0 15px;
  aspect-ratio: 4/3;
}

.brands-slider .brands-slide .brand-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white-secondary);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  font-size: 1rem;
  font-weight: 500;
}

.brands-slider .slick-list {
  margin: 0 -15px;
}

/* Checkout invoice modal */

.modal-content .checkout-invoice-address .modal-body {
  padding: 0;
}

.modal-content .checkout-invoice-address .modal-body .nav-tabs {
  padding: 1rem 1rem 0 1rem;
  background: rgba(0, 0, 0, 0.03);
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .add-delivery-address {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card .address-card-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card .address-card-wrapper .card-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card .btn-secondary {
  padding: 0.5rem 1rem;
  height: fit-content;
  width: fit-content;
  background: var(--black);
  font-weight: 500;
  border: none;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card .address-card-wrapper .card-icon {
  background: var(--white-secondary);
  border-radius: 100%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card .address-card-wrapper .card-icon svg {
  height: 1.75rem;
  width: auto;
}

.modal-content .checkout-invoice-address .modal-body .delivery-cards .address-card .address-card-wrapper .card-icon svg path {
  fill: var(--primary-color);
}

.modal-content .checkout-invoice-address .modal-body .nav-tabs .nav-item .nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem;
  margin: calc(0.5rem - 1px);
  background: white;
  border-radius: var(--border-radius-md);
  color: black;
}

.modal-content .checkout-invoice-address .modal-body .nav-tabs .nav-item {
  display: flex;
}

.modal-content .checkout-invoice-address .modal-body .nav-tabs .nav-item .nav-link.active {
  padding: 1rem;
  margin: 0;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  margin-bottom: -1px;
}

.checkout-page-form .checkout-step-group .input-inner {
  grid-template: auto / 1fr;
}

/* Contact - Map */

.map .map-inner {
  width: 100%;
  height: 55vh;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.map .map-inner iframe {
  margin-top: -59px;
  height: calc(100% + 59px);
  border-radius: var(--border-radius-md);
}

.contact-form-col .contact-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md);
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.05);
}

.contact-form-col .contact-form .form-group .form-control {
  height: 3rem;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 0.875rem;
}

.contact-form-col .contact-form .form-group textarea.form-control {
  height: 6rem;
}

.contact-form-col .contact-form .form-group .form-control::placeholder {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--gray);
}

.contact-form-col .contact-form .contact-title {
  display: flex;
  flex-direction: column;
  gap: 0.313rem;
}

.contact-form-col .contact-form .contact-title h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-form-col .contact-form .contact-title p {
  font-size: 0.875rem;
}

.contact-form-col .contact-form .form-submit {
  margin: 0;
}

.contact-form-col .contact-form .form-submit .btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 1rem;
}

.module-locations .location-grid-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.module-locations .location-grid-item .card {
  height: 100%;
}

.module-locations .location-grid-item .card .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-locations .location-grid-item .card .card-body .card-title-wrapper .card-title a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 400;
}

.module-locations .location-grid-item .card .card-body .card-title-wrapper .card-title a .icon {
  background: var(--white-secondary);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.module-locations .location-grid-item .card .card-body .card-title-wrapper .card-title a .icon svg {
  fill: var(--primary-color);
}

.module-locations .location-grid-item .card .card-body .card-title-wrapper .card-title a .icon svg path:first-child {
  stroke: var(--primary-color);
}

.module-locations .location-grid-item .card .card-body .card-title-wrapper .card-title a .icon svg path:last-child {
  fill: var(--white-secondary);
  stroke: var(--white-secondary);
}

.module-locations .location-grid-item .card .card-footer {
  padding: 0;
}

.module-locations .location-grid-item .card .card-footer .btn-primary {
  padding: 1rem;
  background: transparent;
  display: flex;
  width: 100%;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 500;
}

/* Location page */

.location-view .location-section-top .location-program {
  text-align: end;
}

.location-view .location-section-top .location-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
}

.location-view .location-section-top .location-ctas .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.location-view .location-section-top .location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  height: 100%;
}

/* Module brands */

.module-brands .brands-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.module-brands .brands-grid .brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--white-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.module-brands .brands-grid .brand-card img {
  object-fit: contain;
  filter: invert(8%) grayscale(100%);
  opacity: 0.7;
  background: var(--white);
  padding: 2rem;
  width: 100%;
}

.module-brands .brands-grid .brand-card .brand-details {
  display: flex;
  width: 100%;
  justify-content: center;
}

.module-brands .brands-grid .brand-card .brand-details .count {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.module-brands .brands-grid .brand-card .brand-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
  padding: 2rem;
}

.module-brands .brands-grid .brand-card .brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Datepicker */

#ui-datepicker-div {
  padding: 0.625rem;
  border-radius: var(--border-radius-md);
  border: none;
  box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.1);
}

#ui-datepicker-div .ui-datepicker-calendar {
  margin: 0;
}

#ui-datepicker-div .ui-datepicker-calendar thead tr th span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray);
}

#ui-datepicker-div .ui-datepicker-header {
  background: transparent;
  border: none;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  background-image: url(../icons/calendar-arrow-left.svg);
  background-position: -4px -4px;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next .ui-icon {
  background-image: url(../icons/calendar-arrow-right.svg);
  background-position: -4px -4px;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-state-hover {
  border: none;
  background: var(--black);
  font-weight: normal;
  color: #212121;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-state-hover .ui-icon {
  filter: invert(1);
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
  top: 4px;
  cursor: pointer;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev-hover {
  left: 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next.ui-datepicker-prev-hover {
  right: 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title select {
  border: none;
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: fit-content;
}

#ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
  font-size: 0.875rem;
}

#ui-datepicker-div .ui-datepicker-calendar tbody td {
  padding: 0.25rem;
}

#ui-datepicker-div .ui-datepicker-calendar tbody td .ui-state-default {
  background: transparent;
  border: none;
  aspect-ratio: 4/4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  transition: var(--transition-fast);
  border-radius: var(--border-radius-sm);
}

#ui-datepicker-div .ui-datepicker-calendar tbody td .ui-state-default:hover {
  background: var(--black);
  color: var(--white);
  transition: var(--transition-fast);
}

#ui-datepicker-div .ui-datepicker-calendar tbody .ui-datepicker-today .ui-state-default {
  background: #f2f2f2;
}
p {
  font-size: inherit;
}

header .search-form input:focus {
  box-shadow: none;
  color: #fff;
}
header .search-form input::placeholder {
  font-size: 0.875rem;
}
.marquee {
  width: 100%;
  overflow: clip;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  padding-left: 3rem;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee > * {
  white-space: nowrap;
}
.fadeout-horizontal {
  /* mask-image: linear-gradient(to right, transparent, #000 5rem, #000 calc(100% - 5rem), transparent); */
  display: flex;
  justify-content: center;
}

.fadeout-horizontal p {
  color: var(--white);
  font-weight: 500;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.module-product-card .product-item .product-title > * {
  font-size: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.module-product-card .product-item .product-description > * {
  color: #ffffffad;
  font-size: 0.875rem;
}

/* Doar o sugestie */
.hero-section {
  background: #000;
  overflow: hidden;
}
.hero-section .hero-title {
  position: relative;
  gap: 1rem;
  z-index: 1;
}
.hero-section .module-button {
  margin-top: 1rem;
}

.hero-section h1 {
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 3.5rem !important;
}
.hero-section strong {
  font-weight: 700 !important;
  color: #fff;
}
.hero-section .intro-desc > * {
  color: #fff !important;
  max-width: 25rem;
  line-height: 1.5em;
}
.hero-section .btn {
  background: #fff;
  color: #000;
  font-weight: 500;
}
.hero-section .btn:hover {
  background: var(--primary-color);
  color: #fff;
}
.hero-section .btn:hover svg {
  filter: invert(0);
}
.hero-section .btn svg {
  filter: invert();
  transition: var(--transition-fast);
}

.hero-section .hero-products-col .hero-products {
  padding: 2rem 0 2rem 7rem;
}
.test-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: hue-rotate(240deg);
}
.test-intro-bg img {
  position: relative;
  left: -25%;
  height: 100%;
  object-fit: contain;
  transform: scale(3);
}

.module-product-card .product-item {
  border: 1px solid #7a7a7a75;
  margin: 0 1px;
  background: rgb(0 0 0 / 44%);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.hero-section .hero-products-col .hero-products .module-product-card,
.hero-products .arrow-slider-section {
  z-index: 9;
}

.module-product-card .product-item .product-body .product-purchase .product-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #ffffff17 !important;
  border-radius: 0.25rem !important;
}
.module-product-card .product-item .product-body .product-purchase .product-buttons button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-product-card .product-item .product-body .product-purchase .product-buttons button .icon svg {
  height: 1.3rem;
  width: auto;
  filter: invert();
}

.module-category-card .category-item .category-title {
  background: rgb(255 255 255 / 75%);
  transition: var(--transition-fast);
}
.module-category-card .category-item:hover .category-title {
  background: #fff;
}
.module-category-card .category-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: var(--border-radius-md);
  pointer-events: none;
}

/* Product Page */
.product-view .product-voucher .sale-price {
  display: flex;
}
.product-view .product-voucher .text-percentage > * {
  display: flex;
}

/* Login */
#loginModal .modal-signup-benefits-wrapper {
  padding: 1.5rem;
  background: #0000000f;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 0 1px 0px #fff;
}
#loginModal .modal-signup-benefits-wrapper ul {
  padding-left: 0;
  list-style-type: none;
}
#loginModal .modal-signup-benefits-wrapper ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
#loginModal .modal-signup-benefits-wrapper ul li svg {
  width: 1rem;
  height: auto;
  flex-shrink: 0;
}

/* Filters */
.filters-tab {
  background: #00000003;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 1px 0px #00000059;
  overflow: hidden;
}
.filters-tab-title {
  padding: 1rem;
}
.filters-tab-title > * {
  font-size: 1rem;
  font-weight: 600;
}
.filters-tab-inner {
  max-height: 20rem;
  overflow: auto;
  padding: 0 1rem 1rem;
}

.filters-tab-inner .price-filter .btn-primary {
  width: 100%;
  justify-content: center;
}

.filters-tab-inner ul {
  padding-left: 0;
  list-style-type: none;
}
.filters-tab-inner::-webkit-scrollbar,
.filters-tab-inner::-webkit-scrollbar-thumb {
  width: 2px;
}
.filters-tab-inner::-webkit-scrollbar-track {
  background: #fff;
}
.filters-tab-inner::-webkit-scrollbar-thumb {
  background: #000;
}

.category-list ul {
  padding-left: 0.5rem !important;
}
.category-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category-list a {
  font-size: 0.875rem;
}
.category-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.category-title-wrapper button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border: none;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #dbdbdb;
  transition: var(--transition-fast);
}
.category-title-wrapper button:hover,
.category-title-wrapper button[aria-expanded="true"] {
  background: #000;
}
.category-title-wrapper button:hover svg path,
.category-title-wrapper button[aria-expanded="true"] path {
  stroke: #fff;
}
.category-title-wrapper button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}
.category-title-wrapper button svg {
  width: 1rem;
  height: auto;
  transition: var(--transition-fast);
}
.category-title-wrapper button svg path {
  transition: var(--transition-fast);
}
.level-2 > .category-title-wrapper a {
  font-weight: 500;
}

.shop-filters ul {
  margin-bottom: 0;
}
.shop-filters li {
  line-height: 1em;
}
.shop-filters li > * {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  font-weight: 400;
}
.shop-filters li .icon {
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #000;
  border-radius: 2px;
  transition: var(--transition-fast);
}
.shop-filters li a:hover .icon {
  box-shadow: 0 0 2px 2px rgba(var(--primary-color-rgb), 0.5);
}
.shop-filters li .icon svg {
  display: none;
}
.shop-filters li.active .icon svg {
  display: block;
}
.li-filter-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-filter .col:first-child {
  padding-right: 0.5rem;
}
.price-filter .col:last-child {
  padding-left: 0.5rem;
}
.price-filter label {
  font-size: 0.875rem;
}
.btn_apply_price_filter {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  justify-content: center;
}
.btn_reset_filters {
  padding: 0.5rem;
  background: #000;
  width: 100%;
  border: none;
}
/* .form-background {
    background-color: var(--primary-color-10);
    padding: 2rem;
} */

.homepage-top-slider a {
  font-size: inherit;
}
.field-signupform-verifycode .invalid-feedback {
  display: block !important;
}

.header-bottom-part {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

header .header-bottom-part .navbar-nav .nav-item .nav-link {
  color: #000;
}

header .header-bottom-part .navbar-menu {
  padding-top: 0;
  border: 0;
}

header .header-top-part .navbar-utilities .search-form .form-control {
  color: #000;
}

header .header-top-part .navbar-utilities .search-form .form-control::placeholder {
  color: #000;
}

header .header-top-part .navbar-utilities .search-form .icon-search svg path {
  stroke: #000;
}

.homepage-top-slider {
  position: relative;
}

.homepage-top-slider .module-fickle .fickle-content-align {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.homepage-top-slider .container {
  width: 100%;
  padding: 0;
}

.homepage-top-slider .row,
.hometop-slider-section .row {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
}

.homepage-top-slider .row > div,
.hometop-slider-section .row > div {
  display: block;
  padding: 0;
}

.homepage-top-slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
}

.homepage-top-slider .slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
}

.homepage-top-slider .fickle-image img {
  height: 32vw;
  object-fit: cover;
}

.homepage-top-slider .fickle-text-content {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.homepage-top-slider .fickle-description-content {
  max-width: 400px;
  margin-bottom: 2rem;
}

.module-form .form-control {
  border-color: var(--bs-border-color);
}

.module-form .container,
.module-form .container-fluid {
  padding: 0;
}

.module-form .form-group {
  position: relative;
  margin-bottom: 1rem;
}

.field-message {
  display: table;
  position: relative;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 3px;
  opacity: 0.7;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.4);
  cursor: default;
  user-select: none;
  margin-top: 1rem;
}

.field-message:hover {
  opacity: 1;
}

.field-message:after {
  content: "";
  position: absolute;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--red);
  top: -8px;
  transform-origin: left;
  transform: rotate(45deg);
  left: 30px;
}

.jconfirm .jconfirm-holder .jconfirm-buttons {
  justify-content: center;
}

.interior-page-top-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.container .module-widget .container-fluid .row,
.container-fluid .module-widget .container-fluid .row,
.container-fluid .module-widget .container .row,
.container .module-widget .container .row {
  padding-left: 0;
  padding-right: 0;
}

.section-faq-page .faq-title {
  display: none;
}

.section-faq-page .module-widget .container {
  padding: 0;
}

.blog-content ul {
  list-style: none;
}

@media (max-width: 767px) {
  .min-height-md {
    min-height: unset !important;
  }
}

.appearance-home-slider-text * {
  color: inherit;
}

header .navbar .navbar-collapse .navbar-nav .dropdown .nav-link {
  position: unset;
}

header .navbar-nav > .nav-item.dropdown {
  position: static;
}

header .navbar-nav .dropdown-menu {
  width: 100%;
  left: 0;
  top: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  /* overflow: hidden; */
  padding: 0;
}

header .navbar-nav .dropdown .dropdown-menu {
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition: 300ms;
}

header .navbar-nav .dropdown.showing-dropdown .dropdown-menu {
  display: block;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0px);
  transition: 300ms;
}

.dropdown-menu-items-part > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.dropdown-menu-items-part > ul > li {
  max-width: 50%;
  min-width: calc(50% - 0.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: fit-content;
}

.dropdown-menu-items-part > ul > li:has(.sub-submenu-group) > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary-color);
  background: transparent;
}

.dropdown-menu-items-part > ul > li > a {
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 0;
  color: var(--primary-color);
  display: inline-block;
  width: 100%;
  font-size: 1rem;
}

.dropdown-menu-row {
  display: flex;
  gap: 1rem;
}

.dropdown-menu-row .dropdown-menu-wrapper {
  width: 50%;
  display: flex;
  gap: 1rem;
  max-height: 60vh;
  margin: 1rem;
  flex-direction: column;
}

.dropdown-menu-row .dropdown-menu-wrapper.has-with-and-no-submenu {
  display: grid;
  grid-template: auto / 1fr 1fr;
}

.dropdown-menu-row .dropdown-menu-wrapper.has-with-and-no-submenu .dropdown-menu-with-submenu {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 1rem;
}

.dropdown-menu-col {
  position: relative;
}

.dropdown-menu-col > ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 60vh;
}

.dropdown-menu-col > ul::-webkit-scrollbar {
  display: none;
}

header .dropdown-menu .dropdown-menu-inner .dropdown-menu-wrapper .dropdown-menu-col > ul > li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

header .dropdown-menu .dropdown-menu-inner .dropdown-menu-wrapper .dropdown-menu-col > ul > li > a {
  font-size: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
}

header .dropdown-menu .dropdown-menu-inner .dropdown-menu-wrapper .dropdown-menu-no-submenu {
  padding-top: 0.5rem;
}

header .dropdown-menu .dropdown-menu-inner .dropdown-menu-wrapper .dropdown-menu-col > ul > li:has(.sub-submenu-group) > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.dropdown-menu-col.dropdown-menu-image-part {
  width: 50%;
}

.dropdown-menu-image {
  position: relative;
  height: 100%;
  width: 100%;
}

.dropdown-menu-image-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sub-submenu-group {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sub-submenu-group a {
  padding: 0;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: wrap;
}

header .navbar-nav .nav-item.dropdown .nav-link:hover::before,
header .navbar-nav.dropdown .nav-item.active .nav-link::before {
  width: 0;
}

.dropdown-menu li::marker {
  display: none;
  content: "";
}

.footer-payment-logo img {
  background: #fff;
  border-radius: 5px;
  max-height: 50px;
}
@media screen and (max-width: 1440px) {
  /* Generals */

  :root {
    --container-padding: 1rem;
  }

  html {
    font-size: 15px;
  }

  /* Header */

  header .navbar-menu .navbar-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media screen and (max-width: 1199px) {
  /* Header */

  header .header-top-part .navbar {
    grid-template: auto / auto 1fr auto;
  }

  header .header-bottom-part .navbar {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-link {
    margin: 0;
  }

  header .navbar-menu .navbar-nav {
    gap: 0;
  }

  header .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: fixed;
    top: 0;
    height: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-100%);
    visibility: hidden;
    box-shadow: none;
  }

  header .navbar-nav .nav-item.dropdown.showing-dropdown .dropdown-menu {
    animation: slideRight 0.8s cubic-bezier(0.76, 0, 0.3, 1) forwards;
  }

  header .navbar-nav > .nav-item.dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .navbar-nav > .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  header .navbar-nav > .nav-item .nav-link-dropdown {
    height: 100%;
    aspect-ratio: 4/4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }

  header .header-bottom-part .navbar .navbar-collapse {
    position: fixed;
    top: var(--header-height);
    background: white;
    width: 100%;
    height: 100%;
    left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header .header-bottom-part .navbar-nav .nav-item .nav-link {
    margin: 0;
    font-size: 1.25rem;
    padding: var(--container-padding);
    width: 100%;
    font-weight: 500;
  }

  header .header-bottom-part .navbar-nav .nav-item .nav-link-dropdown svg {
    width: 100%;
    height: 100%;
    max-width: 1rem;
    max-height: 1rem;
  }

  header .header-bottom-part .navbar-nav .nav-item .nav-link-dropdown svg path {
    stroke-width: 2.5px;
  }

  @keyframes slideRight {
    0% {
      transform: translateX(-100%);
      visibility: hidden;
    }
    100% {
      transform: translateX(0);
      visibility: visible;
    }
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(0);
      visibility: visible;
    }
    100% {
      transform: translateX(-100%);
      visibility: hidden;
    }
  }

  header .header-bottom-part {
    position: fixed;
    top: var(--header-height);
    left: 0;
    height: calc(100vh - var(--header-height));
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-100%);
    visibility: hidden;
    box-shadow: none;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }

  header .header-bottom-part > .container {
    height: 100%;
    overflow-y: auto;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  header .header-bottom-part > .container::-webkit-scrollbar {
    display: none;
  }

  header .header-bottom-part > .container > .row {
    height: 100%;
  }

  header.menu-open .header-bottom-part {
    animation: slideRight 0.8s cubic-bezier(0.76, 0, 0.3, 1) forwards;
  }

  header.menu-close .header-bottom-part {
    animation: slideLeft 0.8s cubic-bezier(0.76, 0, 0.3, 1) forwards;
  }

  header .header-bottom-part .navbar .navbar-menu {
    display: flex;
    width: 100%;
  }

  header .header-bottom-part .navbar {
    height: 100%;
    row-gap: 0;
  }

  header .header-bottom-part .navbar .navbar-menu-contact {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--container-padding);
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .contact-links .contact-item > * {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.313rem;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .contact-links .contact-item .icon {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .contact-links .contact-item .icon svg {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: visible;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .title > * {
    font-size: 1.25rem;
    font-weight: 500;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .contact-links {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .contact-wrapper .contact-links .contact-item .text {
    font-weight: 400;
    color: var(--gray);
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--container-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper .title p {
    font-size: 1.25rem;
    font-weight: 500;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper .social-media-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 1rem;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper .social-media-links .social-media-item {
    display: flex;
    width: 100%;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper .social-media-links .social-media-item a {
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper .social-media-links .social-media-item a svg {
    width: 100%;
    height: 100%;
    max-height: 1.5rem;
    max-width: 2rem;
  }

  header .header-bottom-part .navbar .navbar-menu-contact .social-media-wrapper .social-media-links .social-media-item a svg path {
    fill: var(--black);
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile {
    flex-direction: column;
    margin: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    gap: 0;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .nav-item {
    display: grid;
    justify-content: space-between;
    grid-template: auto / 1fr auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .close-dropdown-menu {
    background: transparent;
    border: none;
    width: 100%;
    display: grid;
    grid-template: auto / auto 1fr;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .close-dropdown-menu .icon {
    display: flex;
    height: 100%;
    aspect-ratio: 4 / 4;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .close-dropdown-menu .icon svg {
    transform: rotate(180deg);
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .close-dropdown-menu .text {
    padding: var(--container-padding);
    width: 100%;
    display: flex;
    justify-content: end;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .nav-item .dropdown-item {
    padding: var(--container-padding);
    font-size: 1.25rem;
    font-weight: 500;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .dropdown-menu-items {
    padding: 0;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .dropdown-menu-items .nav-item .sub-submenu-group {
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-100%);
    /* transition: 300ms; */
    gap: 0;
    animation: slideLeft 0.8s cubic-bezier(0.76, 0, 0.3, 1) forwards;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .dropdown-menu-items .nav-item .sub-submenu-group.showing-dropdown {
    transform: translateX(0);
    /* transition: 300ms; */
    animation: slideRight 0.8s cubic-bezier(0.76, 0, 0.3, 1) forwards;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .dropdown-menu-items .nav-item .sub-submenu-group::-webkit-scrollbar {
    display: none;
  }

  .dropdown-menu-row .dropdown-menu-wrapper.mobile .dropdown-menu-items .nav-item .sub-submenu-group

  /* Homepage */

  .categories-cards-section > .container > .row {
    display: grid;
    grid-template: auto / 1fr 1fr;
  }

  .categories-cards-section > .container > .row .category-card-col {
    width: 100%;
  }
}

/* ******** START cookie css *********/
#cookie-banner {
  position: fixed;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.5sease, transform 0.5sease;
  max-width: 800px;
  right: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  display: none;
}
#cookie-banner .cookie-logo-container {
  text-align: center;
  display: flex;
  justify-content: flex-start;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#cookie-banner .cookie-logo-container img {
  max-width: 60px;
  height: auto;
}

#cookie-banner .cookie-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* padding: 1rem 0; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#cookie-banner .tab-button {
  background-color: transparent;
  border: none;
  padding: 1rem 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0;
}

#cookie-banner .tab-button.active {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}

#cookie-banner .tab-content {
  display: none;
  padding: 1rem;
}

#cookie-banner .tab-content > * {
  font-weight: 500;
  font-size: 0.875rem;
}

#cookie-banner .tab-content a {
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: underline;
}

#cookie-banner .tab-content.active {
  display: block;
}

#cookie-banner .cookie-buttons .btn {
  padding: 0.875rem;
  width: 100%;
  justify-content: center;
  border-radius: var(--border-radius-sm);
}

#cookie-banner.hidden {
  opacity: 0;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

#cookie-banner .cookie-buttons {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem;
  gap: 1rem;
}

#cookie-banner .cookie-buttons .btn {
  font-weight: 600;
  font-size: 0.938rem;
  transition: var(--transition-fast);
}

#cookie-banner .cookie-buttons .btn:hover {
  opacity: 0.8;
  transition: var(--transition-fast);
}

#cookie-banner .cookie-buttons .btn-primary {
  background: var(--primary-color);
}

#cookie-banner .cookie-buttons .btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--primary-color);
}

#cookie-reset {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.625rem;
  border-radius: 50%;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}

#cookie-reset svg {
  width: 100%;
  height: 100%;
}

#cookie-reset svg path {
  stroke: var(--white);
}

/* ********* END cookie css *********** */
