@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@400;700&display=swap");
/*null style*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
.header {
  padding: 16px 0px;
}
.header__all {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
}
@media (max-width: 850px) {
  .header__all {
    flex-direction: column;
    align-items: center;
  }
}
.header__logo {
  font-size: 28.8px;
  font-weight: 600;
  font-style: italic;
}
.header__logo-green {
  color: #10b981;
}
.header__logo-black {
  color: #000;
}
.header__search {
  display: flex;
  background: #f8f8f8;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 850px) {
  .header__search {
    margin: 20px 0px;
  }
}
.header__search-input {
  border: none;
  padding: 8px 16px;
  outline: none;
  width: 200px;
  background: transparent;
}
.header__search-btn {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.header__actions {
  display: flex;
  gap: 16px;
}
@media (max-width: 429px) {
  .header__actions {
    flex-direction: column;
  }
}
.header__actions .header__cart,
.header__actions .header__login {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9.6px 19.2px;
  border-radius: 30px;
  border: 1px solid #10b981;
  background: transparent;
  color: #10b981;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14.4px;
}
.header__actions .header__login {
  background: #10b981;
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(24, 199, 156, 0.3);
}
.header__actions .header__cart:hover,
.header__actions .header__login:hover {
  transform: translateY(-2px);
}
.header .header__navbar {
  background: #10b981;
  margin-top: 55px;
  padding: 30px 0;
  height: 80px;
}
@media (max-width: 429px) {
  .header .header__navbar {
    margin-top: 20px;
  }
}
.header .header__navbar .header__navbar-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 75px;
  margin: 0;
  padding: 0;
}
@media (max-width: 450px) {
  .header .header__navbar .header__navbar-menu {
    gap: 30px;
  }
}
.header .header__navbar .header__navbar-menu li {
  color: #fff;
  font-weight: bold;
}
.header .header__navbar .header__navbar-menu li a {
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  transition: font-size 0.3s ease;
}
@media (max-width: 550px) {
  .header .header__navbar .header__navbar-menu li a {
    font-size: 15px;
  }
}
.header .header__navbar .header__navbar-menu li:hover {
  text-decoration: underline;
  font-size: 25px;
  transform: scale(1.05);
}

.registration-form {
  display: none;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #10b981;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}
.registration-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}
.registration-form__input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.registration-form__input:focus {
  border-color: #10b981;
  outline: none;
}
.registration-form__button {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  width: 100%;
  padding: 10px;
  background: #22c48e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.registration-form__button:hover {
  background: #04d895;
}

/* Адаптивність */
@media (max-width: 480px) {
  .registration-form {
    width: 90%; /* Робимо ширину більшою на маленьких екранах */
    padding: 15px;
    margin-top: 30px;
  }
  .registration-form__input,
  .registration-form__button {
    font-size: 14px; /* Трохи зменшуємо шрифти на вузьких екранах */
  }
}
.main__our-latest {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1000px) {
  .main__our-latest {
    display: block;
  }
}
.main__our-latest-title {
  margin-top: 125px;
  max-width: 550px;
}
@media (max-width: 1000px) {
  .main__our-latest-title {
    margin: 50px auto;
  }
}
.main__our-latest-title h1 {
  margin-bottom: 30px;
  color: #2b2626;
  font-size: 64px;
  font-style: normal;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 1000px) {
  .main__our-latest-title h1 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .main__our-latest-title h1 {
    font-size: 40px;
  }
}
.main__our-latest-title p {
  color: #2b2626;
  font-size: 21px;
  font-style: normal;
  margin-top: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 1000px) {
  .main__our-latest-title p {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .main__our-latest-title p {
    font-size: 15px;
    margin: 0 auto;
  }
}
.main__button {
  width: 100%;
  height: auto;
  margin: 50px 0 100px 0;
  display: block;
  max-width: 263px;
  height: 70px;
  box-shadow: 0 25px 50px 0 rgba(132, 94, 194, 0.15);
  border-radius: 10px 10px 10px 10px;
  background-color: #10b981;
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.3s ease;
}
.main__button:hover {
  background-color: #059669;
}
@media (max-width: 1000px) {
  .main__button {
    margin: 50px auto;
  }
}
@media (max-width: 500px) {
  .main__button {
    margin: 50px auto;
    font-size: 20px;
    font-weight: 500;
    max-width: 163px;
    height: 50px;
  }
}
.main__img-latest {
  display: inline;
}
.main__img-latest p {
  margin-left: 10px;
}
.main__readBest {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 400px) {
  .main__readBest {
    display: inline;
    margin: 0 auto;
  }
}
.main__readBest-all {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .main__readBest-all {
    display: inline;
    margin: 0 auto;
  }
}
.main__readBest-video {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}
.main__readBest-video img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media (max-width: 400px) {
  .main__readBest-video img {
    margin: 0px auto;
  }
}
.main__readBest-video span {
  font-size: 14px;
  color: #2b2626;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 400px) {
  .main__readBest-video span {
    margin: 20px auto;
  }
}
.main__readBest-item {
  position: relative;
  text-align: center;
  background-color: #e8fff2;
  padding: 40px 20px;
  border-radius: 200px;
  width: 250px;
}
@media (max-width: 400px) {
  .main__readBest-item {
    margin: 0 auto;
  }
}
.main__readBest-item h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: 20px 0;
  color: #2b2626;
}
.main__readBest-headphones {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}
.main__readBest-price {
  font-size: 24px;
  font-weight: bold;
  color: #2b2626;
  margin-top: 20px;
}
.main .star {
  position: absolute;
  width: 50px;
  height: 50px;
}
.main .star--top {
  top: -50px;
  left: 5px;
}
.main .star--bottom {
  bottom: -50px;
  right: 5px;
}

