.product-card {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
}
.product-card .screen-reader-text {
  display: none;
}
.product-card:hover {
}
.product-card .card__media-link {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card .product-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  z-index: 30;
  pointer-events: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.product-card .product-badge {
  border-radius: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--color-bg-contrast);
  color: var(--color-text-on-contrast);
  padding: 0.6rem 1.4rem;
  font-size: var(--font-size-xs);
}
.product-card .product-badge.new-badge {
  opacity: 0.5;
}
.product-card .product-badge.sale-badge {
  padding: 0.4rem 1rem;
}

.product-card .card__media {
  display: grid;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: rgb(var(--color-bg-contrast-rgb) / 0.08);
}

.product-card .swiper {
  width: 100%;
  position: relative;
}
/* .product-card .swiper-overlay {
  background: linear-gradient(
    0deg,
    rgb(var(--color-bg-contrast-rgb) / 0.75) 0%,
    rgb(var(--color-bg-contrast-rgb) / 0) 50%,
    rgb(var(--color-bg-contrast-rgb) / 0) 100%
  );
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
} */
.product-card .swiper-slide {
  width: 100%;
}
/*
.product-card .swiper-pagination {
  position: absolute;
  z-index: 10;
  right: 1.6rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card .swiper-pagination.swiper-pagination-lock {
  display: none;
}
.product-card .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 20rem;
  background-color: var(--color-text-on-contrast);
  transition: 0.3s;
  opacity: 0.4;
}
.product-card
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 0.7;
} */

.product-card .swiper-pagination.swiper-pagination-bullets-dynamic {
  position: absolute;
  display: flex;
  background-color: rgb(var(--color-bg-contrast-rgb) / 0.12);
  padding: 0.4rem 0;
  border-radius: 20rem;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
  width: 3.4rem !important;
  min-width: 3.4rem;
  max-width: 3.4rem;
  overflow: hidden;
  z-index: 20;
  bottom: 0.6rem;
  left: 50%;
  margin-left: -2.4rem;
}
.product-card
  .swiper-pagination.swiper-pagination-bullets-dynamic.swiper-pagination-lock {
  display: none;
}
.product-card
  .swiper-pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 20rem;
  background-color: var(--color-text-on-contrast);
  display: flex;
  flex-shrink: 0;
  transition: 0.3s;
  position: relative;
  opacity: 0;
  margin: 0 0.2rem !important;
}
.product-card
  .swiper-pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  opacity: 0.5;
}
.product-card
  .swiper-pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet.swiper-pagination-bullet-active-main.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  opacity: 1;
}

.product-card .card__media-wrap {
  position: relative;
  aspect-ratio: 2/3;
  display: block;
  overflow: hidden;
  width: 100%;
}
.product-card .card__media-wrap .card__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

/*  */

.product-card .card__details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 20;
}
.product-card .card__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 1;
  width: 100%;
  height: 100%;
}
.product-card .card__title-link {
  display: block;
  padding: 0 1.2rem;
}
.product-card .card__title {
  position: relative;
  display: block;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-s);
}

.product-card .card__attrubutes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0 1.2rem;
}
.product-card .card__attrubute {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.6rem;
}
/* .product-card .card__attrubute .card__attrubute-icon {
} */
.product-card .card__attrubute .card__attrubute-value {
  font-size: var(--font-size-xs);
  line-height: 1.2;
  opacity: 0.7;
  display: block;
}

.product-card .card__excerpt {
  font-size: var(--font-size-xs);
  line-height: 1.3;
  opacity: 0.7;
  margin-top: 1.2rem;
}

/*  */

.product-card .card__footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  margin-top: 1rem;
  gap: 0.8rem;
  padding: 0 1.2rem;
}

.product-card .card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card .card__price .price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--font-size-s);
}
.product-card .card__price .price .amount {
  display: block;
}
.product-card .card__price .price del {
  order: 10;
  text-decoration: line-through;
  opacity: 0.7;
}

.product-card .card__purchase {
  width: 100%;
}
.product-card .card__purchase .button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.6rem;
  justify-content: space-between;
  text-align: center;
  border-radius: 20rem;
  background-color: #ffe9ce;
  padding: 0 2rem;
}
.product-card .card__purchase .button .button__label {
  color: var(--color-text-on-accent);
  font-size: var(--font-size-xs);
  display: block;
}
.product-card .card__purchase .button .button__icon {
  display: flex;
  flex-shrink: 0;
}
.product-card .card__purchase .button .button__icon .icon {
  width: 1.6rem;
  height: 1.6rem;
}
.product-card .card__purchase .button.product_type_simple .button__icon .icon {
  width: 2rem;
  height: 2rem;
}
.product-card .card__purchase .added_to_cart {
  display: none !important;
}
