/* Manufacturer page — bottom CTA (contact + phone) */

.eet-mfg-cta {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.eet-mfg-cta__shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(15, 26, 20, 0.18);
  color: #fff;
  background:
    radial-gradient(640px 320px at 0% 100%, rgba(253, 206, 43, 0.28), transparent 55%),
    radial-gradient(480px 240px at 100% 0%, rgba(75, 162, 72, 0.4), transparent 50%),
    linear-gradient(135deg, #0f1a14 0%, #1a3d1c 40%, #2f6e2d 100%);
}

.eet-mfg-cta__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.eet-mfg-cta__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fdce2b;
}

.eet-mfg-cta__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.4px;
}

.eet-mfg-cta__lead {
  margin: 0 0 14px;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.eet-mfg-cta__perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.eet-mfg-cta__perks li {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.eet-mfg-cta__perks li::before {
  content: '✓ ';
  color: #fdce2b;
}

.eet-mfg-cta__catalog-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fdce2b;
  text-decoration: none;
}

.eet-mfg-cta__catalog-link:hover {
  text-decoration: underline;
}

.eet-mfg-cta__actions {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: min(100%, 260px);
}

.eet-mfg-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.eet-mfg-cta__btn--primary {
  background: linear-gradient(135deg, #fdce2b 0%, #f5b800 100%);
  color: #0f1a14;
  box-shadow: 0 8px 24px rgba(253, 206, 43, 0.45);
}

.eet-mfg-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(253, 206, 43, 0.55);
  color: #0f1a14;
}

.eet-mfg-cta__btn--phone {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.eet-mfg-cta__btn--phone:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

@media (min-width: 768px) {
  .eet-mfg-cta__perks li,
  .eet-mfg-cta__catalog-link {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .eet-mfg-cta__shell {
    flex-direction: column;
    align-items: stretch;
  }

  .eet-mfg-cta__actions {
    width: 100%;
  }

  .eet-mfg-cta__btn {
    width: 100%;
  }
}