.main__our-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #845ec2;
  padding: 0 85px 0 85px;
  width: 100%;
  height: 550px;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .main__our-featured {
    flex-wrap: wrap;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0 20px 0;
  }
}
@media (max-width: 540px) {
  .main__our-featured {
    flex-wrap: wrap;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0 20px 0;
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .main__our-featured {
    margin-top: 50px;
  }
}
@media (max-width: 370px) {
  .main__our-featured {
    text-align: center;
  }
}
.main__our-description {
  width: 100%;
  max-width: 623px;
  box-sizing: border-box;
  text-align: center;
}
.main__our-description p {
  text-align: center;
  color: #fff;
  font-size: 31px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  padding-top: 50px;
}
.main__our-description-img0 {
  width: 500px;
  padding-bottom: 40px;
}
@media (max-width: 540px) {
  .main__our-description-img0 {
    width: 450px;
  }
}
@media (max-width: 370px) {
  .main__our-description-img0 {
    width: 250px;
  }
}
.main__our-description-img1 {
  margin-right: 20px;
  width: 180px;
  gap: 20px;
}
@media (max-width: 1330px) {
  .main__our-description-img1 {
    width: 150px;
  }
}
@media (max-width: 1330px) {
  .main__our-description-img1 {
    width: 100px;
  }
}
@media (max-width: 370px) {
  .main__our-description-img1 {
    margin-left: 2px;
  }
}
.main__our-description-img2 {
  margin-right: 20px;
  width: 180px;
  gap: 20px;
  margin-top: -50px;
}
@media (max-width: 1330px) {
  .main__our-description-img2 {
    width: 150px;
  }
}
@media (max-width: 1330px) {
  .main__our-description-img2 {
    width: 100px;
  }
}
.main__our-description-img3 {
  margin-right: 20px;
  width: 180px;
  gap: 20px;
}
@media (max-width: 1330px) {
  .main__our-description-img3 {
    width: 150px;
  }
}
@media (max-width: 1330px) {
  .main__our-description-img3 {
    width: 100px;
  }
}
.main__our-product {
  max-width: 560px;
}
.main__our-product h2 {
  color: #fff;
  font-size: 44px;
  font-style: normal;
  margin-top: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 1200px) {
  .main__our-product h2 {
    color: #fff;
    font-size: 35px;
    font-style: normal;
    margin-top: 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: normal;
    text-transform: none;
  }
}
@media (max-width: 540px) {
  .main__our-product h2 {
    font-size: 25px;
    font-weight: 600;
  }
}
.main__our-product p {
  color: #fff;
  font-size: 21px;
  font-style: normal;
  margin-top: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 1200px) {
  .main__our-product p {
    font-size: 17px;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .main__our-product p {
    font-size: 13px;
    text-align: center;
  }
}
.main__our-product-button {
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .main__our-product-button {
    justify-content: center;
  }
}
.main__our-product-button-item {
  width: 100%;
  height: auto;
  margin: 30px 0 0 0;
  display: block;
  max-width: 250px;
  height: 70px;
  box-shadow: 0 25px 50px 0 rgba(132, 94, 194, 0.15);
  border-radius: 10px 10px 10px 10px;
  background-color: #10b981;
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.3s ease;
}
.main__our-product-button-item:hover {
  background-color: #059669;
}
@media (max-width: 1200px) {
  .main__our-product-button-item {
    max-width: 180px;
    height: 50px;
    font-size: 17px;
  }
}
@media (max-width: 540px) {
  .main__our-product-button-item {
    max-width: 120px;
    height: 40px;
    font-size: 13px;
  }
}

.main__sellers {
  margin: 130px auto;
  height: 830px;
  width: 100%;
}
.main__sellers-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 20px;
}
.main__sellers-wrapper_title {
  color: #2b2626;
  font-size: 44px;
  font-style: normal;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__sellers-wrapper_category {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 65px;
  margin-top: 55px;
}
.main__sellers-wrapper_category__picks, .main__sellers-wrapper_category__watches {
  color: #000;
  background-color: #fff;
  font-size: 26px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__sellers-wrapper_category__picks.active, .main__sellers-wrapper_category__watches.active {
  content: "";
  color: #fff;
  width: 177px;
  height: 91px;
  border-radius: 100%;
  background-color: #10b981;
  transition: background-color 0.7s ease;
}
.main__sellers-wrapper_slider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 92px;
  position: relative;
}
.main__sellers-wrapper_slider__cards {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  will-change: transform;
  gap: 93px;
  width: 1270px;
  transition: transform 0.4s ease;
}
.main__sellers-wrapper_slider__cards .items {
  display: flex;
  flex-direction: column;
}
.main__sellers-wrapper_slider__cards .items .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 361px;
  height: 438px;
  border-radius: 15px;
  padding: 18px 21px;
}
.main__sellers-wrapper_slider__cards .items .card-save {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  background-color: #10b981;
  border-radius: 50%;
  padding: 20px;
  text-align: center;
  right: 19px;
}
.main__sellers-wrapper_slider__cards .items .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  height: 250px;
}
.main__sellers-wrapper_slider__cards .items .card-img img {
  max-width: 220px;
  max-height: 220px;
  margin: 0 auto;
}
.main__sellers-wrapper_slider__cards .items .card-descr {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 319px;
  height: 164px;
  border-radius: 15px;
  background-color: #fff;
  padding: 30px 50px;
}
.main__sellers-wrapper_slider__cards .items .card-descr_header {
  color: #2b2626;
  font-size: 19px;
  font-style: normal;
  margin-top: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}
