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

body,
button,
select,
input {
  font-family: Montserrat;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

h1 {
  text-align: left;
  display: block;
  max-width: 760px;
  font-weight: 600;
  font-size: 64px;
  line-height: 70px;
  margin-top: 64px;
  color: #FFFFFF;
}

h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 8px;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(images/stock/select.svg);
  background-repeat: no-repeat;
  background-position: right 22px center;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 20px;
  padding: 9px 56px 11px 23px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
}

button:not(.addto):hover {
  cursor: pointer;
}

.center {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
}

.top {
  height: 735px;
  background-image: url(images/backgrounds/index-topbg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.8);
}
.header .logo {
  display: block;
  padding-top: 8px;
}

.header__input {
  width: 288px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  outline: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 32px;
  padding-right: 32px;
}

.header__input::-moz-placeholder {
  color: white;
}

.header__input::placeholder {
  color: white;
}

.header__menu {
  display: flex;
  gap: 32px;
}
.header__menu-mobile {
  display: none;
}

.link {
  font-size: 16px;
  line-height: 20px;
  color: white;
  transition: all 0.2s;
}

.link:hover {
  text-decoration: underline;
}

.about__p {
  font-size: 24px;
  line-height: 32px;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.about__link {
  color: #FFFFFF;
  text-decoration: underline;
  margin-bottom: 32px;
}

.about__link:hover,
.link-box_link:hover {
  text-decoration: none;
  color: #888888;
}

.for-box {
  padding-top: 64px;
}

.for {
  margin-top: 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(12, 1fr);
}

.for__text {
  color: rgb(255, 255, 255);
  font-size: 34px;
  font-weight: 600;
}

.for__item {
  height: 415px;
  grid-column: span 4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  background-position: center;
  background-size: cover;
}
.for__item:hover {
  scale: 1.05;
  box-shadow: 0px 0px 12px 2px rgba(82, 82, 82, 0.866);
  cursor: pointer;
}

.for__item_big {
  grid-column: span 6;
}

.for__item_1 {
  background-image: url(images/backgrounds/for-rest.webp);
}

.for__item_2 {
  background-image: url(images/backgrounds/for-work.webp);
}

.for__item_3 {
  background-image: url(images/backgrounds/for-kitchen.webp);
}

.for__item_4 {
  background-image: url(images/backgrounds/for-nursery.webp);
}

.for__item_5 {
  background-image: url(images/backgrounds/for-bathroom.webp);
}

.special {
  padding-top: 64px;
}

.heading {
  font-weight: 600;
  font-size: 48px;
  line-height: 59px;
  color: #000000;
}

.content-box {
  gap: 56px 32px;
  margin-top: 32px;
  padding-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
}

.product-box {
  margin-top: 64px;
}

.product {
  width: 378px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 2px;
}
.product__addto {
  display: none;
  position: absolute;
  right: 4px;
  padding: 10px;
  gap: 20px;
}
.product__addto_cart {
  background-image: url(images/stock/add-to-cart.svg);
}
.product__addto_like {
  background-image: url(images/stock/add-to-like.svg);
}
.product .addto {
  border: none;
  outline: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  height: 24px;
  width: 24px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  filter: brightness(1.9);
}
.product .addto::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  width: 31px;
  height: 31px;
  background-color: #000000;
  opacity: 0.4;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.8);
}
.product .addto:hover {
  filter: brightness(3);
}
.product:hover {
  cursor: pointer;
}
.product:hover .product__addto {
  display: flex;
}

.product__description {
  font-size: 14px;
  line-height: 17px;
  color: #888888;
  margin-bottom: 16px;
}

.price {
  display: flex;
  gap: 32px;
}

.product__price {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}

.special__product {
  padding-bottom: 0;
}

.special__price_new {
  color: #050505;
}

.special__price_old {
  text-decoration: line-through;
  color: #888888;
}

.link-box {
  padding-top: 32px;
  padding-bottom: 64px;
}

.link-box_link {
  color: #000000;
  text-decoration: underline;
}

.link-box-mobile {
  display: none;
}

