

/* Start:/local/templates/grohe/css/reset.css?1790172606459*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

address {
  font-style: normal;
}

/* End */


/* Start:/local/templates/grohe/css/variables.css?1790172606433*/
:root {
  --font-family: "Liberation Sans", Arial, sans-serif;
  --color-navy: #002f5f;
  --color-navy-dark: #00264f;
  --color-blue: #214d98;
  --color-blue-bright: #4b77c4;
  --color-ice: #edf4fb;
  --color-ice-dark: #e5eef7;
  --color-white: #ffffff;
  --color-text: #0b3254;
  --color-muted: #8896a7;
  --color-border: #c5d1df;
  --container: 1272px;
  --page-padding: 24px;
  --radius-pill: 999px;
  --transition: 180ms ease;
}

/* End */


/* Start:/local/templates/grohe/css/common.css?17901726066530*/
body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.25;
}

body.is-locked {
  overflow: hidden;
}

.container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--container));
  margin-inline: auto;
}

.breadcrumbs,
.breadcrumbs *,
.account-breadcrumbs,
.account-breadcrumbs * {
  font-weight: 400;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #64a4ff;
  outline-offset: 3px;
}

.button--primary {
  color: var(--color-white);
  background: linear-gradient(86.35deg, #00264f 0%, #5a6a96 30.97%, #00264f 60.77%);
}

.button--primary:hover {
  background: linear-gradient(86.35deg, #001f42 0%, #7180aa 30.97%, #001f42 60.77%);
}

.button--light {
  min-width: 180px;
  color: var(--color-navy);
  background: var(--color-white);
}

.button--outline-light {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 0;
  background: transparent;
  background: linear-gradient(86.35deg, #00264F 0%, #5A6A96 30.97%, #00264F 60.77%);
}

.section {
  padding-block: 64px;
}

.section h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: 175px;
}

.logo img {
  width: 100%;
  height: auto;
}

.slider-arrow {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--color-navy);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 31, 69, .16);
}

.slider-arrow img {
  width: 17px;
  height: 30px;
}

.dialog {
  width: min(calc(100% - 32px), 440px);
  height: min(498px, calc(100dvh - 32px));
  max-height: 498px;
  padding: 28px 28px 24px;
  color: var(--color-text);
  border: 0;
  border-radius: 0;
  background: var(--color-white);
  overflow: auto;
}

.dialog::backdrop {
  background: rgba(0, 21, 45, .62);
}

.dialog h2 {
  margin: 0 0 7px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.dialog > p {
  margin-bottom: 35px;
  color: #94a2c1;
  text-align: center;
  font-size: 14px;
}

.dialog form {
  display: grid;
  gap: 15px;
}

.dialog form label {
  position: relative;
}

.dialog input {
  width: 100%;
  height: 49px;
  padding-inline: 18px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--color-text);
  background: #edf4f8;
  font-size: 13px;
}

.dialog input::placeholder {
  color: var(--color-text);
  opacity: 1;
}

