@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.header {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
}

.header__welcome {
  font-size: 10px;
  padding-block: 10px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.void {
  width: 50px;
}

.header__title {
  font-size: 16px;
}

.header__icons {
  display: flex;
  gap: 20px;
}

.main__product {
  font-family: "Inter", sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main__product-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.main__product-slider {
  padding: 5px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  position: absolute;
  bottom: 0;
  margin-bottom: 22px;
  border-radius: 32px;
  text-align: center;
  font-size: 12px;
  width: 51px;
  max-width: 51px;
}

.slash {
  color: rgba(255, 255, 255, 0.4);
}

.slider {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider__track {
  display: flex;
}

.product__info {
  margin-top: 20px;
  margin-inline: 16px;
  font-family: "Inter", sans-serif;
}

.product__info-title {
  font-size: 24px;
}

.valuation {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.valuation__count {
  font-size: 16px;
}

.benefit {
  display: flex;
  flex-direction: column;
  max-width: 152px;
  margin-top: 12px;
}

.benefit__text {
  font-size: 13px;
  background-color: #008000;
  padding: 4px 8px;
  color: #fff;
  border-radius: 4px;
}

.benefit__triangle {
  width: 18px;
  height: 9px;
  margin-top: -2px;
  margin-left: 30px;
}

.price {
  display: flex;
  gap: 5px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  margin-top: -4px;
}

.price__old {
  opacity: 40%;
  text-decoration: line-through;
}

.variant {
  margin-top: 24px;
}

.variant__title {
  font-size: 14px;
  font-weight: 400;
}

.variant__buttons {
  margin-top: 12px;
  gap: 12px;
  display: flex;
  justify-content: space-between;
}

.variant__buttons-btn {
  padding-block: 15px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  cursor: pointer;
  max-height: 47px;
}

.btn-active {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  font-size: 14px;
  color: #000;
}

.btn-inactive {
  background-color: #000;
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  border: none;
}

.cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #000;
  border: none;
  border-radius: 14px;
  color: #fff;
  padding-block: 16px;
  width: 100%;
  margin-top: 24px;
  max-height: 52px;
}

.advantage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 24px;
}

.advantage__delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantage__return {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantage__guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.description__text {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 8px;
}

.FAQ {
  font-family: "Arial", sans-serif;
  margin-top: 74px;
  margin-inline: 16px;
}

.FAQ__title {
  margin-bottom: 32px;
}

.accordion a {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-block: 20px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #e5e5e5;
}
.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
}
.accordion a:hover::after {
  border: 1px solid #636363;
}

.accordion .content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease 0.15s;
}
.accordion .content p {
  font-size: 1rem;
  font-weight: 300;
}
.accordion .content.active {
  opacity: 1;
  padding-block: 10px;
  max-height: 100%;
  transition: all 0.35s ease 0.15s;

}

.reviews {
  margin-top: 60px;
  margin-inline: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 50px;
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews__header-valuation {
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews__header-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  font-size: 16px;
}

.reviews__header-settings {
  padding: 8px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.custom__review {
  padding-block: 8px;
  width: 100%;
  background: none;
  border: none;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  margin-top: 8px;
  font-size: 16px;
  margin-bottom: 20px;
}

.reviews__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.column_1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.column_2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column_3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.column_4 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -9px;
}

.card {
  border-radius: 2px;
  width: 165px;
  height: fit-content;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

.card__info {
  padding: 15px;
}

.card__img {
  border-radius: 2px;
  width: 165px;
}

.card__nickname {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  margin-bottom: 4px;
}

.card__date {
  font-size: 10px;
  color: #73777b;
}

.card__valuation {
  display: flex;
  margin-top: 12px;
  margin-bottom: 8px;
  gap: 2px;
}

.card__valuation img {
  width: 12px;
  height: 12px;
}

.card__pros {
  font-size: 14px;
}

.card__cons {
  font-size: 14px;
}

.show {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.show-btn {
  background: none;
  border: none;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  padding: 6px 12px;
  display: flex;
}

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: "Inter", sans-serif;
  margin-bottom: 40px;
  margin-inline: 8px ;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 46px;
}

.privacy {
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 18px;
}

.hidden {
  display: none;
}
