@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.button {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* Remove default margins */
* {
  margin: 0;
}

/* Body */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Images */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

/* Buttons */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  position: sticky;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}
header .header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header__top .header__media {
  display: flex;
  gap: 20px;
}
header .header__top .header__logo {
  height: 37px;
}
header .header__top .account-icon {
  background: transparent;
  border: none;
  cursor: pointer;
}
header .header__top .account-icon img {
  width: 21px;
  height: 21px;
}
header .header__top .header__acount {
  display: flex;
  gap: 20px;
}
header .header__top .header__acount img {
  width: 21px;
  height: 21px;
}
header hr {
  width: 90%;
  margin: 20px auto;
  border: 1px solid #858585;
}
header nav {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}
header nav .menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header nav .menu__list .menu__item {
  list-style-type: none;
  margin-top: 20px;
}
header nav .menu__list .menu__item a {
  text-decoration: none;
  color: #000000;
}
header nav .menu__list .menu__item a:hover {
  color: #B92770;
}
header nav .menu__list .menu__item a:active {
  color: #B92770;
}
header .cart-icon {
  position: relative;
}
header .cart-counter {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background-color: #b92770;
  color: #fff;
  font-size: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

footer {
  padding: 20px 0;
  color: #000000;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
footer .footer__benefits {
  padding: 20px 0;
  background-color: #504E4A;
  color: #fff;
}
footer .footer__benefits .container {
  display: flex;
  flex-direction: column;
}
footer .footer__benefits .container ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
footer .footer__benefits .container ul li {
  list-style-type: none;
  display: flex;
  gap: 10px;
  width: 20%;
  font-size: 15px;
}
footer .footer__benefits .container ul li::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer__benefits .container ul li:nth-child(1)::before {
  background-image: url("../img/icons/benefit-1.svg");
}
footer .footer__benefits .container ul li:nth-child(2)::before {
  background-image: url("../img/icons/benefit-2.svg");
}
footer .footer__benefits .container ul li:nth-child(3)::before {
  background-image: url("../img/icons/benefit-3.svg");
}
footer .footer__benefits .container ul li:nth-child(4)::before {
  background-image: url("../img/icons/benefit-4.svg");
}
footer .footer__contacts {
  padding: 20px 0;
  font-size: 15px;
}
footer .footer__contacts .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
footer .footer__contacts .container ul {
  padding: 0;
}
footer .footer__contacts .container .about {
  grid-column: 1/2;
}
footer .footer__contacts .container .links {
  grid-column: 2/3;
}
footer .footer__contacts .container .achievements {
  grid-column: 3/4;
}
footer .footer__contacts .container .shipping {
  grid-column: 1/4;
  grid-row: 2/3;
}
footer .footer__contacts .container .contact-us {
  grid-column: 5/7;
}
footer .footer__contacts .container li {
  list-style-type: none;
  margin-bottom: 5px;
}
footer .footer__contacts .container li:first-child {
  margin-bottom: 15px;
}
footer .footer__contacts .container .contacts {
  padding: 0;
  grid-column: 5/7;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
footer .footer__contacts .container .contacts li {
  display: flex;
  align-items: center;
}
footer .footer__contacts .container .contacts li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
footer .footer__contacts .container .contacts li:nth-child(1)::before {
  background-image: url("../img/icons/phone.svg");
}
footer .footer__contacts .container .contacts li:nth-child(2)::before {
  background-image: url("../img/icons/mail.svg");
}
footer .footer__contacts .container .contacts li:nth-child(3)::before {
  background-image: url("../img/icons/clock.svg");
}
footer .footer__contacts .container .contacts li:nth-child(4)::before {
  background-image: url("../img/icons/map-pin.svg");
}
footer .footer__contacts .container .contacts__heading {
  font-weight: bold;
  margin-bottom: 10px;
}
footer .footer__contacts .container .contacts__heading a {
  text-decoration: none;
  color: #000000;
}
footer .footer__copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #858585;
}
@media (max-width: 1024px) {
  footer .footer__benefits .container {
    align-items: center;
  }
  footer .footer__contacts .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  footer .footer__contacts .container .about {
    grid-column: 1/2;
  }
  footer .footer__contacts .container .links {
    grid-column: 2/3;
  }
  footer .footer__contacts .container .achievements {
    grid-column: 3/4;
  }
  footer .footer__contacts .container .shipping {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  footer .footer__contacts .container .contact-us {
    grid-column: 1/4;
    grid-row: 3/4;
  }
  footer .footer__contacts .container .contacts {
    grid-column: 1/4;
    grid-row: 4/5;
    grid-template-columns: repeat(4, 1fr);
  }
  footer .footer__contacts .container .contacts li {
    flex-direction: column;
    justify-content: flex-start;
  }
  footer .footer__contacts .container .contacts li::before {
    margin-bottom: 10px;
  }
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.login-modal--active {
  display: flex;
}
.login-modal__content {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  background: #fff;
}
.login-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.login-modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-modal__password {
  display: flex;
}
.login-modal__password input {
  flex: 1;
}
.login-modal__error {
  color: #b92770;
  font-size: 14px;
  min-height: 18px;
}

.section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
}
.section__heading .section__title {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0px;
}
.section__heading .section__description {
  font-size: 17px;
  font-weight: normal;
  color: #504E4A;
  margin-top: 5px;
}

.testimonials {
  padding: 50px 0;
  margin-bottom: 50px;
}
.testimonials .testimonials__list {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.testimonials .testimonials__list .testimonial {
  width: 30%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 20px 80px #dadde3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonials .testimonials__list .testimonial p {
  font-size: 17px;
  font-weight: 400;
}
.testimonials .testimonials__list .testimonial span {
  font-size: 17px;
  font-weight: 700;
  color: #B92770;
}

.banner {
  margin-bottom: 100px;
}
.banner .container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  height: 400px;
  padding: 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/homepage/banner.png") no-repeat center;
  background-size: cover;
}
.banner .container .banner__offer .banner__discount {
  font-size: 223px;
  font-weight: bold;
  line-height: 90%;
  margin: 0;
  color: #fff;
}
.banner .container .text {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.banner .container h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
}
.banner .container button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.products {
  margin-bottom: 100px;
}
.products .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products .container .products__list {
  display: flex;
  justify-content: space-between;
}
.products .container .products__list .product {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}
.products .container .products__list .product img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.products .container .products__list .product h3 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}
.products .container .products__list .product span {
  font-size: 19px;
  font-weight: bold;
  color: #504E4A;
}
.products .container .products__list .product button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 17px;
}

.products__items .item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.products__items .item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.suitcases {
  margin-bottom: 100px;
}
.suitcases .products__items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.suitcases .products__items .item__heading {
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.suitcases .products__items .text {
  font-size: 19px;
  color: #fff;
}
.suitcases .products__items .item {
  position: relative;
  overflow: hidden;
  height: 470px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.suitcases .products__items .item::before, .suitcases .products__items .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.suitcases .products__items .item::before {
  background-image: var(--bg-current);
  opacity: 1;
}
.suitcases .products__items .item::after {
  background-image: var(--bg-next);
  opacity: 0;
}
.suitcases .products__items .item.item--fade::after {
  opacity: 1;
}
.suitcases .products__items .item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.suitcases .products__items .item > * {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero .hero__banner {
  height: 100vh;
  background-color: #e7e8e9;
}
.hero .hero__banner .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero .hero__banner .container h1 {
  font-size: 50px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}
.hero .hero__banner .container .text {
  font-size: 17px;
  color: #504E4A;
}
.hero .hero__banner .container .button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}
.hero .hero__welcoming {
  transform: translateY(-70px);
  display: flex;
  background-color: #fff;
  box-shadow: 0px 20px 80px #cacccf;
}
.hero .hero__welcoming .welcoming__card {
  padding: 50px;
  width: 50%;
}
.hero .hero__welcoming .welcoming__card .welcoming__card-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero .hero__welcoming .welcoming__card .welcoming__card-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.hero .hero__welcoming .welcoming__card h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0 30px;
}
.hero .hero__welcoming .welcoming__card-discount {
  width: 50%;
  padding: 100px 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/homepage/suitcases-main-banner.png") no-repeat center;
}
.hero .hero__welcoming .welcoming__card-discount .text {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.hero .hero__welcoming .welcoming__card-discount button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}
.hero .hero__welcoming .welcoming__card-discount h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  .hero .suitcases .products__items {
    flex-direction: column;
    align-items: center;
  }
  .hero .suitcases .products__items .item {
    width: 50%;
  }
}

.hero-banner {
  padding: 50px 50px;
}
.hero-banner .section__heading .section__title {
  color: #fff;
}
.hero-banner .section__heading .section__description {
  color: #fff;
}
.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/about/banner-image.jpg") no-repeat center;
  background-size: cover;
}

