* {
  padding: 0;
  margin: 0;

  transition: all 0.6s ease;
}

div,
p,
section,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: underline !important;
}

:root {
  --gray: #474646;
  --white: #f7f5ea;
  --light-gray: rgba(27, 27, 27, 0.4);
}

body,
html {
  font-family: "Tilda Sans";
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);

  margin: 0;
  padding: 0;

  height: 100%;
  width: 100%;

  background-color: var(--white);
}

.container {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.main {
  height: 100vh;
  width: 100%;

  background-image: url(../images/main-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header nav a {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.header nav a:hover {
  opacity: 0.6;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-end:hover {
  opacity: 0.6;
}

#open-mobile-menu {
  display: none;
  cursor: pointer;

  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;

  width: 55px;
  height: 55px;
}

#open-mobile-menu svg {
  width: 55px;
  height: 55px;
}

.main-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main-inner h1 {
  font-weight: 500;
  font-size: 110px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);

  white-space: nowrap;
}

.main-inner p {
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: rgba(247, 245, 234, 0.8);
}

.header-black {
  margin-bottom: 40px;
}

.header-black #open-mobile-menu svg path {
  fill: var(--gray);
}

.header-black nav a {
  color: var(--gray);
}

.header-black .header-end svg path,
.header-black .header-end svg circle {
  stroke: var(--gray);
}

.header-checked-nav {
  border-bottom: 1px solid var(--gray);
}

#mobile-menu {
  background-color: var(--white);
  padding: 30px;

  display: flex;
  flex-direction: column;
  gap: 50px;

  align-items: end;
  position: fixed;
  top: 0;
  right: 0;

  height: 100vh;

  box-shadow: 7px 0px 5px 5px var(--gray);

  transform: translateX(110%);

  z-index: 999;
}

.open-mobile-menu {
  transform: translateX(0%) !important;
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

#mobile-menu nav a {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: var(--gray);
}

#close-mobile-menu {
  background-color: transparent;
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
}

#mobile-menu div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#mobile-menu div a {
  background-color: #b2b2b2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background: var(--gray);
  padding: 10px 0;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee span {
  display: inline-block;
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  padding-right: 5px;
}

.catalog {
  padding-top: 40px;
  padding-bottom: 150px;
}

.catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.catalog-top h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--light-gray);
}

.catalog-top a {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--gray);
}

.catalog-top a p {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;

  color: var(--gray);
}

.catalog-items {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.catalog-item {
  width: 33%;
  height: 550px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  padding: 20px 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.catalog-item-top {
  display: flex;
  align-self: center;
  justify-content: space-between;
  width: 100%;
}

.catalog-item-top span {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--white);
}

.catalog-item-top a {
  border: 1px solid var(--white);
  border-radius: 50px;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.05);

  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
  text-decoration: none !important;
  color: var(--white);
}

.catalog-item-top a:hover {
  text-decoration: none !important;
  background-color: var(--gray);
}

.catalog-item svg {
  background-color: var(--white);
  border-radius: 100px;
  text-align: center;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding-bottom: 150px;
}

.about h2 {
  font-weight: 500;
  font-size: 90px;
  line-height: 110%;
  letter-spacing: -0.05em;

  margin-right: 120px;
}

.about > p {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
}

.about a {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  text-decoration: none;
  color: var(--gray);
}

.about a p {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.work {
  background-image: url(/work.jpg);
  background-size: cover;
  background-position: center;

  padding-top: 322px;
  padding-bottom: 40px;
}

.work-inner {
  display: flex;
  gap: 160px;
}

.work-inner h2 {
  font-weight: 400;
  font-size: 90px;
  line-height: 90%;
  white-space: nowrap;

  color: var(--white);
}

.work-items {
  width: 55%;
  display: flex;
  gap: 30px 70px;
  flex-wrap: wrap;
}

.work-items div {
  width: 43%;
}

.work-items div h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.03em;

  margin-bottom: 10px;
  color: var(--white);
}

.work-items div p {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(247, 245, 234, 0.8);
}