.main__sellers-wrapper_slider__cards .items .card-descr_rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 13px;
}
.main__sellers-wrapper_slider__cards .items .card-descr_rating__stars {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  width: 93px;
}
.main__sellers-wrapper_slider__cards .items .card-descr_rating__stars img {
  width: 17px;
}
.main__sellers-wrapper_slider__cards .items .card-descr_rating__review {
  color: #888;
  font-size: 11px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0;
  text-transform: none;
}
.main__sellers-wrapper_slider__cards .items .card-descr_price {
  color: #2b2626;
  font-size: 21px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__sellers-wrapper_slider__cards .items button {
  width: 361px;
  height: 70px;
  background-color: #10b981;
  text-align: center;
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 25px 50px 0 rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 10px 10px;
  margin-top: 29px;
  transition: background-color 0.3s ease;
}
.main__sellers-wrapper_slider__cards .items button:hover {
  background-color: #059669;
}
.main__sellers-wrapper_slider__button {
  position: absolute;
  right: -64px;
  bottom: 283px;
  background-color: #fff;
  transition: background-color 0.3s ease;
  border-radius: 15px 15px 15px 15px;
}
.main__sellers-wrapper_slider__button:hover {
  background-color: #059669;
}
.main__sellers-wrapper_slider__button:hover svg {
  transition: background-color 0.6s ease;
}
.main__sellers-wrapper_slider__button:hover svg path {
  fill: #fff;
}

@media (max-width: 1200px) {
  .main__sellers {
    width: 992px;
    height: 725px;
    margin: 100px auto;
  }
  .main__sellers-wrapper {
    padding: 0 30px;
    margin: 0 23px;
  }
  .main__sellers-wrapper_title {
    font-size: 44px;
  }
  .main__sellers-wrapper_category {
    margin-top: 50px;
    gap: 50px;
  }
  .main__sellers-wrapper_category__picks, .main__sellers-wrapper_category__watches {
    font-size: 22px;
  }
  .main__sellers-wrapper_category__picks.active, .main__sellers-wrapper_category__watches.active {
    width: 150px;
    height: 75px;
  }
  .main__sellers-wrapper_slider {
    margin-top: 70px;
  }
  .main__sellers-wrapper_slider__cards {
    width: 920px;
    gap: 50px;
  }
  .main__sellers-wrapper_slider__cards .items .card {
    width: 261px;
    height: 390px;
    padding: 15px;
  }
  .main__sellers-wrapper_slider__cards .items .card-save {
    width: 70px;
    height: 70px;
    font-size: 16px;
    padding: 15px;
  }
  .main__sellers-wrapper_slider__cards .items .card-img {
    width: 160px;
    height: 160px;
    margin-top: 30px;
  }
  .main__sellers-wrapper_slider__cards .items .card-img img {
    width: 160px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr {
    width: 227px;
    min-height: 135px;
    padding: 14px 20px;
    justify-content: space-between;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_header {
    font-size: 16px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_price {
    font-size: 19px;
  }
  .main__sellers-wrapper_slider__cards .items button {
    width: 261px;
    height: 50px;
    font-size: 18px;
  }
  .main__sellers-wrapper_slider__button {
    width: 50px;
    height: 50px;
    right: -13px;
    bottom: 235px;
  }
  .main__sellers-wrapper_slider__button svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .main__sellers {
    width: 768px;
    height: 670px;
    margin: 80px auto;
  }
  .main__sellers-wrapper {
    margin: 0 22px;
  }
  .main__sellers-wrapper_title {
    font-size: 36px;
  }
  .main__sellers-wrapper_category {
    margin-top: 35px;
  }
  .main__sellers-wrapper_category__picks, .main__sellers-wrapper_category__watches {
    font-size: 18px;
  }
  .main__sellers-wrapper_category__picks.active, .main__sellers-wrapper_category__watches.active {
    width: 110px;
    height: 55px;
  }
  .main__sellers-wrapper_slider {
    margin-top: 50px;
  }
  .main__sellers-wrapper_slider__cards {
    width: 625px;
    gap: 65px;
  }
  .main__sellers-wrapper_slider__cards .items {
    display: flex;
    flex: 0 50%;
  }
  .main__sellers-wrapper_slider__cards .items .card {
    flex: 0 0 50%;
    width: 280px;
  }
  .main__sellers-wrapper_slider__cards .items .card-save {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr {
    width: 250px;
    height: 140px;
    margin-top: 15px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_header {
    line-height: 25px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_rating__stars img {
    width: 13px;
  }
  .main__sellers-wrapper_slider__cards .items button {
    width: 280px;
    height: 60px;
  }
  .main__sellers-wrapper_slider__button {
    right: -50px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .main__sellers {
    width: 576px;
    height: 575px;
    margin: 80px auto;
  }
  .main__sellers-wrapper {
    padding: 0 20px;
    margin: 0 3px;
  }
  .main__sellers-wrapper_title {
    font-size: 32px;
  }
  .main__sellers-wrapper_category {
    margin-top: 25px;
  }
  .main__sellers-wrapper_category__picks, .main__sellers-wrapper_category__watches {
    font-size: 16px;
    font-weight: 500;
  }
  .main__sellers-wrapper_category__picks.active, .main__sellers-wrapper_category__watches.active {
    width: 100px;
    height: 50px;
  }
  .main__sellers-wrapper_slider {
    margin-top: 30px;
    box-sizing: border-box;
  }
  .main__sellers-wrapper_slider__cards {
    width: 510px;
    gap: 30px;
  }
  .main__sellers-wrapper_slider__cards .items .card {
    width: 240px;
    height: 330px;
  }
  .main__sellers-wrapper_slider__cards .items .card-save {
    font-size: 12px;
    padding: 10px;
  }
  .main__sellers-wrapper_slider__cards .items .card-img {
    width: 130px;
    height: 130px;
  }
  .main__sellers-wrapper_slider__cards .items .card-img img {
    width: 130px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr {
    width: 210px;
    min-height: 120px;
    margin-top: 10px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_header {
    font-size: 15px;
    line-height: 25px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_price {
    font-size: 18px;
  }
  .main__sellers-wrapper_slider__cards .items button {
    width: 240px;
    height: 50px;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 500;
  }
  .main__sellers-wrapper_slider__button {
    width: 30px;
    height: 30px;
    right: -30px;
    bottom: 210px;
  }
  .main__sellers-wrapper_slider__button svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .main__sellers {
    width: 320px;
    height: 534px;
    margin: 40px auto;
  }
  .main__sellers-wrapper {
    margin: 0 5px;
  }
  .main__sellers-wrapper_title {
    font-size: 26px;
    font-weight: 500;
  }
  .main__sellers-wrapper_category {
    gap: 10px;
  }
  .main__sellers-wrapper_category__picks, .main__sellers-wrapper_category__watches {
    font-size: 14px;
    font-weight: 400;
  }
  .main__sellers-wrapper_category__picks.active, .main__sellers-wrapper_category__watches.active {
    width: 75px;
    height: 40px;
  }
  .main__sellers-wrapper_slider__cards {
    width: 240px;
    gap: 35px;
  }
  .main__sellers-wrapper_slider__cards .items {
    flex: 0 100%;
  }
  .main__sellers-wrapper_slider__cards .items .card {
    flex: 0 0 100%;
  }
  .main__sellers-wrapper_slider__cards .items .card-save {
    width: 50px;
    height: 50px;
    padding: 5px;
    font-size: 11px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_header {
    font-size: 15px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_rating__stars {
    width: 72px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_rating__stars img {
    width: 13px;
  }
  .main__sellers-wrapper_slider__cards .items .card-descr_price {
    font-size: 16px;
  }
}
.main__trending {
  margin: 130px auto;
  height: 830px;
  width: 100%;
}
.main__trending-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 20px;
}
.main__trending-wrapper_title {
  color: #2b2626;
  font-size: 44px;
  font-style: normal;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__trending-wrapper_category {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 65px;
  margin-top: 55px;
}
.main__trending-wrapper_category__earbuds, .main__trending-wrapper_category__wireless, .main__trending-wrapper_category__wired {
  color: #000;
  background-color: #fff;
  font-size: 26px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__trending-wrapper_category__earbuds.active, .main__trending-wrapper_category__wireless.active, .main__trending-wrapper_category__wired.active {
  content: "";
  color: #fff;
  width: 177px;
  height: 91px;
  border-radius: 100%;
  background-color: #10b981;
  transition: background-color 0.7s ease;
}
.main__trending-wrapper_slider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 92px;
  position: relative;
}
.main__trending-wrapper_slider__cards {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  will-change: transform;
  gap: 93px;
  width: 1270px;
  transition: transform 0.4s ease;
}
.main__trending-wrapper_slider__cards .items {
  display: flex;
  flex-direction: column;
}
.main__trending-wrapper_slider__cards .items .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 361px;
  height: 438px;
  border-radius: 15px;
  padding: 18px 21px;
}
.main__trending-wrapper_slider__cards .items .card-save {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  background-color: #10b981;
  border-radius: 50%;
  padding: 20px;
  text-align: center;
  right: 19px;
  opacity: 60%;
}
.main__trending-wrapper_slider__cards .items .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  height: 250px;
}
.main__trending-wrapper_slider__cards .items .card-img img {
  max-width: 220px;
  max-height: 220px;
  margin: 0 auto;
}
.main__trending-wrapper_slider__cards .items .card-descr {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 319px;
  height: 164px;
  border-radius: 15px;
  background-color: #fff;
  padding: 30px 50px;
}
.main__trending-wrapper_slider__cards .items .card-descr_header {
  color: #2b2626;
  font-size: 19px;
  font-style: normal;
  margin-top: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}
.main__trending-wrapper_slider__cards .items .card-descr_rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 13px;
}
.main__trending-wrapper_slider__cards .items .card-descr_rating__stars {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  width: 93px;
}
.main__trending-wrapper_slider__cards .items .card-descr_rating__stars img {
  width: 17px;
}
.main__trending-wrapper_slider__cards .items .card-descr_rating__review {
  color: #888;
  font-size: 11px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0;
  text-transform: none;
}
.main__trending-wrapper_slider__cards .items .card-descr_price {
  color: #2b2626;
  font-size: 21px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__trending-wrapper_slider__cards .items button {
  width: 361px;
  height: 70px;
  background-color: #10b981;
  text-align: center;
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 25px 50px 0 rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 10px 10px;
  margin-top: 29px;
  transition: background-color 0.3s ease;
}
.main__trending-wrapper_slider__cards .items button:hover {
  background-color: #059669;
}
.main__trending-wrapper_slider__button {
  position: absolute;
  right: -64px;
  bottom: 283px;
  background-color: #fff;
  transition: background-color 0.3s ease;
  border-radius: 15px 15px 15px 15px;
}
.main__trending-wrapper_slider__button:hover {
  background-color: #059669;
}
.main__trending-wrapper_slider__button:hover svg {
  transition: background-color 0.6s ease;
}
.main__trending-wrapper_slider__button:hover svg path {
  fill: #fff;
}

@media (max-width: 1200px) {
  .main__trending {
    width: 992px;
    height: 725px;
    margin: 100px auto;
  }
  .main__trending-wrapper {
    padding: 0 30px;
    margin: 0 23px;
  }
  .main__trending-wrapper_title {
    font-size: 44px;
  }
  .main__trending-wrapper_category {
    margin-top: 50px;
    gap: 50px;
  }
  .main__trending-wrapper_category__earbuds, .main__trending-wrapper_category__wireless, .main__trending-wrapper_category__wired {
    font-size: 22px;
  }
  .main__trending-wrapper_category__earbuds.active, .main__trending-wrapper_category__wireless.active, .main__trending-wrapper_category__wired.active {
    width: 150px;
    height: 75px;
  }
  .main__trending-wrapper_slider {
    margin-top: 70px;
  }
  .main__trending-wrapper_slider__cards {
    width: 920px;
    gap: 50px;
  }
  .main__trending-wrapper_slider__cards .items .card {
    width: 261px;
    height: 390px;
    padding: 15px;
  }
  .main__trending-wrapper_slider__cards .items .card-save {
    width: 70px;
    height: 70px;
    font-size: 16px;
    padding: 15px;
  }
  .main__trending-wrapper_slider__cards .items .card-img {
    width: 160px;
    height: 160px;
    margin-top: 30px;
  }
  .main__trending-wrapper_slider__cards .items .card-img img {
    width: 160px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr {
    width: 227px;
    min-height: 135px;
    padding: 14px 20px;
    justify-content: space-between;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_header {
    font-size: 16px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_price {
    font-size: 19px;
  }
  .main__trending-wrapper_slider__cards .items button {
    width: 261px;
    height: 50px;
    font-size: 18px;
  }
  .main__trending-wrapper_slider__button {
    width: 50px;
    height: 50px;
    right: -13px;
    bottom: 235px;
  }
  .main__trending-wrapper_slider__button svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .main__trending {
    width: 768px;
    height: 670px;
    margin: 80px auto;
  }
  .main__trending-wrapper {
    margin: 0 22px;
  }
  .main__trending-wrapper_title {
    font-size: 36px;
  }
  .main__trending-wrapper_category {
    margin-top: 35px;
  }
  .main__trending-wrapper_category__earbuds, .main__trending-wrapper_category__wireless, .main__trending-wrapper_category__wired {
    font-size: 18px;
  }
  .main__trending-wrapper_category__earbuds.active, .main__trending-wrapper_category__wireless.active, .main__trending-wrapper_category__wired.active {
    width: 110px;
    height: 55px;
  }
  .main__trending-wrapper_slider {
    margin-top: 50px;
  }
  .main__trending-wrapper_slider__cards {
    width: 625px;
    gap: 65px;
  }
  .main__trending-wrapper_slider__cards .items {
    display: flex;
    flex: 0 50%;
  }
  .main__trending-wrapper_slider__cards .items .card {
    flex: 0 0 50%;
    width: 280px;
  }
  .main__trending-wrapper_slider__cards .items .card-save {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr {
    width: 250px;
    height: 140px;
    margin-top: 15px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_header {
    line-height: 25px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_rating__stars img {
    width: 13px;
  }
  .main__trending-wrapper_slider__cards .items button {
    width: 280px;
    height: 60px;
  }
  .main__trending-wrapper_slider__button {
    right: -50px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .main__trending {
    width: 576px;
    height: 575px;
    margin: 80px auto;
  }
  .main__trending-wrapper {
    padding: 0 20px;
    margin: 0 3px;
  }
  .main__trending-wrapper_title {
    font-size: 32px;
  }
  .main__trending-wrapper_category {
    margin-top: 25px;
  }
  .main__trending-wrapper_category__earbuds, .main__trending-wrapper_category__wireless, .main__trending-wrapper_category__wired {
    font-size: 16px;
    font-weight: 500;
  }
  .main__trending-wrapper_category__earbuds.active, .main__trending-wrapper_category__wireless.active, .main__trending-wrapper_category__wired.active {
    width: 100px;
    height: 50px;
  }
  .main__trending-wrapper_slider {
    margin-top: 30px;
    box-sizing: border-box;
  }
  .main__trending-wrapper_slider__cards {
    width: 510px;
    gap: 30px;
  }
  .main__trending-wrapper_slider__cards .items .card {
    width: 240px;
    height: 330px;
  }
  .main__trending-wrapper_slider__cards .items .card-save {
    font-size: 12px;
    padding: 10px;
  }
  .main__trending-wrapper_slider__cards .items .card-img {
    width: 130px;
    height: 130px;
  }
  .main__trending-wrapper_slider__cards .items .card-img img {
    width: 130px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr {
    width: 210px;
    height: 120px;
    margin-top: 10px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_header {
    font-size: 15px;
    line-height: 25px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_price {
    font-size: 18px;
  }
  .main__trending-wrapper_slider__cards .items button {
    width: 240px;
    height: 50px;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 500;
  }
  .main__trending-wrapper_slider__button {
    width: 30px;
    height: 30px;
    right: -30px;
    bottom: 210px;
  }
  .main__trending-wrapper_slider__button svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .main__trending {
    width: 320px;
    height: 534px;
    margin: 40px auto;
  }
  .main__trending-wrapper {
    margin: 0 5px;
  }
  .main__trending-wrapper_title {
    font-size: 26px;
    font-weight: 500;
  }
  .main__trending-wrapper_category {
    gap: 10px;
  }
  .main__trending-wrapper_category__earbuds, .main__trending-wrapper_category__wireless, .main__trending-wrapper_category__wired {
    font-size: 14px;
    font-weight: 400;
  }
  .main__trending-wrapper_category__earbuds.active, .main__trending-wrapper_category__wireless.active, .main__trending-wrapper_category__wired.active {
    width: 75px;
    height: 40px;
  }
  .main__trending-wrapper_slider__cards {
    width: 240px;
    gap: 35px;
  }
  .main__trending-wrapper_slider__cards .items {
    flex: 0 100%;
  }
  .main__trending-wrapper_slider__cards .items .card {
    flex: 0 0 100%;
  }
  .main__trending-wrapper_slider__cards .items .card-save {
    width: 50px;
    height: 50px;
    padding: 5px;
    font-size: 11px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_header {
    font-size: 15px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_rating__stars {
    width: 72px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_rating__stars img {
    width: 13px;
  }
  .main__trending-wrapper_slider__cards .items .card-descr_price {
    font-size: 16px;
  }
}
.main__new-launches_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 130px auto;
  min-height: 765px;
  width: 1440px;
}
.main__new-launches_wrapper__title {
  color: #2b2626;
  font-size: 44px;
  font-style: normal;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
}
.main__new-launches_wrapper__card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  background-color: #845EC2;
  max-width: 1440px;
}
.main__new-launches_wrapper__card-slider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 62px;
}
.main__new-launches_wrapper__card-slider_lbtn button, .main__new-launches_wrapper__card-slider_rbtn button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: #10b981;
}
.main__new-launches_wrapper__card-slider_lbtn button:hover, .main__new-launches_wrapper__card-slider_rbtn button:hover {
  background-color: #059669;
  transition: 0.3s ease 0.1s;
}
.main__new-launches_wrapper__card-slider_content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 83px;
  min-height: 466px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.main__new-launches_wrapper__card-slider_content.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transition: opacity 2s ease;
}
.main__new-launches_wrapper__card-slider_content__img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  width: 522px;
}
.main__new-launches_wrapper__card-slider_content__img .first, .main__new-launches_wrapper__card-slider_content__img .second {
  box-sizing: border-box;
  max-width: 238px;
}
.main__new-launches_wrapper__card-slider_content__img .first img, .main__new-launches_wrapper__card-slider_content__img .second img {
  position: relative;
  border-radius: 136px;
  max-width: 238px;
  height: 417px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__new-launches_wrapper__card-slider_content__img .first img {
  top: -20px;
}
.main__new-launches_wrapper__card-slider_content__img .second img {
  bottom: -20px;
}
.main__new-launches_wrapper__card-slider_content__descr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.main__new-launches_wrapper__card-slider_content__descr-header {
  color: #fff;
  font-size: 60px;
  text-align: left;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 29px;
  text-transform: none;
  white-space: nowrap;
}
.main__new-launches_wrapper__card-slider_content__descr-text {
  color: #fff;
  font-size: 21px;
  text-align: left;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 24px;
}
.main__new-launches_wrapper__card-slider_content__descr-text a {
  text-decoration: underline;
  text-transform: none;
}
.main__new-launches_wrapper__card-slider_content__descr-text a:hover {
  color: #fff;
}
.main__new-launches_wrapper__card-slider_content__descr-price {
  color: #fff;
  font-size: 31px;
  font-weight: 400;
  line-height: 35px;
  text-transform: none;
  margin-bottom: 50px;
}
.main__new-launches_wrapper__card-slider_content__descr-price span {
  margin-left: 20px;
  font-weight: 600;
  line-height: normal;
}
.main__new-launches_wrapper__card-slider_content__descr-colors {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 33px;
  margin-bottom: 50px;
}
.main__new-launches_wrapper__card-slider_content__descr-colors_item {
  height: 44px;
  width: 44px;
  background-color: #000;
  border-radius: 50%;
}
.main__new-launches_wrapper__card-slider_content__descr-colors_item.active {
  border: 3px dashed #FF0000;
}
.main__new-launches_wrapper__card-slider_content__descr-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 70px;
}
.main__new-launches_wrapper__card-slider_content__descr-btns .add, .main__new-launches_wrapper__card-slider_content__descr-btns .more {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  line-height: normal;
  width: 303px;
  height: 70px;
  display: block;
  max-width: 403px;
  background-color: #a07fd5;
  border-radius: 10px;
  transition: 0.3s ease 0.1s;
}
.main__new-launches_wrapper__card-slider_content__descr-btns .add:hover, .main__new-launches_wrapper__card-slider_content__descr-btns .more:hover {
  box-shadow: 0 25px 50px 0 rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background-color: #10b981;
}
.main__new-launches_wrapper__card-slider_content__descr-btns .add a, .main__new-launches_wrapper__card-slider_content__descr-btns .more a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .main__new-launches_wrapper {
    min-height: 566px;
    width: 992px;
    margin: 100px auto;
  }
  .main__new-launches_wrapper__card {
    max-width: 1199px;
    width: 100%;
    margin-top: 50px;
  }
  .main__new-launches_wrapper__card-slider {
    max-width: 992px;
    padding: 16px 32px;
  }
  .main__new-launches_wrapper__card-slider_content {
    gap: 40px;
    min-height: 430px;
  }
  .main__new-launches_wrapper__card-slider_content__img {
    gap: 30px;
    width: 330px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first, .main__new-launches_wrapper__card-slider_content__img .second {
    max-width: 150px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first img, .main__new-launches_wrapper__card-slider_content__img .second img {
    width: 150px;
    height: 263px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-header {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-price {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-colors {
    gap: 20px;
    margin-bottom: 30px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-colors_item {
    width: 30px;
    height: 30px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-btns .add, .main__new-launches_wrapper__card-slider_content__descr-btns .more {
    height: 50px;
    width: 210px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .main__new-launches_wrapper {
    margin: 80px auto;
    max-width: 768px;
    width: 768px;
    min-height: 896px;
  }
  .main__new-launches_wrapper__title {
    font-size: 36px;
  }
  .main__new-launches_wrapper__card {
    margin-top: 40px;
    max-width: 991px;
    width: 100%;
    min-height: 890px;
  }
  .main__new-launches_wrapper__card-slider {
    display: inline-block;
    position: absolute;
  }
  .main__new-launches_wrapper__card-slider_lbtn, .main__new-launches_wrapper__card-slider_rbtn {
    position: absolute;
    width: 65px;
    height: 65px;
  }
  .main__new-launches_wrapper__card-slider_lbtn button, .main__new-launches_wrapper__card-slider_rbtn button {
    width: 65px;
    height: 65px;
  }
  .main__new-launches_wrapper__card-slider_lbtn {
    top: 160px;
  }
  .main__new-launches_wrapper__card-slider_rbtn {
    top: 160px;
    right: 32px;
  }
  .main__new-launches_wrapper__card-slider_content {
    flex-direction: column;
    justify-content: space-between;
    min-height: 740px;
  }
  .main__new-launches_wrapper__card-slider_content__img {
    gap: 50px;
    width: 450px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first, .main__new-launches_wrapper__card-slider_content__img .second {
    max-width: 238px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first img, .main__new-launches_wrapper__card-slider_content__img .second img {
    width: 200px;
    top: 0;
    height: 349px;
  }
  .main__new-launches_wrapper__card-slider_content__descr {
    max-width: 740px;
    align-items: center;
  }
  .main__new-launches_wrapper__card-slider_content__descr-header {
    font-size: 28px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-colors_item {
    width: 35px;
    height: 35px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-btns {
    gap: 50px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-btns .add, .main__new-launches_wrapper__card-slider_content__descr-btns .more {
    width: 250px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .main__new-launches_wrapper {
    width: 576px;
    max-width: 767px;
  }
  .main__new-launches_wrapper__title {
    font-size: 32px;
  }
  .main__new-launches_wrapper__card {
    max-width: 767px;
    min-height: 740px;
  }
  .main__new-launches_wrapper__card-slider {
    max-width: 767px;
  }
  .main__new-launches_wrapper__card-slider_lbtn, .main__new-launches_wrapper__card-slider_rbtn {
    width: 48px;
    height: 48px;
    top: 150px;
  }
  .main__new-launches_wrapper__card-slider_lbtn button, .main__new-launches_wrapper__card-slider_rbtn button {
    width: 48px;
    height: 48px;
  }
  .main__new-launches_wrapper__card-slider_content {
    min-height: 685px;
    width: 530px;
  }
  .main__new-launches_wrapper__card-slider_content__img {
    gap: 30px;
    width: 380px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first img, .main__new-launches_wrapper__card-slider_content__img .second img {
    max-width: 175px;
    height: 306px;
  }
  .main__new-launches_wrapper__card-slider_content__descr {
    width: 530px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-header {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
  }
  .main__new-launches_wrapper__card-slider_content__descr-text {
    font-size: 15px;
    font-weight: 400;
  }
  .main__new-launches_wrapper__card-slider_content__descr-price {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-price span {
    font-weight: 500;
  }
  .main__new-launches_wrapper__card-slider_content__descr-colors {
    margin-bottom: 20px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-colors_item {
    width: 30px;
    height: 30px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-btns .add, .main__new-launches_wrapper__card-slider_content__descr-btns .more {
    width: 210px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .main__new-launches_wrapper {
    width: 320px;
    min-height: 640px;
    max-width: 575px;
    margin: 40px auto;
  }
  .main__new-launches_wrapper__title {
    font-size: 26px;
    font-weight: 500;
  }
  .main__new-launches_wrapper__card {
    margin-top: 20px;
    padding: 20px;
    min-height: 590px;
  }
  .main__new-launches_wrapper__card-slider {
    width: 280px;
    max-width: 575px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 0;
  }
  .main__new-launches_wrapper__card-slider_lbtn, .main__new-launches_wrapper__card-slider_rbtn {
    width: 30px;
    height: 30px;
    top: 66px;
  }
  .main__new-launches_wrapper__card-slider_lbtn button, .main__new-launches_wrapper__card-slider_rbtn button {
    width: 30px;
    height: 30px;
  }
  .main__new-launches_wrapper__card-slider_rbtn {
    right: 0;
  }
  .main__new-launches_wrapper__card-slider_content {
    width: 280px;
    max-width: 575px;
    min-height: 530px;
  }
  .main__new-launches_wrapper__card-slider_content__img {
    width: 200px;
    gap: 10px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first, .main__new-launches_wrapper__card-slider_content__img .second {
    max-width: 95px;
  }
  .main__new-launches_wrapper__card-slider_content__img .first img, .main__new-launches_wrapper__card-slider_content__img .second img {
    top: -20px;
    max-width: 95px;
    height: 166px;
  }
  .main__new-launches_wrapper__card-slider_content__img .second img {
    top: 20px;
  }
  .main__new-launches_wrapper__card-slider_content__descr {
    width: 280px;
    max-width: 575px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-header {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-text {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-price {
    font-size: 16px;
    line-height: 28px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-btns {
    height: 40px;
    gap: 20px;
  }
  .main__new-launches_wrapper__card-slider_content__descr-btns .add, .main__new-launches_wrapper__card-slider_content__descr-btns .more {
    width: 130px;
    height: 40px;
    font-size: 13px;
    font-weight: 500;
  }
}
.footer {
  margin: 0 auto;
  width: 1068px;
}
.footer__prev {
  position: relative;
  text-align: right;
}
.footer__prev-text {
  color: #111;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  font-family: "DM Sans", sans-serif;
  text-align: left;
}
.footer__prev-btn {
  width: 175px;
  height: 50px;
  box-sizing: border-box;
  align-items: center;
  text-align: center;
  background-color: #10b981;
  margin-left: 40px;
  color: #fff;
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.footer__prev-btn:hover {
  background-color: #059669;
}
.footer__list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 40px;
  width: 979px;
}
.footer__list-subscr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.footer__list-subscr_descr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: #111;
  font-size: 22px;
  line-height: 26px;
}
.footer__list-subscr_input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  margin-top: 30px;
  height: 50px;
}
.footer__list-subscr_input__mail {
  color: #111;
  font-size: 15px;
  margin-top: 0;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #979797;
  opacity: 50%;
  width: 289px;
  height: 50px;
  text-transform: none;
  padding-left: 10px;
}
.footer__list-subscr_input__btn {
  width: 50px;
  height: 50px;
  background-color: #10b981;
  margin: 20px 0 0 -50px;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}
.footer__list-subscr_input__btn:hover {
  background-color: #059669;
  transition: 0.3s ease 0.1s;
}
.footer__list-links {
  display: flex;
  flex-direction: row;
  gap: 170px;
}
.footer__list-links_services span, .footer__list-links_about span, .footer__list-links_help span {
  color: #10b981;
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.footer__list-links_services ul > li, .footer__list-links_about ul > li, .footer__list-links_help ul > li {
  color: #111;
  font-size: 15px;
  margin-top: 20px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.footer__list-links_services ul > li a, .footer__list-links_about ul > li a, .footer__list-links_help ul > li a {
  display: inline-block;
  color: #000;
  transition: 0.3s ease 0.1s;
}
.footer__list-links_services ul > li a:hover, .footer__list-links_about ul > li a:hover, .footer__list-links_help ul > li a:hover {
  transform: translateX(8px);
  text-decoration: underline;
  color: #10b981;
}
.footer__terms {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px auto 129px;
}
.footer__terms-wrapper {
  display: flex;
  flex-direction: row;
  gap: 39px;
}
.footer__terms-wrapper_conditions, .footer__terms-wrapper_privacy {
  color: #111;
  font-size: 15px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.footer__terms-wrapper_conditions a, .footer__terms-wrapper_privacy a {
  cursor: pointer;
  display: inline-block;
  transition: 0.3s ease 0.1s;
  color: #000;
}
.footer__terms-wrapper_conditions a:hover, .footer__terms-wrapper_privacy a:hover {
  transform: translateY(-8px);
  text-decoration: underline;
  color: #10b981;
}
.footer__terms-social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer__terms-social a:hover svg > path, .footer__terms-social a:hover svg > circle {
  transform: rotate(360deg);
  transition: 0.7s ease;
  fill: #10b981;
}

@media (max-width: 1200px) {
  .footer {
    padding: 16px 32px;
    width: 992px;
  }
  .footer__prev-text {
    font-size: 18px;
  }
  .footer__prev-btn {
    font-size: 14px;
  }
  .footer__list {
    width: auto;
  }
  .footer__list-subscr_descr {
    font-size: 22px;
  }
  .footer__list-subscr_input__mail {
    width: 250px;
  }
  .footer__list-links {
    gap: 130px;
  }
  .footer__terms-wrapper {
    gap: 30px;
  }
  .footer__terms-wrapper_conditions {
    font-size: 14px;
  }
  .footer__terms-social {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .footer {
    max-width: 768px;
  }
  .footer__prev {
    margin: 0 auto;
    text-align: center;
  }
  .footer__prev-text {
    font-size: 16px;
  }
  .footer__prev-btn {
    font-weight: 500;
  }
  .footer__list {
    flex-direction: column;
  }
  .footer__list-subscr {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    gap: 50px;
  }
  .footer__list-subscr_descr {
    flex-direction: row;
    gap: 8px;
    font-size: 18px;
  }
  .footer__list-subscr_input {
    margin: 0;
  }
  .footer__list-subscr_input__mail {
    border: 1px solid #979797;
    padding-left: 10px;
  }
  .footer__list-subscr_input__btn {
    border-radius: 0;
  }
  .footer__list-links {
    margin: 40px auto 0;
    gap: 170px;
  }
  .footer__list-links_services span, .footer__list-links_about span, .footer__list-links_help span {
    font-size: 15px;
  }
  .footer__list-links_services ul > li, .footer__list-links_about ul > li, .footer__list-links_help ul > li {
    font-size: 14px;
  }
  .footer__terms {
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .footer {
    max-width: 576px;
  }
  .footer__prev {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .footer__prev_text {
    font-weight: 500;
  }
  .footer__list-subscr {
    gap: 40px;
  }
  .footer__list-subscr_descr {
    font-size: 15px;
    font-weight: 500;
  }
  .footer__list-links {
    gap: 120px;
  }
  .footer__terms {
    justify-content: space-between;
    gap: 100px;
    margin: 60px 14px 100px 14px;
  }
}
@media (max-width: 575px) {
  .footer {
    max-width: 320px;
    padding: 16px 12px;
  }
  .footer__prev-text {
    font-size: 15px;
  }
  .footer__prev-btn {
    height: 43px;
  }
  .footer__list-subscr {
    justify-content: center;
    gap: 10px;
  }
  .footer__list-subscr_input__mail {
    height: 43px;
  }
  .footer__list-subscr_input__btn {
    width: 43px;
    height: 43px;
    margin: 20px 0 0 -43px;
  }
  .footer__list-links {
    gap: 50px;
  }
  .footer__list-links_services ul > li > a, .footer__list-links_about ul > li > a, .footer__list-links_help ul > li > a {
    line-height: 17px;
  }
  .footer__terms {
    margin: 60px 0 100px 0;
    gap: 30px;
  }
  .footer__terms-wrapper_conditions a, .footer__terms-wrapper_privacy a {
    line-height: 17px;
  }
}
.header {
  text-align: center;
}
.header__logo {
  text-align: center;
  font-size: 28.8px;
  font-weight: 600;
  font-style: italic;
}
.header__logo-404 {
  color: #10b981;
  font-size: 70px;
  font-weight: 600;
  font-style: italic;
}
.header__logo-4041 {
  color: #000;
  font-size: 70px;
  font-weight: 600;
  font-style: italic;
}

.main__404 {
  display: block;
  margin: 30px auto;
}
.main__section404 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__button-404 {
  text-align: center;
  width: 100%;
  height: auto;
  margin: 50px 0 100px 0;
  display: block;
  max-width: 263px;
  height: 70px;
  box-shadow: 0 25px 50px 0 rgba(132, 94, 194, 0.15);
  border-radius: 10px 10px 10px 10px;
  background-color: #10b981;
  color: #fff;
  font-size: 28 px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.3s ease;
}
.main__button-404:hover {
  background-color: #059669;
}

.main__information-wrapper {
  display: flex;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .main__information-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.information-cont {
  min-width: 405px;
}

.information {
  max-width: 400px;
  padding: 20px;
  background: #10b981;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media (max-width: 480px) {
  .information__form {
    padding: 10px;
  }
}
.information__label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
}
.information__contact {
  display: block;
  margin-bottom: 5px;
  margin: 0 0 50px 0;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
}
.information__input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.information__input:focus {
  border-color: #10b981;
  outline: none;
}
.information__button {
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background: #b32626;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.information__button:hover {
  background: #f32929;
}

.delivery-payment {
  max-width: 400px;
  margin: 20px 0 0 0;
  padding: 20px;
  background-color: #10b981;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}
.delivery-payment__title {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}
.delivery-payment__label {
  display: block;
  margin-bottom: 8px;
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
}
.delivery-payment__select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
.delivery-payment__select:focus {
  border-color: #0078d7;
  outline: none;
}

/* Адаптив */
@media (max-width: 480px) {
  .information {
    max-width: 100%;
    padding: 15px;
    margin-top: 30px;
  }
  .information__input, .information__button {
    font-size: 14px;
  }
}
.cart-item {
  background: #10b981;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-family: "Segoe UI", sans-serif;
  max-height: 200px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.cart-item__product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}
.cart-item__image {
  width: 80px;
  height: auto;
}
.cart-item__info {
  flex-grow: 1;
}
.cart-item__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cart-item__services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-item__service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.cart-item__service input {
  margin-right: 8px;
}
.cart-item__price {
  font-weight: 500;
  color: #ccc;
}
.cart-item__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.cart-item__current-price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.cart-item__old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #777;
}
.cart-item__remove {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.cart-item__remove:hover {
  color: #ff4d4d;
}
.cart-item__total {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}
.cart-item__total-price {
  color: #fff;
}

.cart-total {
  background: #10b981;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-family: "Segoe UI", sans-serif;
  max-height: 200px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

body {
  font-family: "Montserrat", sans-serif;
}

[class*=__container] {
  max-width: 1440px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}