.advantages {
  margin: 100px 0;
}
.advantages .container .advantages__list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.advantages .container .advantages__list .advantages__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.advantages .container .advantages__list .advantages__item .title {
  margin-bottom: 0;
}
.advantages .container .advantages__list .advantages__item::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: 40px;
  background-repeat: no-repeat;
  background-color: #B92770;
  background-position: center;
}
.advantages .container .advantages__list .advantages__item:nth-child(1)::before {
  background-image: url("../img/about/accuracy.svg");
}
.advantages .container .advantages__list .advantages__item:nth-child(2)::before {
  background-image: url("../img/about/awards.svg");
}
.advantages .container .advantages__list .advantages__item:nth-child(3)::before {
  background-image: url("../img/about/ecological.svg");
}
.advantages .container .advantages__list .advantages__item:nth-child(4)::before {
  background-image: url("../img/about/worldwide.svg");
}

.promo {
  margin: 120px 0;
}
.promo .container {
  display: flex;
  flex-direction: row;
  padding: 0;
}
.promo .container .promo__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.promo .container .promo__content h3 {
  font-size: 40px;
  margin: 0 0 30px 0;
}
.promo .container .promo__content .text {
  font-size: 17px;
  margin: 0;
}
.promo .container .promo__content .button {
  margin: 20px 0 0 0;
}

