.extra-collection {
  background: #fffaf6;
}

.extra-collection-trending {
  background: #f5e8e1;
}

.extra-collection-heading {
  max-width: 760px;
}

.extra-product-grid {
  display: grid;
  gap: 18px;
}

.extra-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(85, 43, 34, 0.1);
}

.extra-product-media {
  display: grid;
  height: 360px;
  place-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 32%),
    linear-gradient(145deg, #9d6652, #4d302a);
}

.extra-product-media--photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  place-content: stretch;
  background: #f3e7df;
}

.extra-product-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.extra-product-photo--honey-blonde {
  object-fit: contain;
  object-position: center;
  background: #f3e7df;
}

.extra-product-media--fringe-bob {
  height: 360px;
}

.extra-product-photo--fringe-bob {
  object-fit: cover;
  object-position: center 18%;
}

.extra-product-media span {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.extra-product-media small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.extra-product-content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.extra-product-content h3,
.extra-product-content p {
  margin: 0;
}

.extra-product-best-for,
.extra-product-price {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #fffaf6;
}

.extra-product-best-for strong,
.extra-product-price span {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.extra-product-price strong {
  color: var(--rose-dark);
  font-size: 18px;
}

.extra-product-price-list {
  align-content: start;
}

.extra-product-price-list ul {
  display: grid;
  gap: 4px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.extra-product-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 4px;
}

.extra-product-price-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.extra-product-price-list li span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.extra-product-price-list li strong {
  color: var(--rose-dark);
  font-size: 14px;
  line-height: 1.2;
}

.extra-whatsapp-button {
  width: 100%;
  margin-top: auto;
}

@media (min-width: 720px) {
  .extra-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .extra-product-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .extra-product-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