.dialog__placeholder {
  position: absolute;
  top: 50%;
  left: 18px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.dialog__placeholder em {
  color: #e53945;
  font-style: normal;
}

.dialog input:focus + .dialog__placeholder,
.dialog input:not(:placeholder-shown) + .dialog__placeholder {
  opacity: 0;
}

.dialog input.is-invalid {
  outline: 1px solid #b54545;
}

.dialog__submit {
  justify-self: center;
  min-height: 49px;
  margin-top: 38px;
  font-size: 14px;
}

.dialog--callback .dialog__submit {
  width: 282px;
}

.dialog--login .dialog__submit {
  width: 211px;
  margin-top: 2px;
}

.dialog__agreement {
  margin-top: 6px;
  color: #94a2c1;
  font-size: 12px;
  line-height: 1.15;
}

.dialog__agreement a {
  text-decoration: underline;
}

.dialog__status {
  min-height: 14px;
  color: #b54545;
  font-size: 12px;
  text-align: center;
}

.dialog__close {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 24px;
  height: 24px;
  color: #a5a5a5;
  background: transparent;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  right: max(16px, calc((100vw - 1274px) / 2));
  bottom: 16px;
  left: max(16px, calc((100vw - 1274px) / 2));
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 282px;
  align-items: center;
  gap: 46px;
  min-height: 141px;
  padding: 28px 48px 26px 57px;
  color: var(--color-text);
  background: #edf4f8;
  box-shadow: 0 5px 24px rgba(0, 38, 79, .18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  max-width: 790px;
  font-size: 12px;
  line-height: 1.15;
  text-align: justify;
}

.cookie-banner__accept {
  width: 282px;
  min-height: 52px;
  font-size: 18px;
}

.cookie-banner__close {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 24px;
  height: 24px;
  color: #a5a5a5;
  background: transparent;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
}

@media (max-width: 767px) {
  :root {
    --page-padding: 16px;
  }

  .section {
    padding-block: 42px;
  }

  .section h2 {
    font-size: 30px;
  }

  .logo {
    width: 116px;
  }

  .dialog {
    height: min(498px, calc(100dvh - 24px));
    min-height: 0;
    max-height: calc(100dvh - 24px);
    padding: 36px 20px 22px;
  }

  .dialog--callback .dialog__submit,
  .dialog--login .dialog__submit {
    width: min(100%, 282px);
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 20px 20px;
  }

  .cookie-banner p {
    max-width: none;
    text-align: left;
  }

  .cookie-banner__accept {
    justify-self: center;
    width: min(100%, 282px);
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    right: 0;
    bottom: 53px;
    left: 0;
    z-index: 60;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 10px;
    min-height: 101px;
    padding: 13px 14px 11px 16px;
    box-shadow: 0 -3px 16px rgba(0, 38, 79, .12);
  }

  .cookie-banner p {
    font-size: 10px;
    line-height: 1.03;
    text-align: justify;
  }

  .cookie-banner__accept {
    justify-self: stretch;
    width: 84px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .cookie-banner__close {
    top: 1px;
    right: 2px;
    width: 18px;
    height: 18px;
    font-size: 16px;
  }
}

/* End */


/* Start:/local/templates/grohe/css/pages/home.css?179017260628857*/
.site-header {
  position: relative;
  z-index: 20;
  background: #EDF3F8;
}

.site-header__main {
  display: grid;
  grid-template-columns: 168px 194px minmax(240px, 307px) minmax(170px, 1fr) auto;
  align-items: center;
  gap: 20px;
  height: 108px;
  min-height: 108px;
  width: min(calc(100% - (var(--page-padding) * 2)), 1173px);
}

.site-header .logo {
  width: 163px;
}

.site-header__catalog {
  min-height: 45px;
  font-size: 16px;
}

.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 44px;
  padding: 0 18px 0 52px;
  color: var(--color-text);
  border: 1px solid #91a4b9;
  border-radius: var(--radius-pill);
  background: transparent;
}

.search button {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 26px;
  height: 26px;
  padding: 4px;
  background: transparent;
  transform: translateY(-50%);
}

.search img {
  width: 22px;
  height: 23px;
}

.site-header__phone {
  display: grid;
  text-align: left;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.05;
}

.site-header__phone button {
  justify-self: center;
  margin-top: 2px;
  padding: 0;
  color: #75879a;
  background: transparent;
  font-size: 13px;
  text-decoration: underline;
}

.user-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-nav a,
.user-nav button {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 32px;
  padding: 2px;
  color: var(--color-navy);
  background: transparent;
}

.user-nav__divider {
  width: 1px;
  height: 42px;
  margin-inline: 8px;
  background: #8496aa;
}

.user-nav__count {
  position: absolute;
  top: -8px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  color: var(--color-white);
  border-radius: 50%;
  background: var(--color-navy);
  font-size: 10px;
  line-height: 1;
}

.user-nav__count[hidden] {
  display: none;
}

.user-nav img {
  width: auto;
  max-width: 30px;
  max-height: 26px;
}

.user-nav .user-nav__max {
  width: 38px;
  max-width: 38px;
  max-height: 38px;
}

.user-nav > :first-child {
  width: 38px;
  height: 38px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background-color: #214b94;
}

.hero__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("/local/templates/grohe/css/pages/../../assets/images/Main_image.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: opacity, transform;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--page-padding) * 2)), 1173px);
}

.category-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 66px;
  padding-inline: 38px;
  border-radius: 12px;
  background: rgba(0, 43, 87, .92);
  transform: translateY(28px);
}

.category-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 14px;
  width: fit-content;
  min-height: 48px;
  margin-block: 8px;
  padding-inline: 15px;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}

