@import '../fonts/Gilroy/stylesheet.css';
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "Gilroy", sans-serif;
  position: relative;
}

.container {
  max-width: 1340px;
  padding: 0 30px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.4286rem + 0.3571vw, 1.75rem);
  letter-spacing: 0.01em;
  color: #fff;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.section-title {
  font-weight: 700;
  font-size: 42px;
  color: #1E1E1E;
}

.more-link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  font-weight: 500;
  color: #E58411 !important;
  transition: column-gap 0.6s ease;
  transition: column-gap 0.6s ease, -moz-column-gap 0.6s ease;
}
.more-link:hover {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.header {
  position: relative;
  background: url(../img/header/header-bg.jpg);
  background-size: cover;
  aspect-ratio: 1440/1084;
  color: #fff;
}
@media (max-width: 575.99px) {
  .header {
    background-position: center;
  }
}
.header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(3.125rem, 2.4107rem + 3.5714vw, 5.625rem);
}
.header__title {
  font-weight: 700;
  font-size: clamp(2rem, 1.1429rem + 4.2857vw, 5rem);
  line-height: 130%;
  text-align: center;
  max-width: 890px;
}
.header__text {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.0179rem + 0.5357vw, 1.5rem);
  line-height: 160%;
  text-align: center;
  opacity: 0.8;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 45px;
}
.header__dots {
  position: absolute;
}
@media (max-width: 991.99px) {
  .header__dots {
    display: none;
  }
}
.header__dots_sofa {
  position: absolute;
  left: 19.4444444444%;
  top: 63.6531365314%;
}
.header__dots_vase {
  position: absolute;
  left: 7.2916666667%;
  top: 68.2656826568%;
}
.header__dots_item {
  position: absolute;
  left: 55.2083333333%;
  top: 71.4944649446%;
}
.header__dots_pot {
  position: absolute;
  left: 96.5277777778%;
  top: 76.5682656827%;
}

.nav {
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  color: #fff;
}
.nav__list {
  display: flex;
  -moz-column-gap: 62px;
       column-gap: 62px;
  align-items: center;
  justify-self: center;
}
@media (max-width: 991.99px) {
  .nav__list {
    display: none;
  }
}
.nav__list-item {
  position: relative;
  transition: color 0.3s ease;
}
.nav__list-item:hover {
  color: #F6B76F;
}
.nav__list-item_dropdown {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #fff;
}
.nav__list-item_dropdown::after {
  content: url(../img/header/arrow-nav.svg);
  height: 18px;
  transition: transform 0.2s ease;
}
.nav__list-item_dropdown:hover::after {
  transform: rotate(180deg);
}
.nav__list-item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
}
.nav__list-link {
  font-weight: 500;
  font-size: 18px;
}
.nav__dropdown {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 15px;
  border-radius: 10px;
  width: 120px;
  position: absolute;
  left: 0;
  top: 100%;
  pointer-events: none;
  background-color: #2D2F33;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav__dropdown-link {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  color: #fff !important;
}
.nav__dropdown-link:hover {
  color: #F6B76F !important;
}
.nav__mobile-open {
  display: none;
  justify-self: center;
}
@media (max-width: 991.99px) {
  .nav__mobile-open {
    display: block;
  }
}
.nav__mobile-close {
  display: none;
  justify-self: center;
  z-index: 3;
}
@media (min-width: 992px) {
  .nav__mobile-close {
    display: none !important;
  }
}

.cart {
  justify-self: end;
  position: relative;
}
.cart__count {
  display: inline-block;
  position: absolute;
  top: 3px;
  right: -6px;
  background-color: #E58411;
  height: 25px;
  padding: 0 5px;
  border-radius: 100%;
  line-height: 25px;
  font-weight: 700;
}

.search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 344px;
  border: 0.86px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 767.99px) {
  .search-form {
    display: none;
  }
}
.search-form__input {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  flex-grow: 1;
}
.search-form__input::-moz-placeholder {
  opacity: 0.8;
  color: inherit;
}
.search-form__input::placeholder {
  opacity: 0.8;
  color: inherit;
}
.search-form__btn {
  display: flex;
  border-radius: 24px;
  padding: 11px;
  background-color: #E58411;
}
.search-form__focused {
  border: 1px solid rgb(255, 255, 255);
}

