/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

:root {
  --body-bg: #fff5ed;
  --container-width: 1470px;
  --text-main-color: #151528;
  --text-main-fontfamily: "Manrope", sans-serif;
  --accent: #DC2B91;
  --alt-color: #fff5ed;
  --btn-text: #fff;
  --accent-hover: #BA1976;
  --btn-border-radius: 6px;
  --gray-bg: #515360;
  --text-success: #43CD6C;
  --placeholder-color: #9E9A9E;
  --bg-gray-light: #f7f8f8;
  --bg-gray-darken: #f2f2f2;
}

* {
  box-sizing: border-box;
  outline: none;
}

.hidden {
  display: none !important;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: var(--placeholder-color);
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--placeholder-color);
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--placeholder-color);
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--placeholder-color);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--placeholder-color);
}

::placeholder { /* Most modern browsers support this now. */
  color: var(--placeholder-color);
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  border: 1px solid #9E9A9E;
  border-radius: 25px;
  padding: 0 15px;
  display: block;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 15px;
}

label {
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  margin-bottom: 8px;
  position: relative;
}
label sup {
  color: var(--accent);
  position: absolute;
  right: -10px;
  top: 10px;
}

textarea {
  padding: 10px 15px;
  height: 182px;
  border-radius: var(--btn-border-radius);
  resize: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 54px;
}

h2, .h2 {
  font-size: 54px;
}

h3, .h3 {
  font-size: 30px;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
}

.bolder {
  font-weight: 700;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
a:hover {
  text-decoration: underline;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.hover-not-underline:hover {
  text-decoration: none;
}
a.accent-link {
  color: var(--accent);
}
a.hover-accent:hover {
  text-decoration: none;
  color: var(--accent);
}

.hover-accent:hover {
  text-decoration: none;
  color: var(--accent);
}

svg {
  fill: currentColor;
}
svg.not-fill {
  fill: none;
}
svg.not-fill path {
  stroke: currentColor;
}
svg.not-fill path.accent {
  color: var(--accent);
}
svg.not-stroke path {
  stroke: none;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main-color);
  font-family: var(--text-main-fontfamily);
  background: var(--body-bg);
}

.btn {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  text-align: center;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 18px;
  line-height: 25px;
  padding: 10px 23px;
  border-radius: var(--btn-border-radius);
  transition: all 0.3s;
}
.btn svg {
  fill: currentColor;
}
.btn:hover {
  background: var(--accent-hover);
  text-decoration: none;
}
.btn--alt {
  background: var(--alt-color);
  color: var(--text-main-color);
  padding: 10px;
}
.btn--arrow {
  padding-right: 20px;
}
.btn--arrow svg {
  margin-left: auto;
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--text-main-color);
  color: var(--text-main-color);
}
.btn--outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn--big {
  height: 60px;
}
.btn--social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  justify-content: center;
  align-self: center;
  padding: 0;
}
.btn--blue {
  background: #426B9A;
}
.btn--rounded {
  border-radius: 30px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  max-width: 320px;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.15);
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  background: #fff;
  z-index: 2000;
  padding: 50px 0 20px;
  transform: translateX(-105%);
  transition: all 0.3s;
}
.mobile-menu.visible {
  transform: translateX(0);
}
.mobile-menu__holder {
  transition: all 0.3s;
}
.mobile-menu__catalog ul li, .mobile-menu__top ul li, .mobile-menu__main ul li {
  border-top: 1px solid var(--bg-gray-darken);
}
.mobile-menu__catalog ul li a, .mobile-menu__top ul li a, .mobile-menu__main ul li a {
  display: block;
  padding: 15px 30px 15px 15px;
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu__catalog ul li.menu-back a, .mobile-menu__top ul li.menu-back a, .mobile-menu__main ul li.menu-back a {
  padding-left: 30px;
  position: relative;
}
.mobile-menu__catalog ul li.menu-back a::before, .mobile-menu__top ul li.menu-back a::before, .mobile-menu__main ul li.menu-back a::before {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}
.mobile-menu__catalog ul li.menu-title > a, .mobile-menu__top ul li.menu-title > a, .mobile-menu__main ul li.menu-title > a {
  font-weight: 700;
  background: var(--bg-gray-light);
}
.mobile-menu__closer {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
}
.mobile-menu__closer::before, .mobile-menu__closer::after {
  display: block;
  content: "";
  height: 30px;
  width: 2px;
  background: var(--accent);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu__closer::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu li.holder > a {
  position: relative;
}
.mobile-menu li.holder > a::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}
.mobile-menu li.holder > ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 1;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-width: unset;
  width: 100%;
}
.mobile-menu li.holder.opened > ul {
  display: block;
}
.mobile-menu a:hover {
  text-decoration: none;
  color: var(--accent);
}

.mobile-menu-opener {
  display: none;
  position: absolute;
  right: 15px;
  top: 15px;
  text-indent: -9999px;
  cursor: pointer;
  height: 26px;
  width: 30px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transition: all 0.3s;
}
.mobile-menu-opener::before, .mobile-menu-opener::after {
  display: block;
  content: "";
  height: 2px;
  width: 30px;
  background: var(--accent);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.mobile-menu-opener.opened {
  border-color: transparent;
}
.mobile-menu-opener.opened::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu-opener.opened::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--body-bg);
}
.header-top {
  padding: 10px 0;
  color: #515360;
}
.header-top-content {
  display: flex;
  align-items: center;
}
.header-logo {
  flex: 0 0 478px;
}
.header-logo a {
  display: flex;
  align-items: center;
}
.header-logo__img {
  flex: 0 0 264px;
  border-right: 1px solid #515360;
  padding-right: 17px;
}
.header-logo__img img {
  max-height: 65px;
  display: block;
  margin: 0;
}
.header-logo__text {
  font-size: 14px;
  line-height: 1.44;
  padding-left: 14px;
}
.header-contacts {
  display: flex;
  align-items: center;
  column-gap: 38px;
  font-size: 18px;
  margin-right: 40px;
}
.header-socials {
  display: flex;
  column-gap: 22px;
}
.header-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-bg);
  transition: all 0.3s;
}
.header-socials a:hover {
  background: var(--accent);
}
.header-button {
  margin-left: auto;
}
.header-links {
  display: flex;
  align-items: center;
  column-gap: 26px;
  flex: 0 0 154px;
  justify-content: flex-end;
}
.header-link {
  position: relative;
  height: 30px;
  display: flex;
  align-items: center;
}
.header-link span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  position: absolute;
  right: -8px;
  bottom: -6px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}
