/* cyrillic */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/MontserratAlternates/400-normal-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/MontserratAlternates/400-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/MontserratAlternates/500-normal-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/MontserratAlternates/500-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/MontserratAlternates/700-normal-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/MontserratAlternates/700-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Roboto/400-normal-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Roboto/400-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


@font-face {
  font-family: 'Museo Sans Cyrl';
  font-weight: 300;
  src: url('/fonts/MuseoSansCyrl/MuseoSansCyrlLight.ttf');
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans Cyrl';
  font-weight: 500;
  src: url('/fonts/MuseoSansCyrl/MuseoSansCyrlMedium.ttf');
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans Cyrl';
  font-weight: 700;
  src: url('/fonts/MuseoSansCyrl/MuseoSansCyrlBold.ttf');
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans Cyrl';
  font-weight: 900;
  src: url('/fonts/MuseoSansCyrl/MuseoSansCyrlBlack.ttf');
  font-style: normal;
}

/* ==================== theme ==================== */

:root {
  --green-primary-color: #008977;
  --green-secondary-color: #0AC0A7;
  --green-third-color: #03A494;
  --black-color: #000000;
  --grey-color: #818181;
  --grey-light-color: #F1F2F4;
  --white-color: #FFFFFF;
  --red-color: #F87171;

  --container-width: 1150px;
  --container-padding: 20px;

  --header-mobile-height: 70px;
  --sidebar-status-bar-height: 54px;

  --z-index-dropdown: 10;
  --z-index-sidebar-menu: 20;
  --z-index-header: 30;
}

::-moz-selection {
  background-color: var(--green-primary-color);
  color: var(--white-color);
}
::selection {
  background-color: var(--green-primary-color);
  color: var(--white-color);
}

/* ==================== global ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 1px;
  min-height: 100%;

  font-family: 'Montserrat Alternates';
  font-size: 14px;

  scroll-behavior: smooth;
}

body.fixed {
  overflow: hidden;
}

/* ==================== resets ==================== */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
button {
  display: block;
  border: none;
  background-color: transparent;
  outline: none;
  color: inherit;
  cursor: pointer;
}
p {
  margin: 0;
}
label {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1em;
}
input {
  background-color: transparent;
  font-family: inherit;
  border: none;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  list-style-type: none;
}

/* ==================== typography ==================== */
.text-m {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}

/* ==================== containers ==================== */
.wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
}
@media (max-width: 992px) {
  .wrapper {
    padding-top: var(--header-mobile-height);
  }
}

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

/* ==================== ui kit ==================== */
.icon {
  --size: 18px;

  width: var(--size);
  height: var(--size);
}
.icon.icon-l {
  --size: 24px;
}
.icon.icon-m {
  --size: 18px;
}
.icon.icon-s {
  --size: 14px;
}
.icon.icon-xs {
  --size: 10px;
}

.button {
  --border-color: var(--white-color);
  --background-color: var(--white-color);
  --text-color: var(--black-color);
  --border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 8px 16px;
  background-color: var(--background-color);
  color: var(--text-color);
 
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);

  transition: 0.3s;
}
.button.block {
  width: 100%;
}
.button.filled {
  --border-color: var(--green-primary-color);
  --background-color: var(--green-primary-color);
  --text-color: var(--white-color);
}
.button.filled:hover {
  --border-color: var(--green-secondary-color);
  --background-color: var(--green-secondary-color);
  --text-color: var(--white-color);
}
.button.filled:active {
  --border-color: var(--green-third-color);
  --background-color: var(--green-third-color);
  --text-color: var(--white-color);
}
.button.outlined {
  --border-color: var(--green-primary-color);
  --background-color: var(--white-color);
  --text-color: var(--black-color);
}
.button.outlined:hover {
  --border-color: var(--green-primary-color);
  --background-color: var(--green-primary-color);
  --text-color: var(--white-color);
}
.button.big {
  --border-radius: 8px;
  padding: 12px 40px;
}
.button.round {
  --border-radius: 100px;
}
.button__text {
  font-size: 13px;
}

.input {
  display: flex;
  padding: 8px 16px;

  background-color: var(--grey-light-color);
  border-radius: 100px;
}
.input.block {
  flex: 1 1 auto;
  width: 100%;
}
.input__control {
  display: block;
  flex: 1 1 auto;

  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}
.input__prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-color);
}
.input__suffix {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-color);
}