.footer {
  background-color: #F7F6F6;
  padding-top: 32px;
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__logo {
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}

.footer__content {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.footer__item-contacts {
  padding-right: 64px;
}

.footer__heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #888888;
  text-decoration: none;
  transition: all 0.2s;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__icons {
  display: flex;
  gap: 20px;
}
.footer__icons img:hover {
  filter: brightness(0);
}

.form-sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__subscribe {
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}

.footer__input {
  width: 260px;
  height: 40px;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 16px;
  background: rgb(255, 255, 255);
  color: rgb(80, 80, 80);
  font-size: 12px;
  font-weight: 400;
  outline: none;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__input::-moz-placeholder {
  color: rgb(196, 196, 196);
}
.footer__input::placeholder {
  color: rgb(196, 196, 196);
}

.footer__button {
  background: rgba(222, 215, 215, 0.41);
  border: none;
  border-radius: 16px;
  width: 260px;
  height: 40px;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  transition: all 0.2s;
}
.footer__button:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.catalog-top {
  height: 400px;
  background-image: url(images/backgrounds/catalog-topbg.webp);
}

.cat-heading {
  margin-top: 127px;
  margin-bottom: 0;
}

.cat-band {
  margin-top: 61px;
  padding-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-way {
  display: flex;
  gap: 10px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
.cat-way a {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
.cat-way a:hover {
  text-decoration: underline;
}

.sort {
  position: relative;
}
.sort__show {
  color: #000000;
}

.bold {
  color: #000000;
  font-weight: 500;
}

fieldset {
  border: none;
}

.filter {
  position: absolute;
  top: calc(100% + 14px);
  right: 238px;
  box-shadow: 0px 4px 67px -12px rgba(0, 0, 0, 0.32);
  background: rgb(255, 255, 255);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 36px;
  z-index: 3;
}
.filter__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: start;
  max-height: 548px;
  min-width: 445px;
  gap: 32px 65px;
}
.filter__content .delivery,
.filter__content .rooms {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter__content .delivery {
  margin-top: 2px;
}
.filter__legend {
  color: rgb(5, 5, 5);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}
.filter label {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
}
.filter__price {
  padding-bottom: 2px;
  width: 185px;
  display: flex;
  justify-content: space-between;
}
.filter .radio {
  height: 17px;
}
.filter .radio input[type=radio] {
  display: none;
}
.filter .radio input[type=radio] + label {
  position: relative;
  padding-left: 29px;
  cursor: pointer;
}
.filter .radio input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 1px solid rgb(136, 136, 136);
  border-radius: 50%;
}
.filter .radio input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 50%;
  background-image: url(images/stock/checked.svg);
  background-repeat: no-repeat;
  background-position: center 4px;
}
.filter .range {
  margin-top: 4px;
  position: relative;
  height: 20px;
}
.filter .range input[type=range] {
  margin-top: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  width: 189px;
}
.filter .range input[type=range]::-webkit-slider-runnable-track,
.filter .range input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #000;
}
.filter .range input[type=range]::-webkit-slider-runnable-track {
  width: 189px;
  height: 1px;
}
.filter .range input[type=range]::-webkit-slider-thumb {
  height: 8px;
  width: 8px;
  margin-top: -4px;
  border: 1px solid #000;
  border-radius: 25px;
  cursor: pointer;
  z-index: 1;
}
.filter .range input[type=range]::-webkit-slider-thumb:active {
  cursor: grabbing;
}
.filter .color-options {
  display: flex;
  flex-wrap: wrap;
  max-width: 190px;
  gap: 14px;
}
.filter .color-options .color {
  width: 15px;
  height: 15px;
}
.filter input[type=checkbox] {
  display: none;
}
.filter input[type=checkbox] + label {
  position: relative;
  padding-left: 15px;
  cursor: pointer;
}
.filter input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1%;
  width: 15px;
  height: 15px;
  border: 1px solid rgb(136, 136, 136);
}
.filter .color input[type=checkbox] + .color__label_white::before {
  background-color: white;
}
.filter .color input[type=checkbox] + .color__label_black::before {
  background-color: #000;
  border-color: #000;
}
.filter .color input[type=checkbox] + .color__label_grey::before {
  background-color: rgb(115, 115, 115);
  border-color: rgb(115, 115, 115);
}
.filter .color input[type=checkbox] + .color__label_red::before {
  background-color: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
}
.filter .color input[type=checkbox] + .color__label_orange::before {
  background-color: rgb(255, 122, 65);
  border-color: rgb(255, 122, 65);
}
.filter .color input[type=checkbox] + .color__label_yellow::before {
  background-color: rgb(242, 203, 1);
  border-color: rgb(242, 203, 1);
}
.filter .color input[type=checkbox] + .color__label_green::before {
  background-color: rgb(0, 191, 42);
  border-color: rgb(0, 191, 42);
}
.filter .color input[type=checkbox] + .color__label_mint::before {
  background-color: rgb(28, 204, 151);
  border-color: rgb(28, 204, 151);
}
.filter .color input[type=checkbox] + .color__label_lightblue::before {
  background-color: rgb(0, 159, 227);
  border-color: rgb(0, 159, 227);
}
.filter .color input[type=checkbox] + .color__label_blue::before {
  background-color: rgb(0, 10, 248);
  border-color: rgb(0, 10, 248);
}
.filter .color input[type=checkbox] + .color__label_orhid::before {
  background-color: rgb(103, 16, 214);
  border-color: rgb(103, 16, 214);
}
.filter .color input[type=checkbox] + .color__label_violet::before {
  background-color: rgb(157, 13, 181);
  border-color: rgb(157, 13, 181);
}
.filter .color input[type=checkbox] + .color__label_lavander::before {
  background-color: rgb(216, 154, 255);
  border-color: rgb(216, 154, 255);
}
.filter .color input[type=checkbox] + .color__label_pink::before {
  background-color: rgb(255, 101, 166);
  border-color: rgb(255, 101, 166);
}
.filter input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1%;
  width: 15px;
  height: 15px;
  border: 1px solid rgb(0, 0, 0);
  background-image: url(images/stock/checked.svg);
  background-repeat: no-repeat;
  background-position: center 4px;
}
.filter input[type=checkbox]:checked + .color__label_black::after,
.filter input[type=checkbox]:checked + .color__label_orhid::after,
.filter input[type=checkbox]:checked + .color__label_violet::after {
  background-image: url(images/stock/checked-white.svg);
}
.filter__roomtype {
  padding-right: 36px;
}
.filter__roomtype .room {
  height: 17px;
}
.filter__roomtype .room input[type=checkbox] + label {
  padding-left: 29px;
}

.filter-button {
  width: 190px;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgb(4, 4, 4);
  border-radius: 20px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  transition: all 0.2s;
}
.filter-button:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.cart-top {
  height: 400px;
  background-image: url(images/backgrounds/cart-topbg.webp);
}

.cart {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.cart__content {
  flex-grow: 8;
}
.cart__namebox {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  padding-right: 27px;
}
.cart__product {
  border-top: 1px solid rgb(202, 205, 216);
  padding-top: 25px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__product-next {
  padding-top: 32px;
}
.cart__left {
  display: flex;
  gap: 32px;
}
.cart__img {
  position: relative;
  width: 173px;
  height: 173px;
}
.cart__img img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart__info {
  width: 276px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart__info h3 {
  margin: 0;
}
.cart__text {
  color: rgb(136, 136, 136);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
.cart__price {
  color: rgb(5, 5, 5);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.cart__action {
  background-color: transparent;
  border: none;
  margin-right: 30px;
  color: black;
  font-size: 14px;
  font-weight: 400;
  line-height: 210%;
  text-decoration-line: underline;
}
.cart__action:hover {
  background-color: transparent;
  color: black;
}
.cart__buttons {
  margin-top: 18px;
  display: flex;
  gap: 7px;
}
.cart__button {
  width: 200px;
  height: 37px;
  background-color: transparent;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 50px;
  color: rgb(2, 2, 2);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  transition: all 0.2s;
}
.cart__button_continue {
  display: flex;
  width: 200px;
  height: 37px;
  align-items: center;
  justify-content: center;
}
.cart__button_continue:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.quantity {
  width: 71px;
  height: 51px;
  border: none;
  outline: none;
  border-radius: 6px;
  background: rgb(247, 246, 246);
  font-size: 14px;
  font-weight: 600;
  line-height: 210%;
  font-family: Poppins;
  padding-right: 14px;
  text-align: center;
  align-self: baseline;
  caret-color: rgb(124, 124, 124);
}

.booking {
  width: 379px;
  border-radius: 20px;
  background: rgb(247, 246, 246);
  height: 556px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking__h {
  margin-top: 41px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}
.booking input {
  width: 76%;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  outline: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(202, 205, 216);
  align-self: flex-start;
  margin-left: 27px;
  margin-bottom: 44px;
}
.booking input::-moz-placeholder {
  color: black;
}
.booking input::placeholder {
  color: black;
}
.booking__price {
  margin-top: 22px;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}
.booking__price span {
  font-weight: 500;
}
.booking__button {
  width: 290px;
  padding: 10px;
  background-color: rgb(247, 246, 246);
  border: 1px solid rgb(4, 4, 4);
  border-radius: 20px;
  font-family: Montserrat;
  color: black;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.4s;
}
.booking__button:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.booking__button:active {
  box-shadow: 0 5px 8px #888;
  transform: translateY(4px);
  transition: 160ms;
}

@media (max-width: 1024px) {
  .center {
    padding-left: calc(50% - 393px);
    padding-right: calc(50% - 393px);
  }
  .for__item {
    height: 268px;
  }
  .product-box {
    padding-top: 0;
  }
  .link-box {
    padding-top: 40px;
  }
  .content-box {
    gap: 38px 29px;
    padding-bottom: 0;
  }
  .filter {
    right: 2px;
  }
  .cart__buttons {
    margin-top: 0;
  }
  .booking {
    margin-top: 32px;
  }
  .booking__h {
    margin-top: 45px;
  }
  .footer__logo {
    display: none;
  }
  .footer__content {
    width: 100%;
  }
  .footer__item {
    padding: 0;
  }
  .footer__item-contacts {
    padding-right: 52px;
  }
}
@media (max-width: 833px) {
  .center {
    padding-left: 24px;
    padding-right: 24px;
  }
  .product {
    width: 345px;
  }
}
@media (max-width: 767px) {
  .center {
    padding-left: 16px;
    padding-right: 16px;
  }
  h1 {
    font-size: 48px;
    line-height: 59px;
    text-align: center;
    margin-top: 29px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
  select {
    padding-left: 18px;
    padding-right: 54px;
  }
  .top {
    padding-top: 25px;
  }
  .header {
    height: 57px;
    padding-top: 16px;
    border: none;
  }
  .header .logo__img {
    width: 99px;
  }
  .header__input, .header__menu {
    display: none;
  }
  .header__menu-mobile {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
  }
  .about__p {
    font-size: 16px;
    text-align: center;
  }
  .about__link {
    font-size: 14px;
  }
  .heading {
    font-size: 24px;
    line-height: 29px;
  }
  .for-box, .special, .product-box {
    margin-top: 0;
    padding-top: 32px;
  }
  .for {
    gap: 16px;
  }
  .for__text {
    font-size: 28px;
  }
  .for__item {
    height: 375px;
    grid-column: span 12;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .for__item_big {
    height: 244px;
  }
  .content-box {
    row-gap: 32px;
    padding-bottom: 0;
  }
  .product {
    max-width: 342px;
  }
  .product__description {
    margin-bottom: 12px;
  }
  .product__price {
    font-size: 18px;
    line-height: 22px;
  }
  .link-box {
    padding-top: 37px;
    padding-bottom: 32px;
  }
  .link-box-laptop {
    display: none;
  }
  .link-box-mobile {
    display: block;
  }
  .footer__content {
    gap: 70px 100px;
    justify-content: center;
  }
  .footer__item-contacts {
    padding-right: 30px;
  }
  .content-mobile {
    row-gap: 35px;
  }
  .catalog-top {
    background-position: -300px 0px;
  }
  .cat-heading {
    margin-top: 90px;
  }
  .cat-band {
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .cat-band .cat-way a {
    font-size: 14px;
  }
  .cat-band .sort {
    display: flex;
    flex-wrap: wrap-reverse;
  }
  .cat-band .sort__show {
    margin-top: 10px;
    font-size: 14px;
  }
  .cat-band .filter {
    left: -1px;
    right: calc(100% - 286px);
    align-items: flex-start;
  }
  .cat-band .filter__content {
    max-height: none;
    min-width: 0;
  }
  .cat-band .filter .rooms {
    width: 190px;
  }
  .cart {
    margin-top: 92px;
  }
  .cart__namebox {
    display: none;
  }
  .cart__product {
    padding-top: 18px;
    padding-bottom: 26px;
    padding-right: 8px;
  }
  .cart__product p {
    font-size: 12px;
  }
  .cart__product-next {
    margin-top: 0;
    padding-top: 18px;
  }
  .cart__product-next p {
    font-size: 14px;
  }
  .cart__img {
    display: none;
  }
  .cart__info {
    min-width: 208px;
    width: auto;
    gap: 8px;
  }
  .cart__todo {
    padding-top: 6px;
  }
  .cart__buttons {
    gap: 14px;
  }
  .cart__button {
    width: 166px;
    font-size: 12px;
  }
  .cart__button_continue {
    width: 166px;
  }
  .booking {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}/*# sourceMappingURL=style.css.map */