.header-bottom {
  background: var(--gray-bg);
}
.header-bottom-content {
  display: flex;
  align-items: center;
}
.header-search {
  margin-left: auto;
  position: relative;
}
.header-search__opener {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.header-search__opener:hover {
  background: var(--accent);
  color: #fff;
}
.header-search__form {
  opacity: 0;
  position: absolute;
  right: 0;
  top: -9999px;
  transition: opacity 0.3s;
}
.header-search__form form {
  display: flex;
  height: 60px;
  align-items: center;
  width: 100vw;
  max-width: 400px;
  column-gap: 15px;
}
.header-search__form input[type=text] {
  height: 38px;
  border: none;
  flex-grow: 1;
  margin: 0;
}
.header-search__form input[type=submit], .header-search__form button[type=submit] {
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.header-search__form input[type=submit]:hover, .header-search__form button[type=submit]:hover {
  background: var(--accent);
  color: #fff;
}
.header-search__form.visible {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.main-menu {
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 65px;
}
.main-menu > li {
  position: relative;
}
.main-menu > li > a {
  display: flex;
  height: 60px;
  align-items: center;
}
.main-menu a {
  transition: all 0.3s;
}
.main-menu .parent {
  position: relative;
}
.main-menu .parent ul {
  position: absolute;
  left: 0;
  top: -9999px;
  opacity: 1;
  margin-top: 20px;
  min-width: 250px;
  background: var(--gray-bg);
  z-index: 1000;
  transition: opacity 0.3s, margin-top 0.3s;
}
.main-menu .parent ul li a {
  display: block;
  padding: 10px 20px;
}
.main-menu .parent ul li a:hover {
  background: rgba(0, 0, 0, 0.5);
}
.main-menu .parent:hover ul {
  opacity: 1;
  top: 100%;
  margin-top: 0;
}

li.parent > a {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
li.parent > a svg {
  transform: translateY(-1px);
  transition: all 0.3s;
}
li.parent:hover > a svg {
  transform: rotate(180deg) translateY(2px);
}

.contact-link {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.contact-link.phone {
  font-weight: 700;
  font-size: 20px;
}

.homepage-slider-content {
  display: flex;
}
.homepage-slider__info {
  flex-grow: 1;
  max-width: calc(100% - 821px);
}
.homepage-slider__img {
  flex: 0 0 821px;
  max-width: 821px;
  padding-left: 106px;
}

.slider-holder {
  position: relative;
}

.slider-nav-prev, .slider-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 54px;
  background: #fff;
  border-radius: 27px;
  color: var(--text-main-color);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 10;
}
.slider-nav-prev:hover, .slider-nav-next:hover {
  background: var(--accent);
  color: #fff;
}

.slider-nav-prev {
  left: -106px;
}

.slider-nav-next {
  right: -106px;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.swiper-pagination-bullet {
  height: 2px;
  width: 32px;
  border-radius: 0;
  background: #ACABAB;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.main-img-slide {
  position: relative;
}
.main-img-slide img {
  display: block;
  margin: 0;
}
.main-img-slide .btn {
  position: absolute;
  left: 30px;
  bottom: 20px;
  min-width: 228px;
}
.main-img-slide .btn:hover {
  color: #fff;
}

.main-text-slider {
  height: 100%;
}

.main-text-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 65px;
  height: 100%;
}
.main-text-slide__title h1, .main-text-slide__title .h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.main-text-slide__text {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 60px;
}
.main-text-slide .btn {
  height: 60px;
  min-width: 355px;
}
.main-text-slide__benefits {
  margin-top: auto;
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.main-text-slide__benefit {
  display: flex;
  align-items: center;
  column-gap: 16px;
  line-height: 1.2;
}
.main-text-slide__benefit .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  flex: 0 0 45px;
  background: #fff;
  border-radius: 50%;
}

.swiper-fade .swiper-slide {
  opacity: 0 !important;
}
.swiper-fade .swiper-slide.swiper-slide-visible {
  opacity: 1 !important;
}

.page-section {
  margin-top: 120px;
}
.page-section__title {
  margin-bottom: 60px;
}
.page-section__text {
  font-size: 24px;
  margin-bottom: 60px;
}
.page-section__title + .page-section__text {
  margin-top: -50px;
}

.swiper-slide > a {
  display: block;
}
.swiper-slide .h100 {
  height: 100%;
}
.swiper-slide .category-card {
  height: 100%;
}

.category-card {
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.category-card__img {
  flex: 0 0 395px;
  border-radius: 6px;
  overflow: hidden;
}
.category-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.8s;
}
.category-card__title {
  flex-grow: 1;
  min-height: 63px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  padding: 10px 15px;
}
.category-card__title > span:first-child {
  padding-right: 15px;
}
.category-card__title .next {
  margin-left: auto;
  flex: 0 0 auto;
}
.category-card:hover .category-card__img img {
  transform: scale(1.2);
}
.category-card:hover .next {
  background: var(--accent);
  color: #fff;
}

.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s;
  background: var(--alt-color);
}

.item-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: var(--btn-border-radius);
}
.item-card__labels {
  position: absolute;
  left: 15px;
  top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  flex-shrink: 0;
  z-index: 3;
  padding-right: 45px;
}
.item-card__links {
  z-index: 4;
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #9E9A9E;
}
.item-card__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  transition: all 0.3s;
}
.item-card__links a:hover {
  background: var(--accent);
  color: #fff;
}
.item-card__images {
  flex: 0 0 365px;
  height: 365px;
  position: relative;
}
.item-card__images-holder {
  height: 100%;
  display: flex;
}
.item-card__images-holder img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: -5;
  transition: all 0.2s;
  border-radius: var(--btn-border-radius);
}
.item-card__images-holder img.active {
  opacity: 1;
  z-index: 2;
}
.item-card__images-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 3;
}
.item-card__images-nav span {
  height: 100%;
  flex-grow: 1;
}
.item-card__images-pins {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  column-gap: 5px;
  row-gap: 4px;
  left: 0;
  right: 0;
  bottom: -16px;
}
.item-card__images-pins span {
  width: 12px;
  height: 2px;
  background: #ACABAB;
  opacity: 0.5;
}
.item-card__images-pins span.active {
  background: #DC2B91;
}
.item-card__info {
  padding: 30px 15px 20px;
  flex: 1 0 155px;
  display: flex;
  flex-direction: column;
}
.item-card__prices {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 26px;
  font-weight: 700;
  margin-top: auto;
}
.item-card__title {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 5px;
}
.item-card__meta {
  margin: auto 0 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  font-size: 14px;
}
.item-card__stock {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-success);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 15px;
}
.item-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.item-card__rating svg {
  position: relative;
  top: -1px;
}
.item-card__reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #A6A6AA;
}
.item-card__reviews svg {
  position: relative;
  top: 1px;
}
.item-card__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 50px;
}
.item-card__buttons .btn {
  height: 50px;
  flex: 0 0 50%;
  padding: 0;
}
.item-card__qty {
  flex: 0 0 50%;
  max-width: 50%;
}
.item-card__hover-content {
  background: #fff;
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: #A6A6AA;
  position: absolute;
  left: -1px;
  right: -1px;
  top: 100%;
  transform: translateY(-2px);
  border-radius: 0 0 var(--border-radius-little);
  border: 1px solid var(--border-color);
  border-top: none;
}
.item-card__hover-content > div {
  margin-top: 5px;
}
.item-card__hover-content span {
  color: var(--text-main);
}
.item-card:hover {
  z-index: 10;
}
.item-card:hover .item-card__hover-content {
  display: block;
}

.swiper-slide .item-card {
  height: 100%;
}

.label {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 10px;
  border-radius: var(--btn-border-radius);
}
.label--hit {
  background: #43CD6C;
}
.label--best-price {
  background: #EE7ABD;
}
.label--new {
  background: #3576EB;
}
.label--promotion {
  background: #FFB15E;
}

.custom-number {
  display: flex;
  align-items: center;
  background: #F4F4F5;
  border-radius: var(--btn-border-radius);
  height: 50px;
  color: #828080;
}
.custom-number--white {
  background: #fff;
}
.custom-number .minus, .custom-number .plus {
  display: flex;
  cursor: pointer;
  flex: 0 0 50px;
  height: 100%;
  text-indent: -9999px;
  position: relative;
}
.custom-number .minus::before, .custom-number .minus::after, .custom-number .plus::before, .custom-number .plus::after {
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #828080;
  transition: all 0.3s;
}
.custom-number .minus::after, .custom-number .plus::after {
  height: 12px;
  width: 2px;
}
.custom-number .minus:hover::before, .custom-number .minus:hover::after, .custom-number .plus:hover::before, .custom-number .plus:hover::after {
  background: var(--accent);
}
.custom-number .minus::after {
  display: none;
}
.custom-number input {
  flex-grow: 1;
  text-align: center;
  height: 50px;
  border: none;
  padding: 0;
  min-width: 0;
  background: transparent;
  -moz-appearance: textfield;
  font-size: 18px;
  font-weight: 700;
}
.custom-number input::-webkit-inner-spin-button, .custom-number input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section-button {
  margin-top: 60px;
}
.section-button .btn {
  width: 100%;
  max-width: 354px;
}

.gift-sertificate__content {
  display: flex;
  align-items: center;
}
.gift-sertificate__img {
  flex: 0 0 494px;
}
.gift-sertificate__info {
  flex-grow: 1;
  padding-left: 60px;
}
.gift-sertificate__info .btn {
  width: 100%;
  max-width: 400px;
}
.gift-sertificate__title {
  margin-bottom: 10px;
}
.gift-sertificate__text {
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 30px;
}
.gift-sertificate__notices {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.gift-sertificate__notices > span {
  position: relative;
  padding-left: 14px;
}
.gift-sertificate__notices > span::before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
  background: var(--text-main-color);
}

.review-item {
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--btn-border-radius);
}
.review-item__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.review-item__author {
  font-size: 18px;
  font-weight: 600;
}
.review-item__grade {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1px;
}
.review-item__date {
  color: #ACABAB;
}
.review-item__head .review-item__date {
  margin-left: auto;
}
.review-item__product {
  margin-top: 15px;
}
.review-item__text {
  margin-top: 30px;
}
.review-item__text-opener {
  text-decoration: underline;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  margin-top: 15px;
  cursor: pointer;
}
.review-item__text-opener:hover {
  text-decoration: none;
}
.review-item__images {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-item__img {
  display: flex;
  width: 80px;
  height: 80px;
}
.review-item__img a {
  display: block;
  width: 100%;
  height: 100%;
}
.review-item__img img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--btn-border-radius);
}

