@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-white: #ffffff;
  --color-dark: #1A1F13;
  --color-light-1: #f9f5f3;
  --color-light-2: #F3F5F0;
  --color-green-light: #E1FF00;
  --color-green-dark: #444823;
  --border: 0.0625rem solid var(--color-green-dark);
  --border-radius: 0.25rem;
  --container-width: 100rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.2s;
  --font-family: "Inter", sans-serif;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  letter-spacing: -0.03em;
  color: var(--color-dark);
  background-color: var(--color-white);
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-dark);
}

h1,
.h1 {
  font-size: clamp(1.5rem, 1.2132352941rem + 1.1764705882vw, 2.625rem);
  font-weight: 500;
}

h2,
.h2 {
  font-size: clamp(1.3125rem, 1.137254902rem + 0.7189542484vw, 2rem);
  font-weight: 400;
}

h3,
.h3 {
  font-weight: 400;
}

h4,
.h4 {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  font-weight: 400;
}

h5,
.h5 {
  font-size: clamp(1.5rem, 1.2132352941rem + 1.1764705882vw, 2.625rem);
  font-weight: 500;
}

h6,
.h6 {
  font-weight: 400;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-green-dark);
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-green-dark);
    opacity: 0.7;
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-light);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

@media (width <= 47.99875rem) {
  .pull-mobile-top {
    order: -1;
  }
}

.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
.icon::after {
  --size: 1.25rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 90.06125rem) {
  .icon::after {
    --size: 1.25rem;
  }
}
.icon-search__black::after {
  background-image: url("../../icons/icon_search-black.svg");
}
.icon-cart__black::after {
  background-image: url("../../icons/icon_cart-black.svg");
}

.logo {
  max-width: clamp(4.6875rem, 4.5600490196rem + 0.522875817vw, 5.1875rem);
  z-index: 1;
}

.button {
  display: inline-flex;
  justify-content: center;
  background-color: var(--color-green-light);
  border: var(--border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  padding: 0.8125rem 2.0625rem;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .button:hover {
    color: var(--color-white);
    background-color: var(--color-green-dark);
  }
}
@media (any-hover: none) {
  .button:active {
    color: var(--color-white);
    background-color: var(--color-green-dark);
  }
}
.button-transparent {
  background-color: transparent;
  color: inherit;
  text-transform: uppercase;
}

.button-search {
  padding-inline: 0.8125rem;
  background-color: transparent;
  border-color: transparent;
  font-size: 1rem;
  z-index: 1;
}
@media (any-hover: hover) {
  .button-search:hover {
    background-color: transparent;
    color: inherit;
  }
}
@media (any-hover: none) {
  .button-search:active {
    background-color: transparent;
    color: inherit;
  }
}

.button-cart {
  padding-inline: 0.8125rem;
  background-color: transparent;
  border-color: transparent;
  color: inherit;
  font-size: 1rem;
  z-index: 1;
}
@media (any-hover: hover) {
  .button-cart:hover {
    background-color: transparent;
    color: inherit;
  }
}
@media (any-hover: none) {
  .button-cart:active {
    background-color: transparent;
    color: inherit;
  }
}

.burger-button {
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.53125rem 0.28125rem;
  color: var(--color-light);
  background-color: transparent;
  border: none;
  z-index: 1;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-accent);
  }
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.25em -0.1em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  align-self: end;
  width: 55%;
}

.search {
  background-color: var(--color-light-1);
}
.search:has(.search__form-input:not(:placeholder-shown)) .search__form {
  margin-top: 1.5625rem;
}
.search:has(.search__form-input:not(:placeholder-shown)) .search__form-button {
  translate: 0 -20%;
}
.search__form:has(.search__form-input:not(:placeholder-shown)) .search__form-label {
  scale: 1;
  translate: -0.75em -2.6em;
  color: var(--color-dark);
}
.search__form-label {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--color-dark);
  translate: 0 -50%;
}
.search__form-input {
  --fieldInputPaddingX: 16px;
  width: 100%;
  height: 3rem;
  padding-inline: var(--fieldInputPaddingX);
  background-color: var(--color-white);
  border: var(--border);
  border-radius: var(--border-radius);
}
.search__form-input:hover, .search__form-input:focus {
  color: var(--color-dark);
}
.search__form-input:focus {
  background-color: var(--color-white);
  outline: none;
}
.search__form-input[type=search]:placeholder-shown {
  padding-right: calc(var(--fieldInputPaddingX) * 2);
}
.search__form-button {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--color-dark);
  translate: 0 -50%;
  background-color: var(--color-green-dark);
  padding: 0.625rem;
}
.search__form-button svg path {
  stroke: var(--color-white);
}