.team {
  margin-bottom: 100px;
}
.team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team .container .section__title {
  font-size: 40px;
  margin-bottom: 5px;
}
.team .container .team-list {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 20px 0 0 0;
}
.team .container .team-list .team-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  width: 30%;
}
.team .container .team-list .team-list__item img {
  width: 100%;
  height: auto;
}
.team .container .team-list .team-list__item .full-name {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0;
}
.team .container .team-list .team-list__item .position {
  font-size: 17px;
  color: #000000;
}

@media (max-width: 768px) {
  .advantages .container .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo .container {
    flex-direction: column;
    align-items: center;
  }
  .promo .container .promo__content {
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  .team .container .team-list {
    flex-direction: column;
    align-items: center;
  }
  .team .container .team-list .team-list__item {
    width: 100%;
  }
}
main .container {
  display: flex;
  flex-direction: column;
}
main .filters {
  margin-bottom: 40px;
}
main .filters__title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #ccc;
}
main .filters__box {
  border-top: 2px solid #B92770;
  border-bottom: 2px solid #B92770;
  padding: 20px 0;
}
main .filters__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
main .filters__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}
main .filters__group label {
  font-size: 14px;
  color: #666;
}
main .filters__group select {
  height: 38px;
  padding: 0 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
main .filters__group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
main .filters__actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
main .filters__btn {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  font-size: 13px;
  padding: 10px 18px;
}
main .filters--hidden .filters__box, main .filters--hidden .filters__actions, main .filters__box--hidden {
  display: none;
}
main .navigation {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #504E4A;
}
main .navigation .pagination-message {
  margin: 0;
  flex-shrink: 0;
}
main .navigation__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
main .navigation .sorting-menu select {
  min-width: 180px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  font-size: 15px;
  color: #504E4A;
  outline: none;
  cursor: pointer;
}
main .navigation .searching input {
  width: 240px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  font-size: 15px;
  color: #504E4A;
  outline: none;
}
main .navigation .searching input::placeholder {
  color: #504E4A;
}
main .navigation .product-popup {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  padding: 16px 24px;
  background-color: #b92770;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
main .catalog-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
main .products__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 35px 20px;
}
main .product {
  width: calc((100% - 40px) / 3);
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(231, 233, 236, 0.9);
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
main .product img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
main .product h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  max-width: 85%;
}
main .product span {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #B92770;
}
main .product button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  margin: 0;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1;
}
main aside {
  width: 260px;
  flex-shrink: 0;
}
main .sidebar__heading {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}
main .sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
main .sidebar__item {
  margin-bottom: 18px;
}
main .sidebar__item:last-child {
  margin-bottom: 0;
}
main .sidebar__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
main .sidebar__image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}
main .sidebar__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main .category-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #504E4A;
}
main .rating {
  font-size: 14px;
  line-height: 1;
  color: #f4b400;
}
main .price {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}
main .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
main .pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
main .pagination__item, main .pagination__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}
main .pagination__item {
  width: 34px;
  height: 34px;
  color: #222;
  background-color: transparent;
}
main .pagination__item--active {
  background-color: #B92770;
  color: #fff;
  border-radius: 4px;
}
main .pagination__next {
  margin-left: 40px;
  min-width: 78px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #B92770;
  border-radius: 4px;
  color: #222;
  gap: 8px;
}