.category-nav a:hover {
  color: var(--color-text);
  background: var(--color-white);
}

.category-nav img {
  width: 32px;
  height: 32px;
}

.hero__slider {
  position: relative;
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: center;
  min-height: 600px;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-left: 100px;
}

.hero.is-animating-next .hero__content {
  animation: hero-content-next 560ms ease both;
}

.hero.is-animating-prev .hero__content {
  animation: hero-content-prev 560ms ease both;
}

.hero.is-animating-next .hero__background {
  animation: hero-background-next 560ms ease both;
}

.hero.is-animating-prev .hero__background {
  animation: hero-background-prev 560ms ease both;
}

@keyframes hero-content-next {
  0% { opacity: 1; transform: translateX(0); }
  44% { opacity: 0; transform: translateX(-28px); }
  56% { opacity: 0; transform: translateX(28px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes hero-content-prev {
  0% { opacity: 1; transform: translateX(0); }
  44% { opacity: 0; transform: translateX(28px); }
  56% { opacity: 0; transform: translateX(-28px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes hero-background-next {
  0% { opacity: 1; transform: translateX(0) scale(1); }
  46% { opacity: .16; transform: translateX(-12px) scale(1.015); }
  54% { opacity: .16; transform: translateX(12px) scale(1.015); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes hero-background-prev {
  0% { opacity: 1; transform: translateX(0) scale(1); }
  46% { opacity: .16; transform: translateX(12px) scale(1.015); }
  54% { opacity: .16; transform: translateX(-12px) scale(1.015); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.hero__content p {
  margin-bottom: 34px;
  font-size: 21px;
  line-height: 1.25;
}

.hero__visual {
  display: none;
}

.hero .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero .slider-arrow--prev {
  left: 0;
}

.hero .slider-arrow--next {
  right: 0;
}

.hero__dots {
  display: none;
}

.catalog-section {
  padding-top: 64px;
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 16px 0 19px;
  border-bottom: 1px solid #a8b7c7;
}

.catalog-tabs button {
  position: relative;
  min-height: 42px;
  padding: 6px 16px 12px;
  color: var(--color-text);
  background: transparent;
  font-size: 24px;
  font-weight: 400;
}

.catalog-tabs button[aria-selected="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--color-navy);
}

.products-slider {
  position: relative;
}

.products {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.products::-webkit-scrollbar { display: none; }

.product-card {
  position: relative;
  flex: 0 0 calc((100% - 72px) / 3);
  min-width: 0;
  overflow: hidden;
  background: var(--color-ice);
}

.product-card__head {
  min-height: 104px;
  padding: 14px 44px 10px;
  text-align: center;
}

.product-card__head h3 {
  font-size: 24px;
  font-weight: 400;
}

.product-card__head p {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 16px;
}

.product-card__actions {
  position: absolute;
  z-index: 2;
  top: 78px;
  right: 8px;
  display: grid;
  align-content: start;
  gap: 2px;
}

.product-card__actions button {
  width: 26px;
  height: 26px;
  padding: 0;
  color: var(--color-navy);
  border-radius: 50%;
  background: transparent;
  transition: transform var(--transition), filter var(--transition);
}

.product-card__actions button:hover { transform: scale(1.08); }

.product-card__actions button.is-active {
  background: transparent;
}

.product-card__actions button[data-product-action="cart"].is-active img,
.product-card__actions button[data-product-action="compare"].is-active img {
  filter: contrast(1.35) drop-shadow(0 0 .45px #01264f) drop-shadow(0 0 .45px #01264f);
  transform: scale(1.05);
}

.product-card__actions img {
  width: 22px;
  max-height: 21px;
}

.product-card__discount {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 14px;
  padding: 7px 9px;
  color: var(--color-white);
  background: #4c6594;
}

.product-card__image {
  position: relative;
  display: block;
  height: 270px;
  background-position: center calc(50% - 18px);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.product-card__image--one,
.product-card__image--two,
.product-card__image--three { background-image: url("/local/templates/grohe/css/pages/../../assets/images/product_image_placeholder.png"); }

.product-card__colors {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 7px;
}

.product-card__colors button {
  width: 29px;
  height: 29px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(113.94deg, #d5941a 12.05%, #ffd988 44.72%, #cfae70 76.14%);
  transition: border-color var(--transition), transform var(--transition);
}

.product-card__colors button:nth-child(2) { background: linear-gradient(113.94deg, #afafaf 12.05%, #e4e4e4 44.72%, #8c8c8c 76.14%); }
.product-card__colors button:nth-child(3) { background: linear-gradient(113.94deg, #72462e 12.05%, #a3730d 44.72%, #6f4a3b 76.14%); }
.product-card__colors button:nth-child(4) { background: linear-gradient(113.94deg, #000 12.05%, #424242 44.72%, #161616 76.14%); }

.product-card__colors button:hover {
  transform: scale(1.08);
}

.product-card__colors button.is-active {
  border-color: #012750;
}

.product-card__price {
  padding-bottom: 12px;
  text-align: center;
  font-size: 18px;
}

.product-card__buy {
  width: 100%;
  min-height: 55px;
  color: var(--color-white);
  background: linear-gradient(86.35deg, #00264F 0%, #5A6A96 30.97%, #00264F 60.77%);
  font-size: 24px;
  font-weight: 400;
}

.products-slider .slider-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
}

.products-slider__prev { left: -35px; }
.products-slider__next { right: -35px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}

.slider-dots i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-ice-dark);
}

.slider-dots i.is-active { background: #5471a4; }

.section-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-top: 36px;
  font-size: 24px;
}

.section-link img {
  flex: 0 0 auto;
  width: 31px;
  height: 23px;
}

.about {
  padding-top: 18px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.about__content h2 {
  margin-bottom: 46px;
}

.about__content p {
  max-width: 800px;
  margin-top: 22px;
  font-size: 24px;
}

.about__image {
  min-height: 360px;
  background-color: var(--color-ice);
}

.collection {
  overflow: hidden;
  color: var(--color-white);
  background: #00264F;
}

.collection__inner {
  position: relative;
  min-height: 668px;
  overflow: visible;
}

.collection__content {
  position: relative;
  z-index: 2;
  padding: 34px 0 42px 6px;
}

.collection h2 {
  margin-bottom: 84px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.06;
}

.collection h2 strong { font-weight: 700; }

.collection ul {
  display: grid;
  gap: 18px;
  padding-left: 4px;
}

.collection li {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 20px;
}

.collection__icon {
  display: grid;
  flex: 0 0 60px;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
}

.collection__icon img {
  width: 38px;
  height: 40px;
  object-fit: contain;
}

.collection__handles {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.collection__handle {
  position: absolute;
  max-width: none;
  height: auto;
}

.collection__handle--black {
  top: -18px;
  left: 26.18%;
  width: 87.5%;
}

.collection__handle--gold {
  top: 345px;
  left: 18%;
  width: 95.6%;
}

.collection__button {
  position: absolute;
  z-index: 4;
  right: -84px;
  bottom: 50px;
  width: 300px;
  min-height: 76px;
  padding-inline: 20px;
  font-size: 27px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 90px;
}

.contacts {
  min-height: 685px;
  padding-block: 76px;
}

.contacts h2 {
  margin-bottom: 42px;
  font-size: 48px;
}

.contacts__lead {
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.12;
}

.contacts address {
  margin-top: 54px;
  color: #9aa5b3;
  font-size: 24px;
  line-height: 1.16;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 92px;
}

.contact-form label {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 17px 22px;
  color: #9DA3BA;
  border: 0;
  border-radius: 32px;
  background: #edf4f8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9da3ba;
  opacity: 1;
}

.contact-form__placeholder {
  position: absolute;
  top: 50%;
  left: 22px;
  color: #9da3ba;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-form__placeholder em {
  color: #e53945;
  font-style: normal;
}

.contact-form input:focus + .contact-form__placeholder,
.contact-form input:not(:placeholder-shown) + .contact-form__placeholder {
  opacity: 0;
}

.contact-form input { height: 64px; font-size: 18px; }
.contact-form textarea { min-height: 118px; border-radius: 28px; font-size: 18px; resize: none; }
.contact-form .button { justify-self: center; min-width: 318px; min-height: 64px; font-size: 20px; }
.contact-form small { color: #9aa5b3; text-align: center; }
.contact-form__status { min-height: 20px; color: var(--color-navy); text-align: center; }

.site-footer {
  background: var(--color-ice);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  min-height: 425px;
  padding-block: 48px;
}

.logo--footer {
  display: block;
  margin-bottom: 65px;
  width: 425px;
}

.site-footer__contact {
  display: block;
  width: fit-content;
  margin-top: 24px;
  font-size: 27px;
}

.site-footer__button {
  min-width: 210px;
  min-height: 56px;
  margin-top: 52px;
}

.site-footer__nav {
  padding-top: 143px;
}

.site-footer__nav h2 {
  margin-bottom: 26px;
  font-size: 32px;
}

.site-footer__nav a {
  display: block;
  width: fit-content;
  margin-top: 15px;
  font-size: 24px;
}

.site-footer__bottom {
  min-height: 105px;
  padding-block: 32px;
  color: #93a0af;
  background: #dce4eb;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header__main {
    grid-template-columns: 150px 150px minmax(180px, 1fr) auto;
  }

  .user-nav { display: none; }
  .hero__content { padding-left: 70px; }
  .hero h1 { font-size: 50px; }
  .products { gap: 18px; }
  .product-card__image { height: 240px; }
  .site-footer__grid { grid-template-columns: 1.1fr .9fr; }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(53px + env(safe-area-inset-bottom, 0px));
  }

  .site-header__main {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) 30px;
    gap: 12px;
    height: 64px;
    min-height: 64px;
    width: min(calc(100% - (var(--page-padding) * 2)), 1173px);
  }

  .site-header .logo { width: 116px; }

  .site-header__catalog,
  .site-header__phone {
    display: none;
  }

  .search {
    display: block;
  }

  .search input {
    height: 34px;
    padding: 0 14px 0 38px;
    font-size: 12px;
  }

  .search button {
    right: auto;
    left: 8px;
    width: 22px;
    height: 22px;
  }

  .search img {
    width: 17px;
    height: 18px;
  }

  .user-nav {
    display: flex;
    gap: 0;
  }

  .user-nav > :not(:first-child) {
    display: none;
  }

  .user-nav a,
  .user-nav button {
    width: 30px;
    height: 30px;
  }

  .user-nav .user-nav__max {
    width: 30px;
    max-height: 30px;
  }

  .user-nav > :first-child {
    width: 30px;
    height: 30px;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero__inner {
    width: 100%;
  }

  .category-nav {
    display: none;
  }

  .hero__slider {
    grid-template-columns: 1fr;
    min-height: 372px;
    padding: 34px 42px 186px;
  }

  .hero__content {
    align-self: start;
    padding-left: 0;
    text-align: center;
  }

  .hero h1 {
    margin-bottom: 12px;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero__content p {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .hero__content p br { display: none; }

  .hero .button--light {
    min-width: 104px;
    min-height: 32px;
    padding: 6px 18px;
    font-size: 12px;
  }

  .hero {
    background-position: 70% center;
    background-size: auto 100%;
  }

  .hero__background {
    background-image: url("/local/templates/grohe/css/pages/../../assets/images/main_image_mobile.jpg");
    background-position: center;
    background-size: cover;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .slider-arrow img {
    width: 11px;
    height: 20px;
  }

  .hero .slider-arrow { top: 56%; }
  .hero .slider-arrow--prev { left: 16px; }
  .hero .slider-arrow--next { right: 16px; }

  .hero__dots {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  .hero__dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
  }

  .hero__dots i.is-active {
    background: var(--color-white);
  }

  .catalog-tabs {
    display: flex;
    margin-top: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-tabs button {
    flex: 0 0 auto;
    min-width: 160px;
    font-size: 15px;
  }

  .products {
    display: flex;
    gap: 16px;
    margin-inline: calc(var(--page-padding) * -1);
    padding-inline: var(--page-padding);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: center;
  }

  .product-card__image {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 240px;
    background-position: center;
    background-size: contain;
  }
  .products-slider .slider-arrow { display: none; }
  .section-link { justify-content: space-between; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about__content h2 { margin-bottom: 28px; }
  .about__content p { font-size: 16px; }
  .about__image { display: none; }

  .collection__inner {
    min-height: 800px;
  }

  .collection__content { padding: 34px 0 42px; }
  .collection h2 { margin-bottom: 28px; font-size: 32px; }
  .collection ul { gap: 10px; padding-left: 0; }
  .collection li { gap: 12px; font-size: 11px; }
  .collection__icon { flex-basis: 38px; width: 38px; height: 38px; }
  .collection__icon img { width: 25px; height: 27px; }

  .collection__handle--black {
    top: 290px;
    left: -12%;
    width: 540px;
  }

  .collection__handle--gold {
    top: 520px;
    left: -17%;
    width: 540px;
  }

  .collection__button {
    right: auto;
    bottom: 20px;
    left: 0;
    min-width: 218px;
    width: auto;
    min-height: 44px;
    font-size: 16px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contacts { min-height: 0; padding-block: 42px; }

  .contacts h2 { margin-bottom: 28px; }
  .contacts__lead { font-size: 22px; }
  .contacts address { margin-top: 32px; font-size: 14px; }
  .contact-form { gap: 10px; padding-top: 14px; }
  .contact-form input { height: 44px; }
  .contact-form textarea { min-height: 90px; }
  .contact-form .button { justify-self: stretch; }
  .contact-form small,
  .contact-form__status { text-align: center; }

  .site-footer__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    min-height: 0;
    padding-block: 28px;
  }

  .logo--footer { width: min(100%, 150px); margin-bottom: 22px; }
  .site-footer__contact { margin-top: 8px; font-size: 13px; }
  .site-footer__button { min-height: 34px; margin-top: 22px; padding: 6px 18px; font-size: 11px; }
  .site-footer__nav { padding-top: 48px; }
  .site-footer__nav h2 { margin-bottom: 18px; font-size: 17px; }
  .site-footer__nav a { margin-top: 10px; font-size: 12px; }
  .site-footer__bottom { min-height: 66px; padding-block: 22px; font-size: 9px; }
}

@media (min-width: 768px) {
  .product-card {
    aspect-ratio: 306 / 502;
  }

  .product-card__actions,
  .product-card__discount {
    top: 16%;
  }

  .products .product-card__image {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 52%;
    background-position: center calc(50% - 10px);
    background-size: 100% auto;
  }

  .product-card__colors {
    position: absolute;
    top: 76.9%;
    left: 0;
    width: 100%;
    margin: 0;
  }

  .product-card__price {
    position: absolute;
    top: 83.5%;
    left: 0;
    width: 100%;
    padding: 0;
  }

  .product-card__buy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 0;
    height: 10.76%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media (max-width: 767px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 45;
  }

  .site-header::after {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    height: 53px;
    content: "";
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 38, 79, .08);
  }

  .site-header__catalog {
    position: fixed;
    z-index: 42;
    bottom: 5px;
    left: 14px;
    display: inline-flex;
    width: 180px;
    min-height: 42px;
    padding: 7px 22px;
    font-size: 14px;
  }

  .user-nav {
    position: fixed;
    z-index: 42;
    right: 7px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 53px;
  }

  .user-nav > :not(:first-child) { display: grid; }

  .user-nav > :first-child {
    display: none;
  }

  .user-nav > a[href^="mailto:"] {
    position: fixed;
    z-index: 46;
    top: 17px;
    right: 14px;
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
  }

  .user-nav > a[href^="mailto:"] img {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    content: url("/local/templates/grohe/css/pages/../../assets/icons/mail_mobile.svg");
  }

  .user-nav__divider {
    display: block !important;
    width: 1px;
    height: 42px;
    margin: 0 3px 0 0;
  }

  .user-nav a,
  .user-nav button {
    width: 30px;
    height: 30px;
    padding: 3px;
  }

  .user-nav img { max-width: 24px; max-height: 24px; }
  .user-nav .user-nav__max { width: 30px; max-width: 30px; max-height: 30px; }
  .user-nav > a[href^="mailto:"] { padding: 0; }
  .user-nav > a[href^="mailto:"] img { max-width: 30px; max-height: 30px; }

  .catalog-section {
    height: 540px;
    padding: 26px 0;
  }

  .catalog-section > .container > h2,
  .catalog-section .section-link { display: none; }

  .catalog-section .catalog-tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0 1px 3px;
    border: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-section .catalog-tabs::-webkit-scrollbar {
    display: none;
  }

  .catalog-section .catalog-tabs button {
    flex: 0 0 88px;
    min-width: 88px;
    min-height: 40px;
    padding: 7px 8px;
    border-radius: var(--radius-pill);
    background: var(--color-ice);
    font-size: 0;
    scroll-snap-align: start;
  }

  .catalog-section .catalog-tabs button::before { font-size: 12px; }
  .catalog-section .catalog-tabs button:nth-child(1)::before { content: "Ручки"; }
  .catalog-section .catalog-tabs button:nth-child(2)::before { content: "Петли"; }
  .catalog-section .catalog-tabs button:nth-child(3)::before { content: "Замки/защелки"; }
  .catalog-section .catalog-tabs button:nth-child(3) { flex-basis: 132px; }
  .catalog-section .catalog-tabs button:nth-child(4) {
    display: block;
    flex-basis: 158px;
  }
  .catalog-section .catalog-tabs button:nth-child(4)::before { content: "Завертки/накладки"; }
  .catalog-section .catalog-tabs button[aria-selected="true"]::after { display: none; }
  .catalog-section .catalog-tabs button[aria-selected="true"] {
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--color-navy);
  }

  .catalog-section .products {
    height: 411px;
    margin-inline: calc(var(--page-padding) * -1);
    padding-inline: 20px;
    gap: 16px;
  }

  .catalog-section .product-card {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    height: 411px;
  }

  .catalog-section .product-card__head {
    min-height: 72px;
    padding: 14px 40px 8px;
  }

  .catalog-section .product-card__head h3 { font-size: 18px; }
  .catalog-section .product-card__head p { font-size: 12px; }
  .catalog-section .product-card__actions { top: 86px; right: 8px; }
  .catalog-section .product-card__discount { top: 87px; left: 12px; padding: 6px 8px; }

  .catalog-section .product-card__image {
    position: absolute;
    top: 104px;
    left: 0;
    width: 100%;
    height: 210px;
    background-position: center;
    background-size: 100% auto;
  }

  .catalog-section .product-card__colors {
    position: absolute;
    top: 296px;
    left: 0;
    width: 100%;
    margin: 0;
  }

  .catalog-section .product-card__colors button { width: 25px; height: 25px; }

  .catalog-section .product-card__price {
    position: absolute;
    top: 329px;
    left: 0;
    width: 100%;
    padding: 0;
    font-size: 18px;
  }

  .catalog-section .product-card__buy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 40px;
    height: 40px;
    font-size: 14px;
  }

  .catalog-section .products-slider .slider-arrow {
    top: 51%;
    display: grid;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }

  .catalog-section .products-slider .slider-arrow img { width: 8px; height: 15px; }
  .catalog-section .products-slider__prev { left: 0; }
  .catalog-section .products-slider__next { right: 0; }
  .catalog-section .slider-dots { gap: 5px; margin-top: 12px; }
  .catalog-section .slider-dots i { width: 8px; height: 8px; }

  .about {
    height: 283px;
    padding: 28px 0 20px;
  }

  .about__content h2 { margin-bottom: 22px; font-size: 24px; }
  .about__content p { margin-top: 14px; font-size: 14px; line-height: 1.08; }
  .about__extra { display: none; }

  .collection__inner { min-height: 375px; height: 375px; }
  .collection__content { padding: 23px 0 20px; }
  .collection h2 { margin-bottom: 32px; font-size: 31px; line-height: 1.05; }
  .collection ul { gap: 8px; }
  .collection li { gap: 20px; font-size: 14px; line-height: 1.05; }
  .collection__icon { flex-basis: 36px; width: 36px; height: 36px; }
  .collection__icon img { width: 24px; height: 25px; }

  .collection__handle--black {
    top: 0;
    left: calc(50% + 10.5px);
    width: 178px;
    content: url("/local/templates/grohe/css/pages/../../assets/images/handle_black_mobile.png");
    transform: none;
  }

  .collection__handle--gold {
    top: 188px;
    left: calc(50% - 98.5px);
    width: 286px;
    content: url("/local/templates/grohe/css/pages/../../assets/images/handle_gold_mobile.png");
    transform: none;
  }

  .collection__button {
    z-index: 7;
    right: 20px;
    bottom: 34px;
    left: auto;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .collection__button::after { content: "→"; font-size: 24px; line-height: 1; }

  .contacts {
    height: 620px;
    min-height: 620px;
    padding: 48px 0 28px;
  }

  .contacts__grid { gap: 38px; }
  .contacts h2 { margin-bottom: 28px; font-size: 24px; }
  .contacts__lead { margin-bottom: 8px; font-size: 18px; }
  .contacts address { margin-top: 28px; font-size: 11px; line-height: 1.1; }
  .contact-form { gap: 10px; padding-top: 0; }
  .contact-form input { height: 34px; padding: 8px 20px; font-size: 12px; }
  .contact-form textarea { min-height: 67px; padding: 16px 20px; border-radius: 18px; font-size: 12px; }
  .contact-form__placeholder { left: 20px; font-size: 12px; }
  .contact-form .button { justify-self: center; min-width: 202px; min-height: 42px; padding: 8px 20px; font-size: 12px; }
  .contact-form small { font-size: 8px; line-height: 1.05; }
  .contact-form__status { min-height: 0; font-size: 10px; }

  .site-footer__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    min-height: 167px;
    height: 167px;
    padding-block: 20px;
  }

  .logo--footer { width: 112px; margin-bottom: 20px; }
  .site-footer__contact { margin-top: 7px; font-size: 12px; }
  .site-footer__button { min-width: 144px; min-height: 34px; margin-top: 18px; padding: 6px 14px; font-size: 10px; }
  .site-footer__nav { padding-top: 3px; }
  .site-footer__nav h2 { margin-bottom: 20px; font-size: 16px; }
  .site-footer__nav a { margin-top: 12px; font-size: 11px; }
  .site-footer__bottom { min-height: 75px; height: 75px; padding-block: 20px; font-size: 8px; }
}

/* End */
/* /local/templates/grohe/css/reset.css?1790172606459 */
/* /local/templates/grohe/css/variables.css?1790172606433 */
/* /local/templates/grohe/css/common.css?17901726066530 */
/* /local/templates/grohe/css/pages/home.css?179017260628857 */
