/* Complemento da loja / PDP sobre o tema Carla */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.5rem;
}
.product-card {
  background: var(--soft, #efe6f2);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card__media,
.product-card__placeholder,
.pdp__media {
  display: block;
  aspect-ratio: 1;
  background: #e8dde9;
  overflow: hidden;
}
.product-card__media img,
.pdp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__placeholder {
  display: grid;
  place-items: center;
  font-family: Fraunces, serif;
  font-size: 2.5rem;
  color: var(--lavender-deep, #6d5288);
}
.product-card__body {
  padding: 1.1rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.product-card__badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lavender-deep, #6d5288);
}
.product-card__body h3 {
  font-family: Fraunces, serif;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}
.product-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.product-card__body p {
  margin: 0;
  color: var(--muted, #6b6175);
  font-size: 0.92rem;
}
.product-card__price,
.pdp__price {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--action, #c45b6a);
}
.pdp {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.pdp__qty {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  margin-top: 1rem;
  max-width: 8rem;
}
.pdp__qty input {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border, #e8dde9);
  border-radius: 0.5rem;
}
.cms-rich {
  line-height: 1.65;
}
.cms-rich h1,
.cms-rich h2,
.cms-rich h3 {
  font-family: Fraunces, serif;
  line-height: 1.2;
}
.cms-rich h1 { font-size: 1.75rem; }
.cms-rich h2 { font-size: 1.35rem; margin-top: 1.5rem; }
.cms-rich ul { padding-left: 1.2rem; }
.text-link {
  color: var(--lavender-deep, #6d5288);
  font-weight: 600;
}
.alert.warn {
  background: #fff4e5;
  border: 1px solid #f0d2a0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  margin: 1rem 0;
}
.demo-notice {
  background: #efe6f2;
  padding: 0.75rem 1rem;
  margin: 0.75rem auto;
  border-radius: 0.75rem;
}
.page-inner .section {
  padding-top: 3rem;
}
/* Checkout/carrinho Solé — tipografia mínima no tema Carla */
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.button.primary { background: var(--action, #c45b6a); color: #fff; }
.button.outline,
.button.light { background: transparent; border: 1px solid var(--border, #e8dde9); color: inherit; }
.container.page,
.container.home-section,
section.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}