@media (max-width: 1024px) {
  main .catalog-content {
    gap: 20px;
  }
  main aside {
    width: 220px;
  }
  main .products__list {
    gap: 25px 15px;
  }
  main .product {
    width: calc((100% - 15px) / 2);
  }
  main .navigation .searching input {
    width: 200px;
  }
  main .filters__row {
    gap: 15px;
  }
  main .filters__group {
    min-width: 150px;
  }
}
@media (max-width: 768px) {
  main {
    /* 🔹 filters */
  }
  main .filters__row {
    flex-direction: column;
    align-items: stretch;
  }
  main .filters__group {
    width: 100%;
  }
  main .filters__actions {
    flex-direction: column;
  }
  main .filters__actions button {
    width: 100%;
  }
  main {
    /* 🔹 navigation */
  }
  main .navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  main .navigation__controls {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  main .navigation .searching input,
  main .navigation .sorting-menu select {
    width: 100%;
  }
  main {
    /* 🔹 layout */
  }
  main .catalog-content {
    flex-direction: column;
  }
  main aside {
    width: 100%;
    order: 2;
  }
  main .products__list {
    width: 100%;
  }
  main {
    /* 🔹 products */
  }
  main .product {
    width: calc((100% - 15px) / 2);
  }
}
.hero-banner {
  padding: 50px 50px;
}
.hero-banner .section__heading .section__title {
  color: #fff;
}
.hero-banner .section__heading .section__description {
  color: #fff;
}
.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/contacts/banner-image.jpg") no-repeat center;
  background-size: cover;
}

.info {
  margin: 100px 0;
}
.info .container .contacts-list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.info .container .contacts-list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.info .container .contacts-list li .title {
  margin-bottom: 0;
}
.info .container .contacts-list li::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: 40px;
  background-repeat: no-repeat;
  background-color: #B92770;
  background-position: center;
}
.info .container .contacts-list li:nth-child(1)::before {
  background-image: url("../img/contacts/location.svg");
}
.info .container .contacts-list li:nth-child(2)::before {
  background-image: url("../img/contacts/clock.svg");
}
.info .container .contacts-list li:nth-child(3)::before {
  background-image: url("../img/contacts/email.svg");
}
.info .container .contacts-list li:nth-child(4)::before {
  background-image: url("../img/contacts/call.svg");
}

.contact-form .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}
.contact-form .container img {
  width: 500px;
}
.contact-form .container .contact-form__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  margin: 0;
}
.contact-form .container .contact-form__form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-form .container .contact-form__form .form-group label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.contact-form .container .contact-form__form .form-group input, .contact-form .container .contact-form__form .form-group textarea {
  height: 44px;
  margin-bottom: 0;
}
.contact-form .container .contact-form__form .form-group #message {
  height: 120px;
  margin-bottom: 10px;
}
.contact-form .container .contact-form__form .form-group .error-message {
  font-size: 14px;
  color: red;
  margin: 10px 0;
}
.contact-form .container .contact-form__form .form-message {
  font-size: 16px;
  color: green;
}
.contact-form .container .contact-form__form .title {
  font-size: 25px;
  margin: 0 0 20px 0;
}
.contact-form .container .contact-form__form .description {
  font-size: 17px;
  margin: 0 0 50px 0;
}
.contact-form .container .contact-form__form label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.contact-form .container .contact-form__form input, .contact-form .container .contact-form__form textarea {
  height: 44px;
  margin-bottom: 20px;
}
.contact-form .container .contact-form__form #message {
  height: 120px;
  margin-bottom: 10px;
}
.contact-form .container .contact-form__form button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #B92770;
  border: none;
  padding: 18px 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  width: 90px;
}

@media (max-width: 768px) {
  .info .container .contacts-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form .container {
    flex-direction: column;
    gap: 20px;
  }
  .contact-form .container img {
    width: 100%;
  }
}
.hero-banner--cart {
  padding: 50px 50px;
}
.hero-banner--cart .section__heading .section__title {
  color: #fff;
}
.hero-banner--cart .section__heading .section__description {
  color: #fff;
}
.hero-banner--cart {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cart/banner-image.jpg") no-repeat center;
  background-size: cover;
}

