:root {
  --display: "Cormorant Garamond", Georgia, serif;
}

/* Une typographie plus joaillerie pour les noms de pièces et les détails éditoriaux. */
.product-info h3,
#modal-product-name,
.cart-item h4,
.trend-copy h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-info h3 {
  font-size: 22px;
  line-height: 0.98;
  min-height: 44px;
}

#modal-product-name {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
}

.cart-item h4 {
  font-size: 20px;
  line-height: 1;
}

.inspirations {
  background: #faf8f4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inspirations .section-heading {
  align-items: end;
}

.section-intro {
  max-width: 365px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trend-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(30, 37, 37, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(30, 37, 37, 0.1);
}

.trend-visual {
  height: 285px;
  padding: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  background-position: center;
  background-size: cover;
}

.trend-visual::after {
  content: "";
  position: absolute;
}

.trend-visual span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(247, 244, 239, 0.88);
  color: var(--clay);
  font-size: 10px;
}

.trend-golden .trend-visual {
  background-image: linear-gradient(135deg, rgba(43, 44, 37, 0.04), rgba(205, 151, 112, 0.2)), url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=900&q=85");
}

.trend-layering .trend-visual {
  background-image: linear-gradient(135deg, rgba(239, 231, 219, 0.08), rgba(30, 37, 37, 0.1)), url("https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?auto=format&fit=crop&w=900&q=85");
}

.trend-colour .trend-visual {
  background-image: linear-gradient(135deg, rgba(203, 121, 95, 0.08), rgba(30, 37, 37, 0.08)), url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=900&q=85");
}

.trend-copy {
  padding: 23px 22px 25px;
}

.trend-copy .eyebrow {
  margin-bottom: 8px;
}

.trend-copy h3 {
  margin: 0 0 11px;
  font-size: 31px;
  line-height: 0.95;
}

.trend-copy > p:not(.eyebrow) {
  min-height: 66px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.trend-copy .text-link {
  font-size: 10px;
}

@media (max-width: 900px) {
  .trend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .trend-visual {
    height: 220px;
  }

  .trend-copy {
    padding: 18px 15px 20px;
  }

  .trend-copy h3 {
    font-size: 25px;
  }
}

@media (max-width: 620px) {
  .inspirations .section-heading {
    align-items: flex-start;
  }

  .section-intro {
    max-width: 100%;
  }

  .trend-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trend-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .trend-visual {
    height: 100%;
    min-height: 260px;
  }

  .trend-copy > p:not(.eyebrow) {
    min-height: 0;
  }
}
