.fufu-product-archive__grid {
  padding: 4rem var(--space-page-x) 5rem var(--space-page-x);
}

.fufu-product-card {
  position: relative;
}

.fufu-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.125rem;
}

.fufu-product-card__swatches {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fufu-product-card__swatch {
  display: inline-block !important;
  box-sizing: border-box !important;
  width: 1.5rem;
  height: 0.25rem;
  background: var(--fufu-swatch-color, var(--c-beige-04)) !important;
}

.fufu-product-card__swatch-more {
  display: inline-flex;
  align-items: center;
  min-height: 0.875rem;
  color: var(--c-turquoise-03);
  line-height: 1;
  white-space: nowrap;
}

.fufu-product-card__content {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.fufu-product-card__content-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fufu-product-card__title a {
  color: var(--c-turquoise-03);
  text-decoration: none !important;
}

.fufu-product-card__description {
  color: var(--c-black-05);
  display: none !important;
}

.fufu-product-card__favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  color: var(--c-turquoise-03);
  transition:
    color 450ms cubic-bezier(0.69, 0, 0.47, 1),
    background-color 450ms cubic-bezier(0.69, 0, 0.47, 1),
    border-color 450ms cubic-bezier(0.69, 0, 0.47, 1);
}

.fufu-product-card:hover .fufu-product-card__favorite,
.fufu-product-card:focus-within .fufu-product-card__favorite {
  color: var(--c-black-01);
}

/* =========================================
   PRODUCT CARD - IMAGE HOVER
========================================= */

.fufu-product-card__media-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--c-black-02);
}

.fufu-product-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition:
    opacity 450ms cubic-bezier(0.69, 0, 0.47, 1),
    transform 450ms cubic-bezier(0.69, 0, 0.47, 1);
}

.fufu-product-card__image--main {
  position: relative;
  z-index: 1;
  transform: scale(1);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  mix-blend-mode: darken;
}

.fufu-product-card__image--placeholder {
  background: var(--c-black-02);
}

.fufu-product-card__image--hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
}

.fufu-product-card:hover .fufu-product-card__image--hover,
.fufu-product-card:focus-within .fufu-product-card__image--hover {
  opacity: 1;
  transform: scale(1);
}

/* PRICE */
.fufu-product-card__price {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fufu-product-card__price-row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.325rem;
}

@media (max-width: 1200px) {
  .fufu-product-card__price-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .fufu-product-card__content {
    gap: 1rem;
    flex-direction: column;
  }

  .fufu-product-card__price {
    width: 100%;
    align-items: flex-start;
  }

  .fufu-product-card__price-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }
}

.fufu-product-card__price-current {
  color: var(--c-turquoise-03);
  line-height: normal !important;
}

.sale .fufu-product-card__price-current {
  color: var(--c-red-01) !important;
}

.sale .fufu-product-card__price-regular {
  text-decoration: line-through;
}

.fufu-product-card__omnibus {
  margin-top: 0.25rem;
  text-align: right;
}
