html {
  scroll-behavior: smooth !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
  transition: all 0.3s ease;
  font-family: "Helvetica Neue LT GEO";
}

:root {
  --primary: #f47b20;
  --secondary: #f0f0f0;
  --main-bg-color: #f6f6f6;
  --white: #ffffff;
  --black: #000000;
  --link-border: #eaeaea;
  --border: #f2f2f2;
  --text: #404040;
  --red: #eb5757;
  --err: #ff3838;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #c8c6c6;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: #fbb209;
}

body {
  font-family: "Helvetica Neue LT GEO";
  color: var(--black);
  font-weight: 450;
  /* max-width: 1920px; */
  margin: 0 auto;
  overflow-x: hidden;
  background-color: var(--main-bg-color);
  padding-top: 180px;
}
body:has(.modal.active:not(.loader-wrapper)),
body:has(section.categories.active) {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--black);
  font-family: "Helvetica Neue LT GEO";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue LT GEO";
}
a:hover {
  color: var(--primary);
}

button {
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 450;
  cursor: pointer;
  border: none;
}
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
ul {
  list-style: none;
}

img {
  max-width: 100%;
}
.container {
  max-width: calc(1268px + 12px + 12px);
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-flex button:hover {
  opacity: 0.8;
}
.link {
  padding: 14px 16px;
  border: 1px solid var(--link-border);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  width: fit-content;
  gap: 10px;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px;
  gap: 4px;
  background: #ffffff;
  border-radius: 40px;
  width: fit-content;
}
.link-bg {
  background: var(--secondary);
  border-radius: 40px;
}
.link-bg-primary {
  background: var(--primary);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--white);
  border-radius: 40px;
}
.link-bg-primary:hover {
  color: #000;
}

.search-form button {
  border-radius: 50px;
}

/* header */
header {
  padding-top: 55px;
  background: var(--white);
  box-shadow: 0px 2px 4px rgba(210, 210, 210, 0.25);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.header-wrapper {
  padding-block: 20px;
  justify-content: space-between;
}
.logo {
  flex-shrink: 0;
}
.logo img {
  width: 160px;
  flex-shrink: 0;
}
.danger {
  color: red;
}

.text-danger {
    display: inline-block;
    margin-top: 10px;
    color: red;
}

.invalid-select {
    border: 1px solid red !important;
}

.header-contact-links {
  gap: 6px;
  margin: 0 16px;
}
.navbar-wrapper {
  border-top: 1px solid var(--border);
}
.navbar ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.navbar li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar li {
  border-right: 1px solid var(--border);
}
.navbar li:first-of-type {
  border-left: 1px solid var(--border);
}
.navbar a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding-top: 16px;
  padding-bottom: 20px;
  color: var(--text);
}
.navbar a:hover {
  color: var(--primary) !important;
}
.lang-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 20px;
}
.lang-wrapper.active {
  overflow: initial;
}
.lang-wrapper.active a {
  display: block;
}
.langbar:has(.lang-wrapper.active) > img {
  transform: rotate(180deg);
}
.lang-wrapper a {
  display: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
.lang-wrapper a.active {
  display: block;
  order: -1;
}
.header-cart {
  padding-top: 7px;
  padding-bottom: 7px;
}

.header-cart:hover {
  background: #dddddd;
}

.header-cart div {
  display: flex;
  flex-direction: column;
}

.header-cart .cart-total {
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  color: var(--red);
}

.sign-in-options {
  position: relative;
  margin-right: 12px;
  margin-left: 6px;
}

.subuser-order-notification {
    display: grid;
    place-items: center;
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e40001;
    color: #fff;
    width: 2.5ch;
    height: 2.7ch;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.top-reset {
    top: 0;
}

.sign-in {
  margin-right: -10px;
  position: relative;
  z-index: 2;
}
.mail-link,
.header-cart span {
  color: var(--black);
}
.header-cart span {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}
.search-form {
  position: relative;
}
.search-form.page-search {
  max-width: 398px;
  margin: 0 auto;
  margin-bottom: 44px;
}
.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.search-form.page-search button {
  right: unset;
  left: 0;
  background-color: transparent;
  border: none;
  position: absolute;
}
.search-form input {
  width: 398px;
  padding: 14px 44px 14px 20px;
  border: 1px solid var(--link-border);
  border-radius: 50px;
  border-right: none;
  outline: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--text);
}
.search-form.page-search input {
  width: 100%;
  padding-left: 45px;
  display: block;
}
.header-actions {
  justify-content: end;
}
.header-contact-links .link {
  align-items: end;
  padding: 14px;
}

.langbar {
  gap: 0.5em;
  cursor: pointer;
}

.search-form input::placeholder {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--text);
  opacity: 0.5;
}
.burger {
  display: none;
  width: 24px;
  height: 24px;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background-color: #404040;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  .search-form input {
    width: 300px;
  }
  .header-contact-links {
    gap: 5px;
    margin: 0 10px;
  }
  .sign-in-options {
    margin-right: 10px;
    margin-left: 5px;
  }
}
@media (max-width: 1200px) {
  .header-contact-links,
  .sign-in-options,
  .search-form input,
  .header-cart div,
  .langbar,
  .navbar-wrapper {
    display: none;
  }
  .search-form button {
    position: static;
  }
  .header-actions .search-form button,
  .header-actions .header-cart {
    padding-left: 0;
    padding-right: 0;
  }
  .header-actions {
    gap: 20px;
  }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
  }
  .header-cart,
  .search-form button {
    background-color: transparent;
    border: none;
  }
  header {
    padding-top: 30px;
  }
  .header-wrapper {
    padding-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .search-form.page-search {
    margin-bottom: 24px;
  }
}
/* coffee swiper */
.coffee-swiper {
  margin-top: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
}
.coffee-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #b6c1a6;
  border-radius: 12px;
  padding-left: 45px;
  height: 417px;
}

.coffee-swiper .swiper-slide .slider-image-wrapper {
    height: 100%;
    width: 100%;
}

.coffee-swiper .swiper-slide .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 10%;
  border-radius: 208.5px 12px 12px 208.5px;
  padding-left: 2%;
}
.coffee-swiper .slide-desc {
  max-width: 412px;
  width: 100%;
  color: var(--white);
}

.coffee-swiper .slide-desc h1 {
  font-style: normal;
  font-weight: 750;
  font-size: 36px;
  line-height: 128%;
  font-feature-settings: "case" on;
  margin-bottom: 12px;
}
.coffee-swiper .slide-desc p {
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 128%;
  font-feature-settings: "case" on;
  color: #ffffff;
}

.coffee-swiper .slide-desc .button {
  font-feature-settings: "case" on;
  gap: 10px;
  color: #202020;
  margin-top: 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}
.coffee-swiper .slide-desc .button img {
  transform: rotate(-90deg);
}

.coffee-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 45px;
  bottom: 24px;
}
.coffee-swiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}
.coffee-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(235, 235, 235, 0.6);
  width: 32px;
  border-radius: 30px;
}

@media (max-width: 1024px) {
  .coffee-swiper .swiper-slide {
    flex-direction: column-reverse;
    padding: 0;
    padding-bottom: 46px;
    height: unset;
  }
  .coffee-swiper .swiper-slide .img {
    width: 100%;
    max-width: unset;
    height: 140px;
    border-radius: 12px;
  }
  .coffee-swiper .slide-desc {
    padding: 16px;
    padding-bottom: 0;
    max-width: unset;
    width: 100%;
  }
  .coffee-swiper .slide-desc h1 {
    font-style: normal;
    font-weight: 750;
    font-size: 20px;
    line-height: 128%;
  }
  .coffee-swiper .slide-desc .button {
    margin-top: 24px;
    padding: 16px 14px;
  }
  .coffee-swiper .slide-desc p {
    font-weight: 400;
    font-size: 14px;
    line-height: 128%;
  }
  .coffee-swiper .swiper-pagination {
    padding: 0 16px;
    bottom: 16px;
  }
  .coffee-swiper {
    margin-bottom: 24px;
  }
}

/* categories */
.cat-wrapper {
  /* margin-top: 24px; */
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 10px;
  position: relative;
}
.cat-swiper2 {
  margin-bottom: 20px;
}
.cat-swiper2 .cat-img {
  z-index: 0;
}

.cat-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 10px;
  flex-shrink: 0;
  height: 172px;
  position: relative;
  overflow: hidden;
}
.all-cat {
  background-color: var(--primary);
}
.cat-title {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  font-feature-settings: "case" on;
  color: var(--text);
}
.all-cat .cat-title {
  color: var(--white);
  max-width: 80%;
}

.cat-img::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 80%;
  background: #eeeeee;
  bottom: 0;
  right: 0;
  border-top-left-radius: 112%;
  display: block;
  z-index: -1;
}
.cat-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
  bottom: 0;
  right: 0;
  border-top-left-radius: 112%;
  display: block;
  z-index: -1;
}
.all-cat .cat-img {
  z-index: 0;
  align-items: center;
  justify-content: center;
}
.all-cat .cat-img::after {
  border-color: #f38634;
}
.all-cat .cat-img::before {
  background: rgba(232, 232, 232, 0.06);
}
.all-cat-btn {
  bottom: 10px;
  right: 28px;
  width: 32px;
  height: 32px;
  position: absolute;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;

  z-index: 5;
}
.all-cat-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.all-cat-btn span:last-child {
  margin-bottom: 0;
}
.all-cat-btn.active span:nth-child(2) {
  transform: scale(0);
}
.all-cat-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(11px, 9px);
}
.all-cat-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -3px);
}

.all-cat-btn span:nth-child(1) {
  top: 0px;
}

.all-cat-btn span:nth-child(2),
.all-cat-btn span:nth-child(3) {
  top: 8px;
}

.all-cat-btn span:nth-child(4) {
  top: 16px;
}

.all-cat-btn.active span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.all-cat-btn.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.all-cat-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.all-cat-btn.active span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.cat-swiper {
  width: 100%;
  overflow: hidden;
}
.cat-swiper.active .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.cat-swiper,
.cat-wrapper .swiper-wrapper {
  flex-shrink: 0;
  margin: 0 !important;
}
.cat-wrapper.active .swiper-button-next,
.cat-wrapper.active .swiper-button-prev {
  display: none;
}

.cat-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 70%;
  display: flex;
  align-items: end;
  justify-content: end;
  flex-direction: column;
  z-index: -1;
}
.cat-img img {
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
}
.swiper-block {
  width: 100%;
  position: relative;
}
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  box-shadow: 0px 0px 20px rgba(148, 148, 148, 0.25);
  border-radius: 40px;
  z-index: 2;
  background-color: #ffffff;
}
.categories .swiper-button-next,
.categories .swiper-button-prev,
.categories2 .swiper-button-next,
.categories2 .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: var(--primary);
  box-shadow: 0px 0px 20px rgba(148, 148, 148, 0.25);
  border-radius: 40px;
  z-index: 2;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: #ffffff;
}
.categories .swiper-button-prev.swiper-button-disabled,
.categories .swiper-button-next.swiper-button-disabled,
.categories2 .swiper-button-prev.swiper-button-disabled,
.categories2 .swiper-button-next.swiper-button-disabled {
  background: #ffffff;
  opacity: 1;
  box-shadow: 0px 0px 20px rgba(148, 148, 148, 0.25);
}
.categories .swiper-button-prev.swiper-button-disabled:after,
.categories .swiper-button-next.swiper-button-disabled:after,
.categories2 .swiper-button-prev.swiper-button-disabled:after,
.categories2 .swiper-button-next.swiper-button-disabled:after {
  color: var(--primary);
}
.categories .swiper-button-prev {
  left: 190px;
}
.categories2 .swiper-button-prev {
  left: -25px;
}
.categories2 {
  position: relative;
}
.categories .swiper-button-next,
.categories2 .swiper-button-next {
  right: -25px;
}
.categories {
  position: absolute;
  width: 100%;
  top: 205px;
  left: 0;
}
.categories.inner-page {
  top: 230px;
}
.categories.active {
  background: #f3f3f3;
  box-shadow: 0px 4px 14px rgba(104, 104, 104, 0.25);
  z-index: 2;
  padding-bottom: 69px;
}
.categories.active::after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.19);
}
.categories.active .categories {
  position: relative;
  z-index: 3;
}
.categories.active .container {
  position: relative;
  z-index: 2;
}
.categories + section,
.categories + footer {
  margin-top: 236px;
}
.categories.inner-page + section,
.categories.inner-page + footer {
  margin-top: 215px;
}
@media (max-width: 1200px) {
  .cat-wrapper {
    grid-template-columns: 1fr 4fr;
  }
  .categories {
    top: 140px;
  }
  .categories.inner-page {
    top: 160px;
  }
  .cat-swiper.active .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .cat-wrapper {
    grid-template-columns: 1fr 3fr;
    gap: 7px;
  }

  .categories2 .swiper-button-prev,
  .categories2 .swiper-button-next {
    display: none;
  }
  .categories + section,
  .categories + footer {
    margin-top: 90px;
  }
  .categories.inner-page + section,
  .categories.inner-page + footer {
    margin-top: 100px;
  }
  .cat-wrapper.active {
    padding-right: 12px;
  }
  .cat-card {
    height: 75px;
    padding: 10px;
  }

  .cat-title {
    font-size: 11px;
    line-height: 110%;
    /* transform: scale(0.8); */
  }
  .categories {
    top: 125px;
  }
  .categories.inner-page {
    top: 155px;
  }
  .categories .swiper-button-next,
  .categories .swiper-button-prev {
    display: none;
  }
  .categories .container {
    padding-right: 0;
  }
  .cat-swiper.active .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .all-cat-btn {
    bottom: 2px;
    right: 14px;
  }
  .all-cat-btn span {
    margin-bottom: 6px;
  }
  .cat-img::before,
  .cat-img::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .cat-wrapper {
    grid-template-columns: 1fr 2.1fr;
  }
  .cat-swiper.active .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* offers */
.offer-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.offer-card {
  background: rgba(244, 123, 32, 0.08);
  border-radius: 10px;
  padding: 48px 87px;
  text-align: center;
}

.offer-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 128%;
  font-feature-settings: "case" on;
  color: var(--text);
  margin-bottom: 16px;
}
.offer-text {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--text);
}
.offer-text span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--primary);
}
@media (max-width: 1024px) {
  .offer-wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .offer-card {
    padding: 43px 60px;
  }
}

