/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--bg-primary);
  padding: var(--space-xl) var(--container-pad);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.hero-text h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: var(--space-md);
  line-height: 0.95;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: var(--space-lg);
  max-width: 38ch;
}

.hero-image {
  display: flex;
  justify-content: center;
}

/* Frame wraps image + badge overlay */
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-frame img,
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  object-fit: cover;
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-fish-icon {
  font-size: 6rem;
  display: block;
  text-align: center;
  padding-top: 35%;
}

/* "OFFICIALLY GOOD" badge — bottom-right overlay */
.hero-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-headline);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4em 0.65em;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
}

/* ── Preview section ─────────────────────────────────────────── */
.preview-section {
  background: var(--bg-primary);
  padding: var(--space-xl) var(--container-pad);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.loading-msg {
  text-align: center;
  opacity: 0.6;
  grid-column: 1 / -1;
}

/* ── Product card ────────────────────────────────────────────── */
.product-card {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 15%, transparent);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent) 5%, transparent);
}

.product-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.product-card-name {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.product-card-price {
  font-weight: 700;
  font-size: 1rem;
}

.product-card-charity {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: auto;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
}

.product-card-link {
  display: block;
}

.product-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 5%, var(--surface));
}

.placeholder-fish {
  font-size: 3.5rem;
  line-height: 1;
}

/* ── Clean Comfort section ───────────────────────────────────── */
.clean-comfort {
  background: var(--bg-secondary);
  padding: var(--space-xl) var(--container-pad);
}

.cc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.cc-center h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  white-space: nowrap;
}

.cc-col h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-md);
}

.cc-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cc-col ul li {
  font-size: 0.95rem;
  font-weight: 600;
  padding-left: 1.2em;
  position: relative;
}

.cc-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.6;
}

.cc-bottom {
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  padding-top: var(--space-lg);
}

.cc-bottom h3 {
  margin-bottom: var(--space-md);
}

.cc-bottom ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
}

.cc-bottom ul li {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image { order: -1; }

  .cc-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cc-col ul { align-items: center; }
}