.faq {
  padding-top: 150px;
  padding-bottom: 130px;
}

.faq h2 {
  font-weight: 400;
  font-size: 90px;
  line-height: 110%;
  letter-spacing: -0.05em;

  margin-bottom: 62px;
  color: var(--gray);
}

.faq-item {
  border-bottom: 1px solid var(--gray);
}

.faq-item-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;

  cursor: pointer;
}

.faq-item-start p {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--gray);
}

.faq-item-start svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
}

.rotate {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-content p {
  font-weight: 400;
  font-size: 21px;
  line-height: 140%;
  letter-spacing: -0.03em;
  padding-bottom: 30px;

  color: var(--gray);
  opacity: 0.8;
}

.faq-content p a {
  color: var(--gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.form {
  background-image: url(/formblur.png);
  background-size: cover;
  background-position: center;

  padding: 80px 0px;
}

.form-inner {
  width: 100%;
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;

  background-color: var(--white);

  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-inner img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.form-inner h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #1b1b1b;
}

.form-inner p {
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.03em;

  color: var(--light-gray);
}

.form-inner input,
.form-inner textarea {
  background-color: transparent;
  border: none;
  outline: none;

  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;

  padding: 10px;
  color: var(--gray);
  font-family: "Tilda Sans";
  border-bottom: 1px solid var(--gray);
}

.form-inner textarea {
  height: 160px !important;
  resize: none;
  width: auto !important;
}

.form-inner div {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.form-inner div input {
  width: 50%;
}

.form-inner button {
  border: 1px solid var(--gray);
  border-radius: 50px;
  padding: 10px 20px 16px 20px;

  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--light-gray);

  max-width: fit-content;
  background-color: transparent;
  cursor: pointer;

  font-family: "Tilda Sans";

  margin-right: auto;
  margin-left: auto;
}

.form-inner button:hover {
  background-color: var(--gray);
  color: var(--white);
}

.form-inner a {
  color: var(--light-gray);

  font-weight: 400;
  font-size: 16px;
  line-height: 92%;
  letter-spacing: -0.03em;

  margin-right: auto;
  margin-left: auto;
}

.inst {
  padding-top: 150px;
  padding-bottom: 40px;
}

.inst-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 60px;
}

.inst-top h2 {
  font-weight: 400;
  font-size: 90px;
  line-height: 110%;
  letter-spacing: -0.05em;

  color: var(--gray);
}

.inst-top a {
  display: flex;
  align-items: center;
  gap: 11px;

  text-decoration: none;
  color: var(--gray);
}

.inst-top a p {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.inst-photo {
  display: flex;
  justify-content: space-between;
}

.inst img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;

  padding-bottom: 100px;
}

.footer-logo {
  width: 96px;
  margin-right: 130px;
}

.footer-top div {
  width: 16.6%;
}

.footer-top div h2 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;

  margin-bottom: 10px;

  color: var(--gray);
}

.footer-top div nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-top div nav a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-decoration: none;

  color: var(--light-gray);

  transition: all 0.4s ease;
  white-space: nowrap;
}

.footer-top div nav a:hover {
  opacity: 0.6;
}

.footer-top div nav div {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 10px;
}

.footer-last {
  width: 33.4%;
}

.footer-last h3 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;

  margin-bottom: 20px;
  color: var(--gray);
}

.footer-last input {
  background-color: transparent;
  border: none;
  outline: none;

  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;

  padding: 10px;
  color: var(--gray);
  font-family: "Tilda Sans";
  border-bottom: 1px solid var(--gray);

  margin-bottom: 20px;
  display: block;
  border-radius: 0 !important;
  width: 90%;
}

.footer-last span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-last span:last-of-type {
  margin-top: 5px;
  margin-bottom: 20px;
}

.footer-last span input {
  width: 14px;
  height: 14px;
  margin-bottom: 0;

  border: 1px solid var(--gray);
  background-color: transparent;
}

.footer-last span a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--light-gray);
}

