/* Online seller — peach hero, marketplaces, 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%);
  text-align: center;
}
.hero--peach .hero__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.25;
}
.hero--peach::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 251, 0.5), rgba(250, 238, 218, 0.85));
  z-index: -1;
}
.hero--peach .hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 560px;
  margin: 0 auto;
}
.hero--peach .hero__avatar {
  width: 132px;
  height: 132px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 6px rgba(255, 252, 251, 0.92), 0 18px 40px rgba(26, 26, 46, 0.18);
}
.hero--peach .hero__title {
  font-size: clamp(30px, 4.5vw, 42px);
  letter-spacing: -0.02em;
}
.hero--peach .hero__tagline { color: var(--stone-gray); font-size: 15px; }
.hero__badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-2);
}
.hero__badges .badge { padding: 6px 12px; font-size: 13px; }
.hero__badges .badge-ink { background: var(--hive-ink); color: var(--warm-white); }
.hero__badges .badge-ink svg { color: var(--honey-gold); }

/* ---------- 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); }

/* ---------- Marketplaces ---------- */
.marketplaces {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.marketplace {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--space-4);
  align-items: center;
  width: 100%;
  padding: var(--space-4);
  background: var(--warm-white);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  text-align: left;
  color: var(--hive-ink);
  font-family: var(--font-body);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.marketplace:hover {
  border-color: var(--honey-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.marketplace__mark {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.marketplace__logo {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.marketplace__logo + .marketplace__letter { display: none; }
.marketplace__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.marketplace__copy strong { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.marketplace__copy small { color: var(--stone-gray); font-size: 13px; }
.marketplace__chev { color: var(--stone-gray); flex-shrink: 0; }

/* ---------- 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(2, 1fr); gap: var(--space-4); }
}
@media (min-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 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: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10.5px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}
.product__body {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product__body h3 {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}
.product__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--honey-gold);
}

/* ---------- Sidebar cards ---------- */
.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);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--honey-tint);
  color: var(--honey-gold);
  flex-shrink: 0;
}
.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; color: var(--stone-gray); }
.info-card__body strong { font-family: var(--font-heading); color: var(--hive-ink); }

.wholesale-card { background: var(--hive-ink); color: var(--warm-white); border-color: transparent; }
.wholesale-card .info-card__title { color: var(--warm-white); }
.wholesale-card .info-card__body { color: rgba(255, 252, 251, 0.78); }
.wholesale-card .info-card__body strong { color: var(--warm-white); }
/* Body text stays icon-aligned for visual hierarchy, but the primary CTA
   fills the card content width without overflowing the margin. */
.wholesale-card__btn { margin-top: var(--space-2); }

.stripe-card { background: var(--light-stripe); border-color: transparent; }