.radio {
  --size: 16px;

  display: flex;
  align-items: center;
  gap: 10px;

  position: relative;
  cursor: pointer;
}
.radio input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.radio__control {
  flex: 0 0 var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: var(--size);
  border: 1px solid var(--grey-color);
  transition: 0.3s;
}
.radio input:checked + .radio__control {
  border-color: var(--green-primary-color);
}
.radio__fill {
  width: 100%;
  height: 100%;
  border-radius: var(--size);
  border: 2px solid var(--white-color);
  background-color: var(--green-primary-color);
  transition: 0.3s;
  opacity: 0;
}
.radio input:checked + .radio__control .radio__fill {
  opacity: 1;
}
.radio__text {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0;
}
.radio input:checked + .radio__text,
.radio input:checked + .radio__control + .radio__text {
  color: var(--green-primary-color);
}

.chip {
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--black-color);
  border-radius: 100px;

  font-size: 16px;
  letter-spacing: 0;
  color: var(--black-color);
}

.range {
  --track-size: 6px;
  --indicator-size: 25px;
  --label-height: 16px;

  --primary-color: var(--green-secondary-color);
  --control-color: var(--green-primary-color);
  --base-color: var(--grey-color);

  position: relative;

  width: 100%;
  height: calc(var(--indicator-size) + var(--label-height));
  padding-bottom: var(--label-height);

  display: flex;
  align-items: center;
}
.range__control {
  width: 100%;
  margin-inline: calc(var(--indicator-size) / 2);
  position: relative;
}
.range__track {
  position: relative;

  width: 100%;
  height: var(--track-size);
  border-radius: var(--track-size);

  background-color: var(--base-color);
}
.range__thumb {
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);

  width: var(--indicator-size);
  height: var(--indicator-size);
  border-radius: var(--indicator-size);

  border: 6px solid var(--control-color);
  background-color: var(--white-color);

  user-select: none;
}
.range__thumb-1 {
  left: calc(var(--value-1) * 100%);
}
.range__thumb-2 {
  left: calc(var(--value-2) * 100%);
}
.range__indicator {
  cursor: pointer;
  user-select: none;
}
.range__label {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--grey-color);
  user-select: none;

  position: absolute;
  top: var(--indicator-size);
}
.range__label.min {
  left: 0;
}
.range__label.max {
  right: 0;
}
.range__fill {
  position: absolute;
  top: 0;

  height: 100%;
  background-color: var(--primary-color);

  left: calc(var(--min) * 100%);
  width: calc((var(--max) - var(--min)) * 100%);
}

.collapse {
  width: 100%;
}
.collapse__control {
  width: 100%;
  padding: 6px 0px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  cursor: pointer;
}
.collapse__title {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--grey-color);
  user-select: none;
}
.collapse.big > .collapse__control .collapse__title {
  font-family: 'Museo Sans Cyrl', 'Montserrat Alternates';
  font-weight: 300;
  font-size: 18px;
}
.collapse__arrow {
  color: var(--grey-color);
  transform-origin: center;
  transition: 0.3s;
}
.collapse.opened > .collapse__control .collapse__arrow {
  transform: rotateZ(180deg);
}
.collapse__body {
  display: block;
  width: 100%;
  overflow: hidden;

  padding-top: 0px;
  padding-bottom: 0px;

  max-height: 0px;
  pointer-events: none;
  opacity: 0;

  color: var(--grey-color);
  transition: 0.3s max-height, 0.3s opacity, 0.3s padding-top, 0.3s padding-bottom;
}
.collapse.opened > .collapse__body {
  max-height: 1000vh;
  opacity: 1;
  pointer-events: all;
}

.dropdown {
  position: relative;
}
.dropdown__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 15px;
}
.dropdown__label {
  color: var(--grey-color);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  user-select: none;
}
.dropdown__arrow {
  color: var(--grey-color);
  transform-origin: center;
  transition: 0.3s;
}
.dropdown.opened .dropdown__arrow {
  transform: rotate(180deg);
}
.dropdown__body {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: var(--z-index-dropdown);

  min-width: 100%;

  padding: 20px;
  border-radius: 16px;
  background-color: var(--white-color);

  box-shadow: 0px 0px 4px 0px #00000030;

  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--grey-color);
}
.dropdown:not(.opened) .dropdown__body {
  display: none;
}

.tabs {
  width: 100%;
}
.tabs__links {
  display: flex;
  gap: 15px;
}
.tabs__link {
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--grey-color);

  border-bottom: 1px solid transparent;
  cursor: pointer;
  
  transition: 0.3s;
}
.tabs__link:hover {
  color: var(--green-primary-color);
}
.tabs__link.active {
  color: var(--green-primary-color);
  border-bottom: 1px solid currentColor;
}
.tabs__body {
  margin-top: 15px;
}
.tabs__page {
  width: 100%;
}
.tabs__page:not(.active) {
  display: none;
}