.footer-last button {
  border: 1px solid var(--gray);
  border-radius: 50px;
  padding: 5px 10px 8px 10px;

  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--light-gray);

  max-width: fit-content;
  background-color: transparent;
  cursor: pointer;

  font-family: "Tilda Sans";
}

.footer-last button:hover {
  background-color: var(--gray);
  color: var(--white);
}

.footer-main {
  width: 49.8% !important;
  display: flex;
  gap: 10px;
}

.footer-main div {
  width: 33.6%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--light-gray);
  white-space: nowrap;
}

.cookies {
  margin-bottom: 40px;
}

.cookies-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookies-inner a {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--light-gray);
  text-decoration: none;
}

.cookies-inner a:last-of-type {
  color: var(--gray);
}

.big-title {
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--gray);

  margin-bottom: 20px;
  width: 55%;
}

.big-title__margin-left {
  margin-left: 25%;
}

.contacts {
  margin-bottom: 150px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts-left {
  width: 55%;
}

.contacts-left p {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;

  margin-bottom: 62px;
  color: var(--gray);
}

.contacts-inst img {
  width: 200px;
  margin-bottom: 10px;
}

.contacts-inst a {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--gray);
}

.contacts-inst a h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.05em;
  color: var(--gray);
}

.contacts-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-right div p {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;

  color: var(--light-gray);
}

.contacts-right div h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;

  color: var(--gray);
}

.contacts-right div h3 a {
  text-decoration: none;
  color: var(--gray);
}

.textovik {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 150px;
}

.textovik p {
  width: 60%;

  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--gray);
}

.textovik a {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--light-gray);
  text-decoration: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1.3;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(0.99);
  opacity: 0.89;
}

.gallery > :nth-child(9n + 4) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1.3;
}

@media (min-width: 800px) {
  .gallery > :nth-child(9n + 4) .gallery-item-img {
    height: calc(100% + 41px);
  }
}

.gallery-item-img {
  background-size: cover;
  background-position: center;
  margin-bottom: 5px;

  height: -webkit-fill-available;

  position: relative;
  padding: 20px;
}

.gallery-item-clicker {
  position: absolute;
  top: 45px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.gallery-item-bottom {
  display: flex;
  justify-content: space-between;
}

.gallery-item-bottom h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(27, 27, 27, 0.7);
}

.gallery-item-bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(27, 27, 27, 0.7);
}

.gallery-item-bottom span {
  white-space: nowrap;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--gray);
}

.cat {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 60px;
  margin-top: -50px;
}

.cat-links {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin-top: 80px;
}

.cat-links a {
  text-decoration: none;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--light-gray);
}

.cat-links-checked {
  color: var(--gray) !important;
}

.cat-main {
  width: 75%;
}

.cat-settings {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;

  margin-bottom: 52px;
}

.cat-settings-button {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: transparent !important;

  position: relative;
}

.cat-settings button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cat-settings button p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--gray);
  font-family: var(--font-family);
}

@media (min-width: 800px) {
  .cat-settings-inner {
    right: 0;
    left: unset !important;
  }
}

.cat-settings-inner {
  position: absolute;
  top: 30px;
  left: 0;

  background-color: rgb(247 245 234);
  box-shadow: 0px 0px 7px 0px #86828269;
  padding: 20px;
  border-radius: 2px;
  z-index: 99;

  display: flex;
  flex-direction: column;
  gap: 7px;

  min-width: 306px;
}

.cat-settings-inner h2 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}

.cat-settings-inner div {
  margin-bottom: 20px;
}

.cat-settings-inner select,
.cat-settings-inner input {
  font-family: "Tilda Sans";
  background-color: #ffffff;

  border-radius: 5px;
  padding: 3px 5px;
  border: 0.6px #c8c8c8 solid;
}

.cat-settings-inner input {
  padding: 3px 9px !important;
}

.cat-settings-inner button {
  background-color: #747474 !important;
  padding: 5px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: "Tilda Sans";
  color: #fff;
}

.disp-none {
  display: none !important;
}

.pagination {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin: 20px 0;
}

.page-btn {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--gray);
  width: 35px;
  height: 34px;
  border-radius: 50px;
}

