.button1 {
  text-decoration: none;
  outline: none;
  display: inline-block;
  padding: 10px 24px;
  margin: 5px 3px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f59e1a;
  border-radius: 5px;
  font-family: 'Arial', sans-serif; 
  color: #000;
  transition: .2s ease-in-out;
   background-color: #f0b4ba;
}
.button1:before {
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.5));
  height: 50px;
  width: 50px;
  position: absolute;
  top: -8px;
  left: -75px;
  transform: skewX(-45deg);
}
.button1:hover {
  background: #d61f58;
  color: #fff;
}
.button1:hover:before {
  left: 150px;
  transition: .5s ease-in-out;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.header {	
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--secondary-background);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--primary-text-color);
  font-weight: 500;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  font-size: 28px;
  font-weight: 700;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  list-style-type: none;
}

.header__link {
  position: relative;
  font-weight: 600;
}

.header__link:hover::before {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 100%;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 300ms ease-out;
  -o-transition: 300ms ease-out;
  transition: 300ms ease-out;
  height: 1px;
  background: var(--primary-text-color);
}

.header__button {
  width: 30px;
  height: 30px;
  position: relative;
  border: none;
  outline: none;
  background: none;
  display: none;
  z-index: 70;
}

.header__button.open .header__button-line,
.header__button.open::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
      -ms-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.header__button.open::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
      -ms-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.header__button::before,
.header__button::after,
.header__button-line {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-text-color);
}

.header__button::before {
  top: 20%;
}

.header__button::after {
  bottom: 20%;
}

.header__button-line {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

:root {
  --primary-text-color: #372137;
  --secondary-text-color: #A96D8E;
  --primary-background: #FEFBFF;
  --secondary-background: #CEC3EB;
  --primary-light-color: #877A87;
  --new-bg: #00A7B5;
  --discount-bg: #A96D8E;
  --trand-bg: #8164CD;
  --font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-family);
  scroll-behavior: smooth;
  scroll-margin: 90px;
}

*:focus,
*:active {
  outline: none;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: var(--primary-background);
  color: var(--primary-light-color);
}

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 110px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

.title {
  color: var(--primary-text-color);
  margin-bottom: 40px;
  font-size: 32px;
}

.title.mb-0 {
  margin-bottom: 0;
}

.products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.product {
  width: calc(25% - 23px);
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(68, 30, 67, 0.1);
          box-shadow: 0px 0px 10px rgba(68, 30, 67, 0.1);
}

.product__img {
  width: 100%;
}

.product__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__content {
  padding: 15px 20px 25px 20px;
}

.product__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 9px;
  text-align: center;
  color: #A96D8E;
  display: block;
}

.product__p {
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: var(--primary-light-color);
}

.text {
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: var(--primary-light-color);
}

.articles__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
}

.articles__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--primary-text-color);
}

.articles__swiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
}

.articles__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.articles__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.articles__navigation .swiper-button-next {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #D67FAE;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 300ms ease-out;
  -o-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.articles__navigation .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.articles__navigation .swiper-button-prev {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #D67FAE;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 300ms ease-out;
  -o-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.articles__navigation .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.article__img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  padding-bottom: 100%;
  height: 0%;
  position: relative;
}

.article__img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  bottom: 0;
}

.article__content {
  margin-top: 12px;
}

.article__title {
  color: var(--primary-text-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article__p {
  overflow: hidden;
  width: 100%;
  font-size: 14px;
  line-height: 160%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
}

.article__link {
  font-weight: 500;
  color: var(--primary-text-color);
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 1200px) {
  .product {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 992px) {
  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: var(--primary-background);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 300ms ease-out;
    -o-transition: 300ms ease-out;
    transition: 300ms ease-out;
  }

  .header__menu.open {
    opacity: 1;
    visibility: visible;
  }

  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header__button {
    display: block;
  }

  .product {
    width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .product {
    width: 100%;
  }

  .articles__link {
    display: none;
  }
}