.cart {
  padding: 60px 0;
}
.cart__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cart__table {
  display: flex;
  flex-direction: column;
}
.cart__header {
  display: grid;
  grid-template-columns: 120px 2fr 1fr 1fr 1fr 80px;
  align-items: center;
  background-color: #504E4A;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 24px;
}
.cart__item {
  display: grid;
  grid-template-columns: 120px 2fr 1fr 1fr 1fr 80px;
  align-items: center;
  padding: 25px 24px;
  border-bottom: 1px solid #d61b72;
  color: #111;
}
.cart__col--image img {
  width: 70px;
  height: auto;
  display: block;
}
.cart__col--name, .cart__col--price, .cart__col--total {
  font-size: 16px;
  font-weight: 600;
}
.cart__col--quantity {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart__col--delete {
  display: flex;
  justify-content: center;
}
.cart__quantity-btn {
  border: none;
  background: transparent;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #111;
  line-height: 1;
}
.cart__quantity-value {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}
.cart__delete-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.cart__delete-btn svg {
  width: 18px;
  height: 20px;
  display: block;
  color: #B92770;
}
.cart__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.cart__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cart__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background-color: #d61b72;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.cart__summary {
  background-color: #55514d;
  padding: 30px 25px;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #d61b72;
}
.cart__summary-row--total {
  border-bottom: none;
  padding-bottom: 0;
}
.cart__summary-label, .cart__summary-value {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.cart__checkout-btn {
  margin-top: 10px;
  padding: 14px 20px;
  background-color: #d61b72;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 140px;
}

@media (max-width: 1024px) {
  .cart__header, .cart__item {
    grid-template-columns: 80px 2fr 1fr 1fr 1fr 60px;
    padding: 15px;
  }
  .cart__col--image img {
    width: 60px;
  }
  .cart__bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .cart__summary {
    width: 100%;
  }
  .cart__actions {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .cart__header {
    display: none;
  }
  .cart__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
  }
  .cart__col {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart__col--image {
    justify-content: center;
  }
  .cart__col--image img {
    width: 80px;
  }
  .cart__col--name {
    font-size: 18px;
    font-weight: 700;
  }
  .cart__col--price::before {
    content: "Price:";
    font-weight: 500;
  }
  .cart__col--quantity::before {
    content: "Qty:";
    font-weight: 500;
  }
  .cart__col--total::before {
    content: "Total:";
    font-weight: 500;
  }
  .cart__col--delete {
    justify-content: flex-end;
  }
  .cart__bottom {
    flex-direction: column;
    gap: 20px;
  }
  .cart__actions {
    flex-direction: column;
    gap: 10px;
  }
  .cart__actions .cart__button {
    width: 100%;
  }
  .cart__summary {
    width: 100%;
  }
  .cart__checkout-btn {
    width: 100%;
  }
}
.product-hero {
  padding: 60px 0;
}
.product-hero__wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.product-hero__gallery {
  width: 48%;
}
.product-hero__main-image {
  background-color: #f1f2f4;
  padding: 20px;
  margin-bottom: 16px;
}
.product-hero__main-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.product-hero__thumbnails {
  display: flex;
  gap: 12px;
}
.product-hero__thumb {
  width: 100px;
  height: 100px;
  background-color: #f1f2f4;
  padding: 6px;
  cursor: pointer;
}
.product-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero__info {
  width: 52%;
}
.product-hero__title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  max-width: 500px;
}
.product-hero__rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.product-hero__stars {
  color: #f4b400;
  font-size: 18px;
  letter-spacing: 2px;
}
.product-hero__reviews {
  font-size: 14px;
  color: #888;
}
.product-hero__price {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}
.product-hero__description {
  margin-bottom: 30px;
}
.product-hero__description p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}
.product-hero__options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.product-hero__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-hero__field label {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.product-hero__field select {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  padding: 0 16px;
  background-color: #fff;
  color: #888;
  font-size: 14px;
  outline: none;
}
.product-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}
.product-hero__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #cfcfcf;
  height: 50px;
}
.product-hero__quantity input {
  width: 50px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  outline: none;
  background-color: #fff;
}
.product-hero__quantity input::-webkit-outer-spin-button,
.product-hero__quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-hero__qty-btn {
  width: 40px;
  height: 100%;
  border: none;
  background-color: #fff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
}
.product-hero__cart-btn {
  flex: 1;
  height: 50px;
  border: none;
  background-color: #c2277a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.product-hero__cart-btn:hover {
  opacity: 0.9;
}
.product-hero__payment {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.product-hero__payment-title {
  font-size: 16px;
  font-weight: 700;
  color: #444;
}
.product-hero__payment-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product-hero__payment-list span {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

.product-tabs {
  padding: 70px 0;
}
.product-tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}
.product-tabs__tab {
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  padding: 0 0 8px 0;
  position: relative;
}
.product-tabs__tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #d63384;
}
.product-tabs__pane {
  display: none;
}
.product-tabs__pane--active {
  display: block;
}
.product-tabs__text {
  max-width: 100%;
  margin: 0 auto;
}
.product-tabs__text p {
  font-size: 16px;
  line-height: 1.9;
  color: #7a7a7a;
  margin-bottom: 24px;
}
.product-tabs__reviews {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}
.product-tabs__reviews-list, .product-tabs__review-form-block {
  width: 48%;
}
.product-tabs__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.product-tabs__note {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  margin-bottom: 20px;
}