.page-btn.active {
  background: var(--gray);
  color: #fff;
}

.product {
  display: flex;
  justify-content: space-between;
  gap: 50px;

  margin-bottom: 150px;
}

.product-photo {
  width: 60%;
}

.product-photo-inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-auto-rows: 45vh;
  gap: 20px;
}

.product-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.product-photo-inner > :nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.product-photo-inner > :nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.product-photo-inner > :nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.product-main {
  width: 40%;
}

.product-title-mob {
  font-weight: 400;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-align: center;

  margin-bottom: 10px;
  color: var(--gray);

  display: none;
}

.product-desc-mob {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.03em;

  margin-bottom: 20px;

  color: var(--light-gray);
  display: none;
}

.product-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}

.product-main-top p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;

  color: var(--gray);
}

.product-main-top button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.product-title {
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.03em;

  margin-bottom: 54px;
  color: var(--gray);
}

.product-desc {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--light-gray);

  margin-bottom: 56px;
}

.product-main-price {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: -0.03em;

  margin-bottom: 30px;
  color: var(--gray);
  display: block;
}

#addToCart {
  width: 100%;
  background-color: var(--gray);
  border: 1px var(--gray) solid;
  margin-bottom: 30px;

  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--white);
  font-family: var(--font-family);
  cursor: pointer;

  outline: none;
  text-align: center;

  padding: 10px;
}

#addToCart:hover {
  background-color: var(--white);
  color: var(--gray);
}

.product-faq .faq-item-start p {
  font-size: 20px;
}

.product-faq .faq-item-start {
  padding: 14px 0px;
}

.product-faq .faq-content p {
  font-size: 18px;
}

.dop-products {
  margin-bottom: 60px;
}

.dop-products-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}

.dop-products-top h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 90%;
  color: var(--gray);
}

.dop-products-top div {
  display: flex;
  gap: 16px;
}

.dop-product {
  text-decoration: none;
  cursor: pointer;
}

.dop-product-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin-bottom: 20px;
  height: 373px;

  padding: 20px;

  position: relative;
}

.dop-poduct-like {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: end;
  width: 100%;
}

.dop-product-clicker {
  position: absolute;
  top: 45px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.dop-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dop-product-title {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;

  color: var(--light-gray);
}

.dop-product-price {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;

  color: var(--gray);
  white-space: nowrap;
}

.about {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.about-left {
  width: 40%;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--gray);
}

.about-right {
  width: 55%;

  display: flex;
  justify-content: space-between;
}

.about-right > img {
  width: 330px;
  object-fit: cover;
}

.about-right div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-right div img {
  width: 210px;
}

.about-right div a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;

  justify-content: end;
}

.about-right div a p {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--gray);
}

.about-right-girls {
  display: flex;
  flex-direction: row !important;
  gap: 20px;
  width: 100%;
}

.about-right-girls div {
  width: 100%;
}

.about-right-girls div img {
  height: 325px;
  width: 100%;
  object-fit: cover;
  object-position: center;

  margin-bottom: 10px;
}

.about-right-girls div p {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;

  color: var(--light-gray);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  right: unset !important;
  left: unset !important;
  top: unset !important;
  bottom: unset !important;
  margin-top: unset !important;
  position: static !important;
}

.cart {
  margin-bottom: 150px;
}

.cart-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 20px 0px;
  border-bottom: 1px solid var(--light-gray);
}

.cart-product-start {
  width: 25%;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.cart-product-start img {
  width: 131px;
  object-fit: cover;
}

.cart-product-start-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

.cart-product-start-info h3 {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;

  color: var(--gray);

  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}

.cart-product-start-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;

  color: var(--light-gray);
}

.cart-product-start-info a {
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--light-gray);

  text-decoration: underline;
}

.cart-product-soloPrice {
  width: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.cart-product-soloPrice p {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;

  color: var(--gray);
}

.cart-product-calc {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.product-act-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
  width: fit-content;
  padding: 10px;
}

.product-act-calc input {
  width: 30px;
  text-align: center;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Tilda Sans";

  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--gray);

  padding: 0px 20px;
}

