/* ─── Brand products grid ─────────────────────────────────────────────────── */

.pf-brand-products__header {
  margin-bottom: 56px;
}

.pf-brand-products__header h2 {
  margin-top: 8px;
}

.pf-brand-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.pf-brand-product-card {
  background: var(--wp--preset--color--cream);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

.pf-brand-product-card:hover {
  transform: translateY(-4px);
}

.pf-brand-product-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wp--preset--color--cream-dark, #e8dfd4);
}

.pf-brand-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-brand-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--wp--preset--color--cream-dark, #e8dfd4) 0%, var(--wp--preset--color--cream) 100%);
}

.pf-brand-product-card__stock {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--wp--preset--color--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  font-family: var(--wp--preset--font-family--eyebrow);
}

.pf-brand-product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--wp--preset--color--dark);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  font-family: var(--wp--preset--font-family--eyebrow);
}

.pf-brand-product-card__body {
  padding: 20px 24px 24px;
}

.pf-brand-product-card__title {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--wp--preset--color--dark);
  line-height: 1.3;
}

.pf-brand-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.pf-brand-product-card__price-label {
  font-size: 12px;
  color: var(--wp--preset--color--text-muted);
  font-family: var(--wp--preset--font-family--eyebrow);
}

.pf-brand-product-card__price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--wp--preset--color--dark);
  font-family: var(--wp--preset--font-family--heading);
  font-style: italic;
  line-height: 1;
}

.pf-brand-product-card__price-unit {
  font-size: 14px;
  color: var(--wp--preset--color--text-muted);
}

@media (max-width: 700px) {
  .pf-brand-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pf-brand-products-grid {
    grid-template-columns: 1fr;
  }
  .pf-brand-product-card__body {
    padding: 16px;
  }
}