.review-items .review-item {
  margin-bottom: 20px;
}
.review-items .review-item__head {
  margin-bottom: 10px;
}
.review-items .review-item__text {
  max-height: 68px;
  overflow: hidden;
}
.review-items .review-item__text.visible {
  max-height: unset;
}
.review-items .review-item__img {
  width: 105px;
  height: 105px;
}

.swiper-slide .article-item {
  height: 100%;
}

.article-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--btn-border-radius);
}
.article-item__img {
  flex: 0 0 220px;
  border-radius: var(--btn-border-radius);
  overflow: hidden;
}
.article-item__img img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--btn-border-radius);
  transition: all 0.7s;
}
.article-item__info {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.article-item__title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.article-item__text {
  margin-bottom: 20px;
}
.article-item .more {
  margin-top: auto;
}
.article-item:hover .article-item__img img {
  transform: scale(1.2);
}

.homepage-about__content {
  display: flex;
}
.homepage-about__images {
  align-self: flex-start;
  flex: 0 0 577px;
  display: flex;
  gap: 10px;
  position: relative;
}
.homepage-about__images > div {
  flex: 0 0 calc(50% - 5px);
  border-radius: var(--btn-border-radius);
  overflow: hidden;
}
.homepage-about__images > div img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-about__images .homepage-about__circle {
  position: absolute;
  top: -10px;
  right: -60px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--body-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepage-about__images .homepage-about__circle img {
  display: inline;
  width: auto;
  height: auto;
}
.homepage-about__info {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  padding-left: 40px;
}
.homepage-about__title {
  padding-left: 20px;
}
.homepage-about__text {
  height: 370px;
  margin-bottom: 60px;
}

.content-accordion {
  overflow: hidden;
}
.content-accordion.visible {
  height: auto;
}

.typography-enabled h1, .typography-enabled .h1,
.typography-enabled h2, .typography-enabled .h2,
.typography-enabled h3, .typography-enabled .h3,
.typography-enabled h4, .typography-enabled .h4,
.typography-enabled h5, .typography-enabled .h5,
.typography-enabled h6, .typography-enabled .h6 {
  margin-bottom: 20px;
}
.typography-enabled h3, .typography-enabled .h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 30px;
}
.typography-enabled > *:last-child {
  margin-bottom: 0;
}
.typography-enabled p {
  margin-bottom: 15px;
}
.typography-enabled ul, .typography-enabled ol {
  margin-bottom: 15px;
}
.typography-enabled ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}
.typography-enabled ul li::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
  background: var(--accent);
}
.typography-enabled ol {
  margin-left: 20px;
}
.typography-enabled ol li {
  list-style: decimal;
}

.page-info p {
  margin-bottom: 20px;
}
.page-info ul, .page-info ol {
  margin-bottom: 20px;
}

span.accent {
  color: var(--accent);
}

.content-opener {
  position: relative;
  cursor: pointer;
  padding-right: 20px;
}
.content-opener::after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--text-main-color);
  border-bottom: 1px solid var(--text-main-color);
  position: absolute;
  right: 0;
  top: 6px;
  transform: rotate(45deg);
}
.content-opener:hover {
  color: var(--accent);
}
.content-opener:hover::after {
  border-color: var(--accent);
}
.content-opener.opened::after {
  top: 11px;
  transform: rotate(225deg);
}

.feedback-content {
  max-width: 542px;
  margin: 0 auto;
}
.feedback-buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.feedback-buttons .btn--social {
  margin-left: 15px;
}
.feedback-buttons .btn--big {
  flex-grow: 1;
  margin-right: 15px;
  gap: 20px;
}