.product-act-calc button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cart-product-final {
  width: 25%;
}

.cart-product-final h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;

  text-align: right;
  color: var(--gray);
}

.cart-title-big {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 60px;
}

.cart-title-big p {
  color: var(--light-gray);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

.cart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.cart-top p {
  width: 25%;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--gray);
}

.cart-top p:nth-of-type(2) {
  text-align: center;
}

.cart-top p:nth-of-type(3) {
  text-align: center;
}

.cart-top p:nth-of-type(4) {
  text-align: right;
}

.cart-viewer-end {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 40px;
}

.cart-viewer-end p {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--gray);
}

.cart-viewer-end p span {
  font-weight: 500 !important;
}

.cart-viewer-end div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-viewer-end div button {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;

  color: var(--gray);
  border: 1px solid var(--gray);

  padding: 9px;

  width: 210px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  background-color: transparent;
  cursor: pointer;

  font-family: "Tilda Sans";
  outline: none;
}

.cart-viewer-end div button:first-of-type:hover {
  background-color: var(--gray);
  color: var(--white);
}

.cart-viewer-end div button:last-of-type {
  background-color: var(--gray) !important;
  color: var(--white) !important;
  width: 320px !important;
}

.cart-viewer-end div button:last-of-type:hover {
  background-color: var(--white) !important;
  color: var(--gray) !important;
}

.cart-order {
  margin-top: 40px;
}

.cart-title {
  margin-bottom: 10px;
  font-weight: 400;
}

.input-holder {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;
}

.input-holder input {
  background-color: #fff !important;
  padding: 10px 15px;
  border-radius: 7px;

  font-size: 20px;
  font-weight: 400;

  font-family: "Tilda Sans";

  border: 0.6px #c8c8c8 solid;
}

.input-holder h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.cart-order button {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--gray);
  border: 1px solid var(--gray);
  padding: 9px;
  width: 269px;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  font-family: "Tilda Sans";
  outline: none;
}

.cart-order button:hover {
  background-color: var(--gray);
  color: var(--white);
}

.cart-order a {
  color: var(--gray);
}

.cart-order a:last-of-type {
  margin-bottom: 20px;
  display: block;
}

#likes {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 700px;
  width: 100%;
  background-color: var(--white);
  z-index: 1001;

  transform: translateX(100%);

  max-height: 80%;
  min-height: auto;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.openLikes {
  cursor: pointer;
}

.showLikes {
  transform: translateX(0%) !important;
}

#closeLikes {
  position: absolute;
  top: 20px;
  right: 40px;
  cursor: pointer;
}

.likes-title {
  padding: 79px 0px 30px 20px;
  border-bottom: 1px solid var(--gray);
  font-weight: 400;
  font-size: 80px;
  letter-spacing: -0.03em;

  color: var(--gray);
  margin-bottom: 20px;
}

#likesInner {
  padding-bottom: 10px;
}

#likesInner .cart-product {
  align-items: flex-start;
  padding: 0px 20px 20px 20px;
  border-bottom: none;
  height: auto;
  max-height: auto;
  min-height: auto;
}

.cart-title-big a {
  text-decoration: none;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.deliveery-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--gray);

  margin-top: -60px;
}

.deliveery-text a {
  color: var(--light-gray);
}

.del {
  margin-bottom: 40px;
  margin-top: 30px;
}

.del-form {
  margin-bottom: 60px;
}

#give {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999999999999999999;
  width: 80%;
  height: auto;
  background: var(--white);
  padding: 40px;
  box-shadow: 0px 0px 9px 0px #bfbfbf;

  opacity: 0;
}

@keyframes forwardGive {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.give-forward {
  animation: forwardGive 1.5s forwards;
}

.give-backward {
  animation: backwardGive 1.5s forwards;
}

@keyframes backwardGive {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#give h3 {
  font-size: 36px;
}

#close-give {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#filter-color label span {
  min-width: 10px !important;
}

#filter-color label {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#filter-price {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

#filter-price label {
  width: 100% !important;
}