/* products sliders */
.prod-section {
  margin-bottom: 72px;
}
.product-section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.product-section-top .title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 128%;
  font-feature-settings: "case" on;
  color: var(--text);
}

.product-section-top .see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 128%;
  font-feature-settings: "case" on;
  color: #000000;
  gap: 14px;
}
.product-section-top .see-more img {
  rotate: -90deg;
  width: 10px;
}

.prod-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  height: unset;

  display: flex;
  flex-direction: column;
}
.prod-card.swiper-slide {
  height: unset;
}
.prod-img {
  position: relative;
}
.prod-img .img {
  width: 100%;
  height: 156px;
  border-radius: 10px;
  object-fit: contain;
}

.add-to-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f8f8f8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.add-to-fav:hover {
  background-color: #ffad70;
}
.add-to-fav.added {
  background-color: var(--primary);
}
.add-to-fav.added img {
  filter: invert(1) brightness(100);
}
.prod-details {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  height: -webkit-fill-available;
  height: 100%;
}

.prod-code {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #000000;
  opacity: 0.4;
  display: block;
}

.prod-name {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 8px;
  cursor: pointer;
}
.prod-crd .prod-name,
.fav-prod-card .top h5,
.order-item .top .info .title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: min-content;
}
@media (min-width: 1024px) {
  .prod-name:hover {
    color: var(--primary);
  }
}

.prod-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
}
.prod-actions > div {
  width: fit-content;
}
.flag {
  padding: 3px 6px;
  border-radius: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  height: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sale {
  background: var(--red);
}

.new {
  background: #2f80ed;
}
.wholesale {
  background: #219653;
}

.prod-q {
  border: 1px solid var(--secondary);
  border-radius: 30px;
  padding: 5px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.prod-actions > div:nth-child(2n) {
  justify-self: end;
}
.prod-q button {
  width: 26px;
  height: 20px;

  background: var(--secondary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.prod-q button img {
  width: 10px !important;
}
.prod-q span,
.prod-q input {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
  opacity: 0.8;
}
.prod-q input {
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 100%;
  z-index: 0;
  min-width: 20px;
}

.prod-price {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.new-price {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary);
}

.old-price {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  text-decoration-line: line-through;
  color: #000000;
  opacity: 0.8;
}
.add-to-cart {
  width: 89px;
  height: 44px;
  background: var(--secondary);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}
.add-to-cart.in-cart {
  background: #ff9f56;
}

.prod-actions > div.add-to-cart {
  width: 89px;
}

.prod-slider .swiper-button-next {
  right: -12px;
}
.prod-slider .swiper-button-prev {
  left: -12px;
}
.prod-slider .swiper-button-next::after,
.prod-slider .swiper-button-prev::after {
  color: var(--primary);
}
.prod-slider .swiper-button-prev.swiper-button-disabled,
.prod-slider .swiper-button-next.swiper-button-disabled {
  display: none;
}
.prod-slider .container {
  position: relative;
}

.prod-actions > div.add-to-cart.rounded {
  width: 52px;
  height: 44px;
}
.add-to-cart img,
.add-to-fav img {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .prod-slider .swiper-button-next,
  .prod-slider .swiper-button-prev {
    display: none;
  }
  .prod-slider .container {
    padding-right: 0;
  }
  .prod-section {
    margin-bottom: 48px;
  }
  .product-section-top .title {
    font-size: 20px;
    line-height: 128%;
  }
}

/* best offer */
.best-offer {
  margin-bottom: 72px;
}

.best-offer-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
}

.best-offer-text {
  background: #d0915e;
  padding: 75px 32px;
  border-radius: 12px;
}
.best-offer-text .title {
  font-style: normal;
  font-weight: 750;
  font-size: 32px;
  line-height: 128%;
  margin-bottom: 12px;
  font-feature-settings: "case" on;
  color: #ffffff;
}
.best-offer-text .desc {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 128%;
  margin-bottom: 40px;
  font-feature-settings: "case" on;
  color: #ffffff;
}
.best-offer-text a {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  font-feature-settings: "case" on;
  color: #ffffff;
}
.best-offer-img {
  width: 100%;
  background: #d0915e;
  border-radius: 12px;
  overflow: hidden;
  max-height: 417px;
}
.best-offer-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .best-offer-wrapper {
    grid-template-columns: 1fr;
  }
  .best-offer-text {
    padding: 32px;
  }
  .best-offer-text .title {
    font-size: 24px;
    line-height: 128%;
    margin-bottom: 16px;
  }
  .best-offer-text .desc {
    margin-bottom: 32px;
  }
  .best-offer-img {
    height: 417px;
  }
  .best-offer {
    margin-bottom: 48px;
  }
}

/* blog */
.blog-wrapper {
  margin-bottom: 92px;
}
.blog-wrapper .container {
  position: relative;
}
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  padding-bottom: 17px;
}
.blog-card-img {
  height: 219px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}
.blog-card-img img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.blog-card-text .title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: var(--text);
  margin-bottom: 10px;
}

.blog-card-text .desc {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 50px;
}

.blog-card-text a {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

.blog-card-text a:hover {
  font-weight: bold;
}

.blog-card-text p {
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 18px;
}

@media (max-width: 1024px) {
  .blog-card-text .desc {
    margin-bottom: 27px;
  }
  .blog-card-img {
    height: 202px;
  }
  .blog-card {
    padding-bottom: 25px;
  }
  .product-section-top {
    margin-bottom: 24px;
  }
  .blog-wrapper {
    margin-bottom: 56px;
  }
}

/* logos */
.logos {
  padding: 28px 0;
  margin-bottom: 72px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: white;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: unset;
  max-height: 56px;
}
.logo-card img {
  max-width: 100%;
  object-fit: contain;
  max-height: 56px;
}

@media (max-width: 1024px) {
  .logos {
    margin-bottom: 56px;
    padding: 24px 0;
  }
}

/* leave message */
.leave-message-wrapper {
  background-color: var(--primary);
  padding: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}

.leave-message-wrapper h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 128%;
  font-feature-settings: "case" on;
  color: #ffffff;
  margin-right: 85px;
  flex-shrink: 0;
}
.leave-message-wrapper form {
  width: 100%;
  position: relative;
}
.leave-message-wrapper input {
  background: #ffffff;
  border-radius: 150px;
  outline: none;
  border: none;
  padding: 14px 24px;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #808080;
}

.leave-message-wrapper input::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #808080;
}

.leave-message-wrapper button {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  z-index: 1;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .leave-message-wrapper {
    flex-direction: column;
    padding: 20px;
    align-items: start;
    margin-bottom: 48px;
  }
  .leave-message-wrapper h3 {
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 128%;
  }
}

/* review */
.review-wrapper {
  margin-bottom: 72px;
}

.review-card {
  padding: 10px 24px;
  padding-right: 19px;
  background-color: #ffffff;
}

.review-card .header {
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 15px;
}
.review-card .header .img img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}
.review-card .name {
  color: rgba(0, 0, 0, 0.87);
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.2px;
}
.review-card .who {
  display: flex;
  gap: 5px;
}
.review-card .who,
.review-card .who span {
  color: rgba(0, 0, 0, 0.54);
  font-size: 13px;
  font-weight: 400;
  font-family: "Roboto";
  line-height: 17px;
  letter-spacing: 0.2px;
}
.review-card .actions {
  justify-self: end;
  cursor: pointer;
}
.review-card .stars-block {
  display: flex;
  gap: 5px;
}
.review-card .stars-block span {
  color: rgba(0, 0, 0, 0.54);
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto";
  line-height: 19px;
  letter-spacing: 0.2px;
}
.review-card .review-text {
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto";
  line-height: 21px;
  letter-spacing: 0.2px;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .review-swiper {
    height: 230px;
  }
  .review-wrapper .container {
    padding: 0;
  }
  .review-card.swiper-slide {
    opacity: 0.44;
    z-index: 0;
    position: relative;
  }
  .review-card.swiper-slide.swiper-slide-active {
    opacity: 1;
    z-index: 2;
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
  }

  .review-card.swiper-slide.swiper-slide-next {
    margin-top: -70px;
  }
}

/* footer */
.footer-bottom {
  padding: 24px 48px;
}
.made-by {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}

.made-by span {
  font-weight: 700;
  font-family: "Helvetica Neue LT GEO";
  color: #000;
  font-size: 16px;
  line-height: 140%;
}

.footer-top {
  background: #fff;
  box-shadow: 0px -2px 4px 0px rgba(210, 210, 210, 0.25);
  padding: 40px 0;
}

.footer-top-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 0.9fr auto;
}

.footer-card {
  display: flex;
  flex-direction: column;
}
.footer-card h5 {
  color: #000;
  font-size: 14px;
  margin-bottom: 18px;
  font-feature-settings: "case" on;
  font-weight: 700;
  line-height: 140%;
}

.footer-card ul a {
  font-size: 14px;
}
.footer-card li {
  margin-bottom: 16px;
}
.footer-card li:last-child,
.footer-card.socials li:last-child,
.footer-card.contact li:last-child {
  margin-bottom: 0;
}

.footer-logos .logo img {
  width: 170px;
  margin-bottom: 16px;
  display: block;
}

.footer-logos .rights {
  color: #000;
  font-size: 13px;
  margin-bottom: 24px;
}
.footer-logos .footer-lang-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.footer-logos .footer-lang-bar a {
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid var(--link-border);
}

.footer-logos .footer-lang-bar a.active {
  background: var(--border);
}

.footer-card.socials li,
.footer-card.contact li {
  margin-bottom: 19px;
}

.footer-card.socials a,
.footer-card.contact a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-card.messanger {
  align-items: center;
}

.footer-card.messanger div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  margin-bottom: 12px;
}
.footer-card.messanger span {
  color: #000;
  font-size: 14px;
  font-family: "Helvetica Neue LT GEO";
}

@media (max-width: 1024px) {
  .footer-top-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    position: relative;
  }
  .footer-top {
    padding: 18px 0;
  }
  .footer-card {
    margin-bottom: 32px;
  }
  .footer-card.socials a,
  .footer-card.contact a,
  .footer-lang-bar {
    justify-content: center;
  }
  .footer-logos {
    order: 1;
  }
  .footer-card.messanger {
    position: absolute;
    top: 0;
    right: 0;
  }
  .footer-logos .logo img {
    margin: auto;
    margin-bottom: 16px;
  }
}

/* about us */

.breadcrumbs {
  display: flex;
  padding: 17px 0;
}
.breadcrumbs a {
  font-size: 13px;
  opacity: 0.6;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}
.breadcrumbs a::after {
  content: "";
  width: 10px;
  background-image: url("../img//icons/arr.svg");
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  display: inline-block;
  height: 8px;
}
.breadcrumbs a:last-of-type::after {
  background-image: none;
}
.breadcrumbs a.active {
  opacity: 1;
}
.breadcrumbs a:last-of-type {
  margin: 0;
}
.breadcrumbs a.active::after {
  display: none;
}
.about-us-page .img {
  height: 417px;
  margin-bottom: 40px;
}
.about-us-page .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.about-us-page .contact-page .links {
  width: 100%;
  max-width: unset;
  margin-bottom: 64px;
  margin-top: 32px;
}
.about-us-page .contact-page .links .img {
  margin-bottom: 0;
}

.about-us-page .contact-page .links .img img {
  width: unset;
  height: unset;
  border-radius: 0;
}
.about-us-wrapper {
  display: grid;
  grid-template-columns: 46% 46%;
  justify-content: space-between;
  margin-bottom: 160px;
}
.about-text .title {
  font-size: 36px;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 750;
  line-height: 128%;
  font-feature-settings: "case" on;
}
.about-text .text * {
  color: #000;
  font-size: 15px;
  font-family: "Helvetica Neue LT GEO";
  line-height: 160%;
}
.about-text .text img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 12px;
  max-height: 221px;
}
.about-text .text {
  margin-bottom: 80px;
}

.about-text .text p {
  margin-bottom: 24px;
}

.about-us-wrapper .links {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
.links-to a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e1e1e1;
  font-size: 15px;
  font-weight: 700;
}
.links-to a:last-child {
  border: none;
}

.about-us-wrapper .map {
  height: 268px;
}
.about-us-wrapper iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 1px 11px 0px rgba(140, 140, 140, 0.25);
}

.tags .tags-desc {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 32px;
}

.tag-card h6 {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 24px;
}

.tag-card .tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag-card .tag {
  border-radius: 30px;
  background: #eee;
  padding: 8px 17px;
  color: var(--text);
  font-size: 14px;
  line-height: 160%;
}