.counter {
  display: flex;
  gap: 5px;
}
.counter__control {
  --size: 48px;

  width: var(--size);
  height: var(--size);
  border-radius: var(--size);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
  background-color: var(--grey-light-color);
  color: var(--black-color);
  
  font-size: 24px;
  line-height: 0.6;
  letter-spacing: 0;
}
.counter__body {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--grey-light-color);
  border-radius: 100px;
  padding: 5px 10px;
}
.counter__value {
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--grey-color);
}

ul.bullet-list li::before,
ol.bullet-list li::before {
  content: '';

  display: inline-block;
  vertical-align: middle;

  border-radius: 1em;
  border: 0.15em solid currentColor;

  margin: 0 0.5em;
  background-color: currentColor;
}

/* ==================== widgets ==================== */
.status-bar {
  width: 100%;
  padding: 5px 0px;
  background-color: var(--green-primary-color);
  color: var(--white-color);
  font-size: 14px;
}
.status-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.status-bar__phone,
.status-bar__address {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .status-bar {
    padding: 16px 0px;
    
    background-color: var(--white-color);
    color: var(--black-color);

    font-size: 12px;
  }
  .status-bar.status-bar-desktop {
    display: none;
  }
  .status-bar .container {
    padding: 0px 10px;
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
  }
  .status-bar__phone .icon {
    display: none;
  }
  .status-bar__address .icon {
    display: none;
  }
}

.header {
  padding: 10px 0px;
}
.header .container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo {
  flex: 0 0 auto
}
.header-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 18px;
}
.header-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--grey-color);
  white-space: nowrap;

  transition: 0.3s;
}
.header-nav__link:hover {
  color: var(--green-primary-color);
}
@media (max-width: 992px) {
  .header {
    display: none;
  }
}