.footer {
  background: #515360;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 90px;
  margin-top: 120px;
}
.footer-columns {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.footer-column {
  flex: 0 0 auto;
}
.footer-column-2 ul {
  column-count: 2;
  gap: 30px;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__logo svg {
  display: block;
  margin-bottom: 0;
}
.footer__socials {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 30px;
}
.footer__socials a {
  color: #fff;
}
.footer__socials a:hover {
  opacity: 0.4;
}
.footer__socials svg {
  display: block;
  margin: 0;
}
.footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.footer-contact {
  margin-bottom: 20px;
}
.footer-contact a {
  color: #fff;
}
.footer-contact a span {
  opacity: 0.7;
}
.footer-messagers {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-messagers a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: var(--gray-bg);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.footer-messagers a:hover {
  background: var(--accent);
  color: #fff;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a:hover {
  color: #fff;
}
.footer-middle {
  margin-top: 30px;
  padding: 35px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.footer-middle ul {
  display: flex;
  gap: 130px;
  justify-content: flex-end;
}
.footer-middle ul li {
  margin: 0;
}
.footer-middle ul li:first-child {
  margin-right: auto;
}
.footer-bottom {
  padding: 35px 0;
}
.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .copyright {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-subscribe {
  flex: 0 0 452px;
}
.footer-subscribe form {
  width: 100%;
  display: flex;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
}
.footer-subscribe form input {
  flex-grow: 1;
  background: none;
  border: none;
  height: 52px;
  padding: 0 20px;
}
.footer-subscribe form input[type=submit], .footer-subscribe form button[type=submit] {
  flex: 0 0 52px;
  padding: 0;
  width: 52px;
  border: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumbs {
  padding-top: 45px;
  color: #9E9A9E;
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  margin-left: 11px;
  padding-left: 32px;
  position: relative;
}
.breadcrumbs ul li::before {
  display: block;
  content: "";
  width: 19px;
  height: 9px;
  background: url("../images/arrow.svg") left center no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumbs ul li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.breadcrumbs ul li:first-child::before {
  display: none;
}
.breadcrumbs a {
  color: var(--text-main-color);
}

.page-content {
  padding-top: 50px;
}

.catalog-categories {
  margin-top: 20px;
}

.buttons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.buttons-list li a {
  display: inline-flex;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  padding: 10px 20px;
  border-radius: 25px;
}
.buttons-list li a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--accent);
}

.catalog-holder {
  margin-top: 40px;
  display: flex;
}
.catalog-filters {
  align-self: flex-start;
  flex: 0 0 310px;
}
.catalog-filters-wrapper {
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 16px 16px 30px 16px;
}
.catalog-content {
  margin-left: 50px;
  flex-grow: 1;
  max-width: calc(100% - 360px);
}
.catalog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.catalog-meta > div {
  flex: 0 0 calc((100% - 20px) / 3);
}
.catalog-items {
  display: flex;
  column-gap: 10px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.catalog-items .item-card {
  flex: 0 0 calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 3);
}

.dropdown-select {
  position: relative;
}
.dropdown-select__title {
  cursor: pointer;
  background: #fff;
  border-radius: var(--btn-border-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 43px;
  padding: 5px 12px;
}
.dropdown-select__title svg {
  transition: all 0.3s;
}
.dropdown-select__title.opened svg {
  transform: rotate(180deg);
}
.dropdown-select__list {
  position: absolute;
  left: 0;
  top: -9999px;
  opacity: 0;
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 10px 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  z-index: 100;
  margin-top: 20px;
  transition: opacity 0.3s, margin 0.3s;
  width: 100%;
  min-width: 250px;
}
.dropdown-select__list.visible {
  top: 100%;
  opacity: 1;
  margin-top: 0;
}
.dropdown-select__list li a {
  display: block;
  padding: 10px 20px;
}
.dropdown-select__list li a:hover {
  text-decoration: none;
  color: var(--accent);
  background: #f5f5f5;
}

.simple-form {
  background: #fff;
  border-radius: var(--btn-border-radius);
  height: 43px;
  display: flex;
}
.simple-form input[type=text],
.simple-form input[type=tel],
.simple-form input[type=email],
.simple-form input[type=password] {
  background: none;
  border: none;
  height: 43px;
  padding: 0 20px;
  flex-grow: 1;
}
.simple-form input[type=submit], .simple-form button[type=submit] {
  height: 43px;
  flex: 0 0 43px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: none;
  background: transparent;
}

.share-block {
  margin-top: 40px;
}
.share-block__title {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.share-block .btn {
  min-width: 245px;
}

.bottom-nav {
  margin-top: 60px;
  text-align: center;
}
.bottom-nav .btn {
  min-width: 276px;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.catalog-pagination a, .catalog-pagination span {
  display: flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.catalog-pagination a:hover, .catalog-pagination span:hover {
  background: #fff;
  text-decoration: none;
}
.catalog-pagination a.cur, .catalog-pagination span.cur {
  background: var(--accent);
  color: #fff;
}
.catalog-pagination a.other:hover, .catalog-pagination span.other:hover {
  background: none;
}
.catalog-pagination-prev svg {
  transform: rotate(180deg);
}

.leave-review {
  margin-top: 60px;
}
.leave-review .btn {
  min-width: 352px;
}

.detail-content {
  background: #fff;
  padding: 65px 0 60px;
}

.tab-selector {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  column-gap: 110px;
}
.tab-selector li {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main-color);
  padding: 0 10px 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-selector li::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
}
.tab-selector li:hover {
  color: var(--accent);
}
.tab-selector li.active::after {
  background: var(--accent);
}

.detail-tabs__content {
  padding-top: 50px;
}

.tabs .tab {
  display: none;
}
.tabs .tab.visible {
  display: block;
}

.detail-head {
  margin-top: 40px;
}
.detail-head__content {
  display: flex;
}
.detail-head__images {
  flex: 0 0 550px;
  max-width: 550px;
  margin-right: 90px;
}
.detail-head__images-main {
  margin-bottom: 10px;
  position: relative;
}
.detail-head__images-main .slider-nav-prev {
  left: -38px;
  z-index: 3;
}
.detail-head__images-main .slider-nav-next {
  right: -38px;
  z-index: 3;
}
.detail-head__images-thumbs {
  margin-top: 10px;
}
.detail-head__info {
  flex-grow: 1;
}
.detail-main-slide img {
  display: block;
  border-radius: var(--btn-border-radius);
  max-height: 650px;
}
.detail-thumb {
  height: 130px;
  width: 110px;
  border-radius: var(--btn-border-radius);
  overflow: hidden;
}
.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-stock {
  font-size: 14px;
  line-height: 19px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 25px;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 3;
}
.detail-stock--instock {
  color: #22AF09;
}
.detail-title h1 {
  font-size: 42px;
}
.detail-rating {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  color: #9E9A9E;
}
.detail-rating .value {
  font-weight: 700;
  color: var(--text-main-color);
}
.detail-price {
  margin-top: 30px;
  font-size: 42px;
  font-weight: 700;
}
.detail-buttons {
  margin-top: 20px;
  max-width: 490px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
}
.detail-buttons .btn {
  flex-grow: 1;
}
.detail-qty {
  flex: 0 0 180px;
  max-width: 180px;
}
.detail-qty .custom-number {
  height: 60px;
}
.detail-meta {
  font-size: 18px;
  margin-top: 40px;
}
.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.detail-short-characteristics {
  margin-top: 40px;
  font-size: 18px;
}
.detail-short-characteristics .title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.detail-short-characteristics ul {
  color: #9E9A9E;
}
.detail-short-characteristics ul li {
  margin-bottom: 7px;
}
.detail-short-characteristics ul li strong {
  color: var(--text-main-color);
  font-weight: normal;
}

.share-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}
.share-icons a {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: #B4B4B4;
  border-radius: 4px;
}
.share-icons a:hover {
  background: var(--accent);
}

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

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.about-brand {
  margin-top: 50px;
  display: flex;
}
.about-brand__image {
  flex: 0 0 558px;
  margin-right: 52px;
}
.about-brand__image img {
  display: block;
  margin: 0;
  border-radius: var(--btn-border-radius);
}
.about-brand__info {
  flex-grow: 1;
}
.about-brand__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 45px;
  line-height: 1.4;
}
.about-brand__text {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 45px;
  padding-right: 100px;
}

.benefit-items {
  background: #fff;
  padding: 30px 35px;
  border-radius: var(--btn-border-radius);
  font-size: 18px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.benefit-item:last-child {
  margin-bottom: 0;
}
.benefit-item__icon {
  flex: 0 0 60px;
}
.benefit-item__icon img {
  display: block;
  margin: 0;
}
.benefit-item__text {
  flex-grow: 1;
  padding-left: 25px;
}

.about-packing {
  display: flex;
}
.about-packing__info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 100px;
}
.about-packing__info .info-block {
  margin-top: auto;
}
.about-packing__title {
  margin-bottom: 40px;
}
.about-packing__text {
  font-size: 18px;
}
.about-packing__images {
  flex: 0 0 664px;
  max-width: 664px;
  padding: 0 92px;
}
.about-packing__images img {
  display: block;
  margin: 0;
  border-radius: var(--btn-border-radius);
}
.about-packing__images .slider-nav-prev {
  left: -92px;
}
.about-packing__images .slider-nav-next {
  right: -92px;
}

.info-block {
  background: #fff;
  border-radius: var(--btn-border-radius);
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  padding: 30px;
  position: relative;
  margin-bottom: 15px;
}
.info-block.w100 {
  width: 100%;
}
.info-block--with-icon {
  padding: 18px 30px 18px 70px;
  display: inline-flex;
}
.info-block__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.info-block__title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.delivery-items {
  margin-top: 125px;
  display: flex;
  gap: 10px;
}

.delivery-item {
  background: #fff;
  border-radius: var(--btn-border-radius);
  position: relative;
  padding: 95px 20px 35px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  flex: 0 0 calc((100% - 20px) / 3);
}
.delivery-item__icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
}
.delivery-item__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.delivery-item__text {
  margin-bottom: 15px;
}
.delivery-item__text ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
  justify-content: center;
  font-weight: 700;
}
.delivery-item__text ul li {
  margin: 0;
}
.delivery-item__notice {
  margin-top: auto;
  min-height: 54px;
}

.payment-text {
  margin-top: 20px;
}
.payment-methods {
  margin-top: 20px;
}

.article-items {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
}
.article-items .article-item {
  flex: 0 0 calc((100% - 30px) / 4);
}

.contacts-content {
  display: flex;
  margin-top: 50px;
  gap: 20px;
}
.contacts-contacts {
  flex: 0 0 338px;
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 30px;
  font-weight: 600;
}
.contacts-contacts .contact-link {
  gap: 15px;
}
.contacts-contact {
  margin-bottom: 25px;
}
.contacts-socials {
  display: flex;
  gap: 25px;
  align-items: center;
}
.contacts-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--body-bg);
}
.contacts-info {
  flex-grow: 1;
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 30px;
  font-size: 18px;
}
.contacts-info h3, .contacts-info .h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
}

.page-info {
  margin-top: 50px;
  font-size: 18px;
}

.num-block {
  display: flex;
  align-items: flex-start;
  min-height: 36px;
  gap: 20px;
  margin-bottom: 40px;
}
.num-block:last-of-type {
  margin-bottom: 0;
}
.num-block__order {
  flex: 0 0 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}
.num-block__content {
  font-size: 18px;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.num-block p {
  margin: 0;
}

.how-order-steps {
  max-width: 715px;
  margin-bottom: 50px;
}

.content-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}

.communication-options {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.communication-option {
  flex: 0 0 calc((100% - 20px) / 3);
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 20px;
}
.communication-option__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.communication-option .btn {
  width: 100%;
  max-width: 360px;
}
.communication-option .contact-link {
  font-weight: 600;
}
.communication-option .contact-link[href*=tel] {
  font-size: 32px;
}
.communication-option .contact-link svg {
  height: 21px;
  width: auto;
}

.reviews-head {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.reviews-head .btn {
  flex: 0 0 310px;
  margin-left: auto;
}

.faq-accordion {
  margin-top: 40px;
}
.faq-accordion-filters {
  margin-top: 30px;
}

.accordion-item {
  border-bottom: 1px solid #E6E5E3;
}
.accordion-item:first-child {
  border-top: 1px solid #E6E5E3;
}
.accordion-item__title {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1E1D1D;
  position: relative;
  padding: 35px 40px 35px 0;
  transition: all 0.3s;
}
.accordion-item__title::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #1E1D1D;
  border-bottom: 1px solid #1E1D1D;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-8px) rotate(45deg);
  transition: all 0.3s;
}
.accordion-item__title:hover {
  color: var(--accent);
}
.accordion-item__title.opened::after {
  transform: translateY(-3px) rotate(225deg);
}
.accordion-item__answer {
  display: none;
  padding-bottom: 35px;
}

.filter-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-selector li {
  cursor: pointer;
  color: #1E1D1D;
  font-size: 16px;
  line-height: 1.25;
  border: 1px solid #9E9A9E;
  padding: 10px 20px;
  border-radius: 4px;
}
.filter-selector li.active {
  color: #F6F6F6;
  background: var(--text-main-color);
  border-color: var(--text-main-color);
}

.post-title h1, .post-title .h1 {
  line-height: 1.1;
}
.post-content {
  display: flex;
}
.post-info {
  flex-grow: 1;
  margin-top: 0;
  padding-right: 60px;
}
.post-info .num-blocks {
  margin-top: 30px;
}
.post-info .num-block {
  margin-bottom: 30px;
}
.post-image {
  flex: 0 0 665px;
}
.post-image img {
  display: block;
  margin: 0;
  border-radius: var(--btn-border-radius);
}

.single-post__meta {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #9E9A9E;
}
.single-post__meta .value {
  color: var(--text-main-color);
}
.single-post__content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.single-post__info {
  flex-grow: 1;
  max-width: 820px;
}
.single-post__thumb {
  margin-bottom: 30px;
}
.single-post__thumb img {
  display: block;
  margin: 0;
  border-radius: var(--btn-border-radius);
}
.single-post__sidebar {
  flex: 0 0 413px;
  position: relative;
}
.single-post__sidebar-sticky {
  position: sticky;
  top: 150px;
}
.single-post__share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 30px;
}
.single-post__share > span {
  color: #000;
  font-weight: 700;
}
.single-post__toc {
  background: #fff;
  border-radius: var(--btn-border-radius);
}
.single-post__toc-title {
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 25px 15px;
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
}
.single-post__toc-title::after {
  display: block;
  content: "";
  height: 1px;
  width: 50px;
  background: var(--accent);
  position: absolute;
  left: 25px;
  bottom: -1px;
}
.single-post__toc ul {
  padding: 25px 20px 20px 20px;
}
.single-post__toc ul li {
  margin-bottom: 15px;
}
.single-post__toc ul li:last-of-type {
  margin-bottom: 0;
}
.single-post__toc ul li a {
  color: #9E9A9E;
}
.single-post__toc ul li a.active {
  color: var(--text-main-color);
}

.favorite-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
  margin-top: 50px;
}
.favorite-items .item-card {
  flex: 0 0 calc((100% - 30px) / 4);
  max-width: calc((100% - 30px) / 4);
}

