/* Page produit "carte-cadeau" : hero marketing + steps + reassurance. */

.gift-card-landing {
  margin: 8px 0 56px;
  padding: 0;
}

.gift-card-landing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
  padding: 56px clamp(28px, 5vw, 64px);
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 90% 10%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(135deg, #fbe6ec 0%, #f7d3df 55%, #e9b6c5 100%);
  box-shadow: 0 30px 60px -38px rgba(112, 70, 82, 0.4);
}

.gift-card-eyebrow {
  display: inline-block;
  color: #9b5f6d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gift-card-landing-copy h1,
.gift-card-landing-title {
  margin: 0 0 18px;
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: #2f2523;
}

.gift-card-lede {
  margin: 0 0 22px;
  color: #6f595d;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  max-width: 52ch;
}

.gift-card-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.gift-card-pills li {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(155, 95, 109, 0.2);
  color: #6f595d;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gift-card-landing-visual {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gift-card-landing-visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 50px -20px rgba(112, 70, 82, 0.45);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.gift-card-landing-visual img:hover {
  transform: rotate(0deg) scale(1.02);
}

.gift-card-steps {
  list-style: none;
  margin: 40px 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: gc-step;
}

.gift-card-steps li {
  background: var(--white, #fff);
  border: 1px solid var(--border, #eadada);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.gift-card-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #9b5f6d;
  color: #fff;
  font-family: Newsreader, Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
}

.gift-card-steps h3 {
  margin: 4px 0 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2f2523;
}

.gift-card-steps p {
  margin: 0;
  color: #6f595d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.gift-card-fineprint {
  margin: 0;
  color: #8a7565;
  font-size: 0.82rem;
  text-align: center;
  font-style: italic;
}

/* La fiche produit elle-meme : preserve mais resserre pour qu'elle vienne
   APRES le hero marketing (le selecteur de variantes + CTA panier). */
body.is-gift-card-page #product-content {
  margin-top: 12px;
}

body.is-gift-card-page [data-product-section="reassurance"],
body.is-gift-card-page [data-product-section="deliveryInfo"],
body.is-gift-card-page [data-product-section="pillTags"],
body.is-gift-card-page .product-reassurance,
body.is-gift-card-page .product-delivery,
body.is-gift-card-page #related-products-section {
  display: none !important;
}

@media (max-width: 880px) {
  .gift-card-landing-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 28px;
  }

  .gift-card-landing-visual img {
    transform: rotate(0deg);
    max-width: 280px;
  }

  .gift-card-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .gift-card-steps {
    grid-template-columns: 1fr;
  }
}
