
.catalog__page .section__header {
  margin: 15rem 0 10rem;
  flex-direction: column;
  align-items: center;
}
.catalog__page .section__header .text-xs {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
}

.catalog__page .section__header h2 {
  color: var(--color-red);
  font-size: 7vw;
  line-height: 1;
  margin-bottom: 5rem;
}
.catalog .panel {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.merch__grid {
  margin-bottom: 13rem;
  gap: 11rem 2rem;
}
.merch__item{position:relative;}
.merch__img {
  position: relative;
  background-color: #f0eced;
  height: 47rem;
  margin-bottom: 2rem;
}

.merch__img img {
  object-fit: cover;
  mix-blend-mode: darken;
}

.product__info .text-md {
  font-size: 1.6rem;
}



[bg="white-gray"] {
  background: #f9f9f9;
}
.product__page {
  padding-top: 5rem;
}
.promo__discount-block {
  width: 100%;
  z-index: 1000;
  margin-bottom: 0.4rem;
  cursor: pointer;
}
.header[discount="true"] {
  flex-direction: column;
  padding-top: 0;
}

.open-filters {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: 0.6s;
}

.open-filters img {
  width: 1rem;
  height: 1rem;
}

.filter-modal,
.notification__modal {
  position: fixed;
  z-index: 999999999;
  background: rgba(0,0,0,.75);
  inset: 0;
  display: none;
}

.notification__window {
  position: relative;
  max-width: 1240px;
  padding: 2rem 2rem 3rem;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.8s;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.notification__window.show {
  top: 50%;
}

.close-modal {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  position: absolute;
  top: -2.4rem;
  right: 0;
  cursor: pointer;
}

.filters__wrap .close-modal {
  position: static;
}

label,
input {
  cursor: pointer;
}

.notification__window h4 {
  margin-bottom: 1.6rem;
}

.notification__window label.email {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 2rem;
  border-bottom: 1px rgba(175, 193, 255, 1) solid;
  margin-bottom: 2.9rem;
}

.modal__content .text-sm {
  width: 60%;
}

.notification__window label.email input {
  background-color: rgba(151, 161, 195, 0);
  border: none;
  color: #fff;
  flex-grow: 1;
  font-size: var(--font-size-md);
  transition: 1s;
}

.notification__window label.email input:focus {
  border-color: #fff;
  outline: none;
}

.notification__window label.email label.text-md {
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}

.notification__window label.email:has(input::placeholder-shown) label.text-md {
  top: 0;
}

.notification__window label.email input::-webkit-input-placeholder {
  opacity: 0;
}

.notification__window label.email:has(input:focus) label.text-md,
.notification__window
  label.email:has(input:not(:placeholder-shown))
  label.text-md {
  top: -2.8rem;
}

.modal__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.filters__wrap {
  background-color: #fff;
  position: absolute;
  width: 33%;
  height: 100%;
  right: 0;
  padding: 3rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.7s;
}

.filters__wrap a {
  cursor: pointer;
}

.filters__wrap.show {
  transform: translateX(0);
}

.filters__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.3rem;
}

.filters__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-height: 70%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2rem;
  margin-bottom: -2rem;
}

.filters__body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

.filters__heading img {
  width: 4.4rem;
  height: 4.4rem;
}

.filters-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  margin-top: 1.6rem;
}

.more-filters-input {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  position: relative;
  font-size: 1.3rem;
}

.more-filters-input * {
  cursor: pointer;
}

.checkmark {
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px solid rgba(45, 45, 34, 0.15);
}

.more-filters-input:has(input:checked) .checkmark {
  background: var(--color-red);
}

.more-filters-input input {
  position: absolute;
  z-index: 5;
  inset: 0;
  opacity: 0;
  width: 1.6rem;
}

.filters__active-container.pc {
  display: flex !important;
  align-items: center;
  gap: 2.1rem;
}

.filter__chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.filter__chip img {
  width: 1rem;
  height: 1rem;
}