.empty-block {
  text-align: center;
}
.empty-block__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 111px;
  height: 111px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 25px;
}
.empty-block__icon img {
  display: block;
  margin: 0;
}
.empty-block__title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.empty-block__text {
  font-size: 18px;
}

.cart-content {
  margin-top: 50px;
  display: flex;
  gap: 10px;
}
.cart-main {
  flex-grow: 1;
}
.cart-main .section-button {
  margin-top: 50px;
}
.cart-total {
  flex: 0 0 425px;
}
.cart-total-wrapper {
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 30px;
  position: sticky;
  top: 20px;
}
.cart-total__qty {
  font-size: 18px;
  font-weight: 500;
}
.cart-total__sum {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 25px;
}
.cart-total__sum .sum {
  font-size: 32px;
  color: var(--accent);
}
.cart-total .btn {
  width: 100%;
}

.cart-item {
  margin-bottom: 10px;
  display: flex;
  background: #fff;
  border-radius: var(--btn-border-radius);
  position: relative;
}
.cart-item__img {
  flex: 0 0 134px;
  overflow: hidden;
  min-height: 150px;
  border-radius: var(--btn-border-radius);
}
.cart-item__img img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__info {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
.cart-item__buttons {
  color: #9E9A9E;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.cart-item__buttons button {
  border: none;
  padding: 0;
  background: transparent;
  transition: all 0.3s;
}
.cart-item__buttons button:hover {
  color: var(--accent);
}
.cart-item__title {
  flex: 0 0 100%;
  padding-right: 70px;
  font-size: 18px;
  font-weight: 600;
}
.cart-item__qty {
  margin-top: auto;
}
.cart-item__price {
  margin-top: auto;
  margin-left: auto;
  font-size: 24px;
  font-weight: 700;
}
.cart-item .custom-number {
  background: var(--body-bg);
  height: 37px;
  width: 110px;
}
.cart-item .custom-number .minus, .cart-item .custom-number .plus {
  flex: 0 0 37px;
}
.cart-item .custom-number .minus::before, .cart-item .custom-number .minus::after, .cart-item .custom-number .plus::before, .cart-item .custom-number .plus::after {
  background: var(--text-main-color);
  width: 10px;
}
.cart-item .custom-number .minus::after, .cart-item .custom-number .plus::after {
  height: 10px;
  width: 2px;
}
.cart-item .custom-number input {
  font-size: 20px;
  color: var(--text-main-color);
}

.order-content {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.order-form {
  flex: 0 0 520px;
}
.order-form-wrapper {
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 30px;
}
.order-form .personal-agree {
  margin-top: 50px;
}
.order-form .btn {
  width: 100%;
}
.order-compound {
  flex-grow: 1;
  max-width: 662px;
}
.order-compound-wrapper {
  background: #fff;
  border-radius: var(--btn-border-radius);
  padding: 20px 20px 25px;
}
.order-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.order-item__img {
  flex: 0 0 71px;
  height: 80px;
  border-radius: var(--btn-border-radius);
  overflow: hidden;
}
.order-item__img img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-item__info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.order-item__title {
  flex-grow: 1;
  padding-right: 15px;
  line-height: 1.3;
}
.order-item__qty {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  justify-content: flex-end;
}
.order-item__qty .price {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}
.order-sum-items {
  padding: 15px 0 0;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
}
.order-sum-item {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
}
.order-sum-item__sum {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-left: auto;
}
.order-total-sum {
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  color: var(--accent);
  font-size: 24px;
  font-weight: 600;
}
.order-total-sum .sum {
  font-size: 36px;
  line-height: 1;
  margin-left: auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pseudo-radio {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}
.pseudo-radio input[type=radio] {
  display: none;
}
.pseudo-radio-button {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border: 1px solid #9E9A9E;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  top: 5px;
}
input[type=radio]:checked ~ .pseudo-radio-button {
  border-color: var(--accent);
}
input[type=radio]:checked ~ .pseudo-radio-button::before {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--accent);
}
.pseudo-radio-title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
}
.pseudo-radio-title > span {
  display: block;
  font-size: 14px;
  color: #9E9A9E;
}

.order-delivery-item {
  margin-bottom: 25px;
}
.order-delivery-item__sum {
  flex-shrink: 0;
}

.pseudo-checkbox {
  display: flex;
  align-items: flex-start;
}
.pseudo-checkbox input[type=checkbox] {
  display: none;
}
.pseudo-checkbox-button {
  cursor: pointer;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid #9E9A9E;
  border-radius: 2px;
  position: relative;
  margin-right: 10px;
  top: 5px;
}
input[type=checkbox]:checked ~ .pseudo-checkbox-button {
  border-color: var(--accent);
}
input[type=checkbox]:checked ~ .pseudo-checkbox-button::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  position: absolute;
  left: 2px;
  top: 2px;
}