.info-dot {
  position: relative;
  cursor: pointer;
}
.info-dot__circle {
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}
.info-dot:hover .info-dot__circle {
  background-color: #E58411;
}
.info-dot__radius {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 0.86px solid;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: pulse-radius 1s infinite alternate;
}
@keyframes pulse-radius {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.info-dot:hover .info-dot__radius {
  animation: pulse-radius 1s infinite alternate paused;
}

.info-hint {
  background-image: url(../img/header/hint.svg);
  width: 112px;
  height: 56px;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  justify-content: center;
  padding-top: 12px;
  gap: 8px;
}
.info-hint_wrapper {
  display: flex;
  padding-top: 12px;
  gap: 8px;
}
.info-hint__btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}
.info-hint__btn_orange {
  background-color: #e58411;
}
.info-hint__btn_turquoise {
  background-color: #00d6c9;
}
.info-hint__btn_gray {
  background-color: #7c7c7c;
}
.info-hint .selected {
  background-image: url(../img/header/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.section__benefits {
  padding: clamp(2.5rem, 1.0714rem + 7.1429vw, 7.5rem) 0;
}

.benefits {
  display: flex;
  align-items: center;
}
@media (max-width: 1310px) {
  .benefits {
    flex-direction: column;
    row-gap: clamp(3.125rem, 2.7679rem + 1.7857vw, 4.375rem);
  }
}
.benefits__title {
  margin-right: 80px;
  max-width: 242px;
}
@media (max-width: 1310px) {
  .benefits__title {
    text-align: center;
    max-width: 350px;
    margin-right: 0;
  }
}
@media (max-width: 479.99px) {
  .benefits__title {
    max-width: 280px;
  }
}
.benefits__items {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 1310px) {
  .benefits__items {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.benefits__item {
  display: flex;
  flex-direction: column;
  max-width: 284px;
}
.benefits__item-title {
  font-weight: 700;
  font-size: 24px;
  opacity: 90%;
}
@media (max-width: 991.99px) {
  .benefits__item-title {
    text-align: center;
  }
}
.benefits__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 185%;
  margin-top: 20px;
  margin-bottom: 15px;
  opacity: 80%;
}
@media (max-width: 991.99px) {
  .benefits__item-text {
    text-align: center;
  }
}
.benefits__item-link {
  font-size: 14px;
  line-height: 185%;
}
@media (max-width: 991.99px) {
  .benefits__item-link {
    justify-content: center;
  }
}

.section__products {
  padding: 50px 0;
  background-color: #F7F7F7;
}

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products__title {
  text-align: center;
  margin-bottom: 32px;
}
.products__tabs {
  display: flex;
  flex-wrap: wrap;
  background-color: #EEEEEE;
  padding: 6px;
  border-radius: 44px;
  margin-bottom: 80px;
}
@media (max-width: 479.99px) {
  .products__tabs {
    justify-content: center;
    border-radius: 22px;
    max-width: 200px;
  }
}
.products__tabs-item {
  padding: 7px 20px;
  border-radius: 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.products__tabs-item:hover .products__tabs-link {
  font-weight: 500;
}
.products__tabs-item_active {
  background-color: #fff;
}
.products__tabs-item_active .products__tabs-link {
  font-weight: 500;
}
.products__tabs-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 185%;
  color: #1E1E1E;
  opacity: 0.8;
}
.products__more-link {
  margin-top: 60px;
  font-size: 18px;
}

.products-slider {
  position: relative;
  width: 100%;
  font-family: "Inter", serif;
}
.products-slider__card {
  width: 268px;
}
.products-slider__photo {
  height: 240px;
  background-color: #FAFAFA;
  border-radius: 20px 20px 0 0;
  margin-top: 50px;
  text-align: center;
}
.products-slider__photo svg {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}
.products-slider__img {
  width: 218px;
  margin-top: -50px;
}
.products-slider__info {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 14px 21px 27px;
}
.products-slider__info-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #8D8D8D;
}
.products-slider__info-title {
  font-weight: 600;
  font-size: 21px;
  text-transform: capitalize;
  color: #0D1B39;
  margin: 6px 0 6px 0;
}
.products-slider__info-stars {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
       column-gap: 2px;
}
.products-slider__info-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 37px;
}
.products-slider__info-price span {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-weight: 600;
  font-size: 21px;
  color: #0D1B39;
}
.products-slider__info-price span::before {
  content: attr(data-value);
  font-size: 15px;
}
.products-slider__info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #0D1B39;
}
.products-slider__info-btn img {
  transition: transform 0.3s ease;
}
.products-slider__info-btn img:hover {
  transform: scale(1.2);
}
.products-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}
.products-slider__btn_prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  transition: left 0.3s ease;
}
.products-slider__btn_prev:hover {
  left: -10px;
}
.products-slider__btn_next {
  z-index: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, 0);
  transition: right 0.3s ease;
}
.products-slider__btn_next:hover {
  right: -10px;
}

.footer {
  background-color: #2D2F33;
  padding: 120px 0 50px 0;
  color: #fff;
}
.footer__container {
  max-width: 1124px;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 140px;
       column-gap: 140px;
  row-gap: 40px;
  margin-bottom: clamp(3.75rem, 2.6786rem + 5.3571vw, 7.5rem);
}
@media (max-width: 991.99px) {
  .footer__content {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media (max-width: 767.99px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
}
.footer__text {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 300px;
}
@media (max-width: 991.99px) {
  .footer__text {
    max-width: 270px;
  }
}
@media (max-width: 767.99px) {
  .footer__text {
    max-width: 400px;
  }
}
@media (max-width: 767.99px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__desc {
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  opacity: 0.8;
}
@media (max-width: 767.99px) {
  .footer__desc {
    text-align: justify;
  }
}
.footer__nav {
  display: flex;
  -moz-column-gap: 84px;
       column-gap: 84px;
}
@media (max-width: 991.99px) {
  .footer__nav {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer__list-link {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.01em;
  opacity: 0.8;
  transition: color 0.3s ease;
}
.footer__list-link:hover {
  color: #F6973F;
}
.footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479.99px) {
  .footer__info {
    flex-direction: column;
    row-gap: 30px;
  }
}
.footer__copy {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.01em;
  opacity: 0.5;
}
.footer__links {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 479.99px) {
  .footer__links {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.footer__links a {
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  opacity: 0.8;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #2D2F33;
  color: #fff;
  padding: 50px;
  width: 300px;
  z-index: 2;
  flex-direction: column;
  row-gap: 30px;
  transition: all 0.3s ease;
  transition-behavior: allow-discrete;
  opacity: 0;
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav_open {
  display: flex;
  right: 0;
  opacity: 1;
}
@starting-style {
  .mobile-nav_open {
    opacity: 0;
  }
}
.mobile-nav__cart {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.mobile-nav__list-link {
  font-weight: 500;
  font-size: 18px;
}
.mobile-nav__submenu {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 15px 0 0 20px;
}
.mobile-nav__submenu-link {
  font-weight: 400;
  font-size: 16px;
}/*# sourceMappingURL=main.css.map */