/* ── PRODUTOS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

/* Card base */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

.product-featured {
  border: 2px solid var(--green-mid);
}

/* Imagem do produto */
.product-card-img {
  height: 165px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.product-img-dark   { background: linear-gradient(135deg, #0d1b2e 0%, #1a3a6e 100%); }
.product-img-purple { background: linear-gradient(135deg, #1a1a2e 0%, #3a1a4e 100%); }

/* Shirts mock SVG */
.card-img-mockup {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.shirt-mock {
  border-radius: 6px;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
}

.shirt-mock svg { width: 28px; height: 28px; }

.shirt-tall  { height: 78px; }
.shirt-mid   { height: 62px; }
.shirt-short { height: 50px; }

/* Badge featured */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-mid);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}

/* Body do card */
.product-body { padding: 1.5rem; }

.product-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.product-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Tags */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.ptag {
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  color: var(--muted);
}

/* Descrição */
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Features numéricas */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1.5rem;
}

.pfeature {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
}

.pfeature-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--green);
}

.pfeature-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* Lista de inclusões */
.includes-list {
  margin-bottom: 1.5rem;
}

.includes-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0 5px 24px;
  position: relative;
  line-height: 1.55;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: var(--green-light);
  border-radius: 50%;
}

.includes-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

/* Preço e botão */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  color: var(--ink);
}

.product-price-muted {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.product-price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Botões dos produtos */
.btn-buy {
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  transition: background .15s, transform .1s;
  white-space: nowrap;
  display: inline-block;
}

.btn-buy:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-see {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: background .15s, transform .1s;
  white-space: nowrap;
  display: inline-block;
}

.btn-see:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}