.personal-agree {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.personal-agree .pseudo-checkbox-button {
  top: 3px;
}
.personal-agree label {
  font-size: 14px;
}

.simple-popup {
  width: 100%;
  max-width: 520px;
  padding: 30px 30px 40px;
  border-radius: var(--btn-border-radius);
  background: #fff;
}
.simple-popup__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.simple-popup input[type=submit], .simple-popup button[type=submit] {
  width: 100%;
}
.simple-popup .personal-agree {
  margin-top: 30px;
}

.pseudo-file-wrapper input {
  display: none;
}

.pseudo-file {
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}
.pseudo-file svg {
  flex: 0 0 auto;
  margin-right: 10px;
}
.pseudo-file-title {
  flex-grow: 1;
}

.leave-review-product {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.leave-review-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.leave-review-rating-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.leave-review-rating-stars svg {
  cursor: pointer;
}
.leave-review-rating-stars svg.hovered, .leave-review-rating-stars svg.active {
  fill: #FFA500;
}

.swiper-wrapper.h100 {
  align-items: stretch;
}
.swiper-wrapper.h100 .swiper-slide {
  height: auto;
}

@media (max-width: 1669px) {
  .slider-holder {
    margin-top: 90px;
  }
  .articles .slider-holder, .recommend-items .slider-holder {
    margin-top: 0;
  }
  .slider-nav-prev {
    left: 50%;
    top: -70px;
    transform: translateX(-110%);
  }
  .slider-nav-next {
    top: -70px;
    right: 50%;
    transform: translateX(110%);
  }
  .homepage-slider .slider-holder, .detail-head__images .slider-holder, .about-packing__images .slider-holder, .read-also .slider-holder {
    margin-top: 0;
  }
  .homepage-slider .slider-nav-prev, .detail-head__images .slider-nav-prev, .about-packing__images .slider-nav-prev, .read-also .slider-nav-prev {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .homepage-slider .slider-nav-next, .detail-head__images .slider-nav-next, .about-packing__images .slider-nav-next, .read-also .slider-nav-next {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .about-packing__images {
    max-width: 480px;
    padding: 0;
  }
}
@media (max-width: 1499px) {
  .header-links {
    flex: 0 0 100px;
  }
}
@media (max-width: 1399px) {
  .header-logo {
    flex: 0 0 450px;
  }
  .header-contacts {
    margin-right: 20px;
    column-gap: 20px;
  }
  .header-socials {
    column-gap: 10px;
  }
  .header-button .btn {
    font-size: 14px;
  }
  .homepage-slider__img {
    max-width: 700px;
    padding-left: 50px;
  }
  .homepage-slider__info {
    max-width: calc(100% - 700px);
  }
  .main-text-slide__title h1, .main-text-slide__title .h1 {
    font-size: 40px;
  }
  .main-text-slide__text {
    font-size: 24px;
  }
  .main-text-slide .btn {
    min-width: 300px;
  }
  .main-menu {
    column-gap: 40px;
  }
  .gift-sertificate__notices > span {
    flex: 0 0 100%;
  }
  .footer-middle ul {
    justify-content: space-between;
    gap: 30px;
  }
  .footer-middle ul li:first-child {
    margin-right: 0;
  }
  .detail-head__images {
    max-width: 500px;
    margin-right: 40px;
  }
  .about-brand__image {
    margin-right: 30px;
  }
  .about-brand__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .delivery-items {
    margin-top: 80px;
  }
  .delivery-item {
    padding: 60px 20px 20px;
    min-height: unset;
  }
  .delivery-item__icon {
    width: 80px;
    height: 80px;
  }
  .delivery-item__icon img {
    max-width: 50px;
    max-height: 50px;
  }
  .delivery-item__title {
    font-size: 18px;
  }
  .post-image {
    flex: 0 0 550px;
  }
  .post-info {
    padding-right: 30px;
  }
  .post-info .num-block {
    margin-bottom: 15px;
  }
  .num-block__content {
    font-size: 16px;
  }
  .order-form {
    flex: 0 0 400px;
  }
  .order-form .personal-agree {
    margin-top: 30px;
  }
  .order-compound {
    max-width: unset;
  }
  .accordion-item__title {
    padding: 20px 40px 20px 0;
  }
}
@media (max-width: 1299px) {
  .header-contacts .contact-link:not(.phone) {
    display: none;
  }
  .homepage-slider__img {
    max-width: 600px;
  }
  .homepage-slider__info {
    max-width: calc(100% - 600px);
  }
  .main-text-slide {
    padding-top: 30px;
  }
  .main-text-slide__text {
    margin-bottom: 40px;
  }
  h1, .h1 {
    font-size: 45px;
  }
  h2, .h2 {
    font-size: 45px;
  }
  .review-item {
    padding: 20px 15px;
  }
  .review-item__head {
    margin-bottom: 10px;
  }
  .review-item__text {
    margin-top: 15px;
    line-height: 1.2;
  }
  .article-item__title {
    font-size: 18px;
    line-height: 1.2;
  }
  .article-item__text {
    line-height: 1.2;
  }
  .catalog-items .item-card {
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
  .about-brand__text {
    padding-right: 0;
  }
  .communication-option {
    font-size: 20px;
  }
  .communication-option .contact-link[href*=tel] {
    font-size: 26px;
  }
  .review-items .review-item__text {
    max-height: 60px;
  }
}
@media (max-width: 1199px) {
  .contact-link.phone {
    font-size: 16px;
  }
  .homepage-slider__img {
    max-width: 500px;
  }
  .homepage-slider__info {
    max-width: calc(100% - 500px);
  }
  .main-text-slide__title h1, .main-text-slide__title .h1 {
    font-size: 32px;
  }
  .main-text-slide__text {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .homepage-about__images {
    flex: 0 0 500px;
  }
  .homepage-about__text {
    margin-bottom: 30px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-columns {
    flex-wrap: wrap;
  }
  .footer-column-1 {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__logo {
    margin: 0;
  }
  .footer-middle {
    padding: 20px 0;
    margin-top: 20px;
  }
  .footer-middle ul {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .footer-middle ul li {
    flex: 0 0 calc(50% - 15px);
  }
  .page-section {
    margin-top: 80px;
  }
  .page-section__title {
    margin-bottom: 40px;
  }
  .page-section__title + .page-section__text {
    margin-top: -30px;
  }
  .page-section__text {
    margin-bottom: 40px;
  }
  .detail-head__images {
    max-width: 450px;
  }
  .detail-thumb {
    width: 90px;
    height: 100px;
  }
  .tab-selector {
    column-gap: 50px;
  }
  .about-brand__image {
    flex: 0 0 400px;
    margin-right: 20px;
  }
  .about-brand__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about-brand__text {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .benefit-items {
    padding: 15px;
  }
  .benefit-item {
    margin-bottom: 15px;
  }
  .benefit-item__text {
    line-height: 1.3;
  }
  .about-packing__info {
    padding-right: 30px;
  }
  .delivery-item {
    font-size: 16px;
  }
  .delivery-item__title {
    font-size: 16px;
  }
  .delivery-item__text {
    font-size: 16px;
    line-height: 1.4;
  }
  .post-image {
    flex: 0 0 450px;
  }
  .article-items .article-item {
    flex: 0 0 calc((100% - 20px) / 3);
  }
  .single-post__sidebar {
    flex: 0 0 350px;
  }
  .page-info {
    margin-top: 30px;
    font-size: 16px;
  }
  .post-info {
    margin-top: 0;
  }
  .cart-total {
    flex: 0 0 350px;
  }
}
@media (max-width: 1023px) {
  .mobile-menu-opener {
    display: block;
  }
  .header.sticky .header-bottom {
    display: none;
  }
  .header.sticky .header-contacts {
    display: none;
  }
  .header.sticky .header-socials {
    display: none;
  }
  .header.sticky .header-button {
    display: none;
  }
  .header.sticky .header-links {
    display: none;
  }
  .header-top-content {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .header-logo {
    flex: 0 0 100%;
  }
  .header-logo > a {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    justify-content: center;
  }
  .header-bottom-content {
    padding: 10px 15px;
    justify-content: center;
  }
  .header-search {
    margin-left: 0;
  }
  .header-search__opener {
    display: none;
  }
  .header-search__form, .header-search__form.visible {
    position: static;
    transform: none;
    opacity: 1;
  }
  .header-search__form form, .header-search__form.visible form {
    height: auto;
  }
  .main-nav {
    display: none;
  }
  .catalog-holder {
    flex-wrap: wrap;
  }
  .catalog-filters {
    flex: 0 0 100%;
  }
  .catalog-content {
    flex: 0 0 100%;
    margin: 30px 0 0;
    max-width: 100%;
  }
  .catalog-items .item-card {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }
  .share-block {
    display: none;
  }
  .detail-head__images {
    margin-right: 20px;
  }
  .detail-title h1, .detail-title .h2 {
    font-size: 36px;
  }
  .detail-price {
    font-size: 30px;
  }
  .detail-meta {
    margin-top: 30px;
  }
  .detail-short-characteristics {
    margin-top: 30px;
    font-size: 16px;
  }
  .tab-selector {
    column-gap: 30px;
  }
  .about-brand__image {
    flex: 0 0 350px;
  }
  .benefit-items {
    font-size: 16px;
  }
  .benefit-item__icon {
    flex: 0 0 40px;
  }
  .benefit-item__text {
    padding-left: 15px;
  }
  .post-image {
    flex: 0 0 350px;
  }
  h1, .h1 {
    font-size: 36px;
  }
  h2, .h2 {
    font-size: 36px;
  }
  .communication-option {
    font-size: 20px;
  }
  .communication-option__title {
    font-size: 16px;
  }
  .communication-option .contact-link[href*=tel] {
    font-size: 22px;
  }
  .favorite-items .item-card {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }
  .cart-content {
    flex-wrap: wrap;
  }
  .cart-main {
    flex: 0 0 100%;
  }
  .cart-total {
    flex: 0 0 100%;
    margin-top: 50px;
  }
  .order-content {
    flex-wrap: wrap;
  }
  .order-form {
    flex: 0 0 100%;
    order: 2;
  }
  .order-compound {
    flex: 0 0 100%;
  }
  .filter-selector {
    font-size: 14px;
  }
  .filter-selector li {
    padding: 10px;
  }
}
@media (max-width: 992px) {
  .homepage-slider__img {
    max-width: 400px;
  }
  .homepage-slider__info {
    max-width: calc(100% - 400px);
  }
  .main-text-slide {
    padding-top: 15px;
  }
  .main-text-slide__title h1, .main-text-slide__title .h1 {
    font-size: 24px;
  }
  .main-text-slide__text {
    margin-bottom: 15px;
  }
  .main-text-slide .btn {
    height: 45px;
  }
  .main-text-slide__benefits {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .main-img-slide .btn {
    left: 10px;
    bottom: 10px;
    min-width: 150px;
  }
  .gift-sertificate__img {
    flex: 0 0 300px;
  }
  .gift-sertificate__info {
    padding-left: 30px;
  }
  .gift-sertificate__title h2, .gift-sertificate__title .h2 {
    font-size: 30px;
  }
  .gift-sertificate__text {
    font-size: 20px;
    line-height: 1.4;
  }
  .gift-sertificate__notices {
    margin-top: 30px;
    margin-top: 30px;
  }
  .homepage-about__images {
    flex: 0 0 300px;
  }
  .homepage-about__text {
    margin-bottom: 15px;
  }
  .footer {
    margin-top: 80px;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
  .footer-columns {
    column-gap: 15px;
  }
  .footer-messagers {
    margin-top: 27px;
  }
  .footer-column {
    flex: 0 0 calc((100% - 30px) / 3);
  }
  .footer-column-1 {
    flex: 0 0 calc(50% - 15px);
    display: block;
  }
  .footer-column-2 {
    order: 3;
    flex: 0 0 auto;
  }
  .footer-column-3 {
    order: 4;
    flex: 0 0 auto;
  }
  .footer-column-4 {
    order: 5;
    flex: 0 0 auto;
  }
  .footer-column-5 {
    order: 2;
    flex: 0 0 calc(50% - 15px);
  }
  .catalog-items .item-card {
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
  .buttons-list {
    gap: 10px;
  }
  .buttons-list li a {
    font-size: 16px;
    padding: 7px 12px;
  }
  .review-item__img {
    width: 50px;
    height: 50px;
  }
  .detail-head__images {
    max-width: 350px;
  }
  .detail-title h1, .detail-title .h1 {
    font-size: 30px;
  }
  .detail-price {
    margin-top: 15px;
  }
  .detail-buttons {
    margin-top: 15px;
  }
  .detail-meta {
    margin-top: 20px;
  }
  .detail-short-characteristics {
    margin-top: 20px;
  }
  .detail-short-characteristics ul li {
    margin-bottom: 5px;
  }
  .detail-content {
    padding: 50px 0;
  }
  .detail-tabs__content {
    padding-top: 30px;
  }
  .page-section {
    margin-top: 60px;
  }
  .review-items .review-item__img {
    width: 80px;
    height: 80px;
  }
  .about-brand {
    margin-top: 30px;
  }
  .about-brand__image {
    flex: 0 0 250px;
  }
  .about-brand__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .benefit-items {
    font-size: 14px;
  }
  .benefit-item {
    margin-bottom: 7px;
  }
  .about-packing__images {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .about-packing__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .about-packing__text {
    font-size: 16px;
    line-height: 1.4;
  }
  .about-packing .info-block {
    margin-top: 15px;
  }
  .info-block {
    padding: 15px;
    font-size: 16px;
    line-height: 1.4;
  }
  .info-block--with-icon {
    padding: 12px 12px 12px 55px;
  }
  .info-block__icon {
    left: 10px;
  }
  .delivery-items {
    flex-wrap: wrap;
  }
  .delivery-item {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }
  .delivery-item:last-of-type {
    margin-bottom: 0;
  }
  .post-content {
    flex-wrap: wrap;
  }
  .post-info {
    padding: 0;
    margin-bottom: 20px;
  }
  .article-items .article-item {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .single-post__content {
    flex-wrap: wrap;
  }
  .single-post__sidebar {
    flex: 0 0 100%;
  }
  .single-post__info {
    flex: 0 0 100%;
    order: 2;
    max-width: 100%;
  }
  .single-post__thumb img {
    width: 100%;
  }
  .single-post__share {
    justify-content: flex-start;
  }
  .contacts-content {
    margin-top: 30px;
  }
  .communication-option {
    font-size: 18px;
  }
  .communication-option__title {
    font-size: 14px;
  }
  .communication-option .contact-link[href*=tel] {
    font-size: 18px;
  }
  .favorite-items .item-card {
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 767px) {
  .homepage-slider-content {
    flex-wrap: wrap;
  }
  .homepage-slider__info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .homepage-slider__img {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .main-text-slide {
    display: block;
    text-align: center;
    padding-top: 30px;
  }
  .main-text-slide__title h1, .main-text-slide__title .h1 {
    font-size: 36px;
  }
  .main-text-slide__benefits {
    padding: 20px 0;
    justify-content: center;
  }
  .main-img-slide img {
    width: 100%;
  }
  .gift-sertificate__content {
    align-items: flex-start;
  }
  .gift-sertificate__img {
    flex: 0 0 200px;
  }
  .footer-bottom-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .copyright {
    flex: 0 0 100%;
    margin-top: 20px;
    text-align: center;
    order: 2;
  }
  .catalog-meta {
    flex-wrap: wrap;
  }
  .catalog-meta > div {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .catalog-meta > div.catalog-items-count {
    flex: 0 0 100%;
  }
  .detail-head__content {
    flex-wrap: wrap;
  }
  .detail-head__images {
    flex: 0 0 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .detail-head__images-thumbs {
    display: none;
  }
  .detail-head__info {
    flex: 0 0 100%;
    text-align: center;
  }
  .detail-rating {
    justify-content: center;
  }
  .detail-buttons {
    margin: 15px auto 0;
  }
  .detail-meta-item {
    justify-content: center;
  }
  .tab-selector {
    column-gap: 10px;
  }
  .tab-selector li {
    font-size: 16px;
    padding: 5px 10px;
  }
  .about-brand {
    flex-wrap: wrap;
  }
  .about-brand__image {
    flex: 0 0 100%;
    margin: 0 0 20px;
  }
  .about-brand__image img {
    max-height: 300px;
  }
  .about-packing {
    flex-wrap: wrap;
  }
  .about-packing__info {
    flex: 0 0 100%;
    padding: 0;
  }
  .about-packing__images {
    max-width: 480px;
    margin: 80px auto 0;
  }
  .benefit-items {
    font-size: 16px;
  }
  .benefit-item {
    margin-bottom: 15px;
  }
  .benefit-item__icon {
    flex: 0 0 60px;
  }
  .benefit-item__info {
    line-height: 1.6;
  }
  .about-packing__images mt0 .slider-holder {
    margin-top: 90px;
  }
  .about-packing__images .slider-nav-prev {
    left: 50%;
    top: -70px;
    transform: translateX(-110%);
  }
  .about-packing__images .slider-nav-next {
    right: 50%;
    top: -70px;
    transform: translateX(110%);
  }
  .contacts-content {
    gap: 10px;
  }
  .contacts-contacts {
    padding: 15px;
    flex: 0 0 calc(50% - 5px);
  }
  .contacts-info {
    padding: 15px;
    font-size: 16px;
  }
  .contacts-contact {
    margin-bottom: 15px;
  }
  .contacts-socials {
    gap: 10px;
  }
  .communication-options {
    flex-wrap: wrap;
    gap: 10px;
  }
  .communication-option {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .communication-option:nth-child(2) {
    flex: 0 0 100%;
    order: 2;
    text-align: center;
  }
  .communication-option__title {
    font-size: 16px;
  }
  .empty-block {
    margin-top: 20px;
  }
  .empty-block__text {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .header-logo > a {
    max-width: 410px;
    margin: 0;
  }
  .header-logo__img {
    flex: 0 0 200px;
  }
  .header-socials {
    display: none;
  }
  .header-button .btn {
    padding: 10px;
  }
  .gift-sertificate__content {
    flex-wrap: wrap;
  }
  .gift-sertificate__img {
    flex: 0 0 100%;
    text-align: center;
    order: 2;
    margin-top: 20px;
  }
  .gift-sertificate__img img {
    max-width: 300px;
  }
  .gift-sertificate__info {
    flex: 0 0 100%;
    padding: 0;
  }
  .homepage-about__title {
    padding-left: 0;
  }
  .homepage-about__content {
    flex-wrap: wrap;
  }
  .homepage-about__text {
    margin-top: 20px;
  }
  .homepage-about__images {
    flex: 0 0 100%;
    text-align: center;
  }
  .homepage-about__images .homepage-about__circle {
    right: 10px;
    top: 10px;
  }
  .homepage-about__images img {
    max-width: 300px;
  }
  .homepage-about__info {
    flex: 0 0 100%;
    padding: 0;
  }
  .page-section {
    margin-top: 50px;
  }
  .section-button {
    margin-top: 40px;
  }
  .review-item__img {
    width: 50px;
    height: 50px;
  }
  .review-items .review-item__author {
    flex: 0 0 100%;
  }
  .review-items .review-item__date {
    margin-left: 0;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
  .footer__socials {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .footer__socials > span {
    flex: 0 0 100%;
  }
  .footer-column-2 {
    flex: 0 0 100%;
  }
  .footer-column-3, .footer-column-4 {
    flex: 0 0 calc(50% - 8px);
  }
  .breadcrumbs {
    padding-top: 15px;
  }
  .page-content {
    padding-top: 30px;
  }
  .detail-head {
    margin-top: 20px;
  }
  .detail-head__images {
    max-width: 100%;
  }
  .tab-selector {
    flex-wrap: wrap;
  }
  .tab-selector li {
    flex: 0 0 100%;
    padding: 10px 0;
  }
  .detail-content {
    padding: 30px 0;
  }
  .review-items .review-item__img {
    width: 50px;
    height: 50px;
  }
  .leave-review {
    margin-top: 30px;
  }
  .about-packing__images {
    max-width: 450px;
  }
  .article-items {
    margin: 30px 0;
  }
  .article-items .article-item__info {
    padding: 15px;
  }
  .article-items .article-item__title {
    font-size: 16px;
  }
  .article-items .article-item__text {
    font-size: 14px;
  }
  .contacts-content {
    flex-wrap: wrap;
  }
  .contacts-contacts {
    flex: 0 0 100%;
  }
  .contacts-info {
    flex: 0 0 100%;
  }
  .communication-option {
    flex: 0 0 100%;
    text-align: center;
  }
  .communication-option .contact-link {
    display: inline-flex;
  }
  .favorite-items {
    margin-top: 30px;
  }
  .order-compound-wrapper {
    padding: 20px 15px;
  }
  .order-content {
    margin-top: 30px;
  }
  .order-form-wrapper {
    padding: 20px 15px;
  }
  .order-form .personal-agree {
    margin-top: 20px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-title {
    margin-bottom: 12px;
  }
  input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
    margin-bottom: 10px;
    height: 40px;
  }
  .order-delivery-item {
    margin-bottom: 15px;
  }
  label {
    margin-bottom: 4px;
  }
  .pseudo-radio {
    margin-bottom: 10px;
  }
  .reviews-head {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .reviews-head h1 {
    flex: 0 0 100%;
  }
  .reviews-head .btn {
    margin: 0;
    height: 40px;
    margin-top: 15px;
    flex: 0 0 200px;
  }
  .simple-popup {
    padding: 20px 20px 30px;
  }
  .num-block {
    margin-bottom: 25px;
  }
  .favorite-items .item-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cart-item__img {
    flex: 0 0 80px;
    min-height: 100px;
  }
  .cart-item__info {
    padding: 10px;
  }
  .cart-item__buttons {
    top: 10px;
    right: 10px;
    gap: 10px;
  }
  .cart-item__title {
    font-size: 14px;
    line-height: 1.2;
    padding-right: 50px;
  }
  .cart-item__price {
    font-size: 18px;
  }
  .cart-item .custom-number {
    width: 90px;
  }
  .cart-total-wrapper {
    padding: 15px;
  }
  .cart-total__qty {
    margin-bottom: 10px;
  }
  .cart-total__sum {
    font-size: 20px;
  }
  .cart-total__sum .sum {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  body {
    line-height: 1.4;
  }
  .header-top-content {
    justify-content: center;
  }
  .header-logo__img {
    padding-right: 0;
    border: none;
  }
  .header-logo__text {
    display: none;
  }
  .header-button {
    display: none;
  }
  .header-links {
    flex: 0 0 80px;
  }
  .header-search {
    max-width: 100%;
  }
  .header-search__form form {
    max-width: 100%;
  }
  h1, .h1 {
    font-size: 30px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  .main-text-slide__title h1, .main-text-slide__title .h1 {
    font-size: 30px;
  }
  .main-text-slide .btn {
    min-width: 290px;
  }
  .section-button {
    margin-top: 15px;
  }
  .page-section {
    margin-top: 40px;
  }
  .page-section__title {
    margin-bottom: 20px;
  }
  .page-section__title + .page-section__text {
    margin-top: -10px;
  }
  .page-section__text {
    font-size: 18px;
  }
  .typography-enabled h3, .typography-enabled .h3 {
    margin: 15px 0 20px;
    font-size: 16px;
  }
  .feedback-buttons {
    margin-top: 20px;
  }
  .feedback-buttons .btn--social {
    margin-left: 10px;
  }
  .footer {
    margin-top: 40px;
  }
  .footer-middle ul li {
    flex: 0 0 100%;
  }
  .footer-subscribe {
    flex: 0 0 100%;
  }
  .footer-column-3, .footer-column-4 {
    flex: 0 0 100%;
  }
  .catalog-holder {
    margin-top: 20px;
  }
  .catalog-content {
    margin-top: 20px;
  }
  .catalog-meta > div {
    flex: 0 0 100%;
  }
  .catalog-sorting {
    order: 2;
  }
  .catalog-items .item-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .catalog-pagination {
    gap: 5px;
  }
  .buttons-list {
    gap: 5px;
  }
  .buttons-list li a {
    font-size: 12px;
  }
  .bottom-nav {
    margin-top: 30px;
  }
  .detail-buttons {
    max-width: 290px;
    row-gap: 5px;
  }
  .detail-buttons .btn {
    height: 45px;
  }
  .detail-qty {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .detail-qty .custom-number {
    height: 45px;
  }
  .detail-title h1, .detail-title .h1 {
    font-size: 24px;
  }
  .detail-price {
    font-size: 24px;
  }
  .leave-review .btn {
    min-width: unset;
    width: 100%;
    max-width: 290px;
  }
  .about-brand__image img {
    max-height: unset;
    max-width: 290px;
  }
  .about-brand__title {
    font-size: 16px;
  }
  .benefit-item__icon {
    flex: 0 0 40px;
  }
  .benefit-item__text {
    font-size: 14px;
  }
  .about-packing__images {
    max-width: 100%;
  }
  .delivery-item {
    padding: 50px 15px 15px 15px;
  }
  .post-image {
    flex: 0 0 100%;
  }
  .num-block__content {
    font-size: 14px;
  }
  .article-items .article-item {
    flex: 0 0 100%;
  }
  .single-post__meta {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .single-post__content {
    margin-top: 20px;
  }
  .communication-option {
    padding: 15px;
  }
  .favorite-items .item-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-item {
    align-items: flex-start;
  }
  .order-item__img {
    flex: 0 0 60px;
    height: 70px;
  }
  .order-item__info {
    padding-left: 10px;
    flex-wrap: wrap;
  }
  .order-item__title {
    padding-right: 5px;
    font-size: 14px;
  }
  .order-item__qty {
    font-size: 14px;
    line-height: 16px;
    margin-top: 10px;
  }
  .order-item__qty .price {
    font-size: 16px;
  }
  .order-sum-item__sum {
    font-size: 18px;
  }
  .order-total-sum .sum {
    font-size: 24px;
  }
  .pseudo-radio-title {
    font-size: 14px;
  }
  .order-delivery-item__sum {
    font-size: 14px;
  }
  .review-items .review-item__text {
    font-size: 14px;
    height: 52px;
  }
  .filter-selector li {
    padding: 5px 7px;
    font-size: 12px;
  }
  .accordion-item__title {
    font-size: 14px;
    padding: 15px 30px 15px 0;
  }
  .accordion-item__answer {
    padding-bottom: 15px;
    font-size: 14px;
  }
  .faq-accordion {
    margin-top: 20px;
  }
  .review-item__images {
    gap: 5px;
  }
  .detail-stock {
    font-size: 12px;
    padding: 7px 10px;
    left: 10px;
    top: 10px;
  }
  .about-brand {
    margin-top: 20px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer-columns {
    gap: 15px;
  }
  .footer-title {
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
    padding-right: 30px;
    display: inline-flex;
  }
  .footer-title::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    right: 0;
    top: 3px;
    transform: rotate(45deg);
  }
  .footer-title.opened::after {
    transform: translateY(5px) rotate(225deg);
  }
  .footer-middle {
    margin-top: 0;
  }
  .footer-bottom {
    padding: 15px 0;
  }
  .footer .copyright {
    margin-top: 10px;
  }
  .footer-column-2 {
    margin-top: 20px;
  }
  .footer-column ul {
    display: none;
  }
}