/* Homepage-only campaign. Uses its own styles and the native dialog top layer. */
html:has(.duck-promo[open]), body:has(.duck-promo[open]) { overflow: hidden; }
.duck-promo {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  width: min(920px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  border: 0;
  border-radius: 16px;
  background: #ffda48;
  color: #242521;
  overflow: auto;
  box-shadow: 0 35px 130px #0007;
  font-family: var(--font-family, sans-serif);
  line-height: 1.5;
}
.duck-promo::backdrop { background: #10150fcc; backdrop-filter: blur(7px); }
.duck-promo:not([open]) { display: none; }
.duck-promo[open] { animation: duck-promo-enter .22s ease-out; }
.duck-promo-layout { display: grid; grid-template-columns: 1.12fr 1fr; min-height: 550px; }
.duck-promo-copy { padding: 39px 40px 32px; }
.duck-promo-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; background: #242521; color: #ffda48; font-size: 11px; font-weight: 700; border-radius: 3px; letter-spacing: .07em; }
.duck-promo-badge > span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.duck-promo-kicker { font-size: 9px; letter-spacing: .19em; margin: 35px 0 10px; color: #6c5e24; }
.duck-promo h2 { margin: 0; color: #242521; font-size: clamp(34px, 4.1vw, 54px); font-weight: 850; letter-spacing: -.065em; line-height: 1.05; white-space: nowrap; }
.duck-promo h2 > span { font-size: 10px; vertical-align: top; margin-left: 5px; line-height: 1.5; }
.duck-promo-headline { margin-top: 14px; font-size: 23px; font-weight: 650; letter-spacing: -.04em; line-height: 1.4; }
.duck-promo-price { margin-top: 33px; display: flex; flex-direction: column; gap: 5px; }
.duck-promo-price > span { font-size: 11px; color: #655720; }
.duck-promo-price strong { font-size: 49px; letter-spacing: -.055em; font-weight: 800; line-height: 1.2; }
.duck-promo-shipping { margin-top: 12px; font-size: 13px; display: flex; align-items: center; gap: 8px; font-weight: 650; }
.duck-promo-dot { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: #5b6639; flex: none; }
.duck-promo-cta { display: flex; justify-content: space-between; align-items: center; gap: 18px; background: #242521; color: #fff; font-size: 15px; font-weight: 650; padding: 15px 21px; margin-top: 28px; min-height: 54px; border-radius: 5px; transition: background .2s; text-decoration: none; }
.duck-promo-cta:hover { color: white; background: #424639; }
.duck-promo-cta > span { font-size: 24px; line-height: 1; }
.duck-promo-kit { font-size: 10px; line-height: 1.8; color: #655720; margin-top: 13px; }
.duck-promo-photo { position: relative; margin: 0; min-width: 0; background: #cacaba; overflow: hidden; }
.duck-promo-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 47%; }
.duck-promo-photo::after { content: ""; position: absolute; inset: 65% 0 0; background: linear-gradient(transparent, #171b10a6); pointer-events: none; }
.duck-promo-photo figcaption { position: absolute; bottom: 22px; left: 22px; right: 20px; color: #fff; z-index: 1; font-size: 8px; letter-spacing: .06em; }
.duck-promo-sticker { position: absolute; top: 66px; right: 22px; width: 97px; height: 97px; background: #ffda48; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 21px; font-weight: 850; transform: rotate(12deg); line-height: 1.2; }
.duck-promo-sticker span { font-size: 28px; margin-top: 5px; }
.duck-promo-close { position: absolute; right: 12px; top: 12px; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; min-height: 38px; border: 1px solid #fff7; border-radius: 50%; background: #242521d9; color: white; font-family: inherit; font-size: 27px; font-weight: 400; line-height: 1; padding: 0; cursor: pointer; }
.duck-promo-close:hover { background: #242521; }
.duck-promo-launcher { position: fixed; right: 24px; bottom: max(24px, env(safe-area-inset-bottom)); z-index: 950; display: inline-flex; align-items: center; gap: 11px; padding: 14px 20px; background: #ffda48; color: #242521; border: 1px solid #242521; border-radius: 50px; box-shadow: 0 6px 25px #0002; font: 650 13px/1.4 var(--font-family, sans-serif); }
.duck-promo-launcher:hover { color: #242521; background: #ffe88c; }
.duck-promo :focus-visible, .duck-promo-launcher:focus-visible { outline: 3px solid #005bd3; outline-offset: 4px; }
@keyframes duck-promo-enter { from { opacity: 0; transform: translateY(15px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 760px) {
  .duck-promo { width: min(650px, calc(100% - 32px)); }
  .duck-promo-layout { min-height: 495px; }
  .duck-promo-copy { padding: 30px 26px 26px; }
  .duck-promo h2 { font-size: 37px; }
  .duck-promo-headline { font-size: 20px; }
  .duck-promo-kicker { margin-top: 28px; font-size: 8px; }
  .duck-promo-price { margin-top: 27px; }
  .duck-promo-price strong { font-size: 42px; }
  .duck-promo-cta { font-size: 13px; padding-inline: 15px; }
  .duck-promo-sticker { width: 78px; height: 78px; font-size: 17px; }
}
@media (max-width: 540px) {
  .duck-promo { width: min(390px, calc(100% - 28px)); max-height: calc(100dvh - 28px); border-radius: 12px; }
  .duck-promo-layout { grid-template-columns: 1fr; min-height: 0; }
  .duck-promo-copy { padding: 26px 26px 23px; }
  .duck-promo-badge { font-size: 10px; padding: 5px 9px; }
  .duck-promo-kicker { margin: 19px 0 7px; font-size: 8px; }
  .duck-promo h2 { font-size: 44px; }
  .duck-promo-headline { margin-top: 9px; font-size: 19px; }
  .duck-promo-price { margin-top: 19px; gap: 1px; }
  .duck-promo-price strong { font-size: 42px; }
  .duck-promo-shipping { font-size: 12px; margin-top: 8px; }
  .duck-promo-cta { margin-top: 19px; min-height: 49px; padding: 13px 16px; font-size: 14px; }
  .duck-promo-kit { font-size: 9px; margin-top: 10px; }
  .duck-promo-photo { height: 175px; }
  .duck-promo-photo > img { object-position: 50% 22%; }
  .duck-promo-sticker { top: 19px; right: 24px; width: 78px; height: 78px; }
  .duck-promo-photo figcaption { bottom: 15px; font-size: 8px; }
  .duck-promo-close { top: 9px; right: 9px; }
  .duck-promo-launcher { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); font-size: 12px; padding: 12px 16px; }
}
@media (prefers-reduced-motion: reduce) { .duck-promo[open] { animation: none; } .duck-promo-cta { transition: none; } }
