.ykt-campaign {
  --ykt-ink: #163b33;
  --ykt-muted: #5d6f67;
  --ykt-line: #d9e5dd;
  --ykt-surface: #f6faf7;
  --ykt-accent: #e8b33f;
  --ykt-accent-dark: #b66f1f;
  --ykt-forest: #22745f;
  color: var(--ykt-ink);
  font-family: inherit;
}

.ykt-campaign * {
  box-sizing: border-box;
}

.ykt-campaign__hero {
  align-items: center;
  background: linear-gradient(135deg, #f6faf7 0%, #edf6ef 55%, #fff7e3 100%);
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  min-height: min(760px, 84vh);
  overflow: hidden;
  padding: clamp(32px, 6vw, 88px) clamp(20px, 5vw, 80px);
}

.ykt-campaign__hero-copy {
  max-width: 760px;
}

.ykt-campaign__eyebrow {
  color: var(--ykt-accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.ykt-campaign__hero h1 {
  color: var(--ykt-ink);
  font-size: clamp(2.35rem, 5.2vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
  max-width: 860px;
}

.ykt-campaign__hero p:not(.ykt-campaign__eyebrow) {
  color: var(--ykt-muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 660px;
}

.ykt-campaign__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ykt-button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ykt-button--primary {
  background: var(--ykt-forest);
  border: 1px solid var(--ykt-forest);
  color: #fff;
}

.ykt-button--primary:hover,
.ykt-button--primary:focus {
  background: #185848;
  border-color: #185848;
  color: #fff;
}

.ykt-button--secondary {
  background: transparent;
  border: 1px solid var(--ykt-line);
  color: var(--ykt-ink);
}

.ykt-button--secondary:hover,
.ykt-button--secondary:focus {
  border-color: var(--ykt-forest);
  color: var(--ykt-forest);
}

.ykt-campaign__hero-media {
  align-self: stretch;
  display: flex;
  min-height: 320px;
}

.ykt-campaign__hero-media img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(22, 59, 51, 0.18);
  height: auto;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.ykt-campaign__progress,
.ykt-campaign__impact,
.ykt-products {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
}

.ykt-campaign__progress {
  padding-top: 34px;
}

.ykt-progress {
  background: #fff;
  border: 1px solid var(--ykt-line);
  border-radius: 8px;
  padding: 18px;
}

.ykt-progress__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ykt-progress__stats span {
  color: var(--ykt-muted);
  font-size: 0.98rem;
}

.ykt-progress__stats strong {
  color: var(--ykt-ink);
  font-size: 1.35rem;
}

.ykt-progress__bar {
  background: #e6eee9;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.ykt-progress__bar span {
  background: linear-gradient(90deg, var(--ykt-forest), var(--ykt-accent));
  display: block;
  height: 100%;
  min-width: 0;
}

.ykt-campaign__impact {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 36px;
  padding-top: 24px;
}

.ykt-campaign__impact div {
  border-left: 3px solid var(--ykt-accent);
  padding-left: 16px;
}

.ykt-campaign__impact strong,
.ykt-campaign__impact span {
  display: block;
}

.ykt-campaign__impact strong {
  font-size: 1rem;
  margin-bottom: 6px;
}

.ykt-campaign__impact span {
  color: var(--ykt-muted);
  line-height: 1.55;
}

.ykt-products {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(40px, 6vw, 80px);
  padding-top: 12px;
}

.ykt-product-card {
  background: #fff;
  border: 1px solid var(--ykt-line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.ykt-product-card__image {
  aspect-ratio: 16 / 10;
  background: var(--ykt-surface);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.ykt-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.ykt-product-card__badge {
  align-self: flex-start;
  background: #fff3d1;
  border-radius: 999px;
  color: #7a4a11;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 10px;
}

.ykt-product-card h2 {
  color: var(--ykt-ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
  margin: 0;
}

.ykt-product-card p {
  color: var(--ykt-muted);
  line-height: 1.6;
  margin: 0;
}

.ykt-product-card__footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.ykt-product-card__price {
  color: var(--ykt-ink);
  font-size: 1.2rem;
}

.ykt-cart-icon {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 8px;
  line-height: 1;
  position: relative;
  text-decoration: none;
}

.ykt-cart-icon__svg {
  display: inline-flex;
  height: 22px;
  width: 22px;
}

.ykt-cart-icon__svg svg {
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.ykt-cart-icon__label {
  font-size: 0.95rem;
}

.ykt-cart-icon__count {
  align-items: center;
  background: var(--ykt-accent);
  border-radius: 999px;
  color: #1d1d1d;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  min-width: 20px;
  padding: 0 6px;
}

@media (max-width: 860px) {
  .ykt-campaign__hero,
  .ykt-campaign__impact,
  .ykt-products {
    grid-template-columns: 1fr;
  }

  .ykt-campaign__hero {
    min-height: auto;
  }

  .ykt-campaign__hero-media {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .ykt-campaign__hero {
    padding: 28px 18px;
  }

  .ykt-button,
  .ykt-product-card__footer .ykt-button {
    width: 100%;
  }

  .ykt-product-card__body {
    padding: 18px;
  }

  .ykt-cart-icon__label {
    display: none;
  }
}
