@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_blackitalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_bolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_lightitalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/gothampro_mediumitalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Literature Decor";
  src: url("/fonts/Literature-Decor.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

.header {
  background: #101012;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 15px 0;
  gap: 20px;
}
.header__link {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header__link:hover {
  color: #d5b77d;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo:hover {
  opacity: 0.9;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.header__contact-label {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}
.header__phone {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__phone:hover {
  color: #d5b77d;
}
.header__contact-description {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: lowercase;
}
.header__stock-btn {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #101012;
  background-color: #d5b77d;
  border: none;
  padding: 8px 16px;
  margin-top: 8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__stock-btn:hover {
  background-color: rgb(200.5465116279, 161.6511627907, 86.4534883721);
  color: #ffffff;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header__burger span {
  width: 100%;
  height: 2px;
  background-color: #d5b77d;
  transition: all 0.3s ease;
}
.header__burger:hover span {
  background-color: rgb(225.4534883721, 204.3488372093, 163.5465116279);
}
.header__burger:focus {
  outline: none;
}
.header__whatsapp {
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.header__whatsapp img {
  height: 100%;
  width: 100%;
}

@media (max-width: 1200px) {
  .header__content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 0;
  }
  .header__burger {
    display: flex;
    grid-column: 1;
    justify-self: start;
  }
  .header__whatsapp {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  .header__logo {
    grid-column: 2;
    justify-self: center;
  }
  .header__link, .header__contact {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__logo {
    height: 60px;
  }
  .header__logo img {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .header__content {
    flex-direction: column;
  }
  .header__link {
    font-size: 14px;
  }
  .header__phone {
    font-size: 16px;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu__link {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #101012;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 16, 18, 0.1);
  transition: color 0.3s ease;
}
.mobile-menu__link:hover {
  color: #d5b77d;
}
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.mobile-menu__phone {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #101012;
  text-decoration: none;
}
.mobile-menu__phone:hover {
  color: #d5b77d;
}
.mobile-menu__contact-description {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(16, 16, 18, 0.7);
}
.mobile-menu__stock-btn {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #101012;
  background-color: #d5b77d;
  border: none;
  padding: 12px 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.mobile-menu__stock-btn:hover {
  background-color: rgb(200.5465116279, 161.6511627907, 86.4534883721);
  color: #ffffff;
}

.offcanvas {
  background-color: #ffffff;
}
.offcanvas-header {
  border-bottom: 1px solid rgba(16, 16, 18, 0.1);
}
.offcanvas-header .offcanvas-title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  color: #101012;
}
.offcanvas-header .btn-close:focus {
  box-shadow: none;
  border-color: #d5b77d;
}
.offcanvas-header .btn-close:hover {
  opacity: 0.8;
}
.offcanvas-body {
  padding: 20px;
}

.hero {
  background-color: #e3e5e4;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 500px;
}
.hero__image {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  z-index: 1;
  pointer-events: none;
}
.hero__image img {
  max-width: 100%;
  height: auto;
}
.hero__left {
  flex: 0 0 45%;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: #101012;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero__title-decor {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #101012;
  display: block;
  margin-bottom: 10px;
  text-transform: none;
}
.hero__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__feature-item {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101012;
  margin-bottom: 12px;
}
.hero__feature-item:last-child {
  margin-bottom: 0;
}
.hero__right {
  flex: 0 0 45%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.hero__form-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px 35px;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__form-title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #101012;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.hero__form-decor {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #101012;
  display: block;
  margin-bottom: 8px;
  text-transform: none;
}
.hero__form-label {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101012;
  margin-bottom: 20px;
}
.hero__form-group {
  margin-bottom: 20px;
}
.hero__select {
  width: 100%;
  padding: 15px 20px;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101012;
  background-color: #fff;
  border: 1px solid rgba(16, 16, 18, 0.1);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23101012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px 8px;
}
.hero__select:focus {
  outline: none;
  border-color: #d5b77d;
}
.hero__select:hover {
  border-color: #d5b77d;
}
.hero__input {
  width: 100%;
  padding: 15px 20px;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101012;
  background-color: #fff;
  border: 1px solid rgba(16, 16, 18, 0.1);
  transition: all 0.3s ease;
}
.hero__input::placeholder {
  color: rgba(16, 16, 18, 0.5);
  font-weight: 300;
}
.hero__input:focus {
  outline: none;
  border-color: #d5b77d;
}
.hero__input:hover {
  border-color: #d5b77d;
}
.hero__checkbox-group {
  margin-bottom: 25px;
}
.hero__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}
.hero__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.hero__checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid rgba(16, 16, 18, 0.2);
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.hero__checkbox:checked + .hero__checkbox-custom {
  background-color: #d5b77d;
  border-color: #d5b77d;
}
.hero__checkbox:checked + .hero__checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero__checkbox-text {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(16, 16, 18, 0.8);
}
.hero__submit-btn {
  width: 100%;
  padding: 15px 20px;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #101012;
  background-color: #d5b77d;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero__submit-btn:hover {
  background-color: rgb(200.5465116279, 161.6511627907, 86.4534883721);
  color: #ffffff;
}

@media (max-width: 992px) {
  .hero {
    padding: 90px 0;
  }
  .hero__title-decor {
    font-size: 30px;
  }
  .hero__image {
    height: 100%;
  }
  .hero__image img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 0;
    background: #eef0ef;
  }
  .hero__wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
  }
  .hero__left, .hero__right {
    flex: 0 0 100%;
    width: 100%;
  }
  .hero__right {
    justify-content: center;
  }
  .hero__form-card {
    max-width: 100%;
  }
  .hero__image {
    position: static;
    transform: none;
    opacity: 1;
    display: flex;
    justify-content: center;
    height: 365px;
    background-color: #e2e4e3;
    padding: 20px 0 0;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 28px;
  }
  .hero__title-decor {
    font-size: 28px;
  }
  .hero__form-card {
    padding: 30px 20px;
  }
  .hero__form-title {
    font-size: 22px;
  }
  .hero__form-title-decor {
    font-size: 22px;
  }
}
.spring {
  padding: 30px 0;
}
.spring__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.spring__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.spring__title {
  color: #101012;
  font-size: 24px;
  font-family: "Literata", "Literata Regular", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.spring__tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.spring__tag {
  font-family: "Gotham Pro", "GothamPro", "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #101012;
}
.spring__tag--accent {
  color: #d5b77d;
}
.spring__main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1200px) {
  .spring__main {
    flex-direction: column;
  }
}
.spring__hero {
  width: 581px;
  height: auto;
  flex-shrink: 0;
}
.spring__hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .spring__hero {
    width: 100%;
    max-width: 581px;
    height: auto;
    aspect-ratio: 581/774;
  }
}
.spring__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1200px) {
  .spring__grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}
.spring__card {
  width: 260px;
  height: 260px;
}
.spring__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1200px) {
  .spring__card {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.list-marker {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-marker__item {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #101012;
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
}
.list-marker__item:last-child {
  margin-bottom: 0;
}
.list-marker__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #d5b77d;
  border-radius: 50%;
}

.about {
  background-color: #f6f6f6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 0;
  opacity: 0.7;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about__img {
    height: 200px;
  }
}
.about__title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #101012;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.about__title-decor {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #101012;
  display: block;
  margin-bottom: 10px;
  text-transform: none;
}
.about__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
}
.about__content {
  max-width: 900px;
  width: 100%;
}
.about__btn {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #101012;
  background-color: #d5b77d;
  border: none;
  padding: 15px 40px;
  margin-top: 40px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.about__btn:hover {
  background-color: rgb(200.5465116279, 161.6511627907, 86.4534883721);
  color: #ffffff;
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about__title {
    font-size: 28px;
  }
  .about__title-decor {
    font-size: 28px;
  }
  .about__btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 40px 0;
  }
  .about__title {
    font-size: 24px;
  }
  .about__title-decor {
    font-size: 24px;
  }
  .about .list-marker__item {
    font-size: 14px;
    padding-left: 24px;
  }
  .about .list-marker__item::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
}
.catalog {
  background-color: #f6f6f6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.catalog__wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  min-height: 500px;
}
.catalog__wrapper--left {
  justify-content: start;
}
.catalog__img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 0;
  object-fit: cover;
}
.catalog__img--right {
  height: 100%;
  width: 100%;
  right: 0%;
  left: auto;
  object-fit: contain;
}
.catalog__right {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .catalog__right {
    flex: 0 0 100%;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .catalog__wrapper {
    justify-content: center;
  }
  .catalog__right {
    width: 100%;
  }
  .catalog .hero__form-card {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .catalog {
    padding: 40px 0;
  }
  .catalog .hero__form-card {
    padding: 30px 20px;
  }
  .catalog .hero__form-title {
    font-size: 22px;
  }
  .catalog .hero__form-title-decor {
    font-size: 22px;
  }
}
.list-marker--small .list-marker__item {
  font-size: 12px;
  margin-bottom: 12px;
  padding-left: 20px;
  color: #ffffff;
  text-transform: uppercase;
}
.list-marker--small .list-marker__item::before {
  width: 6px;
  height: 6px;
  top: 6px;
}
.list-marker--small .list-marker__item:last-child {
  margin-bottom: 0;
}

.advantages {
  background-color: #eceeed;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.advantages__wrapper {
  display: flex;
  gap: 60px;
  position: relative;
}
.advantages__content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.advantages__title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #101012;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.advantages__title-decor {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #101012;
  display: block;
  margin-bottom: 10px;
  text-transform: none;
}
.advantages__subtitle {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #101012;
  max-width: 600px;
  margin-bottom: 50px;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantages__card {
  background: rgba(16, 16, 18, 0.5);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.advantages__card-title {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-transform: none;
  margin: 0;
}
.advantages__image {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.advantages__image img {
  width: auto;
  height: auto;
  object-fit: contain;
  height: 100%;
}
.advantages__swiper {
  width: 100%;
  margin-top: 30px;
}
.advantages__swiper .swiper-wrapper {
  display: flex;
}
.advantages__swiper .swiper-slide {
  height: auto;
}
.advantages__slide-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: center;
}
.advantages__pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.advantages__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(213, 183, 125, 0.3);
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}
.advantages__pagination .swiper-pagination-bullet-active {
  background-color: #d5b77d;
  transform: scale(1.2);
}
.advantages__pagination .swiper-pagination-bullet:hover {
  background-color: #d5b77d;
}
@media (max-width: 767px) {
  .advantages__grid {
    display: none !important;
  }
  .advantages__image {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    position: absolute;
    left: 0;
    height: 100%;
    top: 300px;
  }
  .advantages__image img {
    object-fit: contain;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .advantages__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .advantages {
    padding: 40px 0;
  }
  .advantages__title {
    font-size: 28px;
  }
  .advantages__title-decor {
    font-size: 28px;
  }
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .advantages__card {
    padding: 25px 20px;
  }
  .advantages__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.catalog-spring {
  padding: 60px 0;
  background-color: #ffffff;
}
.catalog-spring__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.catalog-spring__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.catalog-spring__title {
  color: #101012;
  font-size: 24px;
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.catalog-spring__tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog-spring__tag {
  font-family: "Gotham Pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #101012;
  white-space: nowrap;
}
.catalog-spring__tag--accent {
  color: #d5b77d;
}
@media (max-width: 768px) {
  .catalog-spring__tag {
    white-space: normal;
  }
}
.catalog-spring__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}
@media (max-width: 992px) {
  .catalog-spring__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .catalog-spring__grid {
    grid-template-columns: 1fr;
  }
}
.catalog-spring__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.catalog-spring__image {
  width: 100%;
  aspect-ratio: 263/388;
  overflow: hidden;
}
.catalog-spring__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.catalog-spring__image img:hover {
  transform: scale(1.05);
}
.catalog-spring__card-title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #101012;
  text-transform: uppercase;
  margin-top: 10px;
}
.catalog-spring__prices {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-spring__price-item {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #101012;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}
.catalog-spring__price-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #d5b77d;
  border-radius: 50%;
}
.catalog-spring__swiper {
  width: 100%;
}
.catalog-spring__swiper .swiper-wrapper {
  display: flex;
}
.catalog-spring__swiper .swiper-slide {
  height: auto;
}
.catalog-spring__swiper .catalog-spring__card {
  width: 100%;
}
.catalog-spring__pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.catalog-spring__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(213, 183, 125, 0.3);
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}
.catalog-spring__pagination .swiper-pagination-bullet-active {
  background-color: #d5b77d;
  transform: scale(1.2);
}
.catalog-spring__pagination .swiper-pagination-bullet:hover {
  background-color: #d5b77d;
}
@media (max-width: 767px) {
  .catalog-spring__grid {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .catalog-spring__swiper {
    display: none;
  }
  .catalog-spring__grid {
    display: grid;
  }
}

@media (min-width: 768px) {
  .d-md-grid {
    display: grid;
  }
  .d-md-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .d-md-none {
    display: block;
  }
  .d-md-grid {
    display: none;
  }
}
@media (max-width: 768px) {
  .catalog-spring {
    padding: 40px 0;
  }
  .catalog-spring__title {
    font-size: 20px;
  }
  .catalog-spring__tags {
    gap: 5px;
  }
  .catalog-spring__tag {
    font-size: 11px;
  }
}
@media (max-width: 576px) {
  .catalog-spring__card-title {
    font-size: 14px;
  }
  .catalog-spring__price-item {
    font-size: 10px;
  }
}
.testimonials {
  background-color: #e8ebe9;
  padding: 80px 0 64px;
}
.testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.testimonials__title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #101012;
  text-transform: uppercase;
}
.testimonials__title-decor {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #101012;
  display: block;
  margin-bottom: 10px;
  text-transform: none;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 28px;
  }
  .testimonials__title-decor {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .testimonials__title {
    font-size: 24px;
  }
  .testimonials__title-decor {
    font-size: 24px;
  }
}
.testimonials__swiper {
  width: 100%;
  overflow: hidden;
  padding: 10px 5px;
}
.testimonials__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimonials__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials__swiper .swiper-slide > * {
  width: 100%;
}
.testimonials__card {
  background-color: #ffffff;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .testimonials__card {
    padding: 25px;
  }
}
.testimonials__name {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #101012;
  text-transform: uppercase;
  flex-shrink: 0;
}
.testimonials__text {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 16, 18, 0.8);
  margin: 0;
  flex: 1;
}
.testimonials__pagination {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonials__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(213, 183, 125, 0.3);
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}
.testimonials__pagination .swiper-pagination-bullet-active {
  background-color: #d5b77d;
  transform: scale(1.2);
}
.testimonials__pagination .swiper-pagination-bullet:hover {
  background-color: #d5b77d;
}

@media (max-width: 992px) {
  .testimonials__card {
    padding: 30px;
  }
  .testimonials__name {
    font-size: 16px;
  }
  .testimonials__text {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .testimonials {
    padding: 60px 0 40px;
  }
  .testimonials__content {
    gap: 40px;
  }
  .testimonials__card {
    padding: 20px;
  }
  .testimonials__pagination {
    margin-top: 30px;
  }
}
.contacts {
  background-color: #f6f6f6;
  padding: 80px 0;
}
.contacts__title {
  font-family: "Literature Decor", cursive, sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #101012;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .contacts__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .contacts__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.contacts__grid {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contacts__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contacts__block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contacts__block-title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #101012;
  text-transform: uppercase;
  margin: 0;
}
.contacts__block-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contacts__phone {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101012;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contacts__phone:hover {
  color: #d5b77d;
}
.contacts__email {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #101012;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contacts__email:hover {
  color: #d5b77d;
}
.contacts__address {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #101012;
  margin: 0;
}
.contacts__subscribe {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contacts__subscribe-title {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #101012;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}
.contacts__form-group {
  width: 100%;
}
.contacts__input {
  width: 100%;
  padding: 15px 20px;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #101012;
  background-color: #ffffff;
  border: 1px solid rgba(16, 16, 18, 0.1);
  transition: all 0.3s ease;
}
.contacts__input::placeholder {
  color: rgba(16, 16, 18, 0.5);
  font-weight: 300;
}
.contacts__input:focus {
  outline: none;
  border-color: #d5b77d;
}
.contacts__input:hover {
  border-color: #d5b77d;
}
.contacts__submit-btn {
  width: 100%;
  padding: 15px 20px;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #101012;
  background-color: #d5b77d;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contacts__submit-btn:hover {
  background-color: rgb(200.5465116279, 161.6511627907, 86.4534883721);
  color: #ffffff;
}
.contacts__agreement {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(16, 16, 18, 0.7);
  margin: 0;
}

@media (max-width: 992px) {
  .contacts__subscribe-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contacts {
    padding: 60px 0;
  }
  .contacts__block-title {
    font-size: 16px;
  }
  .contacts__phone, .contacts__email, .contacts__address {
    font-size: 14px;
  }
  .contacts__subscribe {
    padding: 0;
  }
  .contacts__input {
    padding: 12px 15px;
    font-size: 13px;
  }
  .contacts__submit-btn {
    padding: 12px 15px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about__title {
    font-size: 28px;
  }
  .about__title-decor {
    font-size: 28px;
  }
  .about__btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 40px 0;
  }
  .about__title {
    font-size: 24px;
  }
  .about__title-decor {
    font-size: 24px;
  }
  .about .list-marker__item {
    font-size: 14px;
    padding-left: 24px;
  }
  .about .list-marker__item::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
}
.footer {
  background-color: #101012;
  padding: 40px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 2fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
}
.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__nav-item {
  margin: 0;
}
.footer__nav-link {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #d5b77d;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__site {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  text-align: center;
}
.footer__site:hover {
  color: #d5b77d;
}
.footer__company {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  text-align: center;
}
.footer__docs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__docs-item {
  margin: 0;
}
.footer__docs-link {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 400;
  font-size: 9px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer__docs-link:hover {
  color: #d5b77d;
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0;
  }
  .footer__nav, .footer__copyright, .footer__docs {
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */