@font-face {
  font-family: "Raleway";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Raleway-Bold.woff") format("woff"), url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.ttf") format("truetype"), url("../fonts/Raleway-Bold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Raleway";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Raleway-SemiBold.woff") format("woff"), url("../fonts/Raleway-SemiBold.woff2") format("woff2"), url("../fonts/Raleway-SemiBold.ttf") format("truetype"), url("../fonts/Raleway-SemiBold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Raleway";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Raleway-Medium.woff") format("woff"), url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.ttf") format("truetype"), url("../fonts/Raleway-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Raleway";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Raleway-Regular.woff") format("woff"), url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../fonts/Raleway-Regular.ttf") format("truetype"), url("../fonts/Raleway-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Raleway";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Raleway-ExtraBold.woff") format("woff"), url("../fonts/Raleway-ExtraBold.woff2") format("woff2"), url("../fonts/Raleway-ExtraBold.ttf") format("truetype"), url("../fonts/Raleway-ExtraBold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Raleway";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Raleway-Black.woff") format("woff"), url("../fonts/Raleway-Black.woff2") format("woff2"), url("../fonts/Raleway-Black.ttf") format("truetype"), url("../fonts/Raleway-Black.eot") format("embedded-opentype");
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}
html::-webkit-scrollbar {
  width: 8px;
  background: var(--primary);
  border: 2px solid transparent;
}
html::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 8px;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
body {
  font-family: "Raleway", "Arial", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--brown-main);
  background-color: var(--bg);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