.header {
  background-color: var(--color-light-1);
  position: sticky;
  z-index: 100;
  top: 0;
  animation-name: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 0.625rem 3.75rem;
}
@keyframes scrolling-header {
  to {
    box-shadow: 0 0 5rem 0 var(--color-light-2);
  }
}
.header__logo {
  z-index: 2;
}
.header__body {
  padding-inline: 4.5rem;
  padding-block: 0.75rem;
}
@media (width <= 47.99875rem) {
  .header__body {
    padding-inline: 1rem;
  }
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
.header__body-utility {
  display: flex;
  align-items: center;
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
    padding: 1rem;
    background-color: var(--color-light-1);
    transition-duration: var(--transition-duration);
    z-index: 1;
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
.header__search-overlay {
  position: fixed;
  top: 9%;
  left: 0;
  width: 100%;
  padding: 0.625rem;
}
.header__search-overlay:not(.is-active) {
  opacity: 0;
  visibility: hidden;
  translate: 100%;
}
@media (width <= 47.99875rem) {
  .header__menu {
    overflow-y: hidden;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media (width <= 90.06125rem) {
  .header__menu-link {
    padding: 0.25rem 1rem;
  }
}
.header__menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 6.25rem;
  padding: 0.25rem 1rem;
}
@media (any-hover: hover) {
  .header__menu-link:hover {
    background-color: var(--color-green-dark);
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .header__menu-link:active {
    background-color: var(--color-green-dark);
    color: var(--color-white);
  }
}

.soc1als__list {
  display: flex;
  align-items: center;
  column-gap: 0.9375rem;
}
.soc1als__item {
  display: flex;
  align-items: center;
}
.soc1als__link {
  --size: 1.25rem;
  width: var(--size);
  height: var(--size);
  align-items: center;
}
@media (width <= 90.06125rem) {
  .soc1als__link {
    --size: 1.25rem;
  }
}

.subscription {
  background-color: var(--color-light-1);
  position: relative;
}
.subscription__title {
  font-size: 1rem;
  text-transform: uppercase;
}
.subscription__description {
  padding-block: 1.375rem 2rem;
}
.subscription:has(.subscription__form-input:not(:placeholder-shown)) .subscription__form {
  margin-top: 2.8125rem;
}
.subscription:has(.subscription__form-input:not(:placeholder-shown)) .subscription__form-button {
  translate: 0 -50%;
}
.subscription__form {
  position: relative;
}
.subscription__form:has(.subscription__form-input:not(:placeholder-shown)) .subscription__form-label {
  scale: 1;
  translate: -0.75em -3.8em;
  color: var(--color-dark);
  opacity: 1;
}
.subscription__form-label {
  position: absolute;
  top: 50%;
  left: 1.0625rem;
  color: var(--color-dark);
  translate: 0 -50%;
  opacity: 0.7;
}
.subscription__form-input {
  --fieldInputPaddingX: 16px;
  width: 100%;
  height: 3rem;
  padding-inline: var(--fieldInputPaddingX);
  padding-block: 0.25rem;
  background-color: var(--color-white);
  border: var(--border);
  border-radius: var(--border-radius);
}
.subscription__form-input:hover, .subscription__form-input:focus {
  color: var(--color-dark);
}
.subscription__form-input:focus {
  background-color: var(--color-white);
  outline: none;
}
.subscription__form-input[type=email]:placeholder-shown {
  padding-right: calc(var(--fieldInputPaddingX) * 2);
}
.subscription__form-button {
  position: absolute;
  top: 50%;
  right: 0.375rem;
  color: var(--color-white);
  translate: 0 -50%;
  background-color: var(--color-green-dark);
  padding: 0.375rem;
  min-width: 6.25rem;
  font-size: 1rem;
}
.subscription__form-button svg path {
  stroke: var(--color-white);
}
@media (any-hover: hover) {
  .subscription__form-button:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .subscription__form-button:active {
    opacity: 0.7;
  }
}

.footer {
  background-color: var(--color-light-1);
  padding-top: 5.125rem;
  padding-bottom: 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 30% 1fr;
  grid-template-areas: "soc1als subscription menu" "copyright copyright copyright";
  column-gap: 3.75rem;
}
@media (width <= 63.99875rem) {
  .footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "soc1als subscription" "menu menu" "copyright copyright";
  }
}
@media (width <= 47.99875rem) {
  .footer__inner {
    grid-template-areas: "subscription" "menu" "soc1als" "copyright";
  }
}
.footer__logo {
  padding-bottom: 3.75rem;
}
.footer__soc1als {
  grid-area: soc1als;
}
@media (width <= 47.99875rem) {
  .footer__soc1als {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__subscription {
  grid-area: subscription;
}
.footer__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
@media (width <= 63.99875rem) {
  .footer__menu {
    grid-column: -1/1;
    padding-block: 3.125rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__menu-column {
  display: grid;
  row-gap: clamp(1rem, 0.681372549rem + 1.3071895425vw, 2.25rem);
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.5rem, 0.3406862745rem + 0.6535947712vw, 1.125rem);
}
.footer__menu-item {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.footer__menu-link {
  font-size: 1rem;
}
.footer__menu-main-link {
  text-transform: uppercase;
  font-size: 1rem;
}
.footer__copyright {
  grid-area: copyright;
  padding-top: 4.5625rem;
  text-align: end;
}
.footer__copyright a {
  text-decoration: underline;
}
@media (width <= 63.99875rem) {
  .footer__copyright {
    text-align: center;
  }
}

.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-white);
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.preloader.is-active {
  visibility: visible;
  opacity: 1;
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
    opacity: 1;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  75% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
@keyframes fadein {
  0%, 55% {
    opacity: 0;
  }
  75%, 92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.rating {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rating__stars {
  display: inline-flex;
  column-gap: 0.4375rem;
  padding-right: 1rem;
}
.rating__stars-gap-4 {
  column-gap: 0.25rem;
}
@media (width <= 90.06125rem) {
  .rating__stars span {
    column-gap: 0.25rem;
    padding: 0.5rem 0.75rem;
  }
}
.rating__stars span {
  --size: 1rem;
  width: var(--size);
  height: var(--size);
  background: url("../../icons/icon_star-transparent.svg") center/contain no-repeat;
}
.rating__stars span.is-active {
  background-image: url("../../icons/icon_star-green-light.svg");
}
@media (width <= 90.06125rem) {
  .rating__stars span {
    --size: 1rem;
  }
}
.rating__text {
  font-size: 1rem;
  font-weight: 400;
}

.companies {
  display: flex;
  flex-direction: column;
}
.companies__title {
  font-size: 1rem;
  font-weight: 400;
  padding: 2.5rem 0 1.25rem 0;
}
@media (width <= 63.99875rem) {
  .companies__title {
    text-align: center;
  }
}
.companies__list {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .companies__list {
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .companies__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .companies__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.companies__logo {
  min-width: 5.125rem;
  width: auto;
}

.slogans {
  overflow: hidden;
}
.slogans__bar {
  grid-area: slogans;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.5rem;
  background-color: var(--color-green-dark);
  margin-left: calc(var(--container-padding-x) * -1);
  margin-right: calc(var(--container-padding-x) * -1);
  overflow: clip;
}
.slogans__bar-wrap {
  display: flex;
  width: max-content;
  animation: track 20s linear infinite;
}
@keyframes track {
  to {
    transform: translateX(-50%);
  }
}
.slogans__bar span {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-size: 2.625rem;
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.slogans__bar span::after {
  content: "";
  background-image: url("../../icons/icon_hero-slogans.svg");
  display: inline-flex;
  width: 2rem;
  height: 2.5rem;
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

.hero__main {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "product body" "slogans slogans";
}
@media (width <= 63.99875rem) {
  .hero__main {
    display: flex;
    flex-direction: column;
  }
}
.hero__product {
  grid-area: product;
  margin-left: calc(var(--container-padding-x) * -1);
}
@media (width <= 63.99875rem) {
  .hero__product {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
}
.hero__image {
  max-width: clamp(25rem, 19.7904411765rem + 21.3725490196vw, 45.4375rem);
}
@media (width <= 63.99875rem) {
  .hero__image {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .hero__image {
    width: 20rem;
  }
}
.hero__button {
  display: inline-flex;
  color: inherit;
  width: 12.5rem;
}
.hero__body {
  grid-area: body;
  padding: 2.75rem;
}
@media (width <= 63.99875rem) {
  .hero__body {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .hero__body {
    padding-left: 0;
    padding-right: 0;
  }
}
.hero__title {
  font-size: clamp(1.625rem, 1.2426470588rem + 1.568627451vw, 3.125rem);
  padding-block: 2.5rem;
  line-height: 1.1;
}

.about {
  background-color: var(--color-light-2);
  padding-block: 5.625rem;
}
.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about__info {
  font-size: 1rem;
  font-weight: 400;
}
.about__title {
  text-align: center;
  line-height: 1.43;
  padding-block: 0.5rem 2.625rem;
}

.price {
  display: flex;
  align-items: center;
}
.price:has(.price-discount:not(:empty)) {
  gap: 0.9375rem;
}
.price-discount {
  opacity: 0.5;
  font-size: 0.75rem;
}
.price-discount__line-through {
  text-decoration: line-through;
}

.badge {
  position: absolute;
  background-color: var(--color-light-2);
  padding: 0.25rem 0.5rem;
  top: 0.5rem;
  left: 0.5rem;
}
.badge:empty {
  opacity: 0;
  visibility: hidden;
}

.product__inner {
  padding-block: 7rem;
}
@media (width <= 63.99875rem) {
  .product__title {
    text-align: center;
  }
}
.product__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
  padding-top: 2rem;
}
@media (width <= 63.99875rem) {
  .product__list {
    grid-template-columns: auto;
    align-items: center;
    justify-content: center;
  }
}
.product__item {
  position: relative;
}
@media (any-hover: hover) {
  .product__item:hover .product__overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media (any-hover: none) {
  .product__item:active .product__overlay {
    opacity: 1;
    visibility: visible;
  }
}
.product__item:active .product__overlay {
  opacity: 1;
  visibility: visible;
}
.product__item:focus .product__overlay {
  opacity: 1;
  visibility: visible;
}
.product__item-title {
  padding-block: 2rem 0.625rem;
}
.product__overlay {
  position: absolute;
  top: 0;
  bottom: 5.5625rem;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
}
.product__button {
  position: absolute;
  bottom: 1.25rem;
  left: 0.5rem;
  text-transform: uppercase;
  color: inherit;
}
.product__image {
  width: clamp(14.25rem, 11.0637254902rem + 13.0718954248vw, 26.75rem);
}

.advantages {
  background-color: var(--color-light-2);
  padding-block: 3.5rem 4.5rem;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem;
}
@media (width <= 63.99875rem) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .advantages__list {
    gap: 2.25rem;
  }
}
.advantages__title {
  font-size: 1.3125rem;
  padding-block: 1.5625rem 0.5625rem;
}
.advantages__info {
  font-size: 1rem;
  line-height: 2.2;
  font-weight: 400;
}
.advantages__image {
  width: 7.75rem;
}

.panel {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-light-2);
}
@media (width <= 63.99875rem) {
  .panel {
    padding: 1rem 1.125rem;
  }
}
.panel-title {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 400;
}
.panel-info {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 2.2;
}
.panel-colorize {
  background-color: var(--color-green-light);
}
.panel__button {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .panel__button:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .panel__button:active {
    opacity: 0.7;
  }
}

.category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 63.99875rem) {
  .category {
    grid-template-columns: auto;
    gap: 0.9375rem;
    padding-block: 0.9375rem;
  }
}
.category__box-image {
  max-width: 100%;
  width: 100%;
}

.product__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .product__card {
    grid-template-columns: auto;
    row-gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
}
.product__card-image {
  display: flex;
  justify-content: end;
}
@media (width <= 63.99875rem) {
  .product__card-image {
    justify-content: center;
  }
}
.product__card-image img {
  width: clamp(27.25rem, 27.25rem + 0vw, 27.25rem);
}
.product__card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-dark);
  padding-block: 1.5rem 0.5rem;
}
.product__card-body {
  padding-top: 1rem;
}
.product__card-body p {
  font-size: 1rem;
  font-weight: 400;
}
.product__card-button {
  width: 28.125rem;
  color: inherit;
}
@media (width <= 63.99875rem) {
  .product__card-button {
    width: 100%;
  }
}

.quantity {
  display: flex;
  column-gap: 0.625rem;
  align-items: center;
  padding-block: 1.5rem 1rem;
}
.quantity__label {
  font-size: 0.875rem;
  font-weight: 400;
}
.quantity__number {
  background-color: transparent;
  border-color: var(--color-dark);
  border-radius: 0.25rem;
  width: 3.125rem;
}

.single__product {
  background-color: var(--color-light-2);
  padding-block: 5.75rem 4.25rem;
}
.single__product__header {
  text-align: center;
  padding-bottom: 2.625rem;
}
.single__product-title {
  font-weight: 400;
}

.post {
  padding-top: 7rem;
}
.post__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.75rem;
}
@media (width <= 47.99875rem) {
  .post__inner {
    grid-template-columns: auto;
    justify-content: center;
  }
}
.post__imag {
  width: fuid(625, 390);
}
@media (width <= 47.99875rem) {
  .post__imag {
    width: 100%;
  }
}
.post__description {
  font-size: 1rem;
  font-weight: 400;
  padding-block: 2.625rem 1.0625rem;
}
.post__button {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  padding: 0.8125rem 2.3125rem;
}
@media (any-hover: hover) {
  .post__button:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .post__button:active {
    opacity: 0.7;
  }
}
.post__title {
  font-size: clamp(1.75rem, 1.5269607843rem + 0.9150326797vw, 2.625rem);
  padding-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .post__column:last-child {
    padding-bottom: 2.625rem;
  }
}

.article {
  padding-block: 7rem;
}
.article__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.25rem;
}
@media (width <= 47.99875rem) {
  .article__inner {
    grid-template-columns: auto;
  }
}
.article__body {
  display: flex;
  flex-direction: column;
}
.article__info-text {
  padding-block: 1.25rem 3.125rem;
  line-height: 1.9;
}
.article__breadcrums {
  flex-grow: 1;
}
@media (width <= 47.99875rem) {
  .article__breadcrums {
    padding-top: 3.125rem;
  }
}

.blog {
  padding-bottom: 7rem;
}
.blog__header {
  text-align: center;
  padding-bottom: 3.5rem;
}
.blog__posts-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.375rem;
}
@media (width <= 63.99875rem) {
  .blog__posts-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem;
  }
}
.blog__posts-link {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1.375rem;
}
.blog__posts-title {
  font-size: 1.25rem;
  font-weight: 400;
}

.shop {
  background-color: var(--color-light-2);
}
.shop__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 63.99875rem) {
  .shop__inner {
    grid-template-columns: auto;
  }
}
@media (width <= 63.99875rem) {
  .shop__image {
    width: 100%;
  }
}
.shop__column:first-child {
  margin-left: calc(var(--container-padding-x) * -1);
}
@media (width <= 63.99875rem) {
  .shop__column:first-child {
    margin-right: calc(var(--container-padding-x) * -1);
  }
}
.shop__column:last-child {
  padding-block: 2.875rem;
  padding-left: 2.625rem;
}
@media (width <= 63.99875rem) {
  .shop__column:last-child {
    order: -1;
    padding-left: 0;
  }
}
.shop__title {
  padding-block: 0.875rem 1.25rem;
}
.shop__button {
  text-transform: uppercase;
  color: inherit;
}

.slides {
  overflow: hidden;
}
.slides__bar {
  overflow: clip;
}
.slides__wrap {
  display: flex;
  width: max-content;
  animation: track 20s linear infinite;
}

/*# sourceMappingURL=main.css.map */