.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);

  width: 100%;
  height: var(--header-mobile-height);

  display: flex;
  align-items: center;

  background-color: var(--green-primary-color);
  color: var(--white-color);

  display: none;
}
.header-mobile .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile__catalog {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header-mobile__menu {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header-mobile__logo {
  cursor: pointer;
}
.header-mobile__search {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile__cart {  
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile__catalog.active,
.header-mobile__menu.active {
  opacity: 0.5;
}
@media (max-width: 992px) {
  .header-mobile {
    display: flex;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-sidebar-menu);

  width: 100%;
  height: 100dvh;
  
  background-color: var(--white-color);
  transition: 0.3s;

  padding-top: var(--header-mobile-height);
  padding-bottom: 30px;
  
  display: none;
}
.sidebar:not(.opened) {
  transform: translateY(-110%);
}
.sidebar.sidebar-navigation {
  padding-bottom: var(--sidebar-status-bar-height);
}
.sidebar > .container {
  height: 100%;
  overflow-y: auto;

  padding-top: 20px;
  padding-bottom: 20px;
}
.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;  
}
.sidebar__title {
  font-size: 30px;
  line-height: 1;
}
.sidebar__icon {
  --size: 48px;

  width: var(--size);
  height: var(--size);
  border-radius: var(--size);

  background-color: var(--grey-light-color);

  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__body {
  margin-top: 20px;
  flex: 1 1 auto;
}
.sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar__link,
.sidebar-collapse .collapse__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;

  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-color);

  background-color: var(--grey-light-color);
  border-radius: 100px;
}
.sidebar-collapse:not(.opened) .collapse__body {
  padding-left: 20px;
  padding-right: 20px;
}
.sidebar-collapse.opened .collapse__body {
  margin-top: 10px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 0px 4px 0px #00000030;
}
.sidebar .status-bar {
  height: var(--sidebar-status-bar-height);

  display: flex;
  align-items: center;
  
  padding-top: 0;
  padding-bottom: 0;

  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--grey-light-color);
}
.sidebar .status-bar .container {
  gap: 5px;
}
@media (max-width: 992px) {
  .sidebar {
    display: block;
  }
}

.footer {
  background-color: var(--black-color);
  color: var(--white-color);

  padding-top: 65px;
  padding-bottom: 40px;
}
.footer-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-column {
  flex: 1 1 auto;
}
.footer-column__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-column__title {
  font-size: 20px;
  font-weight: 900;
  font-family: 'Museo Sans Cyrl', sans-serif;
}
.footer-column__body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-column__links {
  padding-left: 5px;
}
.footer-column__link {
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--grey-light-color);
}
.footer-column__logo {
  display: block;
}
.footer-column__social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-column__social-item {
  --size: 36px;

  width: var(--size);
  height: var(--size);
  flex: 0 0 var(--size);

  border: 1px solid var(--white-color);
  border-radius: var(--size);

  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-subscription {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-subscription__title {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white-color);
}
.footer-subscription__title span {
  color: var(--green-primary-color);
}
.footer-subscription__input {
  background-color: #ffffff33;
  color: var(--white-color);
  
  padding: 15px 20px 15px 25px;
  border-radius: 12px;

  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0;
  font-weight: 500;
}
.footer-subscription__input .input__control::placeholder {
  font-family: 'Montserrat Alternates', sans-serif;
  color: var(--grey-light-color);
}
.footer-subscription__input .input__control {
  color: var(--white-color);
}
.footer-subscription__input .input__suffix {
  color: var(--white-color);
}
.footer-legals {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-legals__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-legals__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legals__link {
  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--grey-light-color);
}
.footer-legals__link .icon {
  color: var(--green-primary-color);
}
.footer-copyright {
  font-family: 'Roboto', 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--grey-color);
}
.footer-legals__caution {
  max-width: 400px;

  display: flex;
  flex-direction: column;
  gap: 1em;

  font-family: 'Roboto', 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--grey-color);
  text-align: right;
}
@media (max-width: 992px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .footer-body {
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer-column__title {
    font-size: 16px;
  }
  .footer-column__link {
    font-size: 14px;
  }
  .footer-subscription__input {
    padding: 15px;
  }
  .footer-legals {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-legals__content {
    display: contents;
  }
  .footer-legals__links {
    grid-row: 1 / 2;
  }
  .footer-legals__link {
    font-size: 12px;
  }
  .footer-legals__caution {
    grid-row: 2 / 3;
    text-align: left;
    justify-content: flex-start;
  }
  .footer-copyright {
    grid-row: 3 / 4;
  }
}

/* ==================== components ==================== */
.product-card {
  display: block;
  position: relative;
}
.product-card__reference {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}
.product-card__image {
  aspect-ratio: 2 / 3;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  background-color: var(--grey-light-color);
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.product-card__body {
  position: relative;
  margin-top: 13px;
}
.product-card__actions {
  padding: 4px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0px;
  color: var(--black-color);
}
.product-card__cart {
  --size: 36px;

  width: var(--size);
  height: var(--size);
  flex: 0 0 var(--size);
  border-radius: var(--size);

  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--grey-light-color);
  transition: 0.3s;
}
.product-card__cart:hover {
  background-color: var(--green-secondary-color);
  color: var(--white-color);
}
.product-card__cart:hover {
  background-color: var(--green-third-color);
  color: var(--white-color);
}
.product-card__name {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--black-color);
}
@media (max-width: 992px) {
  .product-card__image {
    aspect-ratio: 3 / 4;
  }
  .product-card__actions {
    margin-top: 10px;
  }
  .product-card__price {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 700;
  }
  .product-card__name {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.2;
  }
}

.breadcrumbs {
  font-size: 14px;
  left: 1.4;
  letter-spacing: 0;
  color: var(--grey-color);
}


/* home categories */
.home-categories {
  padding-top: 40px;
  padding-bottom: 50px;
}
.home-categories .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  row-gap: 50px;
  column-gap: 30px;
}
.home-category {
  padding: 25px;
  border-radius: 10px;
  background-color: var(--grey-light-color);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;

  position: relative;
  overflow: hidden;
}
.home-category.empty {
  padding-bottom: 100px;
}
.home-category__body {
  display: block;
}
.home-category__title {
  font-size: 27px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0;
  font-family: 'Museo Sans Cyrl', sans-serif;
  color: var(--black-color);
}
.home-category__items {
  list-style-type: none;
  margin-top: 24px;
}
.home-category__item {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 500;
  font-family: 'Museo Sans Cyrl', sans-serif;
  color: var(--grey-color);  
}
.home-category__message {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home-category__message-title {
  font-size: 17px;
  line-height: 2.1;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--black-color);
  font-family: 'Museo Sans Cyrl', sans-serif;
}
.home-category__message-text {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--black-color);
}
.home-category__decor {
  max-height: 300px;
  position: absolute;
  bottom: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}
.home-category__decor img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .home-categories {
    padding-top: 30px;
  }
  .home-categories .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }
  .home-category {
    padding: 15px;
    border-radius: 8px;
    gap: 20px;
  }
  .home-category.empty {
    padding-bottom: 15px;
  }
  .home-category__title {
    font-size: 20px;
  }
  .home-category__item {
    font-size: 14px;
  }
  .home-category__message {
    max-width: 100%;
    gap: 20px;
  }
  .home-category__message-title {
    font-size: 14px;
  }
  .home-category__message-text {
    font-size: 12px;
  }
  .home-category__decor {
    display: none;
  }
}

/* home gallery card */
.home-gallery {
  display: block;
}
.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 15px;
}
.home-gallery__grid .product-card .product-card__image {
  aspect-ratio: 1;
}
.home-gallery__grid .product-card .product-card__image img {
  object-position: center;
}
.home-gallery__more {
  margin-top: 15px;
}
@media (max-width: 992px) {
  .home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 20px;
  }
}