@media (max-width: 1024px) {
  .about-us-wrapper {
    grid-template-columns: 1fr;
    justify-content: unset;
    margin-bottom: 40px;
  }
  .breadcrumbs {
    padding: 16px 0;
  }
  .breadcrumbs a {
    gap: 5px;
    margin-right: 5px;
  }
  .about-us-page .img {
    height: 381px;
    margin-bottom: 24px;
  }
  .about-us-page .img img {
    border-radius: 8px;
  }
  .about-text .title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .about-text .text {
    margin-bottom: 40px;
  }
  .about-us-wrapper .links {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .link-map-wrapper {
    margin-bottom: 100px;
  }

  .tags .tags-desc {
    margin-bottom: 40px;
  }
}

/* brands page */
.brands-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brands-page .page-title {
  color: var(--text);
  text-align: center;
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 750;
  line-height: 128%;
  font-feature-settings: "case" on;
}
.brands-page {
  margin-bottom: 104px;
}
.brands-page .page-desc {
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 160%;
  opacity: 0.6;
  margin: auto;
  margin-bottom: 40px;
  max-width: 283px;
}

.brand-card {
  /* background: #fff; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-card img {
  border-radius: 16px;
  max-width: 100%;
  object-fit: contain;
  height: 100px;
}
.brands-list button.link {
  margin: auto;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .brands-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .brand-card img {
    height: 138px;
    width: 100%;
    border-radius: 11px;
  }
}
.new-products .prod-page-filter,
.subcategory-page .prod-page-filter {
  margin: unset;
}
/* products page */
.prod-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.new-products .prod-page-title {
  justify-content: start;
}
.prod-page-title h2 {
  text-align: center;
  font-size: 32px;
  font-feature-settings: "case" on;
  margin-right: 20px;
  font-weight: 700;
  line-height: 128%;
  color: var(--text);
}
.prod-page-title .flag {
  padding: 5px 7px;
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
}

.prod-page-title-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.prod-page-title-top .prod-page-title {
  margin-bottom: 0;
}
.prod-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(237px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.pgn-wrapper {
  margin-bottom: 125px;
}
.pgn-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pgn.active {
  border-radius: 9px;
  background: var(--primary);
  min-width: 35px;
  min-height: 35px;
  padding: 5px;
  color: #fff;
}
.pgn.active:hover {
  color: #fff;
}
.pgn-wrapper a {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgn.next img {
  transform: rotate(-90deg);
}
.pgn.prev img {
  transform: rotate(90deg);
}
.pgn img {
  width: 18px;
}
.prod-page-filter {
  max-width: 390px;
  margin: auto;
}
.nice-select {
  float: unset;
}
.subUserChooseSelect,
.addressSelectionSelect,
#order-payment-method {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  line-height: 46px;
  color: rgba(64, 64, 64, 0.9);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.prod-page-filter .row {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(181, 181, 181, 0.25);
}
.prod-page-filter input {
  padding: 15px 12px;
  border: none;
  outline: none;
  width: 100%;
}
.prod-page-filter input,
.prod-page-filter input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-family: "Helvetica Neue LT GEO";
  line-height: 140%;
}
.prod-page-filter input:first-child {
  border-right: 1px solid #eee;
}
.prod-page-filter .nice-select {
  height: 48px;
  align-items: center;
  display: flex;
  border: none;
}
.prod-page-filter .nice-select .current {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-family: "Helvetica Neue LT GEO";
  line-height: 140%;
}
.prod-page-filter .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 8px;
  overflow: hidden;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
@media (max-width: 1024px) {
  .prod-page-title h2 {
    font-size: 24px;
    text-align: left;
  }
  .cart-btns form {
    flex-direction: column;
  }
  .cart-actions .link {
    justify-content: center;
  }
  .prod-page-title-top {
    flex-direction: column;
  }

  .prod-page-title {
    justify-content: space-between;
  }
  .pgn-wrapper {
    margin-bottom: 70px;
  }
  .brands-page .page-desc {
    margin-bottom: 16px;
  }
  .prod-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px !important;
  }
  .banner img {
    display: none;
  }
}

/* category page */
.cat-page-wrapper {
  display: grid;
  grid-template-columns: 255px auto;
  gap: 17px;
  margin-top: 10px;
}
.cat-page-wrapper .prod-list {
  gap: 16px;
}
.category-page > .container,
.products-page > .container {
  position: relative;
}
.order-by-price {
  position: absolute;
  right: 16px;
  top: 0;
}
.order-by-price .nice-select {
  border-radius: 6px;
  background: #fff;
  border: none;
}
.order-by-price .nice-select .current,
.order-by-price .nice-select .option {
  color: var(--text);
  font-family: "Helvetica Neue LT GEO";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}
.banner img {
  width: 100%;
  border-radius: 10px;
  height: 236px;
  object-fit: cover;
  margin-bottom: 16px;
}
.category-card {
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(184, 184, 184, 0.25);
  width: 100%;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}

.category-card .title {
  max-width: 70%;
  color: var(--primary);
  font-size: 16px;
  font-feature-settings: "case" on;
  font-weight: 700;
  line-height: 140%;
}
.category-card .img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 120px;
  height: 100%;
  object-fit: cover;
}
.category-card.brand {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 21px;
  /* flex-direction: column; */
  min-height: 140px;
}

.category-card.brand .img {
  position: static;
  display: block;
  margin: auto;
  max-width: 124px;
  margin-bottom: 27px;
  object-fit: contain;
}
.category-card.brand a {
  height: 100%;
  padding: 12px;
  padding-left: 0;
}
.category-card.brand .title {
  color: var(--text);
  text-align: center;
  font-size: 14px;
  max-width: unset;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  text-transform: capitalize;
}
.cat-tags .flag {
  background: #e8e8e8;
  color: #585858;
  padding: 5px 8px;
}
.cat-tags.active .flag {
  color: #fff;
}
.cat-tags.active .flag.sale {
  background: var(--red);
}
.cat-tags.active .flag.new {
  background: #2f80ed;
}
.cat-tags.active .flag.wholesale {
  background: #219653;
}
.cat-page-wrapper .prod-list {
  margin-top: 0;
}
.cat-tags {
  margin-bottom: 8px;
}
.cat-page-wrapper .prod-page-filter {
  max-width: unset;
}
.checkboxes {
  padding: 12px 20px 12px 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(181, 181, 181, 0.25);
  margin-top: 8px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}
.checkbox:last-child {
  margin-bottom: 0;
}
.checkbox input {
  display: none;
}
.checkbox input:checked ~ .check {
  background-color: var(--primary);
  border-color: var(--primary);
}
.checkbox .check {
  width: 14px;
  height: 14px;
  border-radius: 2.5px;
  border: 1.2px solid #cacaca;
  position: relative;
  flex-shrink: 0;
}
.checkbox .check::after {
  content: "";
  display: none;
  color: white;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../img/icons/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 100%;
  flex-shrink: 0;
}
.checkbox input:checked ~ .check::after {
  display: block;
}
.checkbox span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-family: "Helvetica Neue LT GEO";
  line-height: 140%;
}
.cat-page-cubcat .mobile {
  display: none;
}
@media (max-width: 1024px) {
  .cat-page-wrapper {
    grid-template-columns: 1fr;
  }
  .category-card .title {
    max-width: unset;
  }
  .category-card.brand {
    gap: 0;
    min-height: unset;
  }
  .category-card.brand div {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .category-card.brand .img {
    margin-bottom: 4px;
  }
  .order-by-price {
    position: static;
    margin-bottom: 10px;
    width: fit-content;
    margin-left: auto;
  }
}

/* blog page */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.blog-posts-wrapper {
  margin-bottom: 160px;
}
.blog-page-slide .title {
  color: var(--text);
  font-size: 36px;
  margin-bottom: 4px;
  font-weight: 750;
  line-height: 128%;
  font-feature-settings: "case" on;
}
.blog-page-slide .desc {
  /* padding-top: 32px; */
  max-width: 412px;
  width: 33%;
}
.blog-page-slide .date {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
  line-height: 160%;
}
.blog-page-slide .text {
  color: #000;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 160%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-page-slider {
  margin-bottom: 64px;
  border-radius: 16px;
  background: #ebebeb;
  padding: 24px;
  position: relative;
}
.blog-page-slide {
  display: flex;
  gap: 72px;
  align-items: center;
}
.blog-page-slide .img {
  max-width: 641px;
  width: 50%;
  height: 369px;
}
.blog-page-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  display: block;
  border-radius: 16px;
  background: rgba(244, 123, 32, 0.08);
}
.blog-page-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.blog-page-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #8e8e8e;
  width: 32px;
  border-radius: 30px;
}
.blog-page-wrapper .swiper-pagination {
  bottom: 20px;
}
.blog-page-wrapper .swiper-pagination-bullet {
  background: #cdcdcd;
  opacity: 1;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}