input,
textarea,
select {
  padding: 0;
  border: none;
  outline: none;
  font-family: "Raleway", "Arial", sans-serif;
  font-size: 17px;
  line-height: 24px;
}
input::placeholder {
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"],
input[type="time"] {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}
button {
  cursor: pointer;
  outline: none;
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
.button {
  border: none;
  font-family: "Raleway", "Arial", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  color: var(--brown-main);
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.buttonYellow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 20px;
  background-color: var(--yellow);
  transition: background-color 0.3s ease;
}
.buttonYellow:hover {
  background-color: var(--yellow-hover);
}
.buttonWhite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 20px;
  background-color: var(--white);
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out;
  box-shadow: 0 4px 24px transparent;
}
.buttonWhite:hover {
  background-color: var(--yellow);
  box-shadow: 0 4px 24px var(--btn-shadow);
}
.buttonWhite:active {
  background-color: var(--white);
}
.buttonWhite.is-active {
  background-color: var(--yellow);
  box-shadow: 0 4px 24px var(--btn-shadow);
}
.buttonGlass {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 20px;
  border: 2px solid var(--brown-hover);
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.buttonGlass:hover {
  background-color: var(--brown-main);
  color: var(--white);
}
:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #949494;
  --grey-stroke: #DEDEDE;
  --red: #FF0000;
  --red-hover: #FF4646;
  --yellow: #FFD200;
  --yellow-hover: #FFD928;
  --orange: #F88B4D;
  --green: #11A440;
  --blue: #0962F1;
  --sticker-fuksia: #F538CF;
  --sticker-pink: #FFE5FD;
  --sticker-dark-pink: #C63FA4;
  --sticker-dark-blue: #215EC8;
  --sticker-light-blue: #BEDBFF;
  --sticker-violet: #8A38F5;
  --sticker-yellow: #FFF7C6;
  --sticker-brown: #B96C07;
  --bg: #FBF6F1;
  --bg-menu: #6D574D;
  --brown-main: #584137;
  --brown-light: #826E65;
  --brown-verylight: #F1D6C2;
  --brown-dark: #37271F;
  --brown-dark-hover: rgba(28, 18, 13, 0.9);
  --brown-hover: #9F877C;
  --brown-bieger: #C1B5AC;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --black-35: rgba(0, 0, 0, 0.35);
  --black-30: rgba(0, 0, 0, 0.30);
  --black-15: rgba(0, 0, 0, 0.15);
  --btn-shadow: rgba(148, 108, 0, 0.2);
  --orange-gradient: linear-gradient(to right, #FF7441 0%, #DC253A 50%, #FF7441 100%);
}
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1000px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 700px) {
  .wrapper {
    padding: 0 20px;
  }
}
.footer {
  background-color: var(--brown-main);
}
.footerContent {
  display: flex;
  justify-content: space-between;
  padding: 34px 0;
}
.footerNav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0 auto;
}
.footerNavLink{
  color: var(--white);
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.footerNavLink:hover {
  color: var(--yellow);
}
@media (max-width: 1250px) {
  .footerContent {
    flex-wrap: wrap;
    gap: 26px;
  }
  .logoFooter {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1100px) {
  .footerNav {
    width: 100%;
    justify-content: center;
  }
  .footer .socials {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .footer {
    padding: 72px 0;
  }
  .footerContent {
    flex-direction: column;
    align-items: center;
    gap: 72px;
    padding: 0;
  }
  .footerNav {
    flex-direction: column;
    gap: 42px;
  }
}
@media (max-width: 700px) {
  .footer {
    padding: 64px 0;
  }
  .footerContent {
    gap: 54px;
  }
  .footerNav {
    gap: 24px;
  }
  .footerNavLink {
    font-size: 15px;
  }
}
.footerInfo {
  padding: 42px 0;
  position: relative;
  background-image: url('../images/bg/home-bottom.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footerInfo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  opacity: 50%;
}
.footerInfoContent {
  display: flex;
  position: relative;
}
.footerInfoText {
  width: 60%;
  padding: 24px;
  background-color: var(--glass);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  border: 1px solid var(--white);
  color: var(--white);
}
.footerInfoText p {
  margin-bottom: 16px;
  line-height: 32px;
}
.footerInfoImage {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .footerInfo {
    padding: 0;
    background: none;
    background-color: transparent;
    margin-bottom: 42px;
  }
  .footerInfo::before {
    display: none;
  }
  .footerInfoText {
    width: 100%;
    background-color: var(--secondary);
    backdrop-filter: none;
    border: 1px solid var(--card-border);
  }
  .footerInfoText p {
    text-align: center;
  }
  .footerInfoText p:last-of-type {
    margin-bottom: 0;
  }
  .footerInfoImage {
    display: none;
  }
}
@media (max-width: 700px) {
  .footerInfoText {
    padding: 16px;
  }
  .footerInfo {
    background-color: var(--bg);
    margin-bottom: 0;
    padding-bottom: 42px;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  transform: translateY(0);
  z-index: 100;
  transition: background-color 0.3s ease;
}
.header.hide {
  z-index: -1;
}
.headerTop {
  background-color: var(--brown-main);
  opacity: 1;
  z-index: 100;
  transition: opacity 0.3s ease-out;
}
.headerTop.hide {
  opacity: 0;
  z-index: -1;
}
.headerTopContent {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerMain {
  background-color: var(--bg);
  top: 0;
  position: relative;
  transition: top 0.3s ease-out;
  z-index: 100;
}
.headerMainDark {
  background-color: #F6ECE3;
}
.headerMain.show {
  background-color: var(--bg);
  top: -57px;
}
.headerMain.hide {
  top: -100px;
  z-index: -1;
}
.headerMainContent {
  padding: 24px 0;
  display: flex;
  align-items: center;
}
.headerButtonCart {
  padding: 14px 36px;
}
.headerButtonCartCounter {
  display: block;
  width: 15px;
}
.headerCallLink {
  display: flex;
  align-items: center;
  gap: 13px;
}
.headerCallLinkIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: var(--green);
  box-shadow: 0 4px 24px transparent;
  transition: box-shadow 0.3s ease-out;
}
.headerCallLinkText {
  color: var(--brown-dark);
  transition: color 0.3s ease-out;
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.headerCallLinkTextPhone {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
}
.headerCallLink:hover .headerCallLinkIcon {
  box-shadow: 0 4px 24px var(--btn-shadow);
}
.headerCallLink:hover .headerCallLinkText {
  color: var(--brown-dark-hover);
}
.headerButtonBurger {
  display: none;
}
.headerButtonBurgerIcon {
  display: block;
  position: relative;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--brown-main);
  transition: background-color 0.3s ease-out;
} 
.headerButtonBurgerIcon::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--brown-main);
  transform: rotate(0);
  transition: transform 0.3s ease-out, top 0.3s ease-out;
} 
.headerButtonBurgerIcon::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--brown-main);
  transform: rotate(0);
  transition: transform 0.3s ease-out, bottom 0.3s ease-out;
} 
.headerButtonSearch {
  display: none;
}
.headerButtonAccountMob {
  display: none;
}
.fixedCatalog {
  display: none;
}
@media (max-width: 1000px) {
  .headerTop {
    display: none;
  }
  .headerMain.show {
    top: 0;
  }
  .headerMain.hide {
    top: -110px;
  }
  .headerMainContent {
    padding: 20px 0;
  }
  .fixedCatalog {
    display: block;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--bg);
    -webkit-overflow-scrolling: touch;
    transition: top 0.3s ease-out;
  }
  .fixedCatalog.scroll {
    top: 0;
  }
  .fixedCatalogList {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    flex-wrap: nowrap;
  }
  .fixedCatalogItem {
    flex: 0 0 auto; 
  }
  .fixedCatalog::-webkit-scrollbar {
    width: 8px;
    background: transparent;
    border: 2px solid transparent;
  }
  .fixedCatalog::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 8px;
  }
  .fixedCatalog::-webkit-scrollbar-track {
    background: transparent;
  }
  .fixedCatalogLink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--white);
    border-radius: 20px;
    border: 2px solid var(--white);
    transition: border 0.3s ease-out;
  }
  .fixedCatalogLink.active {
    border: 2px solid var(--brown-main);
  }
  .fixedCatalogLinkName {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--brown-main);
  }
  .popularCates {
    display: none;
  }
  .headerButtonBurger {
    display: flex;
    margin-right: 20px;
  }
  .headerButtonBurger.active .headerButtonBurgerIcon {
    background-color: transparent;
  }
  .headerButtonBurger.active .headerButtonBurgerIcon::before {
    transform: rotate(45deg);
    top: 0;
  }
  .headerButtonBurger.active .headerButtonBurgerIcon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  .headerButtonSearch {
    display: flex;
    margin-right: 24px;
  }
  .headerCallLinkText {
    display: none;
  }
  .headerButtonAccountMob {
    display: flex;
    padding: 14px 20px;
  }
  .userNav {
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .headerButtonSearch {
    margin-right: 16px;
  }
  .headerButtonSearch svg {
    width: 20px;
    height: 20px;
  }
  .headerButtonBurger {
    margin-right: 10px;
  }
  .headerButtonBurgerIcon {
    width: 20px;
    height: 2px;
    border-radius: 2px;
  } 
  .headerButtonBurgerIcon::before {
    top: -5px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
  } 
  .headerButtonBurgerIcon::after {
    bottom: -5px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
  } 
  .headerMainContent {
    padding: 13px 0;
  }
  .headerCallLinkIcon {
    width: 40px;
    height: 40px;
  }
  .headerButtonCart {
    padding: 8px 16px;
    border-radius: 16px;
  }
  .headerButtonCartMobile {
    width: 72px;
    order: -1;
    margin-left: auto;
  }
  .headerButtonCartCounter {
    font-size: 16px;
  }
  .headerButtonCart svg {
    width: 20px;
    height: 20px;
  }
  .headerButtonCallback {
    font-size: 0;
    gap: 0;
    padding: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  .headerButtonAccountMob {
    display: none;
  }
  .mobileMenu .headerButtonAccountMob {
    display: none;
  }
  .fixedCatalog {
    top: 66px;
  }
  .fixedCatalogList {
    gap: 6px;
    padding: 16px 20px;
  }
  .fixedCatalogLink {
    padding: 5px 10px;
    border-radius: 16px;
  }
  .fixedCatalogLinkName {
    font-size: 13px;
  }
  .fixedCatalogLink img {
    width: 32px;
    height: 32px;
    object-fit: cover;
  }
}
.headerSecondary {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 99;
}
.headerSecondaryAnchor {
  height: 0;
}
.headerSecondary.fixed {
  position: fixed;
  background-color: var(--bg);
  border-top: 1px solid var(--card-border);
  transform: translateY(0);
  transition: transform 0.8s ease;
}
.headerSecondary.fixed.hide {
  transform: translateY(-200%);
}
.headerSecondaryContent {
  background-color: var(--white);
  margin: 24px 0;
  padding: 8px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.headerSecondaryList {
  width: calc(100% - 128px);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.headerSecondaryList::-webkit-scrollbar {
  display: none;
  height: 0px;
}
.headerSecondaryItem {
  line-height: 42px;
}
.headerSecondaryLink {
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 10px 16px;
  line-height: 32px;
  background-color: var(--grey-surface);
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.headerSecondaryLink:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.headerSecondaryLink.active {
  background-color: var(--secondary);
  color: var(--white);
}
@media (max-width: 1100px) {
  .headerSecondary {
    top: 90px;
    position: fixed;
    background-color: var(--white);
    border-top: 1px solid var(--card-border);
  }
  .headerSecondaryAnchor {
    height: 0 !important;
  }
  .headerSecondary.fixed {
    background-color: var(--white);
  }
  .headerSecondaryContent {
    background-color: var(--white);
    margin: 0;
    padding: 16px 0;
    border-radius: 0;
  }
  .headerSecondaryList {
    width: 100%;
    gap: 10px;
    padding-right: 30px;
  }
  .headerSecondary .wrapper {
    padding: 0 0 0 30px;
  }
}
@media (max-width: 700px) {
  .headerSecondary {
    top: 72px;
    background-color: var(--bg);
    border-top: none;
  }
  .headerSecondary.fixed {
    background-color: var(--bg);
    border-top: none;
    top: 72px !important;
  }
  .headerSecondaryContent {
    background-color: transparent;
    padding: 12px 0 16px;
  }
  .headerSecondaryList {
    gap: 8px;
    padding-right: 0;
  }
  .headerSecondary .wrapper {
    padding: 0 20px;
  }
  .headerSecondaryLink {
    background-color: var(--white);
  }
}
.homeLinkAll {
  margin: 0 auto 68px;
  width: fit-content;
  padding: 4px 16px;
}
@media (max-width: 1100px) {
  .homeLinkAll {
    margin: 0 auto 48px;
  }
}
@media (max-width: 700px) {
  .homeLinkAll {
    margin: 70px auto 32px;
  }
}
.language {
  position: relative;
}
.languageForm {
  display: flex;
  align-items: center;
}
.languageFormButton {
  font-weight: 700;
  color: var(--brown-light);
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid var(--brown-light);
  transition: color 0.3s ease-out;
}
.languageFormButton:last-of-type {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.languageFormButton.active,
.languageFormButton:hover {
  color: var(--white);
}
.languageMob {
  display: none;
}
@media (max-width: 1000px) {
  .languageMob {
    display: block;
    position: relative;
    margin: 0 6px 0 auto;
  }
  .languageMobForm {
    position: absolute;
    width: 100%;
    top: 100%;
    padding: 8px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  .languageMobForm.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
  }
  .languageMenuForm {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 56px;
  }
  .languageMenuFormButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    width: calc(33.33% - 7px);
    border-radius: 20px;
    font-weight: 700;
    color: var(--white);
    padding: 19px;
    background-color: var(--brown-light);
    transition: color 0.3s ease-out, background-color 0.3s ease-out;
  }
  .languageMenuFormButton:hover {
    color: var(--brown-dark);
    background-color: var(--bg);
  }
  .languageMenuFormButton.active {
    color: var(--brown-dark);
    background-color: var(--bg);
  }
  .languageButton {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 20px;
    background-color: transparent;
    transition: background-color 0.3s ease-out;
  }
  .languageButton.active {
    background-color: var(--white);
  }
  .languageButton svg {
    transform: rotate(0);
    transition: transform 0.3s ease-out;
  }
  .languageButton.active svg {
    transform: rotate(180deg);
  }
  .languageMobFormButton {
    padding: 9px;
    width: 100%;
    border-radius: 10px;
    background-color: transparent;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brown-dark);
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
  }
  .languageMobFormButton:hover {
    background-color: #F8EEE6;
  }
  .languageMobFormButton.active {
    background-color: #F8EEE6;
  }
  .languageButtonText {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    color: var(--brown-main);
    text-transform: uppercase;
  }
}
@media (max-width: 700px) {
  .language {
    display: none;
  }
  .language.languageMenu {
    display: flex;
  }
  .languageMenuForm {
    gap: 10px;
    width: 100%;
    margin-top: 36px;
  }
  .languageMenuFormButton {
    border-radius: 16px;
    padding: 12px;
  }
}
.logo {
  display: flex;
}
.logoHeader {
  width: 168px;
  margin-right: 36px;
}
@media (max-width: 1100px) {
  .logoHeader {
    margin-right: 16px;
  }
}
@media (max-width: 700px) {
  .logoHeader {
    width: 106px;
    margin-right: 12px;
  }
}
.main {
  background-color: var(--bg);
  margin-top: 156px;
  min-height: 80vh;
}
@media (max-width: 1000px) {
  .main {
    margin-top: 196px;
  }
}
@media (max-width: 700px) {
  .main {
    margin-top: 144px;
  }
  body {
    background-color: var(--white);
  }
}
.mainNav {
  position: relative;
}
.mainNavList {
  display: flex;
  align-items: center;
  gap: 40px;
}
.mainNavItem {
  position: relative;
}
.mainNavLink {
  color: var(--white);
  font-weight: 700;
  transition: color 0.3s ease;
}
.mainNavLink:hover {
  color: var(--yellow);
}
.mainNavLink svg path {
  fill: var(--brown-light);
  transition: fill 0.3s ease-out;
}
.mainNavLink:hover svg path {
  fill: var(--yellow);
}
@media (max-width: 1000px) {
  .mainNav {
    display: none;
  }
}
.popularCates {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}
.popularCatesTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.popularCatesTitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--brown-dark);
}
.popularCatesNav {
  display: flex;
  gap: 8px;
}
.popularCatesNavButton {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.popularCatesNavButton:hover {
  background-color: var(--yellow);
}
.popularCatesNavButton:disabled {
  opacity: 0.5;
}
.popularCatesNavButton:disabled:hover {
  background-color: var(--white);
}
.popularCatesLink {
  width: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--brown-main);
  text-align: center;
}
.popularCatesName {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
}
.popularCatesImage {
  position: relative;
  width: 110px;
  height: 110px;
}
.popularCatesImage img {
  transform: scale(1);
  transition: transform 0.3s ease-out;
}
.popularCatesImage:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background-color: var(--brown-verylight);
  transform: scale(1) translate(-50%, -50%);
  transition: transform 0.3s ease-out;
}
.popularCatesLink:hover .popularCatesImage:before {
  transform: translate(-50%, -50%) scale(0.01);
}
.popularCatesLink:hover .popularCatesImage img {
  transform: scale(1.05);
}
.mainSlider {
  position: relative;
  overflow: hidden;
  margin-bottom: 42px;
}
.mainSliderPagination {
  display: none;
}
.productSliderPagination {
  position: absolute;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.productSliderPagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: var(--brown-bieger) !important;
  margin: 0 !important;
  transition: background-color 0.3s ease-out;
}
.productSliderPagination .swiper-pagination-bullet:hover {
  background-color: var(--brown-light) !important;
}
.productSliderPagination .swiper-pagination-bullet-active {
  background-color: var(--yellow) !important;
}
.mainSliderSlide picture,
.mainSliderSlideWrapper {
  display: flex;
}
.mainSliderSlide img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 40px;
}
.mainSliderNavButton {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background-color: var(--white-70);
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.mainSliderNavButton:hover {
  background-color: var(--white);
}
.mainSliderNavButtonNext {
  right: 20px;
}
.mainSliderNavButtonPrev {
  left: 20px;
}
@media (min-width: 2500px) {
  .mainSliderSlide img {
    max-height: 80vh;
  }
}
@media (max-width: 1000px) {
  .mainSliderNavButton {
    width: 36px;
    height: 36px;
    border-radius: 16px;
  }
  .mainSliderNavButton svg {
    width: 16px;
  }
}
@media (max-width: 700px) {
  .mainSlider {
    margin-bottom: 15px;
  }
  .mainSliderPagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: var(--brown-bieger) !important;
    margin: 0 !important;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--yellow) !important;
  }
  .swiper-pagination-bullet:hover {
    background-color: var(--brown-light) !important;
  }
  .mainSliderSlide img {
    border-radius: 20px;
  }
  .mainSliderNav {
    display: none;
  }
}
.mobileMenu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100dvh;
  transition: opacity 0.3s ease-out;
  background-color: var(--brown-main);
}
.mobileMenu.active {
  opacity: 1;
  z-index: 101;
  pointer-events: auto;
}
.mobileMenuContent {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mobileMenuHeader {
  background-color: var(--brown-main);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobileMenuHeader .headerButtonBurger {
  margin-right: 24px;
} 
.mobileMenuHeader .headerButtonBurgerIcon {
  display: block;
  position: relative;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--brown-main);
  transition: background-color 0.3s ease-out;
} 
.mobileMenuHeader .headerButtonBurgerIcon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--brown-bieger);
  transform: rotate(45deg);
  transition: transform 0.3s ease-out, top 0.3s ease-out;
} 
.mobileMenuHeader .headerButtonBurgerIcon::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--brown-bieger);
  transform: rotate(45deg);
  transition: transform 0.3s ease-out, bottom 0.3s ease-out;
}
.mobileMenuBody {
  padding: 48px 40px;
  height: 100%;
  position: relative;
  background-color: var(--bg-menu);
}
.mobileMenuBody .mainNav {
  display: block;
}
.mobileMenuBody .mainNavList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobileMenuBody .mainNavItem {
  position: static;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--brown-light);
}
.mobileMenuBody .mainNavItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.mobileMenuFooter {
  background-color: var(--brown-main);
  padding: 20px 40px 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.mobileMenuFooter .headerCallLinkText {
  display: flex;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
}
.mobileMenuFooter .headerCallLinkTextPhone {
  font-size: 22px;
  line-height: 24px;
}
.mobileMenuBody .mainNavLink {
  padding: 16px 0;
  font-size: 17px;
  line-height: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
}
.mobileMenuBody .mainNavLinkArrow {
  margin-left: auto;
}
.mobileMenuBody .mainNavLink:hover .mainNavLinkArrow path {
  stroke: var(--yellow);
  fill: unset;
}
@media (max-width: 1100px) {
  .mobileMenuContent {
    background-color: transparent;
  }
  .mobileMenuList {
    background-color: var(--bg);
    height: 100%;
  }
  .mobileMenu .headerButtonAccountMob {
    margin-left: auto;
  }
}
@media (max-width: 700px) {
  .mobileMenu .headerSecondary {
    display: none;
  }
  .mobileMenuLanguage {
    margin-bottom: 24px;
  }
  .mobileMenuLanguage .language {
    display: flex;
    order: 2;
    width: 100%;
    z-index: 110;
  }
  .mobileMenuLanguage .languageButton {
    background-color: var(--white);
    width: 100%;
  }
  .mobileMenuLanguage .languageButton.active {
    background-color: var(--white);
  }
  .mobileMenuLanguage .languageForm {
    left: 0;
    transform: translateX(0);
    width: 100%;
  }
  .mobileMenuHeader {
    padding: 12px 20px;
    gap: 12px;
  }
  .mobileMenuHeader .headerButtonBurger {
    margin-right: 0;
  }
  .mobileMenuBody {
    padding: 32px 20px;
  }
  .mobileMenuBody .mainNavLink {
    font-size: 15px;
  }
  .mobileMenuBody .mainNavItem {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .mobileMenu .socials {
    display: none;
  }
  .mobileMenu .headerCallLink {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    gap: 16px;
    justify-content: center;
    background-color: var(--green);
  }
  .mobileMenu .headerCallLinkIcon {
    width: 29px;
    height: 29px;
    background-color: transparent;
  }
  .mobileMenu .headerButtonCart {
    margin-left: auto;
  }
}
.modal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black-30);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
  z-index: 1000;
  backdrop-filter: blur(2px) saturate(120%);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modalContent {
  background-color: var(--bg);
  border-radius: 20px;
  position: relative;
}
.modalClose {
  position: absolute;
  top: 38px;
  right: 32px;
  width: 28px;
  height: 28px;
  z-index: 2;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalClose svg path {
  fill: var(--brown-bieger);
  transition: fill 0.3s ease;
}
.modalCloseNote {
  top: 24px;
  right: 24px;
}
.modalClose:hover svg path {
  fill: var(--brown-main);
}
.modal.modalNotific {
  transition: opacity 0.2s ease-in-out;
  background-color: transparent;
  backdrop-filter: none;
  width: auto;
  height: auto;
  top: 100px;
  right: 60px;
  left: unset;
}
.modalNotificContent {
  max-width: 500px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--btn-shadow);
}
.modalNotificText {
  color: var(--brown-dark);
  font-size: 17px;
  font-weight: 700;
}
.modalNoteContent {
  max-width: 520px;
  width: 100%;
  padding: 32px 36px;
  background-color: var(--bg);
}
.modalNoteContent .accountPageForm {
  gap: 24px;
}
.modalNoteTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 36px;
}
.modalNoteText {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 48px;
  padding-top: 50px;
  color: var(--brown-dark);
}
.modalNoteButtons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.modalNoteButtons button {
  padding: 14px;
  border-radius: 16px;
  width: calc(50% - 6px);
}
.modalAuthContent {
  padding: 32px;
  height: auto;
  max-height: 90vh;
  width: 560px;
}
.modalCartContent {
  padding: 24px 40px;
  border-radius: 0;
  width: 850px;
}
.modalCartCounterItem {
  margin-top: 16px;
}
.modalCartTop {
  padding: 0 40px 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
}
.modalCartClear {
  padding: 8px 16px;
  margin-left: auto;
  border-radius: 20px;
  color: var(--secondary);
  transition: color 0.3s ease;
}
.modalCartClear:hover {
  color: var(--secondary-hover);
}
.modalCartTitle {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: var(--text-primary);
}
.modalCartList {
  margin-bottom: 32px;
  height: 45vh;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.checkoutCart .modalCartList {
  height: 100%;
}
.modalCartList::-webkit-scrollbar {
  width: 8px;
  background: transparent;
  border: 2px solid transparent;
}
.modalCartList::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 8px;
}
.modalCartList::-webkit-scrollbar-track {
  background: transparent;
}
.modalCartListCheckout {
  overflow-x: visible;
  max-height: 100%;
}
.modalCartListCheckout .modalCartItemOptionsText {
  background-color: var(--white);
}
.modalCartItem {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}
.modalCartItem:last-child {
  border: none;
}
.modalCartItemImage {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.modalCartItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modalCartItemName {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-align: left;
}
.modalCartItemActions {
  width: 180px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.modalCartItemPrice {
  margin-top: auto;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: var(--text-primary);
}
.modalCartItemInfo {
  width: calc(100% - 342px);
  display: flex;
  flex-direction: column;
}
.modalCartItemOptions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: auto;
}
.modalCartItemOptionsItem {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modalCartItemOptionsText {
  line-height: 32px;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 16px;
  background-color: var(--grey-surface);
  box-shadow: 0 1px 2px var(--black-12);
}
.modalCartItemOptionsEdit {
  display: flex;
}
.modalCartItemOptionsEdit svg path {
  fill: var(--text-color-disabled);
  transition: fill 0.3s ease;
}
.modalCartItemOptionsEdit:hover svg path {
  fill: var(--secondary-hover);
}
.modalCartItemDelete {
  display: flex;
}
.modalCartItemDelete svg path {
  fill: var(--text-color-disabled);
  transition: fill 0.3s ease;
}
.modalCartItemDelete:hover svg path {
  fill: var(--secondary-hover);
}
.modalCartTotal {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--card-border);
}
.modalCartTotalPrice {
  font-weight: 600;
  color: var(--text-primary);
}
.modalCartCheckout {
  padding: 8px;
  margin-top: 24px;
}
.modalCartEmpty {
  padding: 80px 40px 40px;
  text-align: center;
}
.modalCartEmptyText {
  margin-bottom: 64px;
}
.modalCartEmptyButton {
  padding: 4px 20px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
}
.modalResumeContent {
  padding: 24px;
  max-width: 1000px;
}
.modalResumeTitle {
  color: var(--text-primary);
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 32px;
}
.modalResumeVacancy {
  color: var(--text-color-secondary);
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}
.modalResumeSuccess {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 20px;
  transition: opacity 0.3s ease;
}
.modalResumeSuccess.active {
  opacity: 1;
  z-index: 2;
}
.modalResumeSuccessTitle {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 42px;
}
.modalResumeSuccessIcon {
  margin-bottom: 16px;
}
.modalResumeSuccessText {
  color: var(--text-primary);
  margin-bottom: 42px;
}
.modalResumeSuccessButton {
  padding: 8px 135px;
}
.modalResumeClose {
  right: -40px;
  top: 0;
}
@media (max-width: 1400px) {
  .modal.modalNotific {
    right: 60px;
  }
}
@media (max-width: 1000px) {
  .modal.modalNotific {
    right: 40px;
  }
}
@media (max-width: 700px) {
  .modal.modalNotific {
    right: 20px;
    top: 150px;
  }
  .modalNotificContent {
    padding: 9px 16px;
    max-width: 260px;
    border-radius: 16px;
  }
  .modalNotificText {
    font-size: 13px;
    line-height: 24px;
    width: calc(100% - 34px);
  }
}
@media (max-width: 1100px) {
  .modalResumeClose {
    right: 40px;
    top: 32px;
    z-index: 10;
  }
  .modalResumeSuccessTitle {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .modalResumeSuccessText {
    color: var(--text-primary);
    margin-bottom: 32px;
  }
  .modalAuthContent {
    width: 600px;
  }
  .modalCartContent {
    width: 660px;
  }
  .modalCartItemOptions {
    margin-bottom: 16px;
  }
  .modalCartItemActions {
    width: 100px;
  }
  .modalCartItemInfo {
    width: calc(100% - 292px);
  }
  .modalProduct {
    padding: 0;
  }
  .modalProductContent {
    padding: 16px 40px;
    height: 100vh;
    max-width: 100%;
    flex-direction: column;
    border-radius: 0;
    overflow-y: auto;
  }
  .modalProductSlider {
    width: 362px;
    height: 280px;
    margin: 0 auto;
  }
  .modalProductSliderNav {
    position: absolute;
    width: 100%;
    left: 0;
  }
  .modalProductSliderSlide {
    text-align: center;
    font-style: 0;
    line-height: 0;
  }
  .modalProductSliderSlide img {
    width: 270px;
  }
  .modalProductInfo {
    height: calc(100% - 296px);
    padding-left: 0;
    width: 100%;
    padding-bottom: 60px;
  }
  .modalProductInfoAddToCart {
    margin-top: 16px;
  }
  .modalProductTitle {
    font-size: 24px;
  }
  .modalProductFeatures {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .modalProductWeightSlider {
    padding: 0;
  }
  .modalProductWeightSliderNav {
    display: none;
  }
  .modalProductWeightSliderTitle {
    font-size: 14px;
    line-height: 24px;
    width: 60px;
    height: 32px;
  }
  .modalProductFillingList {
    gap: 28px 12px;
    height: 330px;
  }
  .modalProductFillingItem {
    width: calc(20% - 10px);
  }
  .modalProductFillingImage {
    height: 112px;
  }
  .modalProductClose {
    top: 18px;
    right: 18px;
    box-shadow: 0 2px 6px var(--black-10);
  }
  .modalProductClose svg path {
    stroke: var(--secondary);
  }
  .modalResumeContent {
    max-width: 688px;
  }
  .modalResumeTitle {
    font-size: 24px;
    padding-right: 44px;
  }
  .modalResumeVacancy {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 900px) {
  .modalProductFillingItem {
    width: calc(25% - 9px);
  }
}
@media (max-width: 700px) {
  .modalProductInfoContent {
    min-height: 70%;
  }
  .modalNotificContent {
    padding: 16px;
  }
  .modalNotificIcon {
    display: flex;
  }
  .modalProductTipBody {
    width: 286px;
    top: 26px;
    right: 6px;
    font-size: 14px;
    line-height: 20px;
    margin-right: 0;
  }
  .modalNotificIcon svg {
    width: 20px;
  }
  .modalResumeTitle {
    font-size: 20px;
    line-height: 32px;
    padding-right: 20px;
  }
  .modalResumeContent {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  .modalResumeContent::-webkit-scrollbar {
    width: 8px;
    background: transparent;
    border: 2px solid transparent;
  }
  .modalResumeContent::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 8px;
  }
  .modalResumeContent::-webkit-scrollbar-track {
    background: transparent;
  }
  .modalResumeSuccess {
    padding: 16px;
  }
  .modalResumeSuccessTitle {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .modalResumeSuccessIcon {
    width: 120px;
  }
  .modalResumeSuccessText {
    margin-bottom: 32px;
    text-align: center;
  }
  .modalResumeContent {
    padding: 16px;
    margin: 0 20px;
    height: 90%;
  }
  .modalResumeSuccessButton {
    padding: 8px;
    width: 100%;
  }
  .modalClose {
    top: 20px;
    right: 20px;
  }
  .modalAuthContent {
    width: 100%;
    height: 100vh;
    padding: 20px;
    max-height: 100%;
    border-radius: 0;
  }
  .modalCartContent {
    width: 100%;
    height: 100vh;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
  }
  .modalCartList {
    margin-bottom: 18px;
  }
  .modalCartListCheckout {
    overflow-x: visible;
    max-height: 100%;
  }
  .modalCartItem {
    flex-wrap: wrap;
    align-items: flex-end;
    position: relative;
    gap: 10px;
  }
  .modalCartItemImage {
    margin: 0 auto;
    width: 130px;
    height: 130px;
  }
  .checkoutCart .modalCartItemImage {
    width: 100%;
    height: 220px;
  }
  .modalCartItemActions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .modalCartItemInfo {
    width: 100%;
  }
  .modalCartItemPrice {
    position: absolute;
    bottom: 32px;
    right: 0;
  }
  .modalCartItemOptions {
    gap: 10px;
    margin-bottom: 6px;
  }
  .modalCartItemOptionsText {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 8px;
  }
  .modalCartItemDelete {
    position: absolute;
    top: 0;
    right: 0;
  }
  .checkoutCart .modalCartItemDelete {
    top: 236px;
  }
  .modalCartTotal {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
  }
  .modalCartTotalPrice {
    font-weight: 600;
    color: var(--text-primary);
  }
  .modalCartCheckout {
    padding: 8px;
  }
  .modalProductContent {
    padding: 16px 20px;
  }
  .modalProductSlider {
    width: 320px;
    height: 240px;
  }
  .modalProductSliderSlide img {
    width: 240px;
  }
  .modalProductInfo {
    height: calc(100% - 240px);
  }
  .modalProductTitle {
    font-size: 20px;
  }
  .modalProductFeatures {
    flex-direction: column;
  }
  .modalProductFillingList {
    gap: 20px 10px;
    height: 310px;
  }
  .modalProductFillingItem {
    width: calc(33.33% - 7px);
  }
  .modalProductFillingImage {
    height: 140px;
  }
  .modalProductClose {
    top: 16px;
    right: 16px;
  }
}
@media (max-width: 500px) {
  .modalProductFillingTitle {
    line-height: 24px;
    height: 74px;
  }
  .modalProductFillingItem {
    width: calc(50% - 5px);
  }
  .modalCartTop {
    padding: 0 0 16px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .modalCartClear {
    margin-left: 0;
    padding: 0;
  }
}
.productCard {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px transparent;
  transition: box-shadow 0.3s ease-out;
}
.productCard:hover {
  box-shadow: 0 4px 24px var(--btn-shadow);
}
.productCardInfo {
  width: 100%;
  display: flex;
}
.productCardImage {
  width: 100%;
  height: 242px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.productCardImage:hover img {
  transform: scale(1.1);
}
.productCardImage:hover .img2 {
  opacity: 1;
  z-index: 1;
}
.productCardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1);
}
.productCardImage .img2 {
  opacity: 0;
}
.productCardStickers {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}
.productCardSticker {
  padding: 6px 12px;
  border-radius: 12px;
  display: block;
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
.productCardStickerLimited {
  background-color: var(--sticker-violet);
}
.productCardStickerNew {
  background-color: var(--green);
}
.productCardStickerVegan {
  background-color: var(--orange);
}
.productCardStickerSuperPrice {
  color: var(--brown-dark);
  background-color: var(--yellow);
}
.productCardStickerDiscount {
  background-color: var(--red);
}
.productCardStickerTop {
  background-color: var(--sticker-fuksia);
}
.productCardTitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--brown-main);
  display: block;
  text-align: left;
  padding: 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.productCardWeight {
  padding: 4px 20px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #C1C1C1;
}
.productCardWeightList {
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.productCardWeightList .productCardWeight {
  padding: 4px;
}
.productCardDescription {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-color-secondary);
  display: -webkit-box;
  min-height: 64px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.productCardTypeWrapper {
  margin-bottom: 10px;
  padding: 0 20px;
}
.productCardType {
  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  padding: 6px 12px 5px;
  text-transform: uppercase;
  border-radius: 12px;
}
.productContent .productCardType {
  padding: 6px 12px;
}
.productCardTypePosted {
  color: #71483C;
  background-color: #FFD5BB;
}
.productCardTypeChilled {
  color: var(--blue);
  background-color: var(--sticker-light-blue);
}
.productCardTypeReadyToEat {
  color: #117D25;
  background-color: #E0F8A2;
}
.productCardTypeFrozenFabricat {
  color: var(--sticker-dark-pink);
  background-color: #FFE5FD;
}
.productCardTypeFrozenProduct {
  color: #27515F;
  background-color: #BBF1FF;
}
.productCardTypeFrozenReadyProduct {
  color: #147B6F;
  background-color: #B8FBE1;
}
.productCardTypePreorder {
  color: var(--sticker-brown);
  background-color: var(--sticker-yellow);
}
.productCardBottom {
  display: flex;
  align-items: center;
  padding: 0 20px 20px;
  margin-top: auto;
  gap: 10px;
}
.productCardAddToCart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
}
.productCardAddToCartText {
  font-size: 19px;
  line-height: 20px;
  font-weight: 700;
  color: var(--brown-main);
  padding-left: 6px;
}
.productCardAddToCartPlus {
  font-size: 19px;
  line-height: 20px;
  font-weight: 700;
  color: var(--brown-main);
  opacity: 0;
  width: 0;
  height: 0;
  transition: opacity 0.3s ease-out, width 0.3s ease-out, height 0.3s ease-out;
}
.productCardAddToCartPlus.active {
  opacity: 1;
  width: auto;
  height: auto;
}
.productCardAddToCart svg path {
  fill: var(--brown-bieger);
  transition: fill 0.3s ease-out;
}
.productCardAddToCart:hover svg path {
  fill: var(--yellow);
}
.productCardPrice {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: var(--brown-main);
}
.productCardPriceOld {
  font-size: 16px;
  line-height: 32px;
  font-weight: 700;
  color: var(--red);
  text-decoration: line-through;
}
.productCardPriceMobile {
  display: none;
}
@media (max-width: 1000px) {
  .productCardImage {
    height: 300px;
  }
}
@media (max-width: 700px) {
  .productCardImage {
    height: 120px;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
  }
  .productCardTypeWrapper {
    padding: 0;
  } 
  .productCard .productCardSticker {
    padding: 2px 9px;
    border-radius: 7px;
    font-size: 8px;
    line-height: 16px;
  }
  .productCard .productCardType {
    font-size: 8px;
    line-height: 12px;
    padding: 4px 6px;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  .productCardType,
  .productCardSticker {
    font-size: 10px;
    line-height: 16px;
    padding: 6px 12px;
  }
  .productStickers {
    margin-bottom: 20px;
    gap: 4px;
  }
  .productCardTitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    padding: 0 10px;
    -webkit-line-clamp: 2;
  }
  .productCardWeight {
    padding: 4px 10px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 20px;
  }
  .productCardBottom {
    padding: 0 10px 10px;
  }
  .productCardPrice {
    font-size: 16px;
    line-height: 28px;
  }
  .productCardPriceOld {
    font-size: 13px;
    line-height: 28px;
  }
  .productCardAddToCart {
    padding: 8px;
    background-color: var(--yellow);
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  .productCardAddToCart:hover {
    background-color: var(--yellow-hover);
  }
  .productCardAddToCart svg {
    width: 16px;
    height: 16px;
  }
  .productCardAddToCart svg path {
    fill: var(--brown-main);
  }
  .productCardAddToCart:hover svg path {
    fill: var(--brown-main);
  }
  .productCardAddToCartText {
    font-size: 0;
    line-height: 0;
    padding-left: 0;
  }
  .productCardStickers {
    top: 10px;
    left: 10px;
  }
  .productCardAddToCartPlus {
    opacity: 1;
    width: auto;
    height: auto;
    font-size: 13px;
    line-height: 16px;
  }
}
.productsSlider {
  margin-bottom: 72px;
  padding: 0 15px;
  overflow: hidden;
}
.productsSlider .swiper-wrapper {
  padding: 20px 0;
}
.productsSliderWrapper {
  overflow: hidden;
  padding: 0 8px;
}
.productsSliderTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.productsSliderTitle {
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 24px;
  line-height: 32px;
}
.productsSliderLink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px;
  border-radius: 20px;
}
.productsSliderNav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.productsSliderNavButton {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.productsSliderNavButton:hover {
  background-color: var(--secondary-hover);
}
.productsSliderSlide .productCardTitle {
  min-height: 72px;
}
@media (max-width: 1100px) {
  .productsSlider {
    margin: 42px auto 72px;
  }
  .productsSliderWrapper {
    padding: 0 0 0 40px;
  }
  .productsSliderTitle {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 700px) {
  .productsSlider {
    margin: 48px auto 58px;
  }
  .productsSliderTop {
    margin-bottom: 24px;
  }
  .productsSliderTitle {
    font-size: 18px;
    line-height: 26px;
  }
  .productsSliderNav {
    display: none;
  }
  .productsSliderRelated .wrapper {
    padding-right: 0;
  }
  .productsSliderSlide .productCardTitle {
    min-height: 36px;
  }
}
.homeContent {
  display: flex;
  gap: 32px;
}
.homeContentWrapper {
  width: calc(100% - 334px);
}
.homeContentCombo {
  padding: 52px 32px 56px;
  background-color: #FFF0C0;
  border-radius: 20px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 46px;
}
.homeContentComboTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.homeContentComboDesc {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--brown-main);
  margin-bottom: 40px;
}
.homeContentComboLink {
  padding: 14px 24px;
  width: fit-content;
}
.homeContentComboImage50 {
  position: absolute;
  bottom: 0;
  right: 250px;
  width: 237px;
  height: 120px;
}
.homeContentComboImageFull {
  position: absolute;
  top: -60px;
  right: 44px;
  width: 300px;
  height: 300px;
  object-fit: cover;
  transform-origin: center center;
  animation: combo-spin 30s linear infinite;
}
@keyframes combo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.stickyCategories {
  width: 302px;
  margin-bottom: 42px;
  position: relative;
}
.stickyCategories .headerCatalog  {
  position: sticky;
  top: 110px;
  margin-top: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: all;
  max-height: 86vh;
  height: fit-content;
}
.headerCatalog {
  position: absolute;
  top: 100%;
  left: 0;
  width: 302px;
  margin-top: 28px;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
  height: 90vh;
}
.headerCatalog.active {
  opacity: 1;
  z-index: 101;
  pointer-events: auto;
}
.headerCatalogList {
  background-color: var(--bg-menu);
  border-radius: 20px;
  padding: 10px 20px;
  box-shadow: 0 0 34px var(--black-35);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  max-height: 85vh;
  height: fit-content;
}
.headerCatalogList::-webkit-scrollbar {
  width: 0;
}
.headerCatalogList::-webkit-scrollbar-track {
  background: transparent;
}
.headerCatalogList::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.headerCatalogItem {
  padding: 10px 0;
  border-bottom: 2px solid var(--brown-light);
}
.headerCatalogItem:last-child{
  border-bottom: none;
}
.headerCatalogLink {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--white);
  opacity: 1;
}
.headerCatalogLinkName {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s ease-out;
  margin-left: 12px;
  width: calc(100% - 26px);
}
.headerCatalogLink svg {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.headerCatalogItem:hover .headerCatalogLink svg {
  opacity: 0.8;
}
.headerCatalogItem:hover .headerCatalogLinkName {
  opacity: 0.8;
}
.headerCatalogItem:active .headerCatalogLinkName,
.headerCatalogItem:active .headerCatalogLink svg {
  opacity: 1;
}
.headerCatalogMobile {
  position: absolute;
  top: 75px;
  left: 100%;
  max-width: 100%;
  width: 100vw;
  height: calc(100vh - 75px);
  transform: translateX(0);
  background-color: var(--bg);
  margin: 0;
  padding: 24px 40px 120px;
  opacity: 0;
  pointer-events: none;
  transition: left 0.5s ease, opacity 0.3s ease;
}
.headerCatalogMobile.active {
  left: 0;
  opacity: 1;
  z-index: 110;
  pointer-events: auto;
  overflow-y: auto;
}
.headerCatalogMobileClose {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-disabled);
}
.headerCatalogMobileClose svg {
  margin-right: 10px;
}
.headerCatalogMobileCloseName {
  color: var(--text-primary);
}
.headerCatalogMobile .headerCatalogList {
  background-color: transparent;
  padding: 0;
  columns: 2;
  box-shadow: none;
}
.headerCatalogMobile .headerCatalogItem {
  padding: 16px;
  border: 1px solid var(--card-border);
  box-shadow: none;
  border-radius: 20px;
  background-color: var(--white);
}
@media (max-width: 1300px) {
  .homeContentComboImage50 {
    right: 140px;
  }
  .homeContentComboImageFull {
    width: 270px;
    height: 270px;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .homeContentComboImageFull {
    display: none;
  }
  .homeContentComboImage50 {
    right: 60px;
  }
  .homeContentCombo {
    margin-top: 0;
  }
}
@media (max-width: 1000px) {
  .stickyCategories {
    display: none;
  }
  .homeContentWrapper {
    width: 100%;
  }
  .homeContentCombo {
    margin: 16px 0 48px;
    padding: 36px;
  }
  .homeContentComboTitle {
    font-size: 24px;
  }
  .homeContentComboDesc {
    font-size: 17px;
    margin-bottom: 28px;
    width: 346px;
  }
  .homeContentComboDesc br {
    display: none;
  }
  .homeContentComboImage50 {
    width: 167px;
    height: 90px;
    right: 180px;
  }
  .homeContentComboImageFull {
    width: 226px;
    height: 226px;
    top: -34px;
    display: block;
  }
  .headerCatalog {
    width: 100%;
    margin-top: 0;
    top: 0;
    height: max-content;
    transform: translateX(100%);
    transition: transform 0.5s ease-out, opacity 0.3s ease-out;
    background-color: var(--bg-menu);
  }
  .headerCatalog.active {
    transform: translateX(0);
  }
  .headerCatalogList {
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-height: 68vh;
  }
  .headerCatalogItem {
    padding: 0 0 24px;
    margin-bottom: 24px;
  }
  .mobileMenuButtonBack {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 19px;
    line-height: 20px;
    font-weight: 700;
    color: var(--yellow);
    padding: 16px 0;
    margin-bottom: 42px;
  }
}
@media (max-width: 700px) {
  .accountMobileMenu {
    width: 100%;
    margin-top: 0;
    top: 0;
    height: 75vh;
    transform: translateX(100%);
    transition: transform 0.5s ease-out, opacity 0.3s ease-out;
    background-color: var(--bg-menu);
    position: absolute;
    left: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.5s ease;
  }
  .accountMobileMenu.active {
    opacity: 1;
    z-index: 101;
    pointer-events: auto;
    transform: translateX(0);
  }
  .accountMobileMenuItem {
    border-bottom: 2px solid var(--brown-light);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .accountMobileMenuItem:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .accountMobileMenuLink {
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 16px;
    color: var(--white);
    font-size: 15px;
    line-height: 20px;
    padding: 16px 0;
  }
  .mobileMenuButtonBack {
    margin-bottom: 8px;
    font-size: 17px
  }
  .headerCatalogItem {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .headerCatalogLink {
    font-size: 15px;
    line-height: 20px;
  }
  .headerCatalogLink img {
    width: 42px;
    height: 42px;
  }
  .headerCatalogMobile {
    top: 0;
    padding: 16px 20px 100px;
    border-radius: 20px 20px 0 0;
  }
  .headerCatalogMobileClose {
    margin-bottom: 16px;
  }
  .headerCatalogMobileClose svg {
    margin-right: 12px;
  }
  .headerCatalogMobile .headerCatalogList {
    columns: unset;
    display: flex;
    flex-direction: column;
  }
  .headerCatalogMobile .headerCatalogItem {
    margin-bottom: 10px;
  }
  .homeContentComboImage50 {
    display: none;
  }
  .homeContentComboImageFull {
    width: 154px;
    height: 152px;
    top: -40px;
    right: 10px;
  }
  .homeContentCombo {
    margin: 30px 0 32px;
    padding: 60px 24px 28px;
  }
  .homeContentComboTitle {
    font-size: 20px;
    margin-bottom: 0;
  }
  .homeContentComboDesc {
    font-size: 15px;
    margin-bottom: 20px;
    width: 100%;
  }
  .homeContentComboLink {
    padding: 12px 24px;
  }
}
.userNav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
@media (max-width: 1100px) {
  .userNav {
    gap: 18px;
  }
}
@media (max-width: 1000px) {
  .userNav {
    gap: 12px;
    width: calc(100% - 168px);
  }
}
@media (max-width: 700px) {
  .userNav {
    margin-left: auto;
  }
}
.searchHeader {
  max-width: calc(100% - 470px);
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.searchResultList {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 8px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  padding: 16px;
  transition: opacity 0.3s ease-out;
}
.searchResultListMob {
  position: static;
  top: unset;
  left: unset;
  width: 100%;
  background-color: var(--white);
  border-radius: 0;
  margin-top: 0;
  padding: 40px;
  transition: opacity 0.3s ease-out;
}
.searchResultListMob.active {
  margin-top: 40px;
}
.searchResultList.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.searchResultItem {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--grey-stroke);
  gap: 10px;
}
.searchResultItem.hide {
  display: none;
}
.searchResultItem:nth-child(n+3) {
  border-bottom: none;
}
.searchResultImage {
  width: 100px;
  height: 74px;
  border-radius: 12px;
  overflow: hidden;
}
.searchResultImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}
.searchResultItem:hover .searchResultImage img {
  transform: scale(1.1);
}
.searchResultLink {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 155px);
}
.searchResultInfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 65%;
  width: 100%;
}
.searchResultName {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: var(--brown-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.searchResultWeight {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: #C1C1C1;
}
.searchResultCardAddToCart {
  margin-left: auto;
  width: 144px;
  padding: 11px 12px;
  gap: 2px;
}
.searchResultCardAddToCart .productCardAddToCartPlus {
  width: auto;
  height: auto;
  opacity: 1;
}
.searchResultCardAddToCart .productCardAddToCartText {
  width: auto;
  height: auto;
  opacity: 1;
  padding-left: 6px;
}
.searchResultShowAll button {
  width: 100%;
  padding: 9px;
}
@media (max-width: 1000px) {
  .searchHeader {
    display: none;
  }
}
.searchHeaderClear {
  margin-left: auto;
  display: flex;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.searchHeaderClear.active {
  opacity: 1;
}
.searchHeaderInput {
  width: calc(100% - 68px);
  background-color: transparent;
  font-weight: 600;
}
.searchPageTop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}
.searchPageTitle {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  width: calc(50% - 10px);
}
.searchPageSubitle {
  font-size: 17px;
  width: calc(50% - 10px);
}
.searchShow {
  width: 250px;
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--brown-dark);
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px;
}
.searchShowSelect {
  background-color: transparent;
}
.searchPageList {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
}
.searchPageItem {
  width: calc(25% - 15px);
}
.searchPageContent {
  margin-bottom: 72px;
}
@media (max-width: 1200px) {
  .searchPageItem {
    width: calc(33.33% - 14px);
  }
}
@media (max-width: 1000px) {
  .searchPageItem {
    width: calc(50% - 10px);
  }
}
@media (max-width: 700px) {
  .searchPageTop {
    gap: 0;
  }
  .searchPageTitle {
    gap: 12px;
    font-size: 22px;
    line-height: 36px;
    width: 100%;
    margin-bottom: 32px;
  }
  .searchPage .breadcrumbs {
    display: none;
  }
  .searchPageSubitle {
    font-size: 14px;
    width: 100%;
    margin-bottom: 20px;
  }
  .searchShow {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
}
.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.socialsLink {
  display: flex;
}
.socialsLink svg path {
  fill: var(--white-70);
  transition: fill 0.3s ease;
}
.socialsLink:hover svg path {
  fill: var(--yellow);
}
.authBlock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.authBlockInputError {
  color: var(--red);
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 15px;
}
.authBlockItem {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transition: opacity 0.3s ease-out;
}
.authBlockItem.active {
  position: relative;
  top: unset;
  left: unset;
  height: auto;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.authBlockImage {
  text-align: center;
  margin-bottom: 32px;
}
.authBlockTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.authBlockSubtitle {
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #9E9187;
}
.authBlockSuccessReg,
.authBlockSuccessRecovery {
  text-align: center;
}
.authBlockSuccessReg svg,
.authBlockSuccessRecovery svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
}
.authBlockField {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 11px 24px;
  border-radius: 16px;
  background-color: var(--white);
}
.authBlockInput {
  width: calc(100% - 40px);
  background-color: transparent;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  color: var(--brown-main);
}
.authBlockInput::placeholder {
  color: var(--brown-main);
  font-weight: 600;
}
.authBlockPassButton {
  display: flex;
}
.authBlockPassButton svg path {
  fill: var(--grey-stroke);
  transition: fill 0.3s ease;
}
.authBlockPassButton.active svg path {
  fill: var(--brown-hover);
}
.authBlockForget {
  width: 100%;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-align: right;
  color: var(--red);
  margin: 4px 0 16px;
  transition: color 0.3s ease;
}
.authBlockForget:hover {
  color: var(--red-hover);
}
.authBlockSubmit {
  padding: 14px;
  width: 100%;
  margin-bottom: 28px;
}
.authBlockPolicy {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 28px;
  color: var(--brown-light);
}
.authBlockPolicy a {
  color: var(--brown-light);
  text-decoration: underline;
}
.authBlockPolicy label {
  cursor: pointer;
  padding-left: 36px;
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--brown-light);
}
.authBlockPolicy input {
  display: none;
}
.authBlockPolicy input:checked + label::after {
  opacity: 1;
}
.authBlockPolicy input:checked + label::before {
  opacity: 0;
}
.authBlockPolicy label::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  opacity: 1;
  border: 2px solid #9B9B9B;
  transition: border 0.3s ease-out;
}
.authBlockPolicy label:hover::before {
  border: 2px solid var(--brown-main);
}
.authBlockPolicy label::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(../images/icons/checkbox-full.svg) no-repeat center center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.authBlockSwitch {
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  color: var(--brown-dark);
  text-align: center;
}
.authBlockButtonSwitch {
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--brown-light);
}
.authBlockPhoneCode {
  display: none;
}
.authBlockPhoneCode.active {
  display: block;
  padding-right: 8px;
  line-height: 32px;
}
.authBlockText {
  line-height: 28px;
  font-size: 17px;
  text-align: center;
  color: #9E9187;
}
.authBlockRecoveryBack {
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  color: var(--secondary);
  text-decoration: underline;
}
.authBlockIcon {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 700px) {
  .authBlock .authBlockForm {
    width: 100%;
  }
  .authBlockSubmit {
    max-width: 100%;
  }
  .authBlockPolicy {
    width: 100%;
  }
  .authBlockSwitch {
    width: 100%;
  }
  .authBlockButtonSwitch {
    width: 100%;
  }
}
.recoveryPage {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.counterItem {
  display: flex;
  align-items: center;
  gap: 16px;
}
.counterItemButton {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border: 2px solid var(--brown-light);
  transition: border 0.3s ease;
}
.counterItemButton svg path {
  fill: var(--brown-main);
  transition: fill 0.3s ease;
}
.counterItemButton:hover {
   border: 2px solid var(--yellow);
}
.counterItemButton:hover svg path {
  fill: var(--yellow);
}
.counterItemButton:disabled svg path {
  fill: var(--brown-bieger);
}
.counterItemButton:disabled svg path {
  fill: var(--brown-bieger);
}
.counterItemInput {
  width: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  background-color: transparent;
  color: var(--brown-dark);
}
.innerPage {
  margin-top: 182px;
}
@media (max-width: 1100px) {
  .innerPage {
    margin-top: 188px;
  }
  .innerPage.innerPageSpecial {
    margin-top: 112px;
  }
}
@media (max-width: 700px) {
  .innerPage {
    margin-top: 100px;
  }
  .innerPage.innerPageSpecial {
    margin-top: 66px;
    padding-top: 20px;
  }
}
.catalog {
  padding: 20px 0;
}
@media (max-width: 1100px) {
  .catalog {
    padding: 32px 0;
  }
}
@media (max-width: 700px) {
  .catalog {
    padding: 16px 0;
  }
}
.catalogBlock {
  margin-bottom: 48px;
}
.catalogBlockList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.catalogBlockItem {
  width: calc(25% - 18px);
}
.catalogBlockTitle {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
  color: var(--primary);
}
.catalogBlockTitle a {
  color: var(--primary);
}
@media (max-width: 1400px) {
  .catalogBlockList {
    gap: 24px;
  }
  .catalogBlockItem {
    width: calc(33.33% - 16px);
  }
}
@media (max-width: 1100px) {
  .catalogBlock {
    margin-bottom: 32px;
  }
  .catalogBlockTitle {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 28px;
  }
}
@media (max-width: 900px) {
  .catalogBlockList {
    gap: 14px;
  }
  .catalogBlockItem {
    width: calc(50% - 7px);
  }
}
@media (max-width: 700px) {
  .catalogBlockTitle {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.successPage {
  max-width: 728px;
  width: 100%;
  height: 80vh;
  margin: -40px auto auto auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.successPageTitle {
  font-weight: 700;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  color: var(--brown-dark);
  margin-bottom: 32px;
  text-align: center;
}
.successPage svg {
  width: 48px;
  height: 48px;
  margin-bottom: 56px;
}
.successPageText {
  text-align: center;
  margin-bottom: 56px;
  line-height: 30px;
  color: var(--brown-light);
}
.successPageLink {
  padding: 14px 24px;
}
@media (max-width: 700px) {
  .successPage {
    margin: -20px auto auto auto;
  }
  .successPageTitle {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .successPage svg {
    width: 42px;
    height: 42px;
    margin-bottom: 42px;
  }
  .successPageText {
    font-size: 15px;
    margin-bottom: 42px;
  }
  .successPageLink {
    padding: 14px 20px;
  }
}
.fillingsPage {
  padding: 42px 0 80px;
}
.fillingsPageTitle {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: left;
}
.fillingsPageList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.fillingsPageItem {
  width: calc(25% - 18px);
}
.fillingsPageCard {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fillingsPageCard:hover .fillingsPageCardImage img {
  transform: scale(1.1);
}
.fillingsPageCardStickers {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}
.fillingsPageCardSticker {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px var(--black-12);
  font-size: 0;
  line-height: 0;
}
.fillingsPageCardStickerSugar {
  background-color: var(--green);
}
.fillingsPageCardStickerFrozen {
  background-color: var(--blue);
}
.fillingsPageCardStickerNew {
  background-color: var(--secondary);
}
.fillingsPageCardStickerTop {
  background-color: var(--primary);
}
.fillingsPageCardImage {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--black-10);
}
.fillingsPageCardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.fillingsPageCardTitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: left;
}
.fillingsPageCardDescription {
  line-height: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 400;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;      
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fillingsPageCardBottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  background-color: var(--white);
  color: var(--text-primary);
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--black-10);
}
.fillingsPageCardBottomLabel {
  line-height: 32px;
}
.fillingsPageCardBottomValue {
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 1400px) {
  .fillingsPageItem {
    width: calc(33.33% - 16px);
  }
}
@media (max-width: 1100px) {
  .fillingsPage {
    padding: 32px 0 60px;
  }
  .fillingsPageTitle {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 28px;
  }
  .fillingsPageCardSticker {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    font-size: 0;
    line-height: 0;
  }
  .fillingsPageCardStickerFrozen {
    width: 32px;
    height: 32px;
  }
  .fillingsPageCardImage {
    width: 100%;
  }
  .fillingsPageCardTitle {
    font-size: 16px;
    line-height: 28px;
  }
  .fillingsPageCardDescription {
    margin-bottom: 32px;
  }
}
@media (max-width: 900px) {
  .fillingsPageList {
    gap: 14px;
  }
  .fillingsPageItem {
    width: calc(50% - 7px);
  }
  .fillingsPageCardImage {
    height: 220px;
  }
}
@media (max-width: 700px) {
  .fillingsPageTitle {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .fillingsPageItem {
    width: 100%;
  }
  .fillingsPageCardImage {
    width: 320px;
    height: 320px;
    margin: 0 auto 16px;
  }
}
@media (max-width: 400px) {
  .fillingsPageCardImage {
    width: 240px;
    height: 240px;
  }
}
.checkout.checkoutSpecial {
  margin-top: 100px;
}
.checkoutContent {
  padding: 52px 0 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.checkoutLeft {
  width: calc(100% - 390px);
}
.checkoutRight {
  width: 342px;
}
.checkoutTop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 42px 0;
}
.checkoutTitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 40px;
  color: var(--brown-dark);
  margin-bottom: 32px;
}
.checkoutTopTitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: var(--brown-dark);
}
.checkoutBackLink {
  font-weight: 700;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease-out;
}
.checkoutBackLink svg path {
  stroke: var(--brown-dark);
  transition: stroke 0.3s ease-out;
}
.checkoutBackLink:hover {
  color: var(--brown-light);
}
.checkoutBackLink:hover svg path {
  stroke: var(--brown-light);
}
.checkoutSubtitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-bieger);
  width: 100%;
}
.checkoutSubtitle .button {
  color: var(--brown-light);
  text-decoration: underline;
  transition: color 0.3s ease-out;
}
.checkoutSubtitle .button:hover {
  color: var(--brown-main);
}
.checkoutItem {
  padding: 32px;
  border-radius: 20px;
  background-color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.checkoutItem .alert.alert-warning {
  position: absolute;
  top: 70px;
  left: 32px;
  color: var(--red);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
.checkoutItemCart {
  padding: 28px 32px;
}
.checkoutItemToggle {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkoutCart .cartList {
  width: 100%;
  margin-bottom: 0;
}
.checkoutItemCartContent {
  display: none;
  margin-top: 0;
  transition: margin-top 0.3s ease-out;
}
.checkoutItemCartContent.active {
  margin-top: 28px;
}
.checkoutShipping,
.checkoutPayment {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.checkoutTotal {
  margin-top: 24px;
  margin-bottom: 16px;
}
.checkoutTotalList {
  display: flex;
  flex-direction: column;
}
.checkoutTotalItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
  font-size: 16px;
  line-height: 28px;
  color: var(--text-color-light);
}
.checkoutTotalItemPrice {
  font-weight: 600;
  color: var(--text-color-secondary);
}
.checkoutTotalAmount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 28px;
}
.checkoutTotalAmountTotal {
  font-weight: 600;
  color: var(--text-primary);
}
.checkoutTotalAmountPrice {
  font-weight: 600;
  color: var(--text-primary);
}
.checkoutTotalCheckbox {
  cursor: pointer;
  margin-bottom: 16px;
  display: block;
}
.checkoutTotalCheckboxInput {
  display: none;
}
.checkoutTotalCheckboxInput:checked + .checkoutTotalCheckboxTitle::after {
  opacity: 1;
}
.checkoutTotalCheckboxInput:checked + .checkoutTotalCheckboxTitle::before {
  opacity: 0;
}
.checkoutTotalCheckboxTitle {
  color: var(--text-primary);
  padding-left: 27px;
  position: relative;
}
.checkoutTotalCheckboxTitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/icons/checkbox.svg) no-repeat center center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.checkoutTotalCheckboxTitle::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/icons/checkbox-marker.svg) no-repeat center center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checkoutTotalCheckboxTitle a {
  color: var(--secondary);
  text-decoration: underline;
}
.checkoutDetailsLabel {
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  color: var(--brown-dark);
}
.checkoutDetailsInput {
  display: none;
}
.checkoutDetailsLabel:has(.checkoutDetailsInput:checked)::after {
  opacity: 1;
}
.checkoutDetailsLabel:has(.checkoutDetailsInput:checked)::before {
  opacity: 0;
}
.checkoutDetailsLabel::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 1;
  border: 2px solid #9B9B9B;
  transition: border 0.3s ease-out;
}
.checkoutDetailsLabel:hover::before {
  border: 2px solid var(--brown-main);
}
.checkoutDetailsLabel::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(../images/icons/radio-full.svg) no-repeat center center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checkoutUserForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkoutUserFields50 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
}
.text-danger {
  color: var(--red);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 8px;
  background-color: var(--white);
}
.checkoutUserField .text-danger {
  position: absolute;
  top: 0;
  left: 17px;
  transform: translateY(-50%);
  width: max-content;
}
.checkoutUserField.has-error input,
.checkoutUserField.has-error select,
.checkoutUserField.has-error textarea {
  border: 1px solid var(--red);
}
.checkoutUserField.has-error input::placeholder,
.checkoutUserField.has-error textarea::placeholder {
  color: var(--red);
}
.checkoutUserField {
  position: relative;
}
.checkoutUserFieldLabel {
  position: absolute;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #9B9B9B;
  top: 0;
  transform: translateY(-50%);
  left: 17px;
  padding: 0 8px;
  background-color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.checkoutUserFieldLabel.active {
  opacity: 1;
}
.checkoutUserField .authBlockPhoneCode {
  position: absolute;
  opacity: 0;
  left: 16px;
  top: 48%;
  font-size: 17px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 32px;
  transform: translate(-100%, -50%);
  display: block;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.checkoutUserField .authBlockPhoneCode.active {
  padding-right: 6px;
  line-height: 30px;
  transform: translate(0, -50%);
  opacity: 1;
}
.checkoutUserField .authBlockPhoneCode.active + .text-danger + input[type="tel"]{
  padding-left: 60px;
}
.checkoutUserField .authBlockPhoneCode.active + input[type="tel"]{
  padding-left: 60px;
}
.checkoutUserFields50 .checkoutUserField.checkoutUserFieldFull {
  width: 100%;
}
.checkoutUserFields50 .checkoutUserField {
  width: calc(50% - 9px);
}
.checkoutUserFields25 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.checkoutUserFields25 .checkoutUserField {
  width: calc(33% - 10px);
  margin-top: 18px;
}
.checkoutUserInput {
  padding: 11px 24px;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  width: 100%;
  height: 52px;
  border: 1px solid var(--grey-stroke);
  color: var(--brown-dark);
  background-color: var(--white);
  border-radius: 16px;
  transition: padding 0.3s ease, border 0.3s ease;
}
.checkoutUserInput.error {
  border: 1px solid var(--red);
}
.checkoutUserInput::placeholder {
  color: #9B9B9B;
  font-weight: 600;
}
.checkoutUserInputTel {
  padding: 11px 24px;
  transform: padding 0.3s ease-out;
}
.checkoutUserInputTel.active {
  padding: 11px 24px 11px 55px;
}
.checkoutUserSelect {
  width: 100%;
  padding: 11px 24px;
  line-height: 30px;
  font-weight: 600;
  border: 1px solid var(--grey-stroke);
  color: var(--brown-dark);
  background-color: var(--white);
  border-radius: 16px;
  height: 52px;
}
.checkoutUserCheckbox {
  cursor: pointer;
  display: block;
  margin-top: 16px;
}
.checkoutUserCheckbox.checkoutUserCheckboxAddress {
  display: flex;
  align-items: center;
}
.checkoutUserCheckboxInput {
  display: none;
}
.checkoutUserCheckboxInput:checked + .checkoutUserCheckboxTitle::after {
  opacity: 1;
}
.checkoutUserCheckboxInput:checked + .checkoutUserCheckboxTitle::before {
  opacity: 0;
}
.checkoutUserCheckboxTitle {
  color: var(--brown-light);
  padding-left: 40px;
  position: relative;
}
.checkoutUserCheckboxTitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/icons/checkbox.svg) no-repeat center center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.checkoutUserCheckboxTitle::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/icons/checkbox-full.svg) no-repeat center center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checkoutUserCheckboxTitle a {
  color: var(--secondary);
  text-decoration: underline;
}
.checkoutUserTextarea {
  padding: 11px 24px;
  line-height: 30px;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  border: 1px solid var(--grey-stroke);
  color: var(--brown-dark);
  background-color: transparent;
  border-radius: 16px;
  height: 122px;
  resize: none;
  margin-top: 18px;
}
.checkoutUserTextarea::placeholder {
  color: #9B9B9B;
}
.cakeBuilderUserInfoField {
  width: calc(50% - 9px);
  padding: 11px 20px;
  border: 1px solid var(--grey-stroke);
  border-radius: 16px;
  background-color: var(--white);
  transition: border 0.3s ease;
}
.cakeBuilderUserInfoField .formsearch__calendar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cakeBuilderUserInfoField input {
  width: calc(100% - 26px);
  background-color: transparent;
  position: relative;
}
.cakeBuilderUserInfoField select {
  width: 100%;
  background-color: transparent;
  background-image: url(../images/icons/arrow-down-dark.svg);
  background-repeat: no-repeat;
  background-position: right 0px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cakeBuilderUserInfoField.error {
  border: 1px solid var(--red);
}
.cakeBuilderUserInfoField select::-ms-expand {
  display: none;
}
@media (max-width: 1300px) {
  .checkoutContent .cartItemInfo {
    max-width: 220px;
  }
}
@media (max-width: 1200px) {
  .checkoutContent {
    flex-direction: column;
    gap: 0;
  }
  .checkoutLeft {
    width: 100%;
    margin-bottom: 16px;
  }
  .checkoutRight {
    width: 100%;
    margin-bottom: 64px;
  }
}
@media (max-width: 1000px) {
  .checkoutContent {
    padding: 32px 0 48px;
  }
  .checkout.checkoutSpecial {
    margin-top: 92px;
  }
}
@media (max-width: 700px) {
  .checkoutUserField .authBlockPhoneCode {
    font-size: 15px;
  }
  .checkoutUserInputTel.active {
    padding: 11px 24px 11px 50px;
  }
  .checkout.checkoutSpecial {
    margin-top: 66px;
  }
  .cakeBuilderUserInfoField {
    width: 100%;
  }
  .checkoutContent {
    padding-top: 42px;
  }
  .checkoutTop {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 16px;
  }
  .checkoutTopTitle {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .checkoutBackLink {
    width: 100%;
    order: -1;
    color: var(--brown-light);
    font-size: 14px;
    line-height: 24px;
  }
  .checkoutBackLink svg {
    stroke: var(--brown-light);
  }
  .checkoutSubtitle {
    font-size: 14px;
  }
  .checkoutSubtitle .button {
    font-size: 14px;
  }
  .checkoutItem {
    padding: 20px 16px;
    border-radius: 16px;
    margin-bottom: 12px;
  }
  .checkoutUserFields50 {
    gap: 20px;
  }
  .checkoutUserInput {
    font-size: 15px;
  }
  .checkoutUserFields50 .checkoutUserInput,
  .checkoutUserFields50 .checkoutUserSelect {
    width: 100%;
  }
  .checkoutUserField .text-danger {
    font-size: 14px;
    line-height: 20px;
    max-width: 300px;
    position: relative;
    top: unset;
  }
  .checkoutUserFields25 {
    margin-top: 20px;
  }
  .checkoutUserFields25 .checkoutUserInput {
    width: 100%;
  }
  .checkoutUserTextarea {
    height: 120px;
    font-size: 15px;
  }
  .checkoutUserFields50 .checkoutUserField {
     width: 100%;
     padding-top: 0;
  }
  .checkoutUserFields25 .checkoutUserField {
     width: 100%;
     padding-top: 0;
     margin-top: 0;
  }
  .checkoutUserCheckboxTitle {
    display: inline-block;
    font-size: 15px;
  }
  .checkoutUserCheckboxTitle a {
    display: inline;
    padding-left: 0;
  }
  .checkoutTitle {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 30px;
  }
  .checkoutDate {
    flex-direction: column;
    gap: 16px;
  }
}
.related {
  margin: 0 auto 80px;
  max-width: 1690px;
  padding: 24px 60px 0;
  position: relative;
}
.relatedWrapper {
  overflow: hidden;
  padding: 0 8px;
}
.relatedTitle {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.relatedNav {
  position: absolute;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 30px);
  height: 100%;
}
.relatedNavButton {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.relatedNavButton:hover {
  background-color: var(--secondary-hover);
}
.related .productCardInfo {
  height: auto;
  margin-bottom: 16px;
}
.related .productCardTitle {
  font-size: 16px;
  line-height: 28px;
  display: -webkit-box;
  min-height: 56px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1100px) {
  .related {
    margin: 42px auto;
    padding: 0;
  }
  .relatedWrapper {
    padding: 0;
  }
  .relatedTitle {
    font-size: 36px;
    line-height: 48px;
  }
  .relatedNav {
    display: none;
  }
}
@media (max-width: 700px) {
  .related {
    margin: 16px auto 32px;
  }
  .relatedTitle {
    font-size: 20px;
    line-height: 32px;
  }
  .relatedLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    gap: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }
  .checkoutUserSelect {
    font-size: 15px;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu.picker-open.bottom {
  display: block;
  margin-top: 12px;
}
.bootstrap-datetimepicker-widget.bottom:before,
.bootstrap-datetimepicker-widget.bottom:after {
  display: none !important;
}
select::-ms-expand {
  display: none;
}
.checkoutDate {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.checkoutDateNote {
  font-size: 16px;
  color: var(--red-hover);
}
.productContent {
  display: flex;
  gap: 42px;
  margin-bottom: 58px;
}
.productSlider {
  overflow: hidden;
  position: relative;
  width: calc(50% - 21px);
  height: 456px;
  padding-bottom: 46px;
}
.productSliderNavButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-70);
  border-radius: 16px;
  transition: background-color 0.3s ease;
}
.productSliderNavButtonPrev {
  left: 20px;
}
.productSliderNavButtonNext {
  right: 20px;
}
.productSliderNavButton:hover {
  background-color: var(--white);
}
.productSliderSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.productSliderSlide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.productInfo {
  width: calc(50% - 21px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.breadcrumbs {
  margin-bottom: 14px;
}
.breadcrumbsMobile {
  display: none;
}
.breadcrumbsList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 28px;
}
.breadcrumbsItem {
  position: relative;
}
.breadcrumbsItem:not(:first-child) a {
  pointer-events: none;
}
.accountPage .breadcrumbsItem:not(:first-child) a {
  pointer-events: all;
}
.breadcrumbsItem::after {
  content: "";
  display: block;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brown-light);
}
.breadcrumbsItem:last-child::after {
  display: none;
}
.breadcrumbsLink {
  color: var(--brown-light);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.breadcrumbsCurrent {
  color: var(--brown-main);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .breadcrumbs {
    display: none;
  }
  .breadcrumbs.breadcrumbsMobile {
    display: block;
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .breadcrumbsLink,
  .breadcrumbsCurrent {
    font-size: 14px;
    line-height: 24px;
  }
}
.productInfoAddToCart {
  margin-top: auto;
  width: 100%;
  padding: 8px;
}
.productInfoAddToCart.productCardAddToCartComplete {
  padding: 5px;
}
.productInfoPrice {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--card-border);
}
.productTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 20px;
}
.productStickers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.productTip {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
}
.productTipSimple {
  display: block;
}
.productTip p {
  width: calc(100% - 64px);
  font-size: 17px;
  line-height: 30px;
  font-weight: 700;
  color: var(--brown-light);
}
.productAddToCart {
  padding: 16px 32px;
  width: calc(100% - 146px);
}
.productAddToCartPlus {
  font-size: 19px;
  line-height: 20px;
  font-weight: 700;
  color: var(--brown-main);
  padding-right: 3px;
}
.productAddToCartPrice {
  display: block;
  margin-left: auto;
  padding-left: 16px;
  position: relative;
  font-weight: 700;
  color: var(--brown-main);
}
.productAddToCartPrice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background-color: var(--brown-main);
}
.productFeatures {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.productFeaturesItem {
  width: fit-content;
  padding: 8px 16px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 2px var(--black-12);
}
.productFeaturesText {
  display: flex;
  align-items: center;
  line-height: 32px;
  gap: 4px;
}
.productFeaturesText svg {
  margin-right: 8px;
}
.productFeaturesPrice {
  line-height: 32px;
  font-weight: 700;
  color: var(--secondary);
}
.productBlockTitle {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.productWeight {
  margin-bottom: 20px;
  padding: 14px 28px;
  background-color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.productWeightTitle {
  font-weight: 700;
  font-size: 17px;
  line-height: 30px;
  color: var(--brown-light);
}
.productWeightValue {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--brown-dark);
  
  width: fit-content;
}
.productWeightSelect {
  width: 100%;
  margin-bottom: 20px;
}
.productWeightSelectToggle {
  width: 100%;
  font-weight: 700;
  background-color: var(--white);
  border-radius: 20px;
  padding: 14px 28px;
  font-size: 18px;
  margin-top: 8px;
  line-height: 30px;
  color: var(--brown-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 14px transparent;
  transition: box-shadow 0.3s ease-out;
}
.productWeightSelectToggle svg {
  transform: rotate(0);
  transition: transform 0.3s ease-out;
}
.productWeightSelectToggle.active svg {
  transform: rotate(180deg);
}
.productWeightSelectWrapper {
  position: relative;
}
.productWeightSelectToggle.active {
  box-shadow: 0 0 14px var(--black-15);
}
.productWeightSelectList {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 12px;
  padding: 20px;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.productWeightSelectList.active {
  opacity: 1;
  box-shadow: 0 0 14px var(--black-15);
  pointer-events: auto;
  z-index: 2;
}
.productWeightSelectItem { 
  width: 100%;
  text-align: center;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  color: var(--brown-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}
.productWeightSelectItem:hover { 
  color: var(--orange);
}
.productActions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.productFilling {
  margin-bottom: 24px;
}
.productFillingSelect {
  width: 350px;
  height: 52px;
  padding: 10px 16px;
  line-height: 32px;
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  background-color: var(--white);
  border-radius: 20px;
}
.productFilling:last-child {
  margin-bottom: 0;
}
.productFillingList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.productFillingItem {
  width: calc(20% - 13px);
  position: relative;
}
.productFillingItemStickers {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}
.productFillingItemSticker {
  padding: 5px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 1px 2px var(--black-12);
}
.productFillingItemStickerSugar {
  background-color: var(--green);
}
.productFillingItemStickerFrozen {
  background-color: var(--blue);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  padding: 0;
  gap: 0;
}
.productFillingItemStickerNew {
  background-color: var(--secondary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  gap: 0;
}
.productSticker {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px var(--black-12);
}
.productStickerSugar {
  background-color: var(--green);
}
.productStickerFrozen {
  background-color: var(--blue);
}
.productStickerNew {
  background-color: var(--secondary);
}
.productStickerTop {
  background-color: var(--primary);
}
.productDescription {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 52px;
}
.productDescriptionSimple {
  display: block;
  margin-bottom: 52px;
}
.productDescriptionCennost {
  width: calc(50% - 14px);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 20px;
}
.productDescriptionTitle {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  color: var(--brown-dark);
  margin-bottom: 28px;
}
.productDescriptionList {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.productDescriptionListItem {
  width: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 2px solid var(--orange);
  background-color: var(--orange);
}
.productDescriptionListTitle {
  color: var(--white);
  width: 100%;
  padding: 13px;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
}
.productDescriptionListValue {
  padding: 13px;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  color: var(--brown-dark);
  background-color: var(--white);
}
.productTabs {
  width: 100%;
  padding: 36px 45px;
  background-color: var(--white);
  border-radius: 20px;
}
.productTabsMobile {
  display: none;
}
.productTabsList {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 32px;
}
.productTabsList::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brown-hover);
  opacity: 0.2;
}
.productTabsButton {
  line-height: 40px;
  color: var(--brown-hover);
  position: relative;
  transition: color 0.3s ease;
}
.productTabsButton::before {
  position: absolute;
  content: '';
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brown-dark);
  opacity: 0;
  transition: background-color 0.3s ease-out, opacity 0.3s ease-out;
}
.productTabsButton.active::before {
  background-color: var(--brown-dark);
  opacity: 1;
}
.productTabsButton.active {
  color: var(--brown-dark);
}
.productTabsContentItem {
  display: none;
}
.productTabsContentItemAllergens {
  margin-top: 32px;
  padding-left: 36px;
  font-weight: 700;
  font-size: 17px;
  position: relative;
}
.productTabsContentItemAllergens::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/info-icon.svg');
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .productFillingItem {
    width: calc(25% - 12px);
  }
  .productTabsList {
    gap: 20px;
  }
}
@media (max-width: 1400px) {
  .productTabsButton {
    font-size: 16px;
  }
  .productTabsList {
    gap: 16px;
  }
}
@media (max-width: 1300px) {
  .productFillingItem {
    width: calc(33.33% - 11px);
  }
}
@media (max-width: 1100px) {
  .product {
    padding: 24px 0 0;
  }
  .productContent {
    gap: 24px;
    flex-direction: column;
    margin-bottom: 42px;
  }
  .productSlider {
    width: 100%;
    height: 500px;
    margin: 0;
    padding-bottom: 40px;
  }
  .productSliderNav {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
  }
  .productSliderSlide {
    text-align: center;
    font-size: 0;
    line-height: 0;
  }
  .productSliderSlide img {
    width: 100%;
  }
  .productInfo {
    width: 100%;
    padding-left: 0;
  }
  .productTabsButton {
    font-size: 20px;
  }
  .productDescription {
    gap: 16px;
  }
  .productDescriptionCennost {
    width: 100%;
    padding: 40px;
  }
  .productDescriptionTitle {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .productTabs {
    display: none;
  }
  .productTabsMobile {
    display: block;
    width: 100%;
  }
  .productTabsMobileItem {
    margin-bottom: 16px;
    padding: 20px 28px;
    background-color: var(--white);
    border-radius: 20px;
  }
  .productTabsMobileItem:last-child {
    margin-bottom: 0;
  }
  .productTabsMobileButton {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 40px;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease-out;
  }
  .productTabsMobileButton svg {
    transform: rotate(0);
    transition: transform 0.3s ease-out;
  }
  .productTabsMobileButton.active {
    margin-bottom: 16px;
  }
  .productTabsMobileButton.active svg {
    transform: rotate(180deg);
  }
  .productTabsMobileBody {
    font-size: 17px !important;
    line-height: 32px !important;
    display: none;
  }
}
@media (max-width: 800px) {
  .productFillingItem {
    width: calc(25% - 9px);
  }
}
@media (max-width: 700px) {
  /* .product {
    padding: 0 0 42px;
  } */
  .productContent {
    gap: 20px;
    margin-bottom: 12px;
  }
  .productSlider {
    height: 340px;
    padding-bottom: 20px;
  }
  .productTitle {
    order: -2;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .productWeight {
    order: 0;
    padding: 14px 24px;
  }
  .productTip p {
    font-size: 14px;
    line-height: 28px;
  }
  .productWeightTitle,
  .productWeightValue {
    font-size: 15px;
    line-height: 30px;
  }
  .productStickers {
    order: -1;
  }
  .productActions {
    order: 1;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }
  .productActions .counterItem {
    width: 100%;
    justify-content: space-between;
  }
  .productActions .counterItemButton {
    width: 40%;
    height: 46px;
  }
  .productActions .productAddToCart {
    width: 100%;
    padding: 14px 32px;
    font-size: 15px;
    line-height: 24px;
  }
  .productActions .productAddToCartPrice {
    font-size: 15px;
    line-height: 24px;
  }
  .productSliderNav {
    display: none;
  }
  .productTip {
    padding: 24px;
    order: 2;
  }
  .productDescriptionCennost {
    padding: 15px 24px;
  }
  .productDescriptionTitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .productDescriptionList {
    gap: 7px;
  }
  .productDescriptionListItem {
    width: 90px;
    border-radius: 14px;
  }
  .productDescriptionListTitle {
    padding: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .productDescriptionListValue {
    padding: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .productTabsMobileItem {
    margin-bottom: 162x;
    padding: 16px 28px;
  }
  .productTabsMobileButton {
    line-height: 32px;
    font-size: 15px;
  }
  .productTabsMobileBody {
    font-size: 14px !important;
    line-height: 28px !important;
  }
  .productDescription {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .productSlider {
    height: 240px;
  }
}
.innerPageTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 48px;
}
.innerPageTitleDelivery {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  padding-bottom: 24px;
  position: relative;
  text-align: left;
}
.innerPageTitleDelivery::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 156px;
  height: 3px;
  background-color: var(--green);
}
.contactsBlock {
  display: flex;
  gap: 36px;
  margin-bottom: 72px;
  padding: 58px;
  background-color: var(--white);
  border-radius: 40px;
}
.contactsBlockAddress {
  width: calc(100% - 740px);
  display: flex;
  flex-direction: column;
}
.contactsLocation {
  width: 704px;
  border-radius: 20px;
  overflow: hidden;
}
.contactsBlockAddress .socials {
  margin-top: auto;
}
.contactsBlockAddress .socialsLink svg path {
  fill: var(--brown-verylight);
}
.contactsBlockAddress .socialsLink:hover svg path {
  fill: var(--brown-bieger);
}
.contactsBlockAddressList {
  margin-bottom: 20px;
}
.contactsBlockAddressItem {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.contactsBlockAddressValue {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--brown-dark);
}
@media (max-width: 1300px) {
  .contactsBlock {
    gap: 42px;
    flex-direction: column;
  }
  .contactsBlockAddress {
    width: 100%;
  }
  .contactsLocation {
    width: 100%;
  }
  .contactsLocation iframe {
    width: 100%;
  }
  .contactsBlockAddress .socials {
    margin-top: 42px;
  }
  .contactsBlockAddressList {
    margin-bottom: 0;
  }
  .contactsBlockAddressItem:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .contactsBlock {
    gap: 32px;
    padding: 28px 20px;
  }
  .contactsBlockAddress .socials {
    margin-top: 32px;
  }
  .contactsBlockAddressValue {
    font-size: 15px;
    line-height: 28px;
  }
  .contactsBlock .innerPageTitleDelivery {
    font-size: 20px;
    line-height: 32px;
    padding-bottom: 16px;
    margin-bottom: 32px;
  }
}
.checkoutPaymentButton {
  padding: 14px;
  margin-top: 28px;
  width: 100%;
}
.checkoutPaymentButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkoutDateNotes {
  width: calc(50% - 9px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkoutShippingFix,
.checkoutShippingFree {
    display: none;
}
.checkoutShippingFix.active,
.checkoutShippingFree.active {
    margin-bottom: 24px;
}
.errorPage {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.errorPageContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin: auto;
  max-width: 620px;
  width: 100%;
}
.errorPageImage {
  max-width: 617px;
  max-height: 312px;
  width: 100%;
  height: 100%;
  position: relative;
}
.errorImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.errorPageTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-top: 80px;
}
.errorPageSubtitle {
  font-weight: 600;
  margin-bottom: 18px;
}
.errorPageLink {
  padding: 14px 24px;
}
@media (max-width: 1100px) {
  .errorPage {
    width: 100%;
    height: 80vh;
  }
  .errorPageContent {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .errorPageContent {
    gap: 16px;
  }
  .errorPageImage {
    max-width: 315px;
    max-height: 156px;
  }
  .errorPageTitle {
    font-size: 20px;
    line-height: 24px;
  }
  .errorPageSubtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 12px;
  }
}
.deliveryPage {
  padding: 58px;
  background-color: var(--white);
  border-radius: 40px;
  margin: 28px 0 58px;
}
.deliveryPageListItem {
  margin-bottom: 48px;
}
.deliveryPageListItemTitle {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 20px;
}
.deliveryPageListItem img {
  margin-bottom: 28px;
}
.deliveryPageListItemText,
.deliveryPage p {
  line-height: 30px;
}
.deliveryPageListItemText ul {
  margin-left: 20px;
}
.deliveryPageListItemText ul li {
  list-style: disc;
}
.deliveryPageListItemText a {
  color: var(--brown-main);
}
.deliveryPageSpecial {
  position: relative;
  padding-top: 24px;
}
.deliveryPageSpecial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 156px;
  height: 3px;
  background-color: var(--green);
}
@media (max-width: 700px) {
  .deliveryPage {
    padding: 28px 20px;
    border-radius: 28px;
    margin: 0 0 48px;
  }
  .deliveryPageListItem {
    margin-bottom: 28px;
  }
  .deliveryPageListItemTitle {
    font-size: 17px;
    line-height: 28px;
  }
  .deliveryPageListItem img {
    margin-bottom: 20px;
  }
  .deliveryPageListItemText,
  .deliveryPage p {
    line-height: 28px;
    font-size: 15px;
  }
  .innerPageTitleDelivery {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 16px;
    margin-bottom: 28px;
  }
  .deliveryPage span,
  .deliveryPage p,
  .deliveryPage div,
  .deliveryPage a {
    font-size: 15px;
    line-height: 28px;
  }
}
  .accountPageTitle {
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
    color: var(--brown-dark);
    width: 40%;
  }
  .accountBlock {
    display: flex;
    gap: 42px;
    margin-bottom: 120px;
    align-items: flex-start;
  }
  .accountBlockInfoTitle {
    font-size: 22px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--brown-dark);
  }
  .accountBlockInfoTitleAddress {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .addAdressLink {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: var(--secondary);
  }
  .accountBlockSidebar {
    width: 302px;
  }
  .accountBlockInfo {
    width: calc(100% - 344px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px 0;
  }
  .accountBlockInfo .breadcrumbs {
    width: calc(60% - 20px);
    margin-left: auto;
    padding-left: 20px;
    margin-bottom: 0;
  }
  .accountBlockInfo .breadcrumbsList {
    justify-content: flex-end;
  }
  .accountPageForm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .accountPageFormField {
    position: relative;
    width: calc(50% - 8px);
  }
  .accountPageFormFieldInput {
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    color: var(--brown-dark);
  }
  .accountPageFormLabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--grey-stroke);
    padding: 11px 20px;
    border-radius: 16px;
    transition: border 0.3s ease;
    position: relative;
  }
  .accountPageFormLabel.error {
    border: 1px solid var(--red);
  }
  .accountPageFormLabel .text-danger {
    position: absolute;
    top: 0;
    left: 17px;
    transform: translateY(-50%);
    width: max-content;
  }
  .accountPageFormLabel span {
    position: absolute;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #9B9B9B;
    top: 0;
    transform: translateY(-50%);
    left: 17px;
    padding: 0 8px;
    background-color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .accountPageFormLabel span.active {
    opacity: 1;
  }
  .accountPageFormLabelActive span {
    opacity: 1;
  }
  .accountPageFormDefault {
    width: 100%;
  }
  .accountPageFormSelect {
    width: 100%;
    background-color: transparent;
  }
  .accountPageFormInput {
    width: 100%;
    background-color: transparent;
    font-size: 17px;
    line-height: 30px;
    color: var(--brown-dark);
    font-weight: 600;
  }
  .accountPageFormButtons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .accountPageFormSubmit {
    width: fit-content;
    padding: 14px 20px;
  }
  .accountBlockSidebarList {
    padding: 20px 24px;
    border-radius: 20px;
    background-color: var(--bg-menu);
    display: flex;
    flex-direction: column;
    height: 500px;
    transition: max-height 0.3s ease, height 0.3s ease;
  }
  .accountBlockSidebarItem {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--brown-light);
  }
  .accountBlockSidebarItem:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    margin-top: auto;
  }
  .accountBlockSidebarItem:last-child .accountBlockSidebarLink {
    justify-content: flex-start;
    gap: 16px;
  }
  .accountBlockSidebarLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: var(--white);
  }
  .accountBlockSidebarLink svg path {
    stroke: var(--white);
  }
  .accountPageFormBack {
    max-width: 160px;
    width: 100%;
    padding: 8px;
  }
  .accountPagePassButton {
    display: flex;
  }
  .accountPagePassButton svg path {
    fill: #DEDEDE;
    transition: fill 0.3s ease;
  }
  .accountPagePassButton.active svg path {
    fill: var(--brown-light);
  }
  .accountPageFormAddAddress .accountPageFormField {
    width: calc(50% - 12px);
  }
  .accountPageFormAddAddress .accountPageFormFieldMini {
    width: calc(33.33% - 16px);
  }
  .accountPageFormFieldSelect select {
    width: 100%;
    background-color: transparent;
    background-image: url(../images/icons/arrow-down-dark.svg);
    background-repeat: no-repeat;
    background-position: right 0px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    color: var(--brown-dark);
  }
  .addressListEmpty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
  }
  .addressListEmptyOrder {
    line-height: 24px;
    font-weight: 700;
    color: var(--brown-light);
  }
  .accountPageLink {
    margin-top: 24px;
    padding: 14px 20px;
    width: fit-content;
    margin-left: auto;
  }
  .addressListEmpty .accountPageLink {
    margin-top: 8px;
    margin-left: 0;
  }
  .accountBlockInfoWrapper {
    padding: 32px;
    border-radius: 20px;
    background-color: var(--white);
    width: 100%;
  }
  .addressListForm {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }
  .addressListField {
    width: calc(50% - 6px);
  }
  .addressListButtons {
    width: 100%;
    display: flex;
    gap: 16px;
  }
  .addressListConfirm {
    padding: 8px;
    max-width: 260px;
    width: 100%;
  }
  .addressListDelete {
    padding: 8px;
    max-width: 160px;
    width: 100%;
  }
  .accountPageContent .alert {
    margin-bottom: 24px;
    color: var(--green);
    font-weight: 500;
  }
  .accounOrdersButtons {
    margin-top: 24px;
    display: flex;
    gap: 16px;
  }
  .accounOrdersButtons button,
  .accounOrdersButtons a {
    padding: 8px;
    max-width: 260px;
    width: 100%;
  }
  .accounOrders {
    min-height: 80%;
    width: 100%;
  }
  .orderItem {
    margin-bottom: 16px;
  }
  .orderItem.active .orderItemHeader {
    box-shadow: 0 4px 24px var(--btn-shadow);
  }
  .orderItem.active .orderItemContent {
    box-shadow: 0 4px 24px var(--btn-shadow);
  }
  .orderItemHeader {
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 36px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px transparent;
    transition: box-shadow 0.3s ease-out;
  }
  .orderItemHeader p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: #9B9B9B;
    text-align: center;
  }
  .orderItemHeader p span {
    font-weight: 700;
    color: var(--brown-dark);
    text-align: center;
  }
  .orderItemHeader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background-color: var(--white);
  }
  .orderItemHeader.new::before {
    background-color: #0962F1;
  }
  .orderItemHeader.processing::before {
    background-color: #FFD900;
  }
  .orderItemHeader.shipped::before {
    background-color: #9409F1;
  }
  .orderItemHeader.complete::before {
    background-color: #3CBA06;
  }
  p.orderItemStatus {
    padding: 6px 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
  }
  .orderItemStatus.new {
    background-color: #BEDBFF;
    color: #0962F1;
  }
  .orderItemStatus.processing {
    background-color: #FFF9BE;
    color: #CB8400;
  }
  .orderItemStatus.shipped {
    background-color: #F0CFFF;
    color: #9409F1;
  }
  .orderItemStatus.complete {
    background-color: #E1FFD4;
    color: #24A435;
  }
  .orderItemContent {
    margin-top: 10px;
    padding: 28px 20px;
    background-color: var(--white);
    border-radius: 16px;
    display: none;
    box-shadow: 0 4px 24px transparent;
    transition: box-shadow 0.3s ease-out;
  }
  .orderItemContentTitle {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 32px;
  }
  .orderProductsList {
    margin-bottom: 28px;
  }
  .orderProductsItem {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-stroke);
  }
  .orderProductsItem:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .orderProductsItem .cartItemInfo {
    margin-left: 0;
    max-width: 50%;
  }
  .orderProductsItem .counterItemInput {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    color: #9B9B9B;
  }
  .orderProductsItem .cartItemPrice {
    margin: 0;
    margin-left: auto;
    margin-right: 8px;
    max-width: unset;
    font-size: 19px;
    line-height: 32px;
    display: block;
  }
  .orderItemTimeline {
    margin-bottom: 36px;
  }
  .orderItemTimelineList {
    display: flex;
  }
  .orderItemTimelineItem {
    width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }
  .orderItemTimelineItem:first-child {
    align-items: flex-start;
  }
  .orderItemTimelineItem:first-child .orderItemTimelineMarker {
    margin-left: 4px;
  }
  .orderItemTimelineItem:last-child .orderItemTimelineMarker {
    margin-right: 4px;
  }
  .orderItemTimelineItem:last-child {
    align-items: flex-end;
  }
  .orderItemTimelineItem:last-child::before,
  .orderItemTimelineItem:last-child::after {
    display: none;
  }
  .orderItemTimelineItem:nth-child(2) {
    padding-right: 10%;
  }
  .orderItemTimelineItem:nth-child(3) {
    padding-left: 10%;
  }
  .orderItemTimelineItem::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 17%;
    width: 100%;
    height: 6px;
    background-color: #EAEAEA;
    z-index: 0;
    border-radius: 4px;
  }
  .orderItemTimelineItem::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 17%;
    width: 0;
    height: 6px;
    background-color: var(--green);
    z-index: 1;
    border-radius: 4px;
  }
  .orderItemTimelineItem.active::after {
    width: 100%;
  }
  .orderItemTimelineItem.active::after {
    width: 100%;
  }
  .orderItemTimelineItem:nth-child(2)::before {    
    left: 42%;
    width: calc(100% + 28px);
  }
  .orderItemTimelineItem:nth-child(2).active::after {
    left: 42%;
    width: calc(100% + 28px);
  }
  .orderItemTimelineItem:nth-child(3)::before,
  .orderItemTimelineItem:nth-child(3)::after {
    left: 82%;
  }
  .orderItemTimelineMarker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #EAEAEA;
    position: relative;
    z-index: 2;
  }
  .orderItemTimelineMarker.active {
    background-color: var(--green);
  }
  .orderItemTimelineItem svg path {
    fill: #EAEAEA;
  }
  .orderItemTimelineItem svg.active path {
    fill: var(--green);
  }
  .orderInfo {
    padding: 20px 36px;
    background-color: rgba(241, 214, 194, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .orderInfoTitle {
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: #9B9B9B;
  }
  .orderInfoFieldValue {
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 32px;
  }
  .orderItemButtons {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
  }
  .orderItemButtons a {
    padding: 14px 20px;
  }
  .termsBlock {
    padding: 16px;
    background-color: var(--white);
    border-radius: 20px;
    margin-bottom: 32px;
  }
  .termsBlock h2 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .termsBlock h3 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .termsBlock p {
    margin-bottom: 16px;
    line-height: 32px;
  }
  .termsBlock a {
    color: var(--secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  .termsBlock a:hover {
    color: var(--primary);
  }
  .productWeightSliderTitleQuantity {
    width: auto;
    padding: 8px 16px;
  }
  .datepicker {
    border-radius: 16px;
    padding: 32px;
    font-size: 16px;
    background-color: var(--white);
    border: 1px solid var(--grey-stroke);
  }
  .bootstrap-datetimepicker-widget {
    width: 320px !important;
  }
  .bootstrap-datetimepicker-widget td.active, .bootstrap-datetimepicker-widget td.active:hover {
    background-color: var(--yellow) !important;
    border-radius: 50% !important;
  }
  .bootstrap-datetimepicker-widget td.disabled, .bootstrap-datetimepicker-widget td.disabled:hover {
    color: var(--brown-verylight) !important;
  }
  .bootstrap-datetimepicker-widget td.day {
    height: 32px !important;;
    line-height: 32px !important;;
    width: 32px !important;
    text-shadow: none !important;
    color: var(--brown-dark) !important;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .bootstrap-datetimepicker-widget td.today:before {
    border-bottom: 7px solid var(--yellow) !important;
  }
  .bootstrap-datetimepicker-widget td.day.disabled {
    color: var(--brown-verylight) !important;
  }
  .modalFilligInfoImage {
    overflow: hidden;
    position: relative;
  }
  .modalFilligInfoImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  .modalFilligInfoContent {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .modalFilligInfoPrice {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    border-radius: 8px;
    background-color: var(--grey-surface);
  }
  .modalFilligInfoPriceValue {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
  }
  .modalFilligInfoImage .fillingsPageCardSticker {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    width: auto;
    border-radius: 16px;
    padding: 5px 16px;
    color: var(--white);
    gap: 8px;
  }
  .modalFillingInfo .modalProductContent {
    height: auto;
    max-width: 410px;
    flex-direction: column;
    gap: 16px;
  }
  .modalFillingInfo .modalProductInfo {
    width: 100%;
    padding-left: 0;
  }
  .modalFillingInfo .modalProductDescription {
    margin-bottom: 24px;
  }
  .modalSelectFilling {
    padding: 8px;
    margin-top: 24px;
  }
  @media (max-width: 1100px) {
    .accountBlockInfo .breadcrumbs {
      display: block;
    }
    .accountPage {
      padding: 62px 0 0;
    }
    .accountPageTitle {
      font-size: 28px;
      line-height: 40px;
      width: 100%;
    }
    .accountBlock {
      margin-bottom: 42px;
      min-height: 350px;
      flex-direction: column;
      gap: 24px;
    }
    .accountBlockSidebar {
      display: none;
    }
    .accountBlockInfo {
      width: 100%;
      gap: 28px 0;
    }
    .accountBlockSidebarList {
      flex-direction: row;
      gap: 16px;
    }
    .accountBlockSidebarItem {
      width: calc(100% / 5);
    }
    .accountBlockSidebarLink {
      gap: 0;
      justify-content: center;
      font-size: 0;
    }
    .accountPageFormBack {
      max-width: 160px;
      width: 100%;
      padding: 8px;
    }
    .accounOrdersButtons {
      margin-top: 24px;
      display: flex;
      gap: 16px;
    }
    .accounOrdersButtons button,
    .accounOrdersButtons a {
      padding: 8px;
      max-width: 260px;
      width: 100%;
    }
    .orderItem {
      margin: 0 0 16px;
    }
    .orderProductsItem .cartItemInfo {
      max-width: 45%;
    }
    .orderInfoFieldMini {
      width: calc(50% - 13px);
    }
    .orderInfoFieldMini:nth-last-child(-n + 3) {
      width: calc(33.33% - 13px);
    }
    .orderTotal {
      padding-bottom: 32px;
      border-bottom: 1px solid var(--card-border);
    }
    .orderTotalItem {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--grey-surface);
    }
    .orderTotalItemTotal {
      font-weight: 600;
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: none;
    }
}
@media (max-width: 1000px) {
  .accountPage {
      padding: 0;
  }
}
@media (max-width: 700px) {
  .modalFillingInfo .modalProductContent {
    max-width: 300px;
  }
  .accountPage {
    padding: 0;
  }
  .accountPageTitle {
    font-size: 20px;
    line-height: 32px;
    text-align: center;
  }
  .accountBlock {
    min-height: auto;
    margin-bottom: 56px;
  }
  .accountPageFormInput {
    font-size: 15px;
  }
  .modalNoteContent {
    max-width: calc(100% - 40px);
    padding: 20px 28px;
  }
  .accountBlockInfo .breadcrumbs {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
  .accountBlockInfo .breadcrumbsList {
    justify-content: center;
  }
  .accountBlockInfo {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .accounOrders {
    margin-top: 30px;
  }
  .accountBlockSidebarLink {
    padding: 8px 12px;
  }
  .accountBlockSidebarList {
    gap: 8px;
  }
  .accountPageFormField {
    width: 100%;
  }
  .accountPageFormBack {
    max-width: 100%;
  }
  .accountPageFormSubmit {
    max-width: 100%;
  }
  .addressListButtons {
    flex-wrap: wrap;
  }
  .accountBlockInfoTitleAddress {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .addressListField {
    width: 100%;
  }
  .addressListConfirm {
    max-width: 100%;
  }
  .addressListDelete {
    max-width: 100%;
  }
  .accountPageFormAddAddress .accountPageFormField {
    width: 100%;
  }
  .orderItemHeader {
    flex-direction: row;
    align-items: center;
    font-size: 13px;
    line-height: 15px;
    padding: 12px 20px 12px 58px;
  }
  .orderItemHeader p:nth-child(2) {
    display: none;
  }
  .orderItemContentTitle {
    font-size: 16px;
    line-height: 28px;
  }
  .orderInfo {
    padding: 16px 20px;
    gap: 2px;
    margin-bottom: 36px;
  }
  .orderInfoFieldValue {
    font-size: 15px;
    line-height: 28px;
  }
  .orderItemButtons {
    flex-direction: column;
    gap: 8px;
  }
  .orderItemButtons a {
    padding: 12px;
    width: 100%;
  }
  .orderItemTimelineItem::before {
    width: 80%;
    left: 30%;
  }
  .orderItemTimelineItem.active::after {
    width: 80%;
    left: 30%;
  }
  .orderItemTimelineItem:nth-child(2).active::after {
    left: 50%;
    width: 100%;
  }
  .orderItemTimelineItem:nth-child(2)::before {
    left: 50%;
    width: 100%;
  }
  .orderItemTimelineItem:nth-child(3).active::after {
    left: 90%;
  }
  .orderItemTimelineItem:nth-child(3)::before {
    left: 90%;
  }
  .orderInfoTitle {
    font-size: 13px;
  }
  .orderInfoField {
    width: 100%;
  }
  .orderInfoFieldMini {
    width: 100%;
  }
  .orderInfoFieldMini:nth-last-child(-n + 3) {
    width: 100%;
  }
  .orderProductsItem {
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 94px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 3px;
  }
  .orderProductsItemCombo {
    grid-template-columns: 94px 1fr;
    grid-template-rows: auto auto;
  }
  .orderProductsItemCombo .cartItemPrice {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .orderProductsItem .orderProductsItemImageCombo::before {
    width: 70px;
    height: 70px;
  }
  .orderProductsItem .cartItemImageCombo img {
    width: 44px;
    height: 36px;
  }
  .orderProductsItem .cartItemImage {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 94px;
    height: 70px;
  }
  .orderProductsItem .cartItemInfo {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: 0;
    max-width: 100%;
    gap: 0;
  }
  .orderProductsItemCombo .cartItemInfo {
    grid-column: 2 / 4;
    max-width: 100%;
  }
  .orderProductsItem .counterItem {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin: 0;
    justify-content: flex-end;
  }
  .orderProductsItem .cartItemPrice {
    margin: 0;
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    font-size: 16px;
    width: 100%;
    text-align: right;
  }
  .addressItem {
    flex-direction: column;
    gap: 16px;
  }
  .addressList {
    order: 1;
  }
  .addressItemText {
    justify-content: center;
    width: 100%;
  }
  .accountPageLink {
    margin-top: 36px;
    padding: 14px 20px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
  }
  .accountPageFormSubmit {
    width: 100%;
  }
}
@media (max-width: 500px) {
  p.orderItemStatus {
    display: none;
  }
}
@media (max-width: 360px) {
  .accountBlockSidebarLink svg {
    width: 16px;
  }
  .accountBlockSidebarLink {
    padding: 6px 10px;
  }
}
.productsList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.productsItem {
  width: calc(33.33% - 19px);
}
.productsCate {
  margin-bottom: 48px;
}
.productsCateTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 32px;
}
.productsCateFilters {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.productsCateFilter {
  padding: 12px 20px;
  font-size: 16px;
}
@media (max-width: 1300px) {
  .productsItem {
    width: calc(50% - 14px);
  }
}
@media (max-width: 700px) {
  .productsList {
    gap: 16px 10px;
  }
  .productsItem {
    width: calc(50% - 5px);
  }
  .productsCate {
    margin-bottom: 42px;
  }
  .productsCateTitle {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  .productsCateFilters {
    margin-bottom: 34px;
    gap: 6px;
  }
  .productsCateFilter {
    padding: 6px 16px;
    font-size: 16px;
    border-radius: 14px;
  }
}
.features {
  background-color: var(--white);
  padding: 100px 0;
}
.featuresList {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 100px;
}
.featuresItem {
  width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featuresItemTitle {
  margin: 28px 0 8px;
  text-align: center;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
.featuresItemText {
  text-align: center;
}
.featuresInfo {
  display: flex;
  gap: 80px;
}
.featuresInfoImage {
  width: 600px;
  line-height: 0;
  font-size: 0;
}
.featuresInfoImage img {
  border-radius: 20px;
}
.featuresInfoText {
  width: calc(100% - 680px);
  padding: 36px 100px 43px 0;
  margin-top: 43px;
  position: relative;
  line-height: 30px;
}
.featuresInfoText:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background-color: var(--green);
}
@media (max-width: 1400px) {
  .featuresInfo {
    gap: 50px;
  }
  .featuresInfoImage {
    width: 500px;
  }
  .featuresInfoText {
    width: calc(100% - 550px);
    padding: 20px 60px 20px 0;
  }
}
@media (max-width: 1200px) {
  .features {
    padding: 80px 0;
  }
  .featuresList {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .featuresItem {
    width: calc(50% - 20px);
  }
  .featuresInfo {
    gap: 80px;
    flex-direction: column;
  }
  .featuresInfoImage {
    width: 100%;
  }
  .featuresInfoText {
    width: 100%;
    padding: 36px 0 0;
    margin-top: 0;
    text-align: center;
  }
  .featuresInfoImage img {
    width: 100%;
  }
  .featuresInfoText:before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1000px) {
  .featuresItem svg {
    width: 32px;
    height: 32px;
  }
  .featuresItemTitle {
    margin: 24px 0 8px;
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .features {
    padding: 64px 0;
  }
  .featuresList {
    margin-bottom: 64px;
    gap: 46px;
  }
  .featuresItem {
    width: 100%;
  }
  .featuresInfo {
    gap: 64px;
  }
  .featuresInfoText {
    padding: 31px 10px 0;
  }
  .featuresItemTitle {
    margin: 12px 0 2px;
    font-size: 16px;
  }
  .featuresItemText {
    font-size: 15px;
    line-height: 24px;
  }
  .featuresInfoText {
    font-size: 15px;
    line-height: 28px;
  }
}
.aboutBanner {
  position: relative;
  margin-bottom: 100px;
  display: flex;
}
.aboutBannerImage {
  font-size: 0;
  line-height: 0;
}
.aboutBannerContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: center;
}
.aboutBannerTitle {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 32px;
}
.aboutBannerDesc {
  font-weight: 600;
}
.aboutBannerPlate {
  position: absolute;
  display: block;
  bottom: -155px;
  right: 20px;
  width: 260px;
  height: 260px;
}
.aboutBannerPlate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
}
.aboutFeatures {
  text-align: center;
  margin-bottom: 100px;
}
.aboutFeaturesTitle {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 64px;
  padding-bottom: 16px;
}
.aboutFeaturesTitle::before {
  content: '';
  width: 192px;
  height: 3px;
  background-color: var(--green);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.aboutFeaturesList {
  display: flex;
  gap: 22px;
}
.aboutFeaturesItem {
  width: calc(33.33% - 15px);
  padding: 48px 32px;
  border-radius: 20px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aboutFeaturesItem img {
  margin-bottom: 28px;
}
.aboutFeaturesItemTitle {
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.aboutFeaturesItemText {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}
.aboutDescription {
  background-color: var(--white);
  padding: 100px 0;
}
.aboutDescriptionContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 460px auto 460px 550px;
  column-gap: 90px;
}
.aboutDescriptionContent img {
  border-radius: 32px;
}
.aboutDescriptionItem1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.aboutDescriptionItem2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  text-align: right;
}
.aboutDescriptionItem3 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
  margin-bottom: 135px;
}
.aboutDescriptionItem4 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  margin-top: -100px;
}
.aboutDescriptionItem5 {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  margin: auto 0;
}
.aboutDescriptionItem6 {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}
.aboutDescriptionTitle {
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 48px;
  padding-bottom: 16px;
  position: relative;
  width: fit-content;
}
.aboutDescriptionTitle::before {
  content: '';
  width: 80%;
  height: 3px;
  background-color: var(--green);
  position: absolute;
  top: 100%;
  left: 0;
}
.aboutDescriptionItem p {
  line-height: 36px;
  font-weight: 500;
  color: var(--brown-dark);
}
.aboutDescriptionItem ul li {
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
  line-height: 44px;
  font-weight: 500;
  color: var(--brown-dark);
}
.aboutDescriptionItem ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url(../images/icons/note-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.aboutDescriptionItem ul li:last-child {
  margin-bottom: 0;
}
.aboutExport {
  padding: 100px 0 120px;
  text-align: center;
}
.aboutFeaturesSubtitle {
  font-size: 17px;
  color: var(--brown-main);
}
.aboutExport .aboutFeaturesSubtitle {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.aboutExportList {
  margin: 100px auto 0;
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px 0;
  padding: 0 34px;
}
.aboutExportItem {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.aboutExportItemText {
  font-size: 19px;
  line-height: 32px;
  font-weight: 700;
}
@media (max-width: 1350px) {
  .aboutBannerPlate {
    bottom: -130px;
    right: 3px;
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 1150px) {
  .aboutBannerPlate {
    bottom: -113px;
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 1000px) {
  .aboutBannerImage {
    width: 100%;
  }
  .aboutBannerImage img {
    width: 100%;
  }
  .aboutBannerPlate {
    bottom: -170px;
    right: 30px;
    width: 252px;
    height: 252px;
  }
  .aboutFeatures {
    margin-bottom: 80px;
  }
  .aboutBannerTitle {
    margin-bottom: 20px;
  }
  .aboutFeaturesTitle {
    text-align: left;
    margin-bottom: 48px;
  }
  .aboutFeaturesTitle::before {
    left: 0;
    transform: none;
  }
  .aboutFeaturesList {
    flex-wrap: wrap;
  }
  .aboutFeaturesItem {
    width: 100%;
    padding: 32px;
    display: grid;
    grid-template-columns: 62px auto;
    grid-template-rows: auto auto;
    column-gap: 32px;
  }
  .aboutFeaturesItem img {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: 62px;
    height: 62px;
    margin-bottom: 0;
  }
  .aboutFeaturesItemTitle {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin-bottom: 0;
    padding-bottom: 8px;
    text-align: left;
  }
  .aboutFeaturesItemText {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    text-align: left;
  }
  .aboutDescription {
    padding: 80px 0;
  }
  .aboutDescriptionContent {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
  }
  .aboutDescriptionItem1 {
    order: -2;
  }
  .aboutDescriptionItem2 {
    order: -1;
  }
  .aboutDescriptionItem4 {
    order: 0;
    margin-top: 0;
  }
  .aboutDescriptionItem3 {
    order: 1;
  }
  .aboutDescriptionItem6 {
    order: 3;
  }
  .aboutDescriptionItem5 {
    order: 2;
  }
  .aboutDescriptionItem2,
  .aboutDescriptionItem3,
  .aboutDescriptionItem6 {
    width: 100%;
    height: 626px;
    overflow: hidden;
    border-radius: 40px;
    margin-bottom: 0;
  }
  .aboutDescriptionItem2 img,
  .aboutDescriptionItem3 img,
  .aboutDescriptionItem6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aboutExport {
    padding: 80px 0 100px;
  }
  .aboutExport .aboutFeaturesTitle {
    text-align: center;
    margin-bottom: 42px;
  }
  .aboutExport .aboutFeaturesTitle::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .aboutExport .aboutFeaturesSubtitle{
    max-width: 600px;
  }
  .aboutExportList {
    margin: 72px auto 0;
    max-width: 100%;
    padding: 0;
  }
  .aboutExportItem {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .aboutBannerPlate {
    bottom: -116px;
    width: 160px;
    height: 160px;
  }
  .aboutFeatures {
    margin-bottom: 58px;
  }
  .aboutBannerContent {
    width: 100%;
    padding: 0 15px;
  }
  .aboutBannerTitle {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 44px;
  }
  .aboutBannerDesc {
    font-weight: 600;
    font-size: 16px;
  }
  .aboutFeaturesTitle {
    text-align: center;
    font-size: 22px;
    line-height: 28px;
  }
  .aboutFeaturesTitle::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .aboutFeaturesItem {
    padding: 28px 32px;
    display: flex;
    gap: 4px;
  }
  .aboutFeaturesItem img {
    margin-bottom: 24px;
  }
  .aboutFeaturesItemTitle {
    padding-bottom: 0;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
  }
  .aboutFeaturesItemText {
    text-align: center;
    font-size: 15px;
    line-height: 24px;
  }
  .aboutDescription {
    padding: 58px 0;
  }
  .aboutDescriptionTitle {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 38px;
  }
  .aboutDescriptionItem p {
    line-height: 28px;
    font-size: 15px;
  }
  .aboutDescriptionItem ul li {
    padding-left: 40px;
    line-height: 30px;
    font-size: 15px;
  }
  .aboutDescriptionContent {
    gap: 58px;
  }
  .aboutDescriptionItem2,
  .aboutDescriptionItem3,
  .aboutDescriptionItem6 {
    height: 291px;
    border-radius: 20px;
  }
}
.cartPage.innerPage {
  margin-top: 150px;
}
.cartPageNote {
  margin-bottom: 32px;
  color: var(--red-hover);
  font-weight: 500;
}
.cartPage {
  background-color: var(--white);
  padding-top: 48px;
}
.cartPageTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
.cartPageTitle {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 20px;
}
.cartPageContent {
  display: flex;
  align-items: flex-start;
  gap: 24px 48px;
  flex-wrap: wrap;
}
.cartList {
  width: calc(100% - 390px);
}
.totalBlock {
  width: 342px;
  padding: 24px 20px;
  background-color: var(--bg-menu);
  border-radius: 20px;
}
.totalBlockListItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 36px;
  font-weight: 600;
}
.totalBlockListItem:last-child {
  margin-bottom: 28px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 2px solid var(--brown-light);
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
}
.totalBlockListItem span {
  text-transform: capitalize;
}
.cartPageClear {
  display: inline-block;
  color: var(--brown-main);
  transition: color 0.3s ease-out;
  width: 100%;
}
.cartPageClear:hover {
  color: var(--yellow);
}
.cartPageCheckoutLink {
  padding: 14px;
  width: 100%;
}
.cartList {
  margin-bottom: 62px;
}
.cartItem {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--grey-stroke);
  display: flex;
  align-items: center;
}
.cartItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.cartItemImage {
  width: 121px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.cartItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cartItemImageCombo {
  display: flex;
  gap: 4px;
  position: relative;
  align-items: center;
}
.cartItemImageCombo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 91px;
  height: 91px;
  border-radius: 50%;
  z-index: 0;
  background-color: var(--orange);
}
.cartItemImageCombo img {
  border-radius: 12px;
  z-index: 1;
  position: relative;
}
.cartItemImageCombo img:first-child {
  margin-top: 30px;
}
.cartItemImageCombo img:nth-child(2) {
  margin-top: -20px;
}
.cartItemInfo {
  max-width: 262px;
  width: 100%;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cartItemInfoCombo {
  max-width: 55%;
}
.cartItemName {
  font-weight: 700;
  color: var(--brown-main);
}
.cartItemWeight {
  font-size: 17px;
  line-height: 24px;
  color: #C1C1C1;
}
.cartItem .counterItem {
  gap: 8px;
  margin: 0 auto;
}
.cartItem .counterItemButton {
  width: 36px;
  height: 36px;
}
.cartItemPrice {
  margin: 0 auto;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}
.cartItemDelete {
  margin-left: auto;
}
@media (max-width: 1250px) {
  .cartPageContent {
    flex-direction: column;
    gap: 0;
  }
  .cartList {
    width: 100%;
  }
  .totalBlock {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .cartPage.innerPage {
    margin-top: 112px;
  }
  .cartPageTop .breadcrumbs {
    display: block;
  }
  .cartItemInfo {
    max-width: 190px;
  }
  .cartItemInfoCombo {
    max-width: 50%;
  }
  .cartItemName {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 700px) {
  .cartPage.innerPage{
    margin-top: 66px;
    padding-top: 32px;
  }
  .cartItemName {
    font-size: 15px;
    line-height: 20px;
  }
  .cartItemWeight {
    font-size: 15px;
    line-height: 20px;
  }
  .cartItemPrice {
    font-size: 16px;
    line-height: 20px;
  }
  .cartPageContent {
    margin-bottom: 54px;
  }
  .cartPageTitle {
    font-size: 24px;
    line-height: 32px;
    order: 1;
  }
  .cartPageTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cartList {
    margin-bottom: 30px;
  }
  .cartItem {
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 94px 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 10px;
  }
  .cartItemCombo {
    grid-template-columns: 94px 1fr;
    grid-template-rows: auto auto;
  }
  .cartItemCombo .cartItemPrice {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .cartItemImageCombo::before {
    width: 70px;
    height: 70px;
  }
  .cartItemImageCombo img {
    width: 44px;
    height: 36px;
  }
  .cartItemImage {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 94px;
    height: 70px;
  }
  .cartItemInfo {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    margin-left: 0;
    max-width: 100%;
    gap: 0;
  }
  .cartItem .counterItem {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin: 0;
  }
  .cartItemPrice {
    margin: 0;
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    font-size: 18px;
    width: 100%;
    text-align: right;
  }
  .cartItemDelete {
    margin-left: 0;
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    text-align: right;
  }
  .totalBlockListItem {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .totalBlockListItem:last-child {
    padding-top: 24px;
    font-size: 18px;
  }
}
.addressItem {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  margin-bottom: 12px;
  background-color: var(--white);
  border-radius: 16px;
  position: relative;
}
.addressItemDefault {
  border: 3px solid var(--brown-light);
}
.addressItemDefaultText {
  position: absolute;
  top: 2px;
  left: 12px;
  font-size: 14px;
  font-weight: 600;
}
.addressItemText {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  width: 85%;
}
.cartItemNote {
  font-size: 14px;
  color: var(--red-hover);
  width: 100%;
}
.scrollToUp {
  background-color: var(--brown-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 60px;
  right: 40px;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease-out;
}
.scrollToUp svg {
  width: 20px;
  height: 20px;
}
.searchMobile {
  display: none;
}
@media (max-width: 1000px) {
  .searchMobile {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    background-color: var(--bg);
    transition: opacity 0.3s ease-out;
  }
  .searchMobile.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1001;
    height: 100vh;
  }
  .searchMob {
    padding: 32px 40px;
  }
  .searchMobHeader {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    gap: 10px;
  } 
  .searchMobClear {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }
  .searchMobileClose {
    width: 28px;
    height: 28px;
    margin: 32px 40px 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .searchMobBody {
    background-color: var(--white);
    height: inherit;
  }
  .searchResultListMob .searchResultItem:nth-child(n+3) {
    border-bottom: 1px solid var(--grey-stroke);
  }
  .searchResultListMob .searchResultItem:nth-child(n+4) {
    border-bottom: none;
  }
}
@media (max-width: 700px) {
  .searchMob {
    padding: 20px;
  }
  .searchResultListMob {
    padding: 20px;
  }
  .searchMobHeader {
    padding: 14px 20px;
  } 
  .searchMobileClose {
    margin: 20px 20px 0 auto;
  }
  .searchResultItem {
    position: relative;
  }
  .searchResultCardAddToCart {
    position: absolute;
    right: 0;
    bottom: 16px;
    padding: 7px 12px;
    border-radius: 12px;
  }
  .searchResultLink {
    width: 100%;
    align-items: flex-start;
  }
  .searchResultListMob .productCardAddToCartText {
    font-size: 15px;
    line-height: 24px;
  }
  .searchResultInfo {
    min-height: 94px;
  }
  .searchResultName {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .searchMobInput {
    font-size: 15px;
  }
}
.cartPageEmpty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 150px 0 200px;
}
.cartPageEmptyText {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: var(--brown-light);
}
.cartPageEmptyLink {
  padding: 14px 20px;
}
@media (max-width: 700px) {
  .cartPageEmptyText {
    font-size: 15px;
  }
}