/* Sari-Sari — desktop-primary, 4x2 product grid */

.hero--peach {
  position: relative;
  padding: var(--space-12) 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #FDF5E6 0%, var(--honey-tint) 100%);
}
.hero--peach .hero__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.3;
}
.hero--peach::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 251, 0.45), rgba(250, 238, 218, 0.82));
  z-index: -1;
}
.hero--peach .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 768px) {
  .hero--peach .hero__inner {
    grid-template-columns: 1fr auto;
    gap: var(--space-8);
  }
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__left { align-items: flex-start; text-align: left; }
}
.hero__avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 5px rgba(255, 252, 251, 0.92), 0 14px 36px rgba(26, 26, 46, 0.18);
}
.hero__title { font-size: clamp(28px, 4.5vw, 40px); letter-spacing: -0.02em; }
.hero__tagline { color: var(--stone-gray); font-size: 15px; max-width: 50ch; }
.hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
@media (max-width: 767px) {
  .hero__cta { justify-content: center; }
}

/* ---------- Content ---------- */
.content { padding: var(--space-10) 0 var(--space-12); }
.content__grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.content__main { display: flex; flex-direction: column; gap: var(--space-10); }
.content__side { display: flex; flex-direction: column; gap: var(--space-4); }
@media (min-width: 960px) {
  .content { padding: var(--space-12) 0 var(--space-16); }
  .content__grid { grid-template-columns: minmax(0, 1fr) 340px; gap: var(--space-10); }
  .content__side { position: sticky; top: 100px; align-self: start; }
}
.section-head { margin-bottom: var(--space-5); }
.section-head .section-title { margin-top: 4px; font-size: clamp(22px, 3vw, 26px); }
.section-head p.text-sm { margin-top: var(--space-2); }

/* ---------- Products grid ---------- */
.products-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.product:hover {
  border-color: var(--honey-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product__thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--honey-tint), #FCE0B2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.product:hover .product__thumb img { transform: scale(1.05); }
.product__thumb img + .product__fallback { display: none; }
.product__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 10px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
}
.product__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product__body h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.product__body small {
  color: var(--stone-gray);
  font-size: 12px;
  margin-bottom: var(--space-1);
}
.product__price {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--honey-gold);
  margin-top: 4px;
}

/* ---------- Group banner ---------- */
.group-banner {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: linear-gradient(95deg, var(--honey-gold), #FFB744);
  color: var(--hive-ink);
  border-radius: var(--radius-lg);
  text-align: left;
  width: 100%;
  font-family: var(--font-heading);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.22);
}
.group-banner__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: rgba(26, 26, 46, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.group-banner__copy { display: flex; flex-direction: column; flex: 1; }
.group-banner__copy strong { font-size: 16px; }
.group-banner__copy small { font-size: 13px; opacity: 0.78; font-weight: 500; }

/* ---------- Sidebar ---------- */
.info-card {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.info-card__head { display: flex; align-items: center; gap: var(--space-3); }
.info-card__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(26, 26, 46, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card__icon--gold { background: var(--honey-tint); color: var(--honey-gold); }
.info-card__icon--dark { background: rgba(255, 255, 255, 0.08); color: var(--honey-gold); }
.info-card__title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; }
.info-card__body { padding-left: 50px; font-size: 14px; }
.info-card__body strong { font-family: var(--font-heading); }

.card-tint { background: var(--honey-tint); border-color: transparent; }
.stripe-card { background: var(--light-stripe); border-color: transparent; }
.payment-card { background: var(--hive-ink); color: var(--warm-white); border-color: transparent; }
.payment-card .info-card__title { color: var(--warm-white); }
.payment-list {
  list-style: none;
  padding: 0 0 0 50px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.payment-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 252, 251, 0.88);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.payment-list li:hover { color: var(--honey-gold); }
.payment-list .dot {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