.review-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.review-card__avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.review-card__body {
  flex: 1;
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.review-card__author-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review-card__author {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.review-card__date {
  font-size: 14px;
  color: #9a9a9a;
}
.review-card__rating {
  font-size: 18px;
  color: #f4b400;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 430px;
}

.review-form__rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.review-form__label {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.review-form__stars {
  font-size: 18px;
  color: #f4b400;
  letter-spacing: 2px;
}
.review-form__textarea {
  width: 100%;
  min-height: 170px;
  border: 1px solid #e58ab4;
  background-color: transparent;
  padding: 16px;
  resize: none;
  outline: none;
  margin-bottom: 18px;
  font-size: 14px;
}
.review-form__row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.review-form__input {
  width: 100%;
  height: 46px;
  border: 1px solid #e58ab4;
  background-color: transparent;
  padding: 0 14px;
  outline: none;
  font-size: 14px;
}
.review-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.6;
  color: #8a8a8a;
  cursor: pointer;
}
.review-form__checkbox input {
  margin-top: 3px;
}
.review-form__submit {
  min-width: 110px;
  height: 46px;
  border: none;
  background-color: #c2277a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 24px;
  transition: 0.3s ease;
}
.review-form__submit:hover {
  opacity: 0.9;
}

.section__heading .section__title {
  font-size: 30px;
}
.section__heading hr {
  margin: 20px auto 0;
  width: 90%;
  border: 1px solid #B92770;
}

@media (max-width: 1024px) {
  .product-hero {
    padding: 40px 0;
  }
  .product-hero__wrapper {
    gap: 24px;
  }
  .product-hero__title {
    font-size: 32px;
  }
  .product-hero__gallery, .product-hero__info {
    width: 50%;
  }
  .product-hero__thumb {
    width: 80px;
    height: 80px;
  }
  .product-tabs {
    padding: 50px 0;
  }
  .product-tabs__nav {
    gap: 40px;
    margin-bottom: 35px;
  }
  .product-tabs__reviews {
    gap: 30px;
  }
  .product-tabs__subtitle {
    font-size: 22px;
  }
  .review-card__top {
    align-items: flex-start;
    flex-direction: column;
  }
  .review-card__text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .product-hero__wrapper {
    flex-direction: column;
  }
  .product-hero__gallery, .product-hero__info {
    width: 100%;
  }
  .product-hero__title {
    font-size: 28px;
    max-width: 100%;
  }
  .product-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-hero__cart-btn {
    width: 100%;
  }
  .product-hero__quantity {
    width: fit-content;
  }
  .product-hero__thumbnails {
    flex-wrap: wrap;
  }
  .product-hero__thumb {
    width: calc(25% - 9px);
    height: auto;
    aspect-ratio: 1/1;
  }
  .product-tabs {
    padding: 40px 0;
  }
  .product-tabs__nav {
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .product-tabs__reviews {
    flex-direction: column;
  }
  .product-tabs__reviews-list, .product-tabs__review-form-block {
    width: 100%;
  }
  .product-tabs__subtitle {
    font-size: 20px;
  }
  .product-tabs__text p {
    font-size: 15px;
  }
  .review-form__row {
    flex-direction: column;
  }
  .review-card {
    flex-direction: column;
  }
  .review-card__avatar {
    width: 50px;
    height: 50px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}

@media (max-width: 1024px) {
  .container {
    width: 900px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

/*# sourceMappingURL=main.css.map */