.blog-page-wrapper .swiper-pagination-bullet:first-of-type {
  margin-left: 215px;
}
@media (max-width: 1300px) {
  .blog-page-slide .desc {
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .blog-posts {
    grid-template-columns: 1fr 1fr;
  }
  .blog-page-wrapper .swiper-pagination {
    position: static;
    margin-top: 32px;
    display: flex;
    padding: 0 20px;
  }
  .blog-page-wrapper .swiper-pagination-bullet:first-of-type {
    margin-left: 0;
  }
  .blog-page-slider::before {
    width: 80%;
    height: 249px;
  }
  .blog-page-wrapper {
    margin-bottom: 32px;
    background-color: #ebebeb;
    padding-bottom: 32px;
  }
  .blog-page-wrapper .container {
    padding: 0;
  }
  .blog-page-slider {
    padding: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .blog-page-slide {
    flex-direction: column;
    gap: 16px;
  }
  .blog-page-slide .title {
    font-size: 28px;
  }
  .blog-page-slide .desc {
    max-width: unset;
    width: 100%;
    padding: 0 8px;
  }
  .blog-page-slide .text {
    margin-bottom: 32px;
  }
  .blog-page-slide .img {
    max-width: unset;
    width: 100%;
    height: 225px;
    max-height: unset;
  }
  .blog-posts-wrapper {
    margin-bottom: 84px;
  }
  .load-more {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .blog-posts {
    grid-template-columns: 1fr;
  }
  .swiper-slide {
    min-width: 140px;
  }
  .cat-title {
    text-shadow: 1px 1px 2px white;
  }
}

/* blog inner page */
.blog-inner .main-img {
  margin-bottom: 58px;
}
.blog-inner .main-img img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
}
.blog-inner .wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 164px;
  gap: 55px;
}
.blog-inner .cards {
  max-width: 409px;
  flex-shrink: 0;
}
.blog-inner .desc {
  max-width: 644px;
}
.blog-inner .desc .title {
  color: var(--text);
  font-size: 36px;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 750;
  line-height: 128%;
  font-feature-settings: "case" on;
}
.blog-inner .desc .date {
  color: #000;
  font-size: 14px;
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  display: block;
  margin-bottom: 24px;
  opacity: 0.5;
}
.blog-inner .desc .text p {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 24px;
}
.blog-inner .cards .cards-title {
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 26px;
}
.blog-inner .blog-card {
  margin-bottom: 16px;
}
.blog-inner .blog-card-text .title {
  font-size: 16px;
}
@media (max-width: 768px) {
  .blog-inner .wrapper {
    flex-direction: column;
    margin-bottom: 72px;
  }
  .blog-inner .cards {
    max-width: unset;
  }
  .blog-inner .desc {
    max-width: unset;
  }
  .blog-inner .main-img {
    margin-bottom: 16px;
  }
  .blog-inner .main-img .container {
    padding: 0;
  }
  .blog-inner .main-img img {
    height: 249px;
    border-radius: 0;
  }
  .blog-inner .desc .title {
    font-size: 28px;
  }
}

/* contact */
.contact-page .map {
  width: 57%;
  aspect-ratio: 1/1;
}
.contact-page .wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.contact-page .title {
  color: var(--text);
  font-size: 36px;
  font-style: normal;
  font-weight: 750;
  line-height: 128%;
  font-feature-settings: "case" on;
  margin-bottom: 32px;
}
.contact-page iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0px 1px 11px 0px rgba(140, 140, 140, 0.25);
}
.contact-page .links {
  max-width: 409px;
  width: 33%;
}
.contact-page .row {
  padding: 4px 6px;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-right: 18px;
}
.contact-page .link-b,
.contact-page .copy {
  display: flex;
  align-items: center;
  padding: 0;
}
.contact-page .link-b {
  color: #000;
  font-size: 16px;
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-page .copy:hover {
  color: #000;
}
.contact-page .copy:hover img {
  filter: invert(1);
}
.contact-page .link-b .img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.contact-page .link-b .img.tel {
  background: rgba(47, 128, 237, 0.3);
}
.contact-page .link-b .img.mail {
  background: rgba(111, 207, 151, 0.4);
}
.contact-page .copy {
  gap: 6px;
  color: #aaa;
  font-size: 13px;
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact-page .wrapper {
    flex-direction: column;
  }
  .contact-page .title {
    margin-bottom: 16px;
  }
  .contact-page .map {
    width: 100%;
    height: 381px;
    margin-top: 40px;
  }
  .contact-page .links {
    max-width: unset;
    width: 100%;
  }
}

/* faq */
.faq-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
}
.faq .title-block {
  max-width: 400px;
  width: 100%;
}
.faq .title-block .title {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 36px;
  font-style: normal;
  font-weight: 750;
  line-height: 128%;
  font-feature-settings: "case" on;
}
.faq .title-block p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 8px;
}
.faq .title-block .write-us {
  display: flex;
  align-items: center;
}
.faq .title-block .write-us span {
  color: var(--text);
  font-size: 14px;
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-left: 8px;
}
.faq .title-block .write-us a {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-decoration-line: underline;
  margin-left: 4px;
}
.faq .questions {
  max-width: 624px;
  width: 55%;
}
.accordion {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
}
.accordion:first-of-type {
  padding-top: 0;
}
.accordion .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion .head img {
  cursor: pointer;
  flex-shrink: 0;
  width: 18px;
}
.accordion .head h4 {
  color: var(--text);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.accordion.active .body {
  margin-top: 24px;
  height: auto;
}
.accordion .body {
  height: 0;
  overflow: hidden;
}
.accordion.active .head img {
  transform: rotate(180deg);
}
.accordion .body > * {
  color: #000;
  font-size: 14px;
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 1024px) {
  .faq-wrapper {
    flex-direction: column;
    margin-bottom: 112px;
  }
  .faq .title-block {
    width: 100%;
    max-width: unset;
    padding: 0 12px;
  }
  .faq .questions {
    max-width: unset;
    width: 100%;
    margin-top: 56px;
  }
  .accordion .head {
    padding: 0 14px;
  }
  .accordion .body {
    padding: 0 22px;
  }
  .accordion {
    padding: 16px 0;
  }
  .faq-container {
    padding: 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
  visibility: hidden;
  opacity: 0;
}
.modal.active {
  visibility: visible;
  opacity: 1;
  z-index: 200;
}
.modal-content {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 14px 0px rgba(91, 91, 91, 0.25);
  padding: 24px 32px;
}
.copy-modal .img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 48px;
  background: rgba(111, 207, 151, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 12px;
}

.copy-modal .img img {
  flex-shrink: 0;
}

.modal .msg {
  color: #606060;
  font-size: 13px;
  font-family: "Helvetica Neue LT GEO";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* terms page */
.terms {
  margin-bottom: 200px;
  position: relative;
}
.terms .page-title.mob {
  display: none;
}
.terms .page-title {
  color: var(--text);
  font-feature-settings: "case" on;
  font-size: 36px;
  font-style: normal;
  font-weight: 750;
  line-height: 128%;
  margin-bottom: 24px;
}

.terms-wrapper {
  display: flex;
  justify-content: space-between;
}
.terms-details {
  max-width: 624px;
}
.table-of-contents {
  max-width: 409px;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 50px;
}
.table-of-contents h6 {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.table-of-contents ol {
  padding-left: 20px;
  padding-top: 17px;
  margin-top: 17px;
  margin-bottom: 17px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.table-of-contents li {
  margin-bottom: 17px;
}
.table-of-contents li a {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.table-of-contents .back-to-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.table-of-contents .back-to-top img {
  transform: rotate(-90deg);
}

.terms-details p {
  color: #000;
  margin-bottom: 24px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.terms-details a {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-decoration-line: underline;
}
.terms-div {
  margin: 40px 0;
  scroll-padding-top: 20px;
}

.terms-details .title {
  color: #000;
  margin-bottom: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.terms-details li {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  font-family: "Helvetica Neue LT GEO";
  margin-bottom: 24px;
}
.terms-details li strong {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  font-family: "Helvetica Neue LT GEO";
  line-height: 160%;
}

.terms-details ul {
  list-style-type: disc;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .terms-wrapper {
    flex-direction: column;
  }
  .terms-details {
    max-width: unset;
  }
  .table-of-contents {
    max-width: unset;
    position: static;
    order: -1;
    margin-bottom: 32px;
  }
  .terms .page-title.desk {
    display: none;
  }
  .terms .page-title.mob {
    display: block;
    order: -1;
    margin-bottom: 16px;
  }
  .terms {
    margin-bottom: 105px;
  }
}

/* sign modals */
.sign-modal-block .modal-content {
  width: 401px;
  padding: 24px;
  position: relative;
}

.sign-modal-block .tab-names {
  border-radius: 40px;
  background: #f1f1f1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  padding: 4px;
  margin-bottom: 24px;
}
.sign-modal-block .tab-names a {
  padding: 10px;
  color: var(--text);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
}
.sign-modal-block .tab-names .active {
  border-radius: 40px;
  border: 1px solid var(--primary);
  background: rgba(248, 220, 198, 0.58);
  color: var(--primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.sign-modal-block .modal-content p {
  text-align: center;
  padding: 30px 0px 20px;
}

div.subusers-wrapper span.text {
  padding: 10px;
  display: block;
  background: #59fb76;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
}

.delete-subuser-modal {
}
.delete-subuser-modal .link-bg-primary {
  margin-right: 10px;
}
.delete-subuser-modal .modal-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.sign-modal-block .close-modal,
.delete-subuser-modal div.close-modal {
  position: absolute;
  right: -16px;
  top: -16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(73, 73, 73, 0.25);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sign-modal-block .close-modal:hover,
.delete-subuser-modal div.close-modal:hover {
  background: #e7e7e7;
}

.sign-modal-block .close-modal img {
  width: 50%;
  flex-shrink: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.form-row label,
.form-row .label {
  color: var(--text);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  margin-bottom: 8px;
}
.form-row input {
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  color: rgba(64, 64, 64, 0.5);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  outline: none;
}

.form-row.password {
  position: relative;
}
.form-row.password img,
.form-row.password svg.img {
  position: absolute;
  right: 14px;
  top: 40px;
  cursor: pointer;
}

.form-btn {
  display: block;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  background: var(--primary);
  color: #fff;
  font-family: "Helvetica Neue LT GEO";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  padding: 15px;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 24px;
}

.forgot {
  display: block;
  text-align: right;
  color: var(--text);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}

.line {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #9e9e9e;
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  gap: 23px;
  margin-bottom: 24px;
}
.line::before,
.line::after {
  content: "";
  width: 50%;
  height: 1px;
  background: #dfdfdf;
}

.sign-in-option {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: "Helvetica Neue LT GEO";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  margin-bottom: 8px;
  gap: 12px;
}

.tab {
  display: none;
}
.tab.active {
  display: block;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.divider {
  width: 59px;
  height: 3px;
  border-radius: 10px;
  background: #ededed;
  position: relative;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #e4e4e4;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  opacity: 0.8;
}
.select-role {
  margin-bottom: 16px;
}
.select-role p {
  color: var(--text);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  opacity: 0.8;
  margin-bottom: 24px;
}
.select-role label {
  display: block;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  background: #f4f4f4;
  color: var(--text);
  text-align: center;
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  padding: 15px;
  margin-bottom: 8px;
  cursor: pointer;
}
.select-role label:has(input:checked) {
  background: #b7f9b9;
}
.select-role input {
  display: none;
}
.select-role button {
  margin-top: 85px;
}

.hidden {
  display: none !important;
}
.visible {
  display: block;
}
.step.active {
  background-color: #27ae60;
  background-image: url("../img/icons/check.svg");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  border-color: #27ae60;
}
.divider.active::before {
  content: "";
  background-color: #27ae60;
  width: 70%;
  height: 3px;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.divider.active.full::before {
  width: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.form-tab {
  display: none;
}
.form-tab.active {
  display: block;
}
.standard-hours {
  cursor: pointer;
}
.order-hours .text {
  color: rgba(64, 64, 64, 0.5);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.order-hours .standard div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.order-hours .standard div label {
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
  width: 100%;
}
.order-hours .hour-selects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 8px;
}

.order-hours .nice-select.small {
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  height: 48px;
  line-height: 46px;
  color: rgba(64, 64, 64, 0.9);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.order-hours .nice-select.open .list {
  width: 100%;
  max-height: 200px;
  overflow-y: scroll;
}

.form-row textarea {
  outline: none;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  resize: none;
  padding: 15px;
  color: rgba(64, 64, 64, 0.5);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 130px;
  line-height: 128%;
}

.sign-up-success p {
  margin-top: 24px;
  color: var(--text);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 105px;
  line-height: 128%;
}

.success {
  margin: auto;
  width: 112px;
  height: 112px;
  background-color: rgba(111, 207, 151, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign .success {
  margin-top: 62px;
}

.success img {
  width: 40px;
}
#iuridical-sign-up .form-tab[data-id="1"] {
  margin-bottom: 50px;
}
#iuridical-sign-up .form-tab[data-id="3"] {
  margin-bottom: 50px;
}

#iuridical-sign-up .form-btn {
  margin-bottom: 0;
}
.form-row input.err {
  border-color: var(--err);
}
.err-message {
  display: none;

  color: var(--err);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.sign .err-message {
  margin-bottom: 24px;
  margin-top: 16px;
}
.sign .form-row .err-message {
  margin-bottom: 0px;
  margin-top: 5px;
}
.err-message.active {
  display: block;
}
.forgot-password p {
  color: var(--text);
  margin-bottom: 72px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.back-to-sign {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 14px;
  border-radius: 40px;
  background: #f1f1f1;
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  cursor: pointer;
}
.back-to-sign img {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

.forgot-password.modal .form-btn,
.enter-new-password.modal .form-btn,
#individual-sign-up .form-btn {
  margin-bottom: 0;
}
.enter-new-password.modal .err-message {
  margin-top: 8px;
}
.success-message-after-password-change .success {
  margin-top: 24px;
}
.success-message-after-password-change p {
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 90px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
@media (max-width: 768px) {
  .sign-modal-block .modal-content {
    max-width: 100%;
    height: 100%;
  }
  .sign-modal-block .close-modal {
    /* display: none; */
    right: 0;
  }
  .sign-modal-block.modal.active {
    padding-top: 5vh;
  }

  .order-hours .nice-select.open .list {
    top: unset;
    bottom: 100%;
  }
}

/* product page */
.similar-products {
  margin-bottom: 140px;
  margin-top: 56px;
}
.similar-products .section-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.product-main-info {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 40px;
  max-width: 100%;
  margin-bottom: 32px;
}

.product-slider {
  width: 100%;
  max-width: 517px;
}
.product-page-slide {
  border-radius: 10px;
  background-color: white;
  aspect-ratio: 1/1;
  margin-bottom: 8px;
  max-width: 517px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-page-slide img {
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  max-width: 517px;
  max-height: 517px;
}
.product-page-thumb-slide {
  height: 81px;
  border-radius: 6px;
}
.product-page-thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
  color: var(--primary);
  font-size: 12px;
}
.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
  width: 32px;
  height: 32px;
}
.product-thumbs-slider {
  position: relative;
}
.product-thumbs-slider .swiper-button-next,
.product-thumbs-slider .swiper-rtl .swiper-button-prev {
  right: -15px;
  top: 55%;
}
.product-thumbs-slider .swiper-button-prev,
.product-thumbs-slider .swiper-rtl .swiper-button-next {
  left: -15px;
  top: 55%;
}
.product-page .prod-top {
  margin-top: 8px;
  margin-bottom: 16px;
}
.product-page .prod-top .title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.product-page .add-to-fav {
  position: static;
}
.product-page .prod-top .add-to-fav {
  display: none;
}
.product-page .name {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.product-information .det {
  display: grid;
  grid-template-columns: 65px auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-information .det a {
  display: flex;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.product-information .det a img {
  height: 18px;
  flex-shrink: 0;
}
.product-information .info-bg {
  border-radius: 10px;
  background: #fff;
  padding: 9px 10px;
  width: fit-content;
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: flex;
}
.product-information .available-status {
  margin-bottom: 8px;
}
.product-information .available-status img {
  margin-left: 6px;
  width: 14px;
}
.color-options {
  margin-top: 16px;
  margin-bottom: 16px;
}
.color-options .name {
  margin-bottom: 8px;
  display: block;
}
.color-options input {
  display: none;
}
.color-options label {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 0.5px solid #e4e4e4;
  border-radius: 50%;
  padding: 3px;
  position: relative;
  background-color: white;
  cursor: pointer;
}
.color-options label:has(input:checked) {
  background-color: #eaeaea;
  border-color: var(--primary);
}
.color-options label span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
}
.no-color {
  display: flex;
  background-color: white;
  cursor: not-allowed;
  margin-right: 8px;
  margin-left: 8px;
}
.no-color::after {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: transparent;
}

.product-information .prod-price {
  flex-direction: column;
  margin-top: 8px;
  align-items: start;
  gap: 2px;
}
.product-information .old-price {
  color: #464646;
  opacity: 0.5;
  font-size: 16px;
}
.product-information .new-price {
  font-size: 24px;
}

.product-additional-info {
  border-radius: 10px;
  max-width: 516px;
  width: 100%;
  padding: 20px;
  background: #fff;
}
.product-additional-info p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 160%;
}
.product-additional-info p:last-child {
  margin-bottom: 0;
}
.product-additional-info h6 {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 16px;
}
.product-actions .add-to-fav {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
  gap: 10px;
  color: #000;
  font-size: 14px;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.product-actions .add-to-fav.add-to-fav-inner svg {
  flex-shrink: 0;
}
.product-actions .add-to-fav.add-to-fav-inner.added svg path {
  fill: var(--primary);
  stroke: var(--primary);
}
.product-actions .add-to-fav.add-to-fav-inner .added-to-fav {
  display: none;
}
.product-actions .add-to-fav.add-to-fav-inner.added .added-to-fav {
  display: block;
}
.product-actions .add-to-fav.add-to-fav-inner .not-added-to-fav {
  display: block;
}
.product-actions .add-to-fav.add-to-fav-inner.added .not-added-to-fav {
  display: none;
}
.add-to-cart-block {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 22px 0px rgba(178, 178, 178, 0.25);
}
.add-to-cart-block .quantity,
.add-to-cart-block .total-price {
  padding: 16px;
  border-bottom: 1px solid #f6f6f6;
}
.add-to-cart-block .quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.add-to-cart-block .total-price .name {
  margin-bottom: 8px;
  display: block;
}
.add-to-cart-block .total-price .new-price {
  font-size: 24px;
}
.add-to-cart-block .quantity .prod-q {
  width: -webkit-fill-available;
  justify-content: space-between;
}
.add-to-cart-block .quantity .prod-q img {
  width: 14px;
}
.add-to-cart-block .add-to-cart-actions {
  padding: 16px;
}
.add-to-cart-actions .add-to-cart {
  width: 100%;
  gap: 10px;
  padding: 12px;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 8px;
}
.add-to-cart-actions .add-to-cart .already-in-cart {
  border-radius: 50%;
  background: #fff;
  aspect-ratio: 1/1;
  padding: 4px;
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  min-width: 22px;
  flex-shrink: 0;
  justify-content: center;
}
.add-to-cart-actions .quick-buy {
  width: 100%;
  padding: 12px;
  border-radius: 40px;
  background: #eee;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .product-main-info {
    grid-template-columns: 1fr;
    margin-top: 12px;
    gap: 16px;
  }
  .product-actions .add-to-fav {
    display: none;
  }
  .add-to-cart-block .quantity .prod-q {
    max-width: 50%;
  }
  .similar-products {
    overflow: hidden;
    margin-bottom: 48px;
    margin-top: 48px;
  }
  .similar-products .prod-list::-webkit-scrollbar {
    display: none;
  }
  .similar-products .prod-list {
    overflow-x: scroll;
    grid-template-columns: repeat(5, minmax(237px, 1fr));
  }
  .product-page .breadcrumbs {
    display: none;
  }
  .product-thumbs-slider {
    display: none;
  }
  .product-slider {
    max-width: calc(100vw - 12px);
  }
  .product-information .flag {
    display: none;
  }
  .product-page .prod-top {
    margin-top: 0;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    display: flex;
  }
  .product-information .info-bg {
    display: inline-flex;
  }
  .product-page .prod-top .add-to-fav {
    display: flex;
    flex-shrink: 0;
    border-radius: 10.909px;
    background: #fff;
    box-shadow: 0px 1px 13px 0px rgba(160, 160, 160, 0.25);
    width: 48px;
    height: 48px;
  }
  .product-page .prod-top .add-to-fav.added svg path {
    fill: var(--primary);
    stroke: var(--primary);
  }
  .product-page .prod-top .add-to-fav svg {
    flex-shrink: 0;
  }
  .product-page .prod-top .title {
    font-size: 20px;
  }
  .product-information .color-options {
    margin-bottom: 12px;
  }
  .product-information .prod-price {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .product-information,
  .product-actions {
    max-width: calc(100% - 12px);
  }
}
/* profile */
.profile {
  max-width: 1920px;
  margin: auto;
  margin-bottom: 150px;
}
/* .profile-container {
	max-width: calc(1510px + 12px + 12px);
	width: 100%;
	margin: 0 auto;
	padding: 0 12px;
} */

.profile-wrapper {
  display: grid;
  grid-template-columns: 302px auto;
  gap: 30px;
  margin-top: 24px;
}

.profile-title h2 {
  color: var(--text);
  font-feature-settings: "case" on;
  font-size: 24px;
  font-style: normal;
  font-weight: 750;
  line-height: 128%;
  display: inline-block;
}
.profile-title span {
  color: var(--text);
  opacity: 0.8;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  display: inline-block;
  margin-left: 4px;
}
.profile-tabs {
  height: auto;
}
.profile-tabs > div {
  border-radius: 8px;
  background: #fdfdfd;
  padding: 16px;
  margin-bottom: 8px;
}

.profile-tabs .profile {
  display: flex;
  gap: 12px;
  align-items: center;
}
.profile-tabs .profile img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.profile-tabs .profile .name {
  color: var(--text);
  font-feature-settings: "case" on;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
}
.profile-tabs .profile-info a {
  color: var(--text);
  font-feature-settings: "case" on;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  opacity: 0.7;
}

.profile-tab-name {
  position: relative;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: 0s;
}
.profile-tab-name:hover {
  opacity: 1;
  color: #f47b20;
  transition: 0s;
}
.profile-tab-name:hover img {
  transition: 0s;
  filter: invert(62%) sepia(39%) saturate(4500%) hue-rotate(347deg)
    brightness(99%) contrast(94%);
}
.profile-tab-name img,
.profile-tab-name.logout img {
  flex-shrink: 0;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(100%)
    contrast(100%);
}
.profile-tab-name.active {
  opacity: 1;
  color: #f47b20;
}
.profile-tab-name.active img {
  filter: invert(62%) sepia(39%) saturate(4500%) hue-rotate(347deg)
    brightness(99%) contrast(94%);
}

.see-order-info:hover img {
  transition: 0s;
  filter: invert(62%) sepia(39%) saturate(4500%) hue-rotate(347deg)
    brightness(99%) contrast(94%);
}

.profile-tab-name:last-child {
  margin-bottom: 0;
}

.profile-tab-name.logout {
  opacity: 1;
  color: var(--primary);
}

.profile-tab-name.logout:hover {
  color: #f47b20;
}
.profile-tab-name.logout img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(100%)
    contrast(100%);
}
.profile-tab-name.logout:hover img {
  filter: invert(62%) sepia(39%) saturate(4500%) hue-rotate(347deg)
    brightness(99%) contrast(94%);
}
.profile-tab-name.logout button {
  background-color: transparent;
}

.profile .tab-title {
  display: flex;
  margin-bottom: 16px;
  gap: 4px;
}

.profile .tab-title h3 {
  color: var(--text);
  font-feature-settings: "case" on;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
}

.profile .tab-title span {
  color: var(--text);
  font-feature-settings: "case" on;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  opacity: 0.3;
}
.fav-prod-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: calc(463px + 463px + 8px);
}
.fav-prod-card {
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr 0.4fr;
  grid-template-areas:
    "img name name heart"
    "img details details details"
    "img price q cart";
  column-gap: 12px;
  padding: 16px;
  padding-left: 0;
}

.fav-prod-card .prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  grid-area: img;
  border-radius: 10px;
  max-height: 230px;
}
.fav-prod-card .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  max-height: 190px;
}

.fav-prod-card .details {
  grid-area: details;
}
.fav-prod-card .add-to-cart {
  padding: 12px 16px;
  width: 100%;
  height: unset;
  grid-area: cart;
}
.fav-prod-card .add-to-cart img {
  width: 20px;
}
.fav-prod-card .prod-q {
  margin-left: auto;
  grid-area: q;
}
.fav-prod-card .available-status {
  margin-top: 12px;
  margin-bottom: 10px;
}
.fav-prod-card .top {
  display: flex;
  margin-bottom: 4px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  grid-area: name;
}
.fav-prod-card .add-to-fav {
  position: static;
  flex-shrink: 0;
  background-color: rgba(235, 87, 87, 0.8);
  grid-area: heart;
  margin-left: auto;
}
.fav-prod-card .prod-price {
  grid-area: price;
}
.fav-prod-card .top .add-to-fav img {
  filter: invert(21%) sepia(100%) saturate(7414%) hue-rotate(359deg)
    brightness(94%) contrast(60%);
}
.fav-prod-card .top h5 {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.available-status {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.available-status.is-available {
  color: #219653;
}

.available-status.is-not-available {
  color: red;
}

.fav-prod-card .model {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.4;
  margin-bottom: 12px;
}

.profile-tab {
  display: none;
}
.profile-tab.active {
  display: block;
}

.order-card {
  margin-bottom: 4px;
}
.order-title {
  display: grid;
  padding: 16px;
  grid-template-columns: 1fr 1fr 6fr 0.5fr;
  border-radius: 8px;
  background: #fdfdfd;
  align-items: center;
  gap: 5px;
}
.order-title h4,
.subuser-title h4 {
  color: var(--text);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
}
.order-title h4:not(:first-child, :last-child) {
  border-left: 1px solid #eee;
  padding-left: 12px;
}
.order-card.active .order-title.mobile h4:not(:first-child, :nth-child(2)) {
  border-left: 1px solid #eee;
  padding-left: 12px;
}
.order-card.active .order-title.mobile h4:first-child,
.order-card.active .order-title.mobile h4:nth-child(2) {
  border: none;
  padding-left: 0;
}

.orders-with-tabs .order-title,
[data-tab="subusers-orders"] .order-title {
  grid-template-columns: 0.8fr 0.8fr 1.8fr 3fr 0.5fr 0.2fr;
}
.order-title .price {
  gap: 4px;
  position: relative;
}
.orders-with-tabs .order-card.active .order-title.mobile,
[data-tab="subusers-orders"] .order-card.active .order-title.mobile {
  /*grid-template-columns: 38px 0.5fr 0.5fr auto 2fr;*/
  grid-template-columns: 38px 0.5fr 0.5fr auto 1fr 1fr 1fr;
}

.orders-with-tabs .order-card.active .order-title.mobile > * {
    font-size: 14px !important;
}

.order-title .price .memo {
  display: none;
}
.order-title .price img {
  cursor: pointer;
}
.see-order-info {
  /*margin-left: auto;*/
  transform: rotate(-90deg);
  cursor: pointer;
  
  display: grid;
  place-items: center;
}
.see-order-info img {
  width: 16px;
  opacity: 0.5;
  flex-shrink: 0;
  pointer-events: none;
}

.order-details {
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.order-card.active .order-details {
  opacity: 1;
  height: auto;
  visibility: visible;
}

.orders-wrapper:has(.order-card.active) .order-card:not(.active) {
  display: none;
}

.order-card.active .see-order-info {
  order: -1;
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fdfdfd;
  width: 38px;
  height: 38px;
}
.order-card.active .see-order-info img {
  opacity: 1;
  /*transform: rotate(90deg);*/
}
.order-title.mobile {
  display: none;
}
.order-card.active .order-title {
  display: none;
}
.order-item {
  padding: 16px;
  background: #fdfdfd;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #fdfdfd;
}

.order-card.active .order-title.mobile {
  display: grid;
  grid-template-columns: 0.3fr 1fr 1fr 6fr;
  background-color: transparent;
  margin-bottom: 16px;
  padding: 0;
}

.order-card.active .order-title.mobile h4 {
  font-size: 16px;
  font-weight: 700;
}

.order-card.active .order-item {
  margin-bottom: 8px;
}
.order-item .top {
  display: grid;
  margin-bottom: 8px;
  gap: 5px;
  grid-template-columns: 102px auto;
}
.order-item .top img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: contain;
}
.order-item .comment {
  display: grid;
  grid-template-columns: 102px auto;
  grid-template-areas: ". content";
}
.order-item .comment .content {
  grid-area: content;
}
.order-item .top .info {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.order-item .top .info .title {
  color: var(--black);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.order-item .top .info .col {
  /* margin-top: 15px; */
}
.order-item .top .info .col .p {
  color: var(--black);
  font-family: "Helvetica Neue LT GEO";
  margin-bottom: 4px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  opacity: 0.5;
}
.order-item .top .info .col .v,
.order-item .top .info .col .v.price span {
  color: var(--text);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}

.order-item .top .info .col .v.price span {
  display: block;
}

.order-item .top .info .col .bold {
  font-weight: 700 !important;
}
.order-item .top .info .col .v.price span.old-price {
  font-weight: 400;
}
.order-item .top .info .col.color .v span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.order-item .comment .content h6 {
  color: var(--black);
  margin-bottom: 4px;
  font-size: 13px;
  opacity: 0.5;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.order-item .comment .content p {
  color: var(--black);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.profile-form form,
[data-tab="edit-subuser"] form {
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  padding: 16px;
  max-width: 517px;
  position: relative;
}
.my-info-block form .btns,
[data-tab="edit-subuser"] .btns {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  align-items: center;
}
.profile-form label {
  font-size: 13px;
  margin-bottom: 0px;
  color: #404040;
}
.profile-form input {
  border-radius: 6px;
  background: #fff;
  border: none;
  color: #404040;
  padding: 9px 13px;
  outline: none;
  caret-color: var(--primary);
}
.profile-form input:read-only {
  background-color: transparent;
  padding: 0;
}

.profile-form .form-row {
  margin-bottom: 16px;
  max-width: 300px;
}
.edit-btn,
.edit-btn span {
  border-radius: 7px;
  background: #fff;
  padding: 10px 12px;
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.save-btn,
.save-btn span {
  display: flex;
  border-radius: 40px;
  background: var(--primary);
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 8px;
}
.my-info-block .x,
[data-tab="edit-subuser"] .x {
  background-color: transparent;
  margin-left: 16px;
}
.security-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.security-wrapper .form-row {
  margin-bottom: 0;
}

.password-modal .tab-names {
  grid-template-columns: 1fr;
}
.password-modal .form-btn.next {
  margin-top: 100px;
}
.no-addresses p {
  color: #000;
  margin-bottom: 16px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  opacity: 0.4;
}
.no-addresses button {
  border-radius: 8px;
  border: 1px dashed #d1d1d1;
  padding: 17px;
  width: 100%;
  gap: 12px;
  opacity: 0.5;
  color: #000;
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addresses-wrapper:has(.address-card) .no-addresses p {
  display: none;
}
.address-card form {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: #fdfdfd;
  margin-top: 8px;
  gap: 3px;
}
.address-card form .link {
  text-align: center;
}
.address-card {
  margin-bottom: 16px;
}
.address-card form .edit-btn,
.address-card form .edit-btn span,
.address-card form .save-btn span {
  padding: 0;
}
.address-card form .save-btn,
.address-card form .edit-btn {
  padding: 6px 20px;
}

.address-card form {
  padding-top: 10px;
  padding-bottom: 10px;
}
.address-card input {
  background-color: transparent;
  padding: 0;
  width: 80%;
  border-radius: 0;
  margin-right: auto;
}
.add-address-modal .tab-names {
  grid-template-columns: 1fr;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}
.add-address-modal .tab-names a {
  text-align: left;
  pointer-events: none;
  padding-left: 0;
  /* margin-bottom: 16px; */
}

.city-select {
  height: 450px;
}
.select2-dropdown {
  width: 100% !important;
  min-width: 353px;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 400px;
}

.city-select .select2-container {
  left: 0 !important;
  width: 100% !important;
  /* display: none; */
  opacity: 0;
}
.select2-search--dropdown {
  margin-top: -10px;
}
.select2-container--default .select2-selection--single {
  border: none;
  /* display: none; */
}
.select2-container--open .select2-dropdown--below {
  border: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 50px;
  border: 1px solid #eaeaea;
  margin-bottom: 16px;
  padding: 12px;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f0f0f0;
  color: var(--text);
}
.select2-results__option {
  padding: 12px 24px;
  color: var(--text);
  font-family: "Helvetica Neue LT GEO";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.order-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 20px;
}
.order-page-aside {
  position: static;
  visibility: visible;
  opacity: 1;
  z-index: initial;
}
.order-page-aside .modal-content {
  width: 100%;

  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(192, 192, 192, 0.3);
}
.place-order {
  margin-bottom: 100px;
}
.order-page-aside .nice-select .list {
  width: 100%;
}
.order-page-aside .nice-select {
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  height: 44px;
}
.order-page-aside .nice-select .current {
  color: rgba(64, 64, 64, 0.5);
  font-family: "Helvetica Neue LT GEO";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.tab-switch {
  padding-bottom: 7px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 16px;
}
.tab-switch .option {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  background-color: transparent;
}
.tab-switch .option.active {
  color: var(--primary) !important;
  font-weight: 700;
}

.tab-switch .option:not(:last-of-type) {
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid #e6e6e6;
}
.form-row.workhours .d-flex {
  justify-content: start;
  gap: 5px;
}
.order-title .price:hover .memo {
  display: block;
  position: absolute;
  top: -90px;
  right: -300px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--Red, #eb5757);
  background: #fff;
  box-shadow: 0px 4px 14px 0px rgba(113, 113, 113, 0.11);
  width: 300px;
  z-index: 2;
}
#iuridical-profile [data-tab-name="history"] .orders-wrapper {
  display: none;
}
#iuridical-profile [data-tab-name="history"] .orders-wrapper.active {
  display: block;
}
.subuser-title {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.8fr 2fr 42px 28px;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  gap: 16px;
}
[data-tab-name="sub-users-orders"] .order-title {
  grid-template-columns: 0.2fr 1fr 0.6fr 1.5fr 0.7fr 1fr 1fr 0.2fr;
}
[data-tab-name="sub-users-orders"] .order-card.active .order-title.mobile {
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
}
.subuser-title h4:nth-child(1),
.subuser-title h4:nth-child(2),
.subuser-title h4:nth-child(3) {
  padding-right: 5px;
  border-right: 1px solid #d7d7d7;
}
.subuser-title .see-subuser-info {
  border-right: 1px solid #d7d7d7;
}
.subuser-title .see-subuser-info img {
  transform: rotate(-90deg);
}
.subuser-title .dots img,
.subuser-title .see-subuser-info img {
  flex-shrink: 0;
  width: 16px;
  opacity: 0.7;
}
.subuser-title .dots,
.subuser-title .see-subuser-info {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#iuridical-profile [data-tab-name="sub-users"] .add-new-sub-user {
  border-radius: 40px;
  background: var(--primary);
  color: #fff;
  font-family: "Helvetica Neue LT GEO";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#iuridical-profile [data-tab-name="sub-users"] .add-new-sub-user:hover {
  background: #e3731e;
}
#iuridical-profile [data-tab-name="sub-users"] .add-new-sub-user span {
  font-family: "Helvetica Neue LT GEO";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
  opacity: 1;
}
#iuridical-profile [data-tab-name="sub-users"] .add-new-sub-user img {
  filter: invert(1);
}
#iuridical-profile [data-tab-name="sub-users"] .tab-title {
  align-items: center;
  justify-content: space-between;
}
.subuser-title > * {
  width: 100% !important;
}
.subuser-card {
  margin-bottom: 4px;
}

.subuser-card.active .subuser-title {
  display: none;
}
.subuser-card.active .subuser-title-mobile h4.name,
.subuser-card.active .subuser-title-mobile .see-subuser-info {
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  border: none;
}
.subuser-card.active .subuser-title-mobile .see-subuser-info img {
  transform: rotate(90deg);
}
.subuser-card .subuser-title-mobile {
  display: none;
}
.subuser-card.active .subuser-title-mobile {
  display: grid;
  grid-template-columns: 52px auto;
  background-color: transparent;
  gap: 8px;
  padding: 0;
  margin-bottom: 15px;
}

.subusers-wrapper:has(.subuser-card.active) .subuser-card:not(.active) {
  display: none;
}
.subuser-card .subuser-details {
  display: none;
}
.subuser-card.active .subuser-details {
  display: block;
}

.add-subuser-modal .tab-names {
  grid-template-columns: 1fr;
  background-color: transparent;
  margin-bottom: 12px;
}
.sign-modal-block.add-subuser-modal .tab-names .active {
  background-color: transparent;
  padding: 0;
  border: none;
  color: var(--text);
  text-align: left;
  font-feature-settings: "case" on;
  font-family: "Helvetica Neue LT GEO";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
}
.add-subuser-modal .steps {
  justify-content: space-between;
  margin-bottom: 16px;
}
.add-subuser-modal .divider {
  /* width: 273px; */
}

.add-subuser-modal .divider.active::before {
  width: 50%;
}
.add-subuser-modal .divider.active.full::before {
  width: 100%;
}
.add-subuser-modal .success {
  margin-top: 80px;
}
.subcategory-cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(313px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.subcategory-card {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.subcategory-card a {
  padding: 22px;
  width: 100%;
}
.subcategory-card img {
  width: auto;
  height: 134px;
  object-fit: contain;
  flex-shrink: 0;
}
.subcategory-card h6 {
  color: var(--text);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
}
.subcategory-page {
  margin-bottom: 100px;
}
.subcategory-page .see-more {
  margin: auto;
}
.subcategories-list {
  padding: 0 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(181, 181, 181, 0.25);
}
.subcategories-list .hide-all,
.cat-page-cubcat .hide-all {
  display: none;
}
.subcategories-list.active .hide-all,
.cat-page-cubcat.active .hide-all {
  display: block;
}
.subcategories-list.active .desktop,
.cat-page-cubcat.active .desktop {
  display: block;
  margin-top: 10px;
}

.subcategories-list.active .desktop a {
  border-bottom: 1px solid rgba(217, 217, 217, 0.39);
  margin: 0;
  padding: 16px 0;
}
.subcategories-list.active .show-all,
.cat-page-cubcat.active .show-all {
  display: none;
}

.subcategories-list a {
  color: rgb(0 0 0 / 80%);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-top: 16px;
  display: block;
  transition: 0s all !important;
}

.subcategories-list a:hover,
.subcategory-card:hover h6 {
  color: #ff6c00 !important;
  opacity: 1;
}
.subcategories-list a:last-child {
  padding-bottom: 16px;
}
.subcategories-list .mobile,
.cat-page-cubcat .mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
}
.subcategories-list .mobile {
  padding: 16px 0;
}
.subcategories-list .mobile h5,
.cat-page-cubcat .mobile h5 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.subcategories-list .mobile img,
.cat-page-cubcat .mobile img {
  flex-shrink: 0;
  cursor: pointer;
}
.cat-page-cubcat .mobile {
  border-radius: 10px;
  padding: 16px;
  margin-top: 8px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(181, 181, 181, 0.25);
}
.cat-page-cubcat.active .mobile {
  border-radius: 0;
}

.customSearchbox {
  display: none;
  border-radius: 7px;
  border: 1px solid #d3d3d3;
  padding: 0 14px;
  margin-bottom: 24px;
}
.subcategories-list.active .customSearchbox {
  margin-bottom: 10px;
}
.custom-search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-family: "Helvetica Neue LT GEO";
  line-height: 140%;
}
.custom-search-input {
  border: none;
  outline: none;
  width: 100%;
  padding: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-family: "Helvetica Neue LT GEO";
  line-height: 140%;
}
.brands-filter .mobile {
  display: flex;
}
.brands-filter .desktop {
  display: none;
}
.brands-filter.active .customSearchbox {
  display: flex;
}
.brands-filter.active {
  position: relative;
}
.brands-filter.active .desktop {
  /* position: absolute; */
  z-index: 5;
  left: 0;
  top: 50px;
}
.brands-filter.active .search-results-wrapper {
  max-height: 40vh;
  overflow-y: scroll;
}
.sub-user-order-status.approved {
  color: #219653;
}
.sub-user-order-status.declined {
  color: var(--red);
}
.sub-user-order-status.pending {
  color: #ffcf23;
}
.sub-user-order-status.modified {
  color: #ff8b2d;
}

@media (max-width: 1200px) {
  .fav-prod-card {
    grid-template-areas:
      "img name name"
      "img details details"
      "img price price"
      "q cart heart";
    grid-template-columns: 2.3fr 1.7fr 1fr;
  }

  .fav-prod-wrapper {
    grid-template-columns: 1fr;
  }
  .fav-prod-card .add-to-cart {
    width: fit-content;
    margin-left: auto;
    flex-shrink: 0;
    padding: 0;
    min-width: 52px;
    margin-top: 16px;
    height: 44px;
  }
  .fav-prod-card .prod-q {
    width: 100%;
    justify-content: space-between;
    width: 171px;
    margin-right: auto;
    margin-left: 28px;
    margin-top: 16px;
  }
  .fav-prod-card .add-to-fav {
    margin-left: 0;
    margin-right: auto;
    width: 52px;
    height: 44px;
    margin-top: 16px;
  }
}

@media (max-width: 1024px) {
  .subcategory-cards-list {
    gap: 9px;
  }
  .subcategories-list.active,
  .cat-page-cubcat.active,
  .brands-filter.active {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80vh;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    z-index: 2;
  }
  .cat-page-cubcat.active .customSearchbox,
  .subcategories-list.active .customSearchbox {
    display: flex;
  }
  .brands-filter.active .desktop {
    position: static;
  }
  .search-results-wrapper,
  .brands-filter.active .search-results-wrapper {
    overflow-y: scroll;
    max-height: 55vh;
  }
  .order-pg-wrapper {
    padding: 0;
  }
  .orders-list {
    padding: 0 16px;
  }
  .subcategories-list .mobile,
  .cat-page-cubcat .mobile {
    display: flex;
  }
  .cat-page-cubcat .desktop {
    box-shadow: unset;
    margin: 0;
  }
  .subcategories-list .desktop,
  .cat-page-cubcat .desktop {
    display: none;
  }
  .subcategory-page {
    margin-bottom: 72px;
  }
  .address-card form .save-btn,
  .address-card form .edit-btn {
    padding: 6px;
  }
  .subuser-title {
    grid-template-columns: 3fr 0.7fr 0.2fr;
    grid-template-areas:
      "name dots see-more"
      "address dots see-more"
      "tel dots see-more"
      "email dots see-more";
    gap: 0;
    padding: 0 16px;
  }
  .subuser-title h4 {
    border: none !important;
    padding: 14px 0;
    border-bottom: 1px solid #eee !important;
    border-right: 1px solid #eee !important;
  }
  .subuser-card.active .subuser-title-mobile {
    grid-template-areas: "see-more name";
  }
  .profile-form[data-tab="edit-subuser"] .btns {
    position: static;
    justify-content: end;
    margin-bottom: 16px;
  }
  .profile-form[data-tab="edit-subuser"] form {
    border: none;
    margin-top: 0;
    padding: 0;
  }
  .subuser-title .name {
    grid-area: name;
  }
  .subuser-title .add {
    grid-area: address;
  }
  .subuser-title .tel {
    grid-area: tel;
  }
  .subuser-title .email {
    grid-area: email;
    border-bottom: none !important;
  }
  .subuser-title .dots {
    grid-area: dots;
  }
  .subuser-title .see-subuser-info {
    grid-area: see-more;
    border: none;
  }

  #iuridical-profile [data-tab-name="sub-users"] .add-new-sub-user span {
    display: none;
  }
  .order-title .price:hover .memo {
    top: 0;
    right: unset;
    left: 0;
    max-width: 90%;
    width: fit-content;
  }
  .order-page-wrapper {
    grid-template-columns: 1fr;
  }
  .profile-wrapper {
    grid-template-columns: 1fr;
  }
  .select2-container {
    left: 24px !important;
  }
  .fav-prod-card .prod-q {
    width: 100%;
  }
  .fav-prod-card .prod-img img {
    height: 208px;
  }
  .order-item .top .info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .order-item .top .info .col {
    margin-top: 0;
  }
  .order-item .comment {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
  }
  .order-title,
  [data-tab-name="sub-users-orders"] .order-title {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  [data-tab-name="sub-users-orders"] .order-card.active .order-title.mobile {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  [data-tab-name="sub-users-orders"]
    .order-card.active
    .order-title.mobile
    h4.add {
    order: initial;
    grid-column: initial;
  }
  [data-tab-name="sub-users-orders"] .order-title h4,
  [data-tab-name="sub-users-orders"] .order-card.active .order-title.mobile h4 {
    padding: 0;
    border: none !important;
  }
  [data-tab-name="sub-users-orders"]
    .order-card.active
    .order-title.mobile
    .see-order-info {
    margin-left: 0;
  }
  [data-tab-name="sub-users-orders"] .see-order-info {
  }
  .orders-with-tabs .order-title,
  [data-tab="subusers-orders"] .order-title {
    grid-template-columns: 1fr 1fr 1fr 0.5fr;
    position: relative;
  }
  .order-title h4.add {
    order: 2;
    grid-column: 1/3;
    padding-left: 0 !important;
    border: none !important;
  }
  .order-title h4.date {
    padding-right: 16px;
    border-right: 1px solid #eee;
  }
  .order-title .price {
    position: static;
    padding-left: 0 !important;
    border: none !important;
  }
  #iuridical-profile .order-card.active .order-title.mobile {
    grid-template-columns: 40px min-content min-content;
  }
  #iuridical-profile .order-card.active .order-title.mobile h4.price {
    display: none;
  }
  #iuridical-profile .order-card.active .order-title.mobile h4.date {
    border-right: none;
    padding-right: 0;
  }
  .tab-switch {
    display: flex;
    flex-direction: column;
  }
  .tab-switch .option {
    padding: 15px 0;
    width: 100%;
    text-align: left;
  }

  .tab-switch .option:not(:last-of-type) {
    border: none;
    border-bottom: 1px solid #e6e6e6;
  }
  .see-order-info {
    transform: none;
    grid-row: 1/-1;
    grid-column: -2/-1;
  }
  .order-card.active .see-order-info {
    grid-row: unset;
    grid-column: unset;
  }
  .order-card.active .order-title.mobile {
    grid-template-columns: 40px min-content min-content;
  }
  .order-card.active .order-title.mobile h4.add {
    grid-column: 2/-1;
  }
  .order-card.active .order-title h4:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }
  .profile-form form {
    margin-top: 18px;
  }
  .my-info-block form .btns {
    top: -50px;
  }
  .edit-btn,
  .save-btn {
    padding: 10px 16px;
  }
  .security-wrapper .edit-btn {
    position: absolute;
    top: -50px;
    right: 0;
  }
  .address-card form button span {
    display: none;
  }
}

.cart-actions {
  border-radius: 8px;
  background: #fdfdfd;
  padding: 10px;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.cart-actions h6 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid #eee;
}
.cart-actions a:not(.link) {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-actions .link {
  border-radius: 49px;
  background: #eaeaea;
}

.cart-actions .link-bg-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.cart-btns {
  /* margin-left: auto; */
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
}
.cart-btns form {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
}
.cart-parent {
  position: relative;
  /* width: 127%; */
}
.cart-parent .left {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 0.7fr 0.8fr 1fr;
  gap: 8px;
  /* width: 79%; */
}
.cart-item .item-left {
  /* width: 79%; */
  background: #fdfdfd;
  border-radius: 8px;
}
.cart-item .left {
  width: 100%;
}
.cart-parent .right {
  position: absolute;
  top: 0;
  right: -256px;
  width: 246px;
  /* width: 20%;
	right: 0; */
}
.cart-top {
  margin-top: 8px;
}
.cart-top .left,
.cart-top .right {
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  padding: 9px 7px;
}
.cart-top .right {
    display: none;
}
.cart-items-list {
  margin-top: 8px;
}
.cart-top .right {
  text-align: center;
}
.cart-item .name {
  display: none;
}
.cart-item .img {
  gap: 12px;
  justify-content: start;
}
.cart-item .img img {
  width: 37%;
  aspect-ratio: 1/1;
  object-fit: contain;
  flex-shrink: 0;
}
.justify-start {
  justify-content: start;
}
.cart-item {
  margin-bottom: 8px;
}
.cart-item .left {
  align-items: center;
  padding: 16px 8px 8px;
}

.cart-item h4 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.cart-item .left .info h4,
.cart-item .right h4 {
  font-size: 13px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item .colors {
  gap: 8px;
}
.cart-item .left .info span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.cart-item .prod-price {
  flex-direction: column;
  gap: 0;
  justify-content: start;
  align-items: start;
}
.cart-item .new-price {
  font-size: 16px;
}
.cart-item .old-price {
  font-size: 14px;
  opacity: 1;
  color: var(--text);
}
.cart-item .prod-q {
  gap: 10px;
  width: fit-content;
  border: unset;
  border-radius: 0;
  flex-direction: column-reverse;
  padding: 0;
}
.cart-item-total .new-price {
  font-size: 18px;
}
.cart-item .prod-q .incr {
  background-color: var(--primary);
}
.cart-top h6 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.cart-item .prod-q .incr img {
  filter: invert(100);
}
.cart-item-total {
  justify-content: space-between;
}
.leave-comment input {
  width: 90%;
}
.leave-comment input,
.leave-comment input::placeholder {
  border: none;
  outline: none;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Helvetica Neue LT GEO";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.leave-comment form {
  padding: 12px 24px;
  gap: 10px;
  border-top: 1px solid #eee;
}
.leave-comment form button {
  background-color: transparent;
}
.cart-item .right img {
  max-width: 98px;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.cart-item .right {
  height: 100%;
  align-items: start;
  justify-content: start;
  border-radius: 8px;
  background: #fdfdfd;
  padding: 10px 5px 5px;
}
.cart-item .color-options {
  margin: 0;
}
.cart-item .color-options label {
  width: 16px;
  height: 16px;
}
.color-options label span {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cart-actions .print {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1800px) {
  .cart-parent .right {
    position: static;
  }
  .cart-parent {
    display: grid;
    /*grid-template-columns: 8fr 1fr;*/
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cart-parent .left {
    grid-template-columns: 1.5fr 0.5fr 0.4fr 0.25fr 0.5fr 0.5fr;
    gap: 8px;
    align-items: center;
  }
  .cart-top .right {
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
  }
  .cart-item .prod-q {
    width: unset;
  }
  .cart-item .left {
    width: 100%;
    position: relative;
  }
  .remove-cart-item {
    position: absolute;
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 1200px) {
  .cart-btns {
    margin-left: 0;
    margin-top: 16px;
  }
  .cart-item .name {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Helvetica Neue LT GEO";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 8px;
  }
  .cart-top {
    display: none;
  }
  .cart-item .prod-q button {
    width: 42px;
    height: 38px;
  }
  .cart-item .prod-q {
    justify-content: start;
    padding: 0;
    flex-direction: row-reverse;
    width: fit-content;
  }
  .cart-item {
    margin-bottom: 24px;
  }
  .cart-item .left {
    padding: 16px 0;
  }
  .cart-parent .right {
    position: static;
    width: 100%;
    padding: 10px;
    height: fit-content;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
  .cart-item .right .d-flex {
    align-items: center;
    justify-content: start;
    border-radius: 8px;
    background: #fdfdfd;
    padding: 10px;
  }
  .cart-item .right .name {
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    padding: 9px;
  }
  .cart-parent .left {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    grid-template-areas:
      "info info info"
      "color delivery price"
      "quantity quantity total";
    align-items: baseline;
  }
  .cart-item .quantity {
    grid-area: quantity;
    margin-top: 16px;
    border-top: 1px solid #eee;
    padding: 16px 5px 0 20px;
  }
  .cart-item .cart-item-total {
    grid-area: total;
    padding: 16px 20px 0 5px;
    margin-top: 16px;
    border-top: 1px solid #eee;
  }
  .cart-item .left > .price {
    grid-area: price;
    margin-top: 20px;
    padding: 0 20px 0 5px;
  }
  .cart-item .delivery-time {
    grid-area: delivery;
    margin-top: 20px;
    padding: 0 5px;
  }
  .cart-item .color-options {
    grid-area: color;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 5px;
  }
  .cart-item .img {
    grid-area: info;
    justify-content: start;
    padding: 0 16px;
    padding-right: 40px;
  }
  .cart-item .img img {
    width: 102px;
  }
  .cart-parent {
    grid-template-columns: 1fr;
  }
  .cart-item .info {
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .cart-actions {
    padding: 0;
    flex-direction: column;
    background-color: transparent;
    gap: 16px;
  }
  .cart-actions > * {
    width: 100%;
    justify-content: start;
  }
  .cart-actions h6 {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
  }
  .profile {
    margin-bottom: 70px;
  }
  .cart-actions h6:first-of-type {
    border-right: 1px solid #eee;
    width: calc(100% - 16px);
  }
  .cart-actions .inf {
    padding: 14px 20px;
    border-radius: 8px;
    background: #fdfdfd;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cart-actions .print {
    padding: 15px 20px;
    border-radius: 8px;
    background: #fdfdfd;
  }
  .cart-btns {
    margin: 0;
    gap: 8px;
    flex-direction: column;
  }
}
.mobile-menu-content {
  display: none;
}
.open-search-modal {
  display: none;
}
.open-search-modal img {
  padding-top: 5px;
}
header.active .burger span:nth-child(2) {
  transform: scale(0);
}
header.active .burger span:nth-child(1) {
  transform: translate(0px, 5px) rotate(45deg);
}
header.active .burger span:nth-child(3) {
  transform: translate(0px, -5px) rotate(-45deg);
}
@media (max-width: 1200px) {
  header.active .navbar-wrapper,
  header.active .mobile-menu-content,
  header.active .mobile-menu-content .langbar,
  header.active .mobile-menu-content .header-contact-links,
  header.active .mobile-menu-content .sign-in-options,
  .navbar ul {
    display: flex;
    flex-direction: column;
  }
  .open-search-modal {
    display: block;
  }
  .search-form {
    display: none;
  }
  header.active .navbar-wrapper .container {
    padding: 0;
  }
  header.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100vh;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  body {
    padding-top: 106px;
  }
  body:has(section.categories) {
    padding-top: 140px;
  }
  .navbar li,
  header.active .mobile-menu-content .header-contact-links .link {
    border: none;
  }
  header.active .mobile-menu-content .langbar {
    flex-direction: row;
    padding: 16px 0;
    margin-bottom: 20px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
  }
  header.active .mobile-menu-content .sign-in-options {
    margin-top: 20px;
    gap: 8px;
  }
  header.active .mobile-menu-content .sign-in-options .link {
    width: 100%;
  }
  .navbar li {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  header.active .mobile-menu-content .header-contact-links .link {
    padding: 0;
    margin-bottom: 10px;
  }
  header.active .navbar-wrapper {
    display: block;
    position: absolute;
    top: 100px;
    width: 100%;
    background: white;
    z-index: 5;
  }
}

.logo-for-print {
  display: none;
}
.cart-btns-print {
  width: 100%;
}
.guest-delivery-price {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.guest-delivery-price label {
  margin-bottom: 0;
}

.delivery-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.guest-print-btns .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  margin-bottom: 10px;
  text-align: left;
}
.guest-print-btns .table-cell {
  font-size: 16px;
}
.guest-print-btns .table .receiver {
  margin-bottom: 20px;
  text-align: left;
  font-size: 18px;
}
.print-logo-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .no-color {
    flex-direction: column;
  }
}
.guest-print-btns,
.user-print-btns {
  display: none;
  font-size: 16px;
}
.guest-print-btns .new-price,
.user-print-btns .new-price {
  font-size: 16px;
}
@media print {
  html,
  body {
    margin: 0 auto;
    /* page-break-after: always; */
    visibility: hidden;
  }
  #cart-to-print {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 49px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cart-top .left {
    border: none;
    padding: 0;
  }
  #cart-to-print .cart-parent .left {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
  }
  .no-color {
    width: 10%;
    justify-content: center;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .cart-item,
  .cart-top,
  .guest-print-btns,
  .user-print-btns {
    display: block;
  }
  .cart-item .img,
  .cart-top h6:first-child {
    width: 45%;
    padding: 0;
    margin: 0;
  }
  .cart-top h6 {
    width: 10%;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .cart-item .colors,
  .cart-item .prod-price,
  .cart-item .new-price {
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    width: 100%;
  }

  .cart-item .color-options {
    width: 10%;
    padding: 0;
    margin: 0;
  }
  .cart-item .delivery-time {
    width: 10%;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .cart-item .name {
    display: none;
  }
  .cart-item .price {
    width: 10%;
    padding: 0 !important;
    margin: 0 !important;
  }
  .cart-item .quantity {
    width: 10%;
    border-top: none;
    margin-top: 0;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .cart-item .prod-q {
    width: 100%;
  }
  .cart-item .quantity .prod-q span {
    width: 100%;
    text-align: center;
  }
  .cart-item .item-left,
  .cart-item {
    width: 100%;
  }
  .cart-item,
  .cart-top {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .cart-item-total,
  .cart-top h6:nth-child(6) {
    width: 11%;
    justify-content: center;
    border: none !important;
    margin-top: 0 !important;
    padding: 0 !important;
    margin: 0;
  }
  .cart-item-total .price {
    width: 100%;
    text-align: center;
  }
  #cart-to-print .logo-for-print {
    display: block;
    /* margin: auto; */
  }
  .print-logo-wrapper {
    display: flex;
    margin-bottom: 20px;
  }

  .print-logo-wrapper .contact {
    text-align: right;
  }
  #cart-to-print > .tab-title {
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
  }

  #cart-to-print .cart-parent {
    grid-template-columns: 1fr;
  }
  .profile-wrapper {
    grid-template-columns: 1fr;
  }
  #cart-to-print .cart-actions > *,
  #cart-to-print .cart-parent .right,
  #cart-to-print .prod-q button,
  #cart-to-print .remove-cart-item,
  #cart-to-print .leave-comment,
  #cart-to-print > .tab-title h3,
  #cart-to-print .cart-item .color-options label,
  header,
  footer,
  .cart-btns-print button,
  .export-wrapper,
  .import-wrapper,
  .order-page-aside.sign-modal-block,
  #fb-root {
    display: none;
  }
  .cart-btns-print {
    display: grid !important;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: start;
  }
  .guest-print-btns-table {
    grid-template-columns: 1fr;
  }
  .cart-btns-print .form-row input {
    border: none;
    padding: 0;
  }

  .promo-code-wrapper,
  .delivery-price {
    /* width: 48%; */
    display: flex;
    text-align: center;
    padding: 0 5px;
  }
}
.swiper-free-mode {
  background: white;
  margin-top: 6px;
  padding: 10px;
  border-radius: 10px;
}
.search-modal .modal-content {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 20px;
}

.search-modal .last-searches {
  margin-top: 20px;
}
.last-searches li {
  padding: 15px 18px;
  background: rgba(245, 245, 245, 1);
  width: fit-content;
  margin-bottom: 8px;
  border-radius: 30px;
}
.last-searches li:nth-child(n + 10) {
  display: none;
}
.last-searches:not(:has(li)) .d-flex {
  display: none;
}
.last-searches .d-flex {
  justify-content: space-between;
  margin-bottom: 24px;
}
.last-searches .d-flex p {
  font-family: "Helvetica Neue LT GEO";
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(64, 64, 64, 0.6);
}
.clear-searches {
  font-family: "Helvetica Neue LT GEO";
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(244, 123, 32, 1);
  background: transparent;
}
.search-modal .close-modal {
  margin-right: 10px;
  flex-shrink: 0;
}
.d-flex-wrap {
  gap: 10px;
}
@media (max-width: 1024px) {
  .search-modal .search-form,
  .search-modal input {
    display: block;
  }
  .search-modal .search-form {
    width: -webkit-fill-available;
  }
  .search-modal form button {
    position: absolute;
    top: 0;
    left: 0;
  }
  .search-modal input {
    width: 100%;
    padding-left: 40px;
  }
  .d-flex-wrap {
    flex-direction: column;
  }
  .navbar a {
    padding: 5px 0;
  }
}

@media (max-width: 768px) {
  cart-btns > div,
  .subUserChooseSelect,
  .addressSelectionSelect,
  #order-payment-method {
    width: 100%;
  }
}
.loader {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-wrapper.active .loader span {
  animation: loader 1s linear infinite;
  animation-direction: reverse;
}
.loader span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 5px;
  transition: all 0.3s;
  opacity: 0.4;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s !important;
}
.loader span:nth-child(3) {
  animation-delay: 0.4s !important;
}

.loader-wrapper.active {
  display: flex;
}
@keyframes loader {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.promo-code-wrapper.form-row {
  flex-direction: row;
  gap: 10px;
  margin-bottom: 0;
}

.cart-btns-print label {
  margin-bottom: 0;
}
.cart-btns-print .form-row {
  text-align: left;
}
.cart-btns-print .name {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.cart-btns-print p {
  font-size: 14px;
}
.export-wrapper button.link {
  background: #38b682;
  color: white;
  border-color: #38b682;
}

.justify-between {
  justify-content: space-between;
}

.guest-promo-code {
  width: 70%;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev,
.swiper-button-prev {
  background-image: none !important;
  box-shadow: none !important;
}

/* ! FIXME: Fix bugs - 20-11-2024 */

/* Inside the product page image cropping */

.product-page-slide img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  max-width: 517px;
  max-height: 517px;
}

.product-information,
.product-actions {
  max-width: 100%;
}

/* Inside the category page */

.prod-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: minmax(29px, auto) minmax(44px, auto);
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
}

.prod-q {
  grid-column: 2;
}

.prod-price {
  justify-self: start !important;
  grid-column: 1;
  grid-row: 2;
}

 .prod-actions > div.add-to-cart {
    align-self: flex-end;
}

@media (min-width: 1200px) {
  .prod-img:hover .img,
  .prod-img:has(+ .prod-details .prod-code:hover) .img,
  .prod-img:has(+ .prod-details > a:hover) .img {
    transform: scale(0.8);
  }

  .prod-img:hover + .prod-details > a h6 {
    color: var(--primary);
  }
}

@media (max-width: 480px) {
  .prod-img .img {
    height: 130px;
  }

  .prod-details {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: -webkit-fill-available;
    height: 100%;
  }

  .prod-code {
    font-size: 13px;
  }

  .prod-name {
    font-size: 13px;
  }

  .prod-actions {
    height: 92px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 10px 5px;
    justify-content: center;
    align-items: center;
    justify-self: flex-end;
    margin-top: 5px;
    font-size: 10px;
  }

  .prod-actions > div:nth-child(2n) {
    justify-self: flex-end;
  }

  .prod-actions .prod-q {
    padding: 2px 2px;
    display: flex;
    width: 100%;
    gap: 1px;
    justify-content: space-between;
    justify-self: flex-end;
  }

  .prod-q .q {
    font-size: 13px;
  }

  .prod-q button {
    width: 22px;
    height: 18px;
  }

  .prod-price {
    /* justify-self: center !important; */
    gap: 3px;
  }

  .new-price {
    font-size: 14px;
  }

  .old-price {
    font-size: 13px;
  }

  .prod-actions > div.add-to-cart {
    width: 55px;
    height: 34px;
    justify-self: flex-end;
  }

  .prod-not-available {
    grid-column: 2;
    justify-self: flex-end;
  }
}

/* Category swiper */

.cat-swiper.active .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(172px, 1fr);
  gap: 10px;
}

@media (max-width: 1024px) {
  .cat-swiper.active .swiper-wrapper {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, 122px);
    grid-auto-rows: minmax(105px, 1fr);
    gap: 7px;
  }

  .cat-card {
    height: 105px;
    width: 122px;
    padding: 10px;
  }

  .cat-wrapper {
    grid-template-columns: auto 3fr;
    gap: 7px;
  }
}

@media (max-width: 768px) {
  .cat-swiper.active .swiper-wrapper {
    grid-template-columns: repeat(auto-fit, 122px);
    grid-auto-rows: minmax(75px, 1fr);
    gap: 7px;
  }

  .cat-card {
    height: 75px;
  }

  .swiper-slide {
    min-width: auto;
  }
}

@media (max-width: 410px) {
  .cat-swiper.active .swiper-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(105px, 120px));
  }

  .cat-wrapper.active {
    grid-template-columns: auto;
  }

  /* .cat-card {
    width: 120px !important;
  } */

  .all-cat-btn {
    position: absolute;
    bottom: 2px;
    right: 8px;
    width: 35%;
    height: 45%;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    z-index: -1;
  }

  .cat-title {
    font-size: 10px;
  }
}

/* Category and coffee slider margin*/

.categories {
  position: static; /* new */
  margin-top: 16px;
  /* top: 201px; */
}

.categories.inner-page {
  /* top: 201px; */
}

.categories + section,
.categories + footer {
  margin-top: 16px;
}

.categories.inner-page + section,
.categories.inner-page + footer {
  margin-top: 0;
}

.cat-page-wrapper {
  margin-top: 0;
  margin-bottom: 2rem;
}

.new-products .container {
  margin-top: 40px;
}

.subcategory-card:hover a img {
  transform: scale(0.8);
}

@media (max-width: 1200px) {
  .categories,
  .categories.inner-page {
    margin-top: 16px;
  }
}

@media (max-width: 1024px) {
 .cat-page-wrapper {
    margin-bottom: 0;
 }
}

@media (max-width: 768px) {
  .categories.inner-page + section,
  .categories.inner-page + footer {
    margin-top: 17px;
  }
}

/* Breadcrumbs of products */

.breadcrumbs {
  padding: 24px 0;
}

.products-page-breadcrumbs + .categories.inner-page {
  margin-top: 0;
}

@media (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }

  .products-page-breadcrumbs {
    display: none;
  }

  .products-page-breadcrumbs + .categories.inner-page {
    margin-top: 16px;
  }
}

/* Pagination for mobile */

@media (max-width: 768px) {
  .pgn-wrapper ul {
    flex-wrap: wrap;
  }
}

/* Webpage warning */

body {
  padding-top: 170px;
  /* while warning */
  /*padding-top: 190px;*/
}

.webpage-warning {
    display: none;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: #f47b20;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-inline: auto;
  z-index: 100;
}

.webpage-warning h4 {
  margin: 0 auto;
  /*max-width: 1268px;*/
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  word-wrap: break-word;
}

header {
  /* Should be deleted after removing webpage warning */
  padding-top: 0;
}

@media (max-width: 1313px) {
  body {
    padding-top: 188px;
  }
}

@media (max-width: 1200px) {
  .webpage-warning h4 {
    font-size: 12px;
  }

  body {
    padding-top: 116px;
  }

  body:has(section.categories) {
    padding-top: 116px;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 116px;
  }

  body:has(section.categories) {
    padding-top: 116px;
  }
}

@media (max-width: 768px) {
  .webpage-warning h4 {
    font-size: 12px;
  }

  body {
    padding-top: 131px;
    
    /* while warning */
    /*padding-top: 161px;*/
  }

  body:has(section.categories) {
    padding-top: 131px;
  }
}

@media (max-width: 410px) {
  body {
    padding-top: 146px;
    /* while warning */
    /*padding-top: 196px;*/
  }

  body:has(section.categories) {
    padding-top: 86px;
    /*padding-top: 146px;*/
    /* while warning*/
    /*padding-top: 166px;*/
  }
}

/* About us - fix tags gap */

.tag-wrapper a {
  display: flex;
}

@media (max-width: 768px) {
  .breadcrumbs + .img {
    margin-top: 16px;
  }
}

/* Profile */

@media (max-width: 768px) {
  .profile {
    margin-top: 16px;
  }

  .profile-wrapper {
    margin-top: 0;
  }
}

/* header active */

@media (max-width: 1200px) {
  header.active {
    height: 100lvh;
  }

  header.active .navbar-wrapper {
    display: block;
    position: static;
    /* top: 100px; */
    width: 100%;
    background: white;
    z-index: 5;
  }
}

/* Modal */

@media (max-width: 768px) {
  .modal {
    padding-inline: 1.25rem;
  }

  .sign-modal-block .modal-content {
    height: auto;
  }
}

/* Footer */

@media (max-width: 365px) {
  .footer-contact-list li:last-child a span {
    white-space: nowrap;
  }
}

/* Banner */

.banner {
  display: grid;
  place-items: center;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  height: 236px;
  padding: 1rem;
}

.banner img {
  object-fit: contain;
  width: auto;
  max-height: 204px;
  height: 100%;
  margin-bottom: 0;
}

/* Coffee slider */

@media (max-width: 1024px) {
  .coffee-swiper .swiper-slide .img {
    padding-left: 0;
  }
}

/* Subcategory cards */

.subcategory-card a {
  padding: 10px;
}

.subcategory-card img {
  height: 180px;
}

.subcategory-card h6 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* Category aside inside the single page */

.row-inputs-wrapper {
  display: grid;
  grid-template-columns: 2fr min-content;
  align-items: flex-start;
  gap: 5px;
}

.prod-page-filter .inputs {
  margin-bottom: 0;
}

.prod-page-filter input {
  padding-inline: 8px;
}

.row-inputs-wrapper button {
  height: 100%;
  margin: 0;
  padding-inline: 12px;
}

.row-inputs-wrapper button:hover {
  border: 1px solid var(--primary);
}

.subcategories-list {
  margin-top: 8px;
}

.filter .subcategories-list {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .filter .subcategories-list {
    margin-bottom: 0;
  }

  .prod-page-filter input {
    padding-inline: 12px;
  }
}

/* Cart btn late transition fix */

.cart-total-price {
    transition: all 0s;
}

/* quantity dynamic input */

.dynamicInput {
    width: 27.5px;
    min-width: 27.5px;
    max-width: 100px;
    font-size: 16px;
    font-family: inherit;
}

.hidden-span {
    visibility: hidden;
    white-space: pre;
    font-size: 16px;
    font-family: inherit;
    position: absolute;
}

/* Item description list */

.product-additional-info ul {
  list-style: disc inside;
}

/* Categories2 images */

.categories2 .cat-img {
  padding: 5px;
}

.categories2 .cat-img img {
  max-height: 70px;
  max-width: 100px;
}

/* send-order-comment */

.send-order-comment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.send-order-comment label {
    color: var(--text);
    font-family: "Helvetica Neue LT GEO";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 128%;
    margin-bottom: 8px;
}

.send-order-comment textarea {
    outline: none;
    border-radius: 16px;
    border: 1px solid #dfdfdf;
    resize: none;
    padding: 15px;
    color: rgba(64, 64, 64, 0.5);
    font-family: "Helvetica Neue LT GEO";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 50px;
    line-height: 128%;
}

/* subuser orders from the main user */

.order-card-subuser .order-title {
    /*grid-template-columns: 0.2fr 1fr 0.6fr 1.5fr 0.7fr 1fr 1fr 0.2fr !important;*/
    grid-template-columns: 0.2fr 1fr 0.6fr 1.5fr 0.7fr auto 1fr 1fr 0.2fr !important;
    /*grid-template-columns: 0.3fr auto 0.5fr 1fr 0.6fr 1fr 0.6fr auto 0.6fr 0.7fr !important;*/
}

.order-card-subuser.active .order-title {
    /*grid-template-columns: 0.2fr 1fr 0.6fr 1.5fr 0.7fr 1fr 1fr 0.2fr !important;*/
    grid-template-columns: 0.2fr 0.4fr 0.4fr 0.4fr 0.3fr 1fr 0.2fr !important;
}

.order-card-subuser .order-title.mobile > :nth-child(1) {
    grid-column: 1;
}
.order-card-subuser .order-title.mobile > :nth-child(2) {
    grid-column: 2;
}
.order-card-subuser .order-title.mobile > :nth-child(3) {
    grid-column: 3;
}
.order-card-subuser .order-title.mobile > :nth-child(4) {
    grid-column: 4;
}
.order-card-subuser .order-title.mobile > :nth-child(n+5) {
    /*grid-column: span 1;*/
    grid-row: 2;
}
.order-card-subuser .order-title.mobile > :nth-child(n+12) {
    /*grid-column: span 1;*/
    grid-row: 3;
}

.order-card-subuser.active .order-title > * {
    font-size: 14px !important;
}

.subuser-confirm-btn {
    background-color: #68af81;
    color: #fff;
}

.subuser-deny-btn {
    background-color: #aa4343;
    color: #fff;
}

.subuser-edit-btn {
    background-color: #e8dc46;
    color: #fff;
}

.subuser-confirm-edit-btn {
    background-color: #f47b20;
    color: #fff;
}

.btn-hide {
    display: none;
}

.approved-order {
    font-size: 14px;
    font-weight: bold;
    color: #02cc4f;
}

.orders-wrapper .order-title {
    /*grid-template-columns: 0.8fr 0.8fr 1.8fr 3fr 0.5fr 0.2fr;*/
    grid-template-columns: 0.8fr 0.8fr 1.8fr 1fr 1fr 1fr 0.2fr;
}

.user-delivery-date {
    gap: 10px;
}

.user-delivery-date label {
    color: var(--text);
    font-family: "Helvetica Neue LT GEO";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 128%;
    margin-bottom: 8px;
}

.user-delivery-date input {
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #dfdfdf;
    color: rgba(64, 64, 64, 0.5);
    font-family: "Helvetica Neue LT GEO";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 128%;
    outline: none;
}

.order-comment {
    grid-column: 1 / 3;
    border-left: 1px solid #eee;
    padding-left: 14px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shrink-text {
    font-size: 16px;
}

/* Invoice Btn*/

.invoice {
    display: flex;
    place-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text);
}

.invoice:hover svg path {
    stroke: var(--primary);
}

.invoice:hover span {
    color: var(--primary);
} 


/*.invoice svg {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*}*/

/* !Global Modal */

.global-modal {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000078;
    z-index: 1000;
}
.global-modal.active {
    display: flex;
}
.global-modal-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.global-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #575757db;
    border-radius: 50%;
    padding: 5px;
    transition: background-color 0.3s;
}
.global-modal-close:hover {
    background-color: #818181db;
}
.global-modal-close svg {
    width: 100%;
    height: 100%;
}
.global-modal-notification-image{
    display: block;
    max-width: 700px;
    width: 100%;
}

.clear-basket-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: #00000078;
}
.clear-basket-modal.active {
  display: flex;
}
.clear-basket-modal-content {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}
.clear-basket-modal-text {
  position: relative;
}
.clear-basket-modal-text h2 {
  font-size: 20px;
}
.clear-basket-modal-text p {
  margin-top: 0.5rem;
  font-size: 15px;
  color: rgba(64, 64, 64, 0.7);
}
.clear-basket-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  fill: gray;
  stroke: gray;
  stroke-width: 1;
  cursor: pointer;
}
.clear-basket-modal-close:hover {
  transform: scale(1.1);
}
.clear-basket-modal-close:active {
  transform: scale(1);
}
.clear-basket-modal-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.clear-basket-confirm {
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  background-color: var(--primary);
  color: #fff;
  transition: transform 0.2s;
}
.clear-basket-cancel {
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  transition: transform 0.2s;
}
.clear-basket-confirm:active,
.clear-basket-cancel:active {
  transform: translateY(3px);
} 