.btn-container {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-reset {
  text-decoration: underline;
}

.noscroll {
  overflow: hidden;
}


.discount {
  background-color: var(--bg-red);
  color: #fff;
  position: absolute;
  top: 1.6rem;
  padding: 0 0.4rem;
  right: 1.6rem;
  font-size: 1.8rem;
}


.before {
  color: rgba(151, 161, 195, 1);
}

.product__block {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2,1fr);
  align-items: flex-start;
  overflow: visible;
  justify-content: center;
}
.product__image-slider {
  position: sticky;
  top: 2rem;

}

.product__image-slider .swiper-pagination {
  right: auto;
  left: 2rem;
}
.product__image-slider .swiper-pagination-bullet {  border-radius: 0;}
.swiper-pagination-bullet-active {
  background: var(--bg-blue);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--bg-grey);

}

.product__image {
  position: relative;
  overflow: hidden;

  height: calc(100vh - 3rem);
  margin-top: -2rem;

}
.product__image img {
  object-fit: contain;
  mix-blend-mode: darken;

}
.product__description {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  max-width: 58rem;
}

.product__description .text p{margin-bottom:2rem;}

.product__description .text br {
  display: block;
  margin-bottom: 1rem;
}
.product__heading {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0;
}

.product__heading h5 {
  font-size: 2rem;
  line-height: normal;
  max-width: 65%;
  font-family: "HalvarBreit";
  text-transform: uppercase;
  font-weight: 400;
}

.product__price-block {
  display: flex;
  flex-direction: column;
}

.product__discount-block {
  display: flex;
  column-gap: 1.2rem;
  align-items: center;
  white-space: nowrap;
}

.product__price-block .actual {
  align-self: flex-end;
}

.product__price-block .discount {
  position: static;
}

.product__features-block {
  display: flex;
  flex-direction: column;
  margin-top: 8rem;
}


.product__feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #000;
  padding: 1.6rem 0;
}

