/* Page-specific styles */

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #f8faf2 0%, #edf2e0 100%);
  border-bottom: 1px solid #dde8c8;
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: -56px;
  background-image: radial-gradient(circle, rgba(98,181,23,0.13) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  animation: hero-drift 22s linear infinite;
  pointer-events: none; z-index: 0;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 42px); font-weight: 900;
  color: #1a1a1a; line-height: 1.1; margin-bottom: 12px;
  position: relative; z-index: 1;
  animation: fade-up 0.45s ease both;
}
.hero h1 em { font-style: normal; color: #62b517; position: relative; }
.hero h1 em::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px; height: 4px;
  background: #d1db24; border-radius: 3px;
  transform: scaleX(0); transform-origin: left center;
  animation: underline-grow 0.4s 0.5s ease forwards;
}
.hero p {
  font-size: 16px; color: #666; line-height: 1.65;
  max-width: 600px; margin: 0 auto;
  position: relative; z-index: 1;
  animation: fade-up 0.45s 0.15s ease both;
}

/* ===== PARTNER BANNER ===== */
.partner-banner {
  background: #fff;
  padding: 24px 24px;
  border-bottom: 1px solid #dde8c8;
}
.partner-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap; text-align: center;
}
.partner-label {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: #62b517;
}
.partner-name {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 900; color: #1a1a1a;
}
.partner-logo {
  height: 56px; width: auto; display: block;
}
.partner-name a {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
  transition: opacity 0.2s ease;
}
.partner-name a:hover { opacity: 0.7; }
.partner-blurb {
  font-size: 14px; color: #555; line-height: 1.55;
  max-width: 540px;
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 64px 24px 80px;
  max-width: 1100px; margin: 0 auto;
}
.products-eyebrow {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: #62b517;
  border-left: 4px solid #d1db24; padding-left: 10px;
  margin-bottom: 14px;
}
.products-headline {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900; color: #1a1a1a;
  line-height: 1.2; margin-bottom: 36px;
}
.products-headline em { font-style: normal; color: #62b517; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 800px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: #fff;
  border: 2px solid #dde8c8;
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(98,181,23,0.18);
  border-color: #62b517;
}
.product-tag {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #62b517;
  border-left: 3px solid #d1db24; padding-left: 8px;
  margin-bottom: 14px;
}
.product-title {
  font-size: 28px; font-weight: 900;
  color: #1a1a1a; line-height: 1.1;
  margin-bottom: 8px;
}
.product-subtitle {
  font-size: 14px; font-weight: 700;
  color: #888; margin-bottom: 18px;
}
.product-image {
  background: #f4fae8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 220px;
}
.product-image img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-image .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; font-weight: 900;
  color: #4a8c11; letter-spacing: 1px;
  background: linear-gradient(135deg, #1a3a00 0%, #2a5a06 100%);
  color: #d1db24; border-radius: 8px;
}
.product-body {
  font-size: 15px; color: #555;
  line-height: 1.65; margin-bottom: 22px;
  flex: 1;
}
.product-learn {
  background: #f4fae8;
  border-left: 3px solid #62b517;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.product-learn-label {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #4a8c11; margin-bottom: 8px;
}
.product-learn-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.product-learn-list li {
  font-size: 13px; line-height: 1.45; color: #2a4a08;
  padding-left: 18px; position: relative;
}
.product-learn-list li::before {
  content: ''; position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  background: #d1db24; border-radius: 50%;
}
.product-learn-list li strong { color: #1a3a00; font-weight: 800; }
.product-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.product-meta-item {
  font-size: 12px; font-weight: 700;
  color: #62b517; background: #f4fae8;
  padding: 6px 12px; border-radius: 999px;
}
.btn-buy {
  display: inline-flex; align-items: center; justify-content: center;
  background: #62b517; color: #fff;
  font-size: 16px; font-weight: 800;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(98,181,23,0.25);
}
.btn-buy:hover { background: #4a8c11; transform: translateY(-1px); }
.btn-buy::after { content: ' →'; margin-left: 4px; }

/* ===== DISTRIBUTION NOTE ===== */
.dist-note {
  background: #f4fae8;
  border-top: 1px solid #dde8c8;
  padding: 32px 24px;
  text-align: center;
}
.dist-note p {
  max-width: 640px; margin: 0 auto;
  font-size: 14px; color: #4a4a4a; line-height: 1.65;
}
.dist-note strong { color: #4a8c11; }

@media (max-width: 600px) {
  .product-card { padding: 24px; }
  .product-title { font-size: 24px; }
  .product-image { height: 180px; }
}