.product__feature:last-of-type {
  border-bottom: 1px solid #000;
}
.feature__select-block {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.feature__select-block .text-md {
  flex: 1;
}
.sizes .option {
  padding: 4px 8px;
}
.sizes .option.active {
  border-color: #000;
}
.options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.options .option {
  position: relative;
  display: block;
  min-width: 4rem;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.options .option.active::after {
  border-color: #000;
}

.select__size[data-available="f"] {
  color: rgba(151, 161, 195, 1);
  display: flex;
  align-items: center;

}


.options .select__color {
  border-radius: 50%;
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  min-width: 16px;
  min-height: 16px;
  display: block;
  min-width: auto;
}
.colors .options {
  gap: 2rem;
}
.select__color.active::after {
  width: 1.8rem;
  height: 1.8rem;
  min-width: 18px;
  min-height: 18px;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  content: '';
  border: 1px solid;
  border-radius: 50%;
}


[bg="black"] {
  background-color: #000;
  color: #fff;
}

.product__btn-container {
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.product__btn-container .btn-size-popup {
  border: 1px #000 solid;
}

.product__btn-container .btn {
  border-radius: 0;
  padding: 1.2rem 2.1rem;
  font-size: var(--font-size-md);
  width: 100%;
  text-align: center;
  justify-content: center;
}

.product__details {
  margin: 16rem 0;
}

.details__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail__img {
  height: 30rem;
}

.detail__img img {
  object-fit: cover;
}

.detail__title {
  margin: 2.4rem 0 1.2rem;
}
.similar__products {
  margin-bottom: 3rem;
}

.similar__products h4 {
  margin-bottom: 4rem;
}

.popular__requests {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 16rem 0;
}

.faq__accordions {
  width: 52%;
}
.bell__img {margin-left: 5px;height: 1.5rem;}


.similar__products .merch__grid {
  margin: 0;
}
.modal-content .product-info {
  display: flex;
}
.modal-content .product-info img {
  width: 15rem;
  object-fit: cover;
  margin-right: 2rem;
}
.modal-content .product-details {
  flex: 1;
} 

@media (max-width: 768px) {

  .intro-banner {
    margin: 17.3rem 0 11rem;
  }

  .intro-banner .section__header {
    gap: revert;
    flex-direction: column;
    gap: 1.2rem;
  }

  .filters__wrap {
    width: 100%;
    transform: translate(0, -100%);
  }

  .merch__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 2.4rem;
    column-gap: 0.8rem;
  }

  .merch__img {
    width: 100%;
    height: 25rem;
    position: relative;
  }

  .merch__heading {
    font-size: 1.4rem;
    margin: 1.6rem 0 1.2rem;
  }

  .merch__price {
    font-size: 1.2rem;
  }

  .discount {
    position: absolute;
    top: 0.8rem;
    padding: 0 0.3rem;
    right: 0.8rem;
    font-size: 1.4rem;
  }

  .filters-container {
    margin-bottom: 0;
    font-size: var(--font-size-xs);
  }

  .filter-header.text-sm {
    flex-wrap: wrap;
    padding-bottom: 2.4rem;
    font-size: var(--font-size-xs);
  }

  .filters__active-container {
    padding: 2.4rem 0;
    border-top: #e4e8f6 0.8px solid;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .filters__heading {
    margin-bottom: 5.3rem;
  }

  .filters__heading img {
    width: 3.4rem;
    height: 3.4rem;
  }

  .filters__body {
    max-height: 78%;
  }

  .product__image {
    width: 100%;
    height: 140vw;
    overflow: hidden;
  }

  .product__description {
    padding: 1.6rem 1.2rem;
  }

  .product__heading {
    flex-direction: column;
    align-items: start;
    gap: 1.3rem;
    margin: 1.2rem 0 0;
  }

  .product__feature {
    display: flex;
    align-items: start;
    flex-direction: column;
    border: none;
    padding: 0;
  }

  .product__feature:last-child {
    border: none;
  }

  .feature__select-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin: 1.2rem 0 0;
  }

  .product__features-block {
    display: flex;
    flex-direction: column;
    margin-top: 3.5rem;
    gap: 2.8rem;
  }

  .select__color {
    border-radius: 50%;
    position: relative;
    width: 1.8rem;
    display: block;
    height: 1.8rem;
  }

  .product__btn-container {
    margin: 4rem 0 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }

  .product__details {
    margin: 10rem 0;
  }

  .details__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.4rem;
    gap: 2.4rem;
  }

  .detail__img {
    height: 27.3rem;
    width: 100%;
  }

  .detail__title {
    margin: 1.6rem 0 1.2rem;
  }

  .similar__products {
    margin-bottom: 10rem;
  }

  .popular__requests {
    flex-direction: column;
    margin: 10rem 0;
  }

  .faq__accordions {
    width: 100%;
    margin-top: 2.4rem;
  }

  .faq__accordions.mobile {
    margin-top: 0;
  }

  .faq__accordions.mobile .accordion-content .container {
    padding: 1.6rem 0;
  }



  .notification__window {
    width: 100%;
    top: 200%;
    transform: revert;
    left: 0;
    padding: 2rem 1rem;
  }

  .notification__window.show {
    top: 0;
    margin-top: auto;
    bottom: 0;
  }
  .modal__content .text-sm {
    width: 100%;
  }

  .modal__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .notification__window label.email {
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .modal__content .text-sm {
    margin-bottom: 3.6rem;
  }

  .filters__active-container.pc {
    display: none !important;
  }

  .filters__active-container.mobile {
    display: flex !important;
  }
  .catalog__page .section__header {
    flex-wrap: wrap;

  }
  .catalog__page .section__header .text-xs {
    margin-left: auto;
    max-width: 100%;
  }
  .catalog__page .section__header h2 {
    width: 100%;
    margin-bottom: 3.2rem;
    text-align: center;
  }
  .catalog__page .section__header {
    margin-top: 10rem;
    margin-bottom: 4rem;
  }
  .product__block {
    grid-template-columns: repeat(1,100%);
  }
  .options  {gap: 1.2rem; width: 100%; justify-content: space-between;}
  .product__heading h5 {max-width: 100%;font-size: 1.6rem;}
  .feature__select-block .text-md {
    flex: 1 1 100%;
  }
  .product__btn-container .btn-blue {
    padding: 1.6rem;
    border-radius: 10rem;
    border: none;
    font-size: 1.6rem;
  }
  .product__image-slider {
    position: relative;
    top: 0;
  }
  .product__image {margin-top: -1rem}
  /* .product__image img {object-fit: cover;object-position: top;} */
}

