/**
 * Gmingo — Promote Products premium design system
 * Scoped to body.gmingo-promote
 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design tokens
   ========================================================================== */
body.gmingo-promote {
  --gp-primary: #2F80ED;
  --gp-primary-hover: #1F6FE5;
  --gp-primary-soft: rgba(47, 128, 237, 0.1);
  --gp-primary-glow: rgba(47, 128, 237, 0.22);
  --gp-bg: #F8FAFC;
  --gp-card: #ffffff;
  --gp-text: #0F172A;
  --gp-secondary: #64748B;
  --gp-success: #16A34A;
  --gp-success-soft: rgba(22, 163, 74, 0.12);
  --gp-danger: #DC2626;
  --gp-danger-soft: rgba(220, 38, 38, 0.1);
  --gp-line: rgba(15, 23, 42, 0.08);
  --gp-line-strong: rgba(15, 23, 42, 0.12);
  --gp-radius-sm: 1rem;
  --gp-radius: 1.25rem;
  --gp-radius-lg: 1.5rem;
  --gp-radius-xl: 1.5rem;
  --gp-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 16px -4px rgba(15, 23, 42, 0.06);
  --gp-shadow: 0 4px 24px -6px rgba(15, 23, 42, 0.08), 0 12px 40px -12px rgba(15, 23, 42, 0.06);
  --gp-shadow-lg: 0 20px 50px -16px rgba(15, 23, 42, 0.12), 0 8px 24px -8px rgba(47, 128, 237, 0.08);
  --gp-shadow-hover: 0 28px 60px -18px rgba(47, 128, 237, 0.18), 0 12px 32px -12px rgba(15, 23, 42, 0.1);
  --gp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gp-touch: 2.75rem;
  --gp-container: 78rem;
  --gp-section-py: clamp(3.5rem, 6vw, 5rem);

  background-color: var(--gp-bg);
  color: var(--gp-text);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.gmingo-promote *,
body.gmingo-promote *::before,
body.gmingo-promote *::after {
  box-sizing: border-box;
}

body.gmingo-promote button,
body.gmingo-promote input,
body.gmingo-promote select,
body.gmingo-promote textarea {
  font: inherit;
}

/* Layered page atmosphere */
body.gmingo-promote::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(56rem 38rem at 6% -2%, rgba(47, 128, 237, 0.07), transparent 58%),
    radial-gradient(48rem 34rem at 98% 18%, rgba(22, 163, 74, 0.05), transparent 55%),
    radial-gradient(40rem 28rem at 50% 108%, rgba(15, 23, 42, 0.04), transparent 52%),
    linear-gradient(180deg, var(--gp-bg) 0%, #ffffff 38%, var(--gp-bg) 100%);
}

body.gmingo-promote::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.022;
  background-image: url('../images/gmingo-chat-mark.svg');
  background-size: 160px 160px;
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
}

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes gp-aff-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.6deg); }
}

@keyframes gp-aff-float-alt {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-0.8deg); }
}

@keyframes gp-aff-float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes gp-aff-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
    transform: scale(1.02);
  }
}

@keyframes gp-aff-badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

@keyframes gp-aff-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -1.5%) scale(1.04); }
  66% { transform: translate(-1.5%, 2%) scale(0.98); }
}

@keyframes gp-aff-grid-shimmer {
  0% { opacity: 0.35; }
  50% { opacity: 0.55; }
  100% { opacity: 0.35; }
}

@keyframes gp-aff-ripple {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
body.gmingo-promote .gp-aff-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--gp-radius-lg);
  margin: 0 1rem clamp(2rem, 4vw, 3rem);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
  color: #fff;
  background: linear-gradient(145deg, #0B1628 0%, #102A52 38%, #1A4A9E 72%, var(--gp-primary) 115%);
  box-shadow: var(--gp-shadow-lg);
}

body.gmingo-promote .gp-aff-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: transform;
}

body.gmingo-promote .gp-aff-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 22, 40, 0.72) 0%,
    rgba(47, 128, 237, 0.48) 48%,
    rgba(8, 18, 36, 0.78) 100%
  );
}

body.gmingo-promote .gp-aff-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  z-index: 1;
  animation: gp-aff-orb-drift 18s ease-in-out infinite;
}

body.gmingo-promote .gp-aff-hero__orb:nth-child(1) {
  width: 18rem;
  height: 18rem;
  top: -6rem;
  right: -4rem;
  background: rgba(47, 128, 237, 0.35);
}

body.gmingo-promote .gp-aff-hero__orb:nth-child(2) {
  width: 14rem;
  height: 14rem;
  bottom: -4rem;
  left: -3rem;
  background: rgba(22, 163, 74, 0.28);
  animation-delay: -6s;
  animation-duration: 22s;
}

body.gmingo-promote .gp-aff-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  animation: gp-aff-grid-shimmer 8s ease-in-out infinite;
}

body.gmingo-promote .gp-aff-hero__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

body.gmingo-promote .gp-aff-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.gmingo-promote .gp-aff-hero__title {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
}

body.gmingo-promote .gp-aff-hero__lead {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(241, 245, 249, 0.9);
}

/* ── Hero action buttons ──────────────────────────────────────────── */
body.gmingo-promote .gp-aff-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

body.gmingo-promote .gp-aff-hero__actions > a,
body.gmingo-promote .gp-aff-hero__actions > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.3s ease,
              background 0.25s ease,
              border-color 0.25s ease;
  overflow: hidden;
}

/* Primary: "Become an Affiliate" */
body.gmingo-promote .gp-aff-hero__actions > a:first-child,
body.gmingo-promote .gp-aff-hero__actions > button:first-child {
  color: #fff;
  background: linear-gradient(135deg, #34d399 0%, #10b981 40%, #059669 100%);
  box-shadow: 0 8px 32px -8px rgba(16, 185, 129, 0.65),
              0 2px 8px rgba(0,0,0,.12),
              inset 0 1px 0 rgba(255,255,255,.18);
  border: none;
}

body.gmingo-promote .gp-aff-hero__actions > a:first-child::before,
body.gmingo-promote .gp-aff-hero__actions > button:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

body.gmingo-promote .gp-aff-hero__actions > a:first-child:hover,
body.gmingo-promote .gp-aff-hero__actions > button:first-child:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px -10px rgba(16, 185, 129, 0.75), 0 4px 12px rgba(0,0,0,.14);
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 40%, #10b981 100%);
}

body.gmingo-promote .gp-aff-hero__actions > a:first-child:active,
body.gmingo-promote .gp-aff-hero__actions > button:first-child:active {
  transform: translateY(0) scale(0.97);
}

/* Secondary: "Browse Products" */
body.gmingo-promote .gp-aff-hero__actions > a:last-child:not(:only-child),
body.gmingo-promote .gp-aff-hero__actions > button:last-child:not(:only-child) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}

body.gmingo-promote .gp-aff-hero__actions > a:last-child:not(:only-child):hover,
body.gmingo-promote .gp-aff-hero__actions > button:last-child:not(:only-child):hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px -6px rgba(255,255,255,.25), inset 0 1px 0 rgba(255,255,255,.2);
}

body.gmingo-promote .gp-aff-hero__actions > a:last-child:not(:only-child):active,
body.gmingo-promote .gp-aff-hero__actions > button:last-child:not(:only-child):active {
  transform: translateY(0) scale(0.97);
}

/* Mobile: stack buttons full-width below ~380px */
@media (max-width: 479px) {
  body.gmingo-promote .gp-aff-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.gmingo-promote .gp-aff-hero__actions > a,
  body.gmingo-promote .gp-aff-hero__actions > button {
    width: 100%;
    min-height: 3.25rem;
    font-size: 1rem;
  }
}

body.gmingo-promote .gp-aff-hero__visual {
  position: relative;
  z-index: 2;
  display: none;
  min-height: 16rem;
}

@media (min-width: 1024px) {
  body.gmingo-promote .gp-aff-hero {
    padding: clamp(3.5rem, 5vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  }

  body.gmingo-promote .gp-aff-hero__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2.5rem;
  }

  body.gmingo-promote .gp-aff-hero__visual {
    display: block;
    min-height: 20rem;
  }
}

body.gmingo-promote .gp-aff-hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--gp-container);
  margin-inline: auto;
}

body.gmingo-promote .gp-aff-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}

/* Floating hero cards */
body.gmingo-promote .gp-aff-float-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--gp-radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

body.gmingo-promote .gp-aff-float-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.gmingo-promote .gp-aff-float-card--earn {
  top: 8%;
  right: 4%;
  flex-direction: column;
  animation: gp-aff-float 5.5s ease-in-out infinite;
}

body.gmingo-promote .gp-aff-float-card--commission {
  top: 42%;
  left: 0;
  flex-direction: column;
  animation: gp-aff-float-alt 6.8s ease-in-out infinite;
  animation-delay: -1.2s;
}

body.gmingo-promote .gp-aff-float-card--ref {
  bottom: 10%;
  right: 12%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: gp-aff-float-slow 7.5s ease-in-out infinite;
  animation-delay: -2.4s;
}

body.gmingo-promote .gp-aff-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.22);
  animation: gp-aff-badge-pulse 2.4s ease-in-out infinite;
}

body.gmingo-promote .gp-aff-badge-pulse::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gp-success);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: gp-aff-pulse 2.4s ease-in-out infinite;
}

/* ==========================================================================
   Sections & layout
   ========================================================================== */
body.gmingo-promote .gp-aff-section {
  padding: var(--gp-section-py) 0;
  overflow: hidden;
}

body.gmingo-promote .gp-aff-section--alt {
  background: linear-gradient(
    180deg,
    rgba(241, 245, 249, 0) 0%,
    rgba(241, 245, 249, 0.75) 12%,
    rgba(241, 245, 249, 0.75) 88%,
    rgba(241, 245, 249, 0) 100%
  );
}

body.gmingo-promote .gp-aff-container {
  width: 100%;
  max-width: var(--gp-container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

body.gmingo-promote .gp-aff-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3rem);
}

body.gmingo-promote .gp-aff-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gp-primary);
}

body.gmingo-promote .gp-aff-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gp-text);
}

body.gmingo-promote .gp-aff-lead {
  margin: 0.85rem 0 0;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--gp-secondary);
}

/* Premium section banners */
body.gmingo-promote .gp-aff-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.15rem;
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  padding: 1.15rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid #dbeafe;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(47, 128, 237, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #f8fbff 0%, #fff 72%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 16px 36px -24px rgba(30, 58, 138, 0.28);
  text-align: left;
}
body.gmingo-promote .gp-aff-banner--why {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(47, 128, 237, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #f8fbff 0%, #fff 72%);
}
body.gmingo-promote .gp-aff-banner--catalog {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(30, 58, 138, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #f5f8ff 0%, #fff 72%);
  border-color: #c7d7f5;
}
body.gmingo-promote .gp-aff-banner--calc {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(22, 163, 74, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, #f7fcf9 0%, #fff 72%);
  border-color: #d1fae5;
}
body.gmingo-promote .gp-aff-banner--stories {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(47, 128, 237, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #f8fbff 0%, #fff 72%);
}
body.gmingo-promote .gp-aff-banner--faq {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(30, 58, 138, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, #f8fbff 0%, #fff 72%);
}
body.gmingo-promote .gp-aff-banner__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 48%, #2f80ed 100%);
  color: #fff;
  box-shadow:
    0 12px 22px -12px rgba(47, 128, 237, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative;
}
body.gmingo-promote .gp-aff-banner__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}
body.gmingo-promote .gp-aff-banner--calc .gp-aff-banner__icon {
  background: linear-gradient(145deg, #166534 0%, #16a34a 100%);
  box-shadow:
    0 12px 22px -12px rgba(22, 163, 74, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
body.gmingo-promote .gp-aff-banner__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  position: relative;
  z-index: 1;
}
body.gmingo-promote .gp-aff-banner__copy {
  flex: 1;
  min-width: 12rem;
}
body.gmingo-promote .gp-aff-banner__kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f80ed;
}
body.gmingo-promote .gp-aff-banner--calc .gp-aff-banner__kicker {
  color: #15803d;
}
body.gmingo-promote .gp-aff-banner__title {
  margin: 0.3rem 0 0;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e3a8a;
  line-height: 1.2;
}
body.gmingo-promote .gp-aff-banner__meta {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  max-width: 40rem;
}
@media (max-width: 639px) {
  body.gmingo-promote .gp-aff-banner {
    padding: 1rem 1.05rem;
    gap: 0.75rem;
  }
  body.gmingo-promote .gp-aff-banner__icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.85rem;
  }
}

/* ==========================================================================
   Steps (How it works)
   ========================================================================== */
body.gmingo-promote .gp-aff-steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  body.gmingo-promote .gp-aff-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    position: relative;
    align-items: stretch;
  }
  body.gmingo-promote .gp-aff-steps::before {
    content: '';
    position: absolute;
    top: 3.35rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.35), rgba(47, 128, 237, 0.55), rgba(47, 128, 237, 0.35), transparent);
    z-index: 0;
    pointer-events: none;
  }
  body.gmingo-promote .gp-aff-step {
    z-index: 1;
    margin-inline: 0.65rem;
  }
}

@media (max-width: 767px) {
  body.gmingo-promote .gp-aff-steps {
    position: relative;
    padding-left: 0.25rem;
  }
  body.gmingo-promote .gp-aff-steps::before {
    content: '';
    position: absolute;
    left: 1.85rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(47, 128, 237, 0.15), rgba(47, 128, 237, 0.45), rgba(47, 128, 237, 0.15));
    z-index: 0;
  }
  body.gmingo-promote .gp-aff-step {
    z-index: 1;
    align-items: flex-start;
    text-align: left;
    padding-left: 1.25rem;
  }
}

body.gmingo-promote .gp-aff-step__num {
  display: none !important;
}

body.gmingo-promote .gp-aff-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--gp-radius-lg);
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-sm);
  transition: transform 0.4s var(--gp-ease), box-shadow 0.4s var(--gp-ease), border-color 0.35s ease;
  overflow: hidden;
}

body.gmingo-promote .gp-aff-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.06) 0%, transparent 45%, rgba(22, 163, 74, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

body.gmingo-promote .gp-aff-step:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 237, 0.2);
  box-shadow: var(--gp-shadow-hover);
}

body.gmingo-promote .gp-aff-step:hover::after {
  opacity: 1;
}

body.gmingo-promote .gp-aff-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gp-primary-hover);
  background: linear-gradient(145deg, #E8F2FE 0%, #D4E6FC 100%);
  box-shadow: 0 8px 24px -8px var(--gp-primary-glow);
  transition: transform 0.45s var(--gp-ease-spring);
}

body.gmingo-promote .gp-aff-step:hover .gp-aff-step__num {
  transform: scale(1.08) translateY(-2px);
}

body.gmingo-promote .gp-aff-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.85rem;
  background: var(--gp-primary-soft);
  color: var(--gp-primary);
}

body.gmingo-promote .gp-aff-step h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gp-text);
}

body.gmingo-promote .gp-aff-step p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gp-secondary);
}

body.gmingo-promote .gp-aff-step__copy-url {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  min-width: 0;
}
body.gmingo-promote .gp-aff-step__copy-field {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(47, 128, 237, 0.18);
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
body.gmingo-promote .gp-aff-step__copy-ico {
  flex-shrink: 0;
  color: #2F80ED;
}
body.gmingo-promote .gp-aff-step__copy-input,
body.gmingo-promote .gp-aff-step__copy-url code {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.gmingo-promote .gp-aff-step__copy-input:focus {
  outline: none;
}
body.gmingo-promote .gp-aff-step__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #2F80ED 0%, #1d6fd8 55%, #155ec0 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px -14px rgba(47, 128, 237, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}
body.gmingo-promote .gp-aff-step__copy-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 26px -14px rgba(47, 128, 237, 0.95);
  color: #fff;
}
body.gmingo-promote .gp-aff-step__copy-btn:active {
  transform: translateY(0) scale(0.98);
}
body.gmingo-promote .gp-aff-step__copy-btn.is-copied {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 10px 22px -14px rgba(5, 150, 105, 0.85);
}
body.gmingo-promote .gp-aff-step__copy-btn--ghost {
  background: #fff;
  color: #1d6fd8;
  border: 1px solid rgba(47, 128, 237, 0.35);
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.25);
}
body.gmingo-promote .gp-aff-step__copy-btn--ghost:hover {
  background: #eff6ff;
  color: #1d6fd8;
  filter: none;
}
body.gmingo-promote .gp-aff-step__copy-btn svg {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  body.gmingo-promote .gp-aff-step {
    overflow: visible;
  }
  body.gmingo-promote .gp-aff-step__copy-url {
    margin-top: 1.1rem;
  }
  body.gmingo-promote .gp-aff-step__copy-input,
  body.gmingo-promote .gp-aff-step__copy-url code {
    font-size: 0.64rem;
  }
  body.gmingo-promote .gp-aff-step__copy-btn {
    min-height: 2.65rem;
    font-size: 0.8rem;
  }
}
body.gmingo-promote .gp-aff-step__wallet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gp-success);
  background: var(--gp-success-soft);
}

/* ==========================================================================
   Benefits
   ========================================================================== */
body.gmingo-promote .gp-aff-benefits {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  body.gmingo-promote .gp-aff-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  body.gmingo-promote .gp-aff-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

body.gmingo-promote .gp-aff-benefit {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-sm);
  transition: transform 0.4s var(--gp-ease), box-shadow 0.4s var(--gp-ease), border-color 0.35s ease;
  overflow: hidden;
}

body.gmingo-promote .gp-aff-benefit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, var(--gp-primary), var(--gp-success));
  transition: height 0.45s var(--gp-ease);
}

body.gmingo-promote .gp-aff-benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 128, 237, 0.18);
  box-shadow: var(--gp-shadow);
}

body.gmingo-promote .gp-aff-benefit:hover::before {
  height: 100%;
}

body.gmingo-promote .gp-aff-benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  font-size: 1.15rem;
  color: var(--gp-primary);
  background: var(--gp-primary-soft);
}

body.gmingo-promote .gp-aff-benefit h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gp-text);
  transition: color 0.3s ease;
}

body.gmingo-promote .gp-aff-benefit:hover h3 {
  color: var(--gp-primary-hover);
}

body.gmingo-promote .gp-aff-benefit p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gp-secondary);
}

/* ==========================================================================
   Stats
   ========================================================================== */
body.gmingo-promote .gp-aff-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  body.gmingo-promote .gp-aff-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

body.gmingo-promote .gp-aff-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-sm);
}

body.gmingo-promote .gp-aff-stat strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gp-primary);
  font-variant-numeric: tabular-nums;
}

body.gmingo-promote .gp-aff-stat span {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gp-secondary);
}

/* ==========================================================================
   Commission calculator
   ========================================================================== */
body.gmingo-promote .gp-aff-calc {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--gp-radius-lg);
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow);
}

body.gmingo-promote .gp-aff-calc__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  body.gmingo-promote .gp-aff-calc__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 1.25rem;
  }
}

body.gmingo-promote .gp-aff-calc__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.gmingo-promote .gp-aff-calc__field label,
body.gmingo-promote .gp-aff-calc__field > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gp-secondary);
}

body.gmingo-promote .gp-aff-calc__field input,
body.gmingo-promote .gp-aff-calc__field select {
  width: 100%;
  min-height: var(--gp-touch);
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gp-line-strong);
  background: var(--gp-bg);
  color: var(--gp-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.gmingo-promote .gp-aff-calc__field input:focus,
body.gmingo-promote .gp-aff-calc__field select:focus {
  outline: none;
  border-color: var(--gp-primary);
  box-shadow: 0 0 0 3px var(--gp-primary-soft);
}

body.gmingo-promote .gp-aff-calc__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--gp-radius);
  text-align: center;
  background: linear-gradient(145deg, var(--gp-primary-soft) 0%, var(--gp-success-soft) 100%);
  border: 1px solid rgba(47, 128, 237, 0.12);
}

body.gmingo-promote .gp-aff-calc__result > p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--gp-secondary);
  line-height: 1.4;
}

body.gmingo-promote .gp-aff-calc__result span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gp-secondary);
}

body.gmingo-promote .gp-aff-calc__amount {
  margin: 0 !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gp-success);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

/* ==========================================================================
   Success stories
   ========================================================================== */
body.gmingo-promote .gp-aff-stories {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  body.gmingo-promote .gp-aff-stories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

body.gmingo-promote .gp-aff-story {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--gp-radius-lg);
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-sm);
  transition: transform 0.4s var(--gp-ease), box-shadow 0.4s var(--gp-ease);
}

body.gmingo-promote .gp-aff-story:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow);
}

body.gmingo-promote .gp-aff-story__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.gmingo-promote .gp-aff-story__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #2f80ed 0%, #1d4ed8 100%);
  border: 2px solid var(--gp-line);
}

body.gmingo-promote .gp-aff-story__avatar--photo {
  background: #e2e8f0;
  padding: 0;
}

body.gmingo-promote .gp-aff-story__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.gmingo-promote .gp-aff-story__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gp-success);
}

body.gmingo-promote .gp-aff-story blockquote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gp-secondary);
  font-style: italic;
}

body.gmingo-promote .gp-aff-story cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gp-text);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
body.gmingo-promote .gp-aff-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

body.gmingo-promote .gp-aff-faq-item {
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-sm);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.gmingo-promote .gp-aff-faq-item:has(.gp-aff-faq-trigger[aria-expanded="true"]) {
  border-color: rgba(47, 128, 237, 0.22);
  box-shadow: var(--gp-shadow);
}

body.gmingo-promote .gp-aff-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: var(--gp-touch);
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gp-text);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

body.gmingo-promote .gp-aff-faq-trigger:hover {
  color: var(--gp-primary);
  background: rgba(47, 128, 237, 0.03);
}

body.gmingo-promote .gp-aff-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--gp-primary);
  background: var(--gp-primary-soft);
  transition: transform 0.35s var(--gp-ease), background 0.25s ease;
}

body.gmingo-promote .gp-aff-faq-trigger[aria-expanded="true"] .gp-aff-faq-icon {
  transform: rotate(180deg);
  background: var(--gp-primary);
  color: #fff;
}

body.gmingo-promote .gp-aff-faq-answer {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gp-secondary);
}

body.gmingo-promote .gp-aff-faq-answer[hidden] {
  display: none;
}

body.gmingo-promote .gp-aff-faq-answer code {
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  font-size: 0.8rem;
  background: var(--gp-bg);
  border: 1px solid var(--gp-line);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
body.gmingo-promote .gp-aff-cta {
  padding: var(--gp-section-py) 0;
}

body.gmingo-promote .gp-aff-cta__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--gp-radius-lg);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1A4A9E 0%, var(--gp-primary) 55%, #3B9AEF 100%);
  box-shadow: var(--gp-shadow-lg);
}

body.gmingo-promote .gp-aff-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 255, 255, 0.15), transparent 55%);
  pointer-events: none;
}

body.gmingo-promote .gp-aff-cta__inner h2 {
  position: relative;
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.gmingo-promote .gp-aff-cta__inner p {
  position: relative;
  margin: 0.75rem auto 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(241, 245, 249, 0.9);
}

body.gmingo-promote .gp-aff-cta__inner .gp-aff-hero__actions {
  position: relative;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Products section head
   ========================================================================== */
body.gmingo-promote .gp-aff-products-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

body.gmingo-promote .gp-aff-products-head .gp-aff-title {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Product grid (homepage matching)
   ========================================================================== */
body.gmingo-promote #promote-products-grid.gp-aff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  body.gmingo-promote #promote-products-grid.gp-aff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  body.gmingo-promote #promote-products-grid.gp-aff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* ==========================================================================
   Product cards
   ========================================================================== */
body.gmingo-promote .promote-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.25rem;
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-sm);
  overflow: hidden;
  transition:
    transform 0.38s var(--gp-ease),
    box-shadow 0.38s var(--gp-ease),
    border-color 0.35s ease;
}

body.gmingo-promote .promote-product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(47, 128, 237, 0.45);
  box-shadow:
    0 4px 8px -4px rgba(26, 58, 124, 0.08),
    0 22px 44px -18px rgba(26, 58, 124, 0.18),
    0 12px 24px -12px rgba(47, 128, 237, 0.12);
}

body.gmingo-promote .promote-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, #F1F5F9 0%, #E8EEF5 100%);
  flex-shrink: 0;
}

body.gmingo-promote .promote-product-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
}

body.gmingo-promote .promote-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.55s var(--gp-ease);
  transform-origin: center center;
}

body.gmingo-promote .promote-product-card:hover .promote-product-card__img {
  transform: scale(1.04);
}

/* Legacy markup: img without BEM class */
body.gmingo-promote .promote-product-card__media img:not(.promote-product-card__img) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.55s var(--gp-ease);
}

body.gmingo-promote .promote-product-card:hover .promote-product-card__media img {
  transform: scale(1.04);
}

body.gmingo-promote .promote-product-card__featured {
  position: absolute;
  top: 2.75rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #f97316;
}

body.gmingo-promote .promote-product-card__cat {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

body.gmingo-promote .promote-product-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  min-height: 2.25rem;
}

body.gmingo-promote .promote-product-card__deal {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #2f80ed 0%, #1a3a7c 100%);
}

body.gmingo-promote .promote-product-card__brand {
  margin: 0.45rem 0 0;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  color: #1a3a7c;
  background: #eff6ff;
  border: 1px solid rgba(47, 128, 237, 0.25);
  border-radius: 0.35rem;
  padding: 0.15rem 0.45rem;
}

body.gmingo-promote .promote-product-card__wish {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--gp-touch);
  height: var(--gp-touch);
  min-width: var(--gp-touch);
  min-height: var(--gp-touch);
  padding: 0;
  border: none;
  border-radius: 999px;
  color: var(--gp-secondary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: transform 0.3s var(--gp-ease), color 0.25s ease, background 0.25s ease;
}

body.gmingo-promote .promote-product-card__wish:hover,
body.gmingo-promote .promote-product-card__wish.is-active {
  color: #EF4444;
  transform: scale(1.08);
}

body.gmingo-promote .promote-product-card__commission {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #22C55E 0%, var(--gp-success) 100%);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  animation: gp-aff-pulse 2.8s ease-in-out infinite;
}

body.gmingo-promote .promote-product-card__discount {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border-radius: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: var(--gp-danger);
  box-shadow: 0 4px 12px var(--gp-danger-soft);
}

body.gmingo-promote .promote-product-card__verified {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gp-primary);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gp-line);
}

body.gmingo-promote .promote-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  min-height: 0;
}

body.gmingo-promote .promote-product-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gp-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

/* Legacy: h3 without BEM */
body.gmingo-promote .promote-product-card__body > h3:not(.promote-product-card__title) {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gp-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

body.gmingo-promote .promote-product-card__vendor {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gp-secondary);
}

body.gmingo-promote .promote-product-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gp-secondary);
}

body.gmingo-promote .promote-product-card__meta .rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
  color: #F59E0B;
}

body.gmingo-promote .promote-product-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

body.gmingo-promote .promote-product-card__price-row .price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gp-primary);
  font-variant-numeric: tabular-nums;
}

body.gmingo-promote .promote-product-card__price-row .compare {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gp-secondary);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

/* Legacy price class */
body.gmingo-promote .promote-product-card .promote-card-price {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gp-primary);
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s var(--gp-ease), color 0.3s ease;
}

body.gmingo-promote .promote-product-card:hover .promote-card-price {
  transform: scale(1.03);
  color: var(--gp-primary-hover);
}

body.gmingo-promote .promote-product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
  transition: transform 0.4s var(--gp-ease), opacity 0.35s ease;
}

@media (min-width: 1024px) {
  body.gmingo-promote .promote-product-card__actions {
    transform: translateY(0.35rem);
    opacity: 0.92;
  }

  body.gmingo-promote .promote-product-card:hover .promote-product-card__actions {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Legacy actions wrapper */
body.gmingo-promote .promote-product-card__body > .mt-4,
body.gmingo-promote .promote-product-card__body > div:last-child:not(.promote-product-card__meta):not(.promote-product-card__price-row) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

/* Card buttons */
body.gmingo-promote .promote-card-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #4A9AF7 0%, var(--gp-primary) 55%, var(--gp-primary-hover) 100%);
  box-shadow: 0 6px 20px -6px rgba(47, 128, 237, 0.5);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.32s var(--gp-ease), box-shadow 0.32s var(--gp-ease), filter 0.3s ease;
}

body.gmingo-promote .promote-card-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255, 255, 255, 0.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.gmingo-promote .promote-card-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(47, 128, 237, 0.55);
  filter: brightness(1.04);
}

body.gmingo-promote .promote-card-btn-primary:active::after {
  opacity: 1;
}

body.gmingo-promote .promote-card-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--gp-text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--gp-line-strong);
  cursor: pointer;
  transition: transform 0.32s var(--gp-ease), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

body.gmingo-promote .promote-card-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 128, 237, 0.3);
  background: #fff;
  box-shadow: 0 8px 22px -10px rgba(15, 23, 42, 0.18);
}

body.gmingo-promote .promote-card-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--gp-text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--gp-line-strong);
  cursor: pointer;
  transition: transform 0.32s var(--gp-ease), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.25s ease;
}

body.gmingo-promote .promote-card-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 128, 237, 0.3);
  background: #fff;
  box-shadow: 0 8px 22px -10px rgba(15, 23, 42, 0.18);
  color: var(--gp-text);
}

/* Laptop/desktop: Promote full-width; View Product + Generate Link side-by-side */
@media (min-width: 768px) {
  body.gmingo-promote .promote-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
  }
  body.gmingo-promote .promote-card-btn-primary {
    grid-column: 1 / -1;
  }
  body.gmingo-promote .promote-card-btn-secondary {
    width: 100%;
    min-height: 2.5rem;
  }
  body.gmingo-promote .promote-gen-form {
    width: 100%;
    margin: 0;
    display: flex;
  }
  body.gmingo-promote .promote-gen-form .promote-card-btn-ghost,
  body.gmingo-promote .promote-product-card__actions > .promote-card-btn-ghost {
    width: 100%;
    min-height: 2.5rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--gp-line-strong);
    border-radius: 0.65rem;
    font-weight: 700;
    color: var(--gp-primary);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
  }
  body.gmingo-promote .promote-gen-form .promote-card-btn-ghost:hover,
  body.gmingo-promote .promote-product-card__actions > .promote-card-btn-ghost:hover {
    border-color: rgba(47, 128, 237, 0.35);
    background: var(--gp-primary-soft);
    color: var(--gp-primary-hover);
    transform: none;
    box-shadow: none;
  }
}

/* ==========================================================================
   Load more button
   ========================================================================== */
body.gmingo-promote #promote-products-load-more.gp-aff-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 12.5rem;
  min-height: var(--gp-touch);
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--gp-radius);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #4A9AF7 0%, var(--gp-primary) 45%, var(--gp-primary-hover) 100%);
  box-shadow: 0 10px 32px -10px rgba(47, 128, 237, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.38s var(--gp-ease), box-shadow 0.38s var(--gp-ease), filter 0.3s ease;
}

body.gmingo-promote #promote-products-load-more.gp-aff-load-more:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -12px rgba(47, 128, 237, 0.62);
  filter: brightness(1.05);
}

body.gmingo-promote #promote-products-load-more.gp-aff-load-more:active:not(:disabled) {
  transform: translateY(-1px);
  transition-duration: 0.12s;
}

body.gmingo-promote #promote-products-load-more.gp-aff-load-more:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.gmingo-promote #promote-products-load-more.gp-aff-load-more.hidden {
  display: none;
}

/* Fallback: load more without gp-aff-load-more class */
body.gmingo-promote #promote-products-load-more:not(.gp-aff-load-more) {
  min-height: var(--gp-touch);
  border-radius: var(--gp-radius);
  transition: transform 0.35s var(--gp-ease), box-shadow 0.35s var(--gp-ease);
}

body.gmingo-promote #promote-products-load-more:not(.gp-aff-load-more):hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
body.gmingo-promote .gp-aff-reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--gp-ease), transform 0.7s var(--gp-ease);
  will-change: opacity, transform;
}

body.gmingo-promote .gp-aff-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.gmingo-promote .gp-aff-stagger > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.65s var(--gp-ease), transform 0.65s var(--gp-ease);
}

body.gmingo-promote .gp-aff-stagger.is-visible > *,
body.gmingo-promote .gp-aff-stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.gmingo-promote .gp-aff-stagger > *:nth-child(1) { transition-delay: 0ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(2) { transition-delay: 80ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(3) { transition-delay: 160ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(4) { transition-delay: 240ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(5) { transition-delay: 320ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(6) { transition-delay: 400ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(7) { transition-delay: 480ms; }
body.gmingo-promote .gp-aff-stagger > *:nth-child(8) { transition-delay: 560ms; }

/* ==========================================================================
   Focus & accessibility
   ========================================================================== */
body.gmingo-promote a:focus-visible,
body.gmingo-promote button:focus-visible {
  outline: 2px solid var(--gp-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  body.gmingo-promote .gp-aff-hero__orb,
  body.gmingo-promote .gp-aff-hero__grid,
  body.gmingo-promote .gp-aff-float-card,
  body.gmingo-promote .gp-aff-float-card--earn,
  body.gmingo-promote .gp-aff-float-card--commission,
  body.gmingo-promote .gp-aff-float-card--ref,
  body.gmingo-promote .gp-aff-badge-pulse,
  body.gmingo-promote .gp-aff-badge-pulse::before,
  body.gmingo-promote .promote-product-card__commission {
    animation: none !important;
  }

  body.gmingo-promote .gp-aff-reveal,
  body.gmingo-promote .gp-aff-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.gmingo-promote .gp-aff-step:hover,
  body.gmingo-promote .gp-aff-benefit:hover,
  body.gmingo-promote .gp-aff-story:hover,
  body.gmingo-promote .promote-product-card:hover,
  body.gmingo-promote .promote-product-card:hover .promote-product-card__img,
  body.gmingo-promote .promote-product-card:hover .promote-product-card__media img,
  body.gmingo-promote .promote-product-card:hover .promote-card-price,
  body.gmingo-promote .promote-card-btn-primary:hover,
  body.gmingo-promote .promote-card-btn-secondary:hover,
  body.gmingo-promote #promote-products-load-more.gp-aff-load-more:hover:not(:disabled),
  body.gmingo-promote #promote-products-load-more:not(.gp-aff-load-more):hover:not(:disabled),
  body.gmingo-promote .gp-aff-hero__actions > a:hover,
  body.gmingo-promote .gp-aff-hero__actions > button:hover {
    transform: none;
  }

  body.gmingo-promote .gp-aff-step:hover .gp-aff-step__num {
    transform: none;
  }

  body.gmingo-promote .gp-aff-faq-icon,
  body.gmingo-promote .gp-aff-faq-trigger[aria-expanded="true"] .gp-aff-faq-icon {
    transition-duration: 0.15s;
  }

  body.gmingo-promote .pp-flash--celebrate.is-pop,
  body.gmingo-promote .pp-flash__glow,
  body.gmingo-promote .promote-product-card.is-just-linked,
  body.gmingo-promote .promote-card-btn-ghost.is-pulse {
    animation: none !important;
  }
}

/* Generated affiliate link flash (mirrors affiliate/products.php) */
body.gmingo-promote .pp-flash {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid #a7f3d0;
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 55%);
  box-shadow: 0 18px 40px -28px rgba(5, 150, 105, 0.45);
  overflow: hidden;
}
body.gmingo-promote .pp-flash--celebrate.is-pop {
  animation: ppFlashPop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes ppFlashPop {
  0% { opacity: 0; transform: translateY(-10px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}
body.gmingo-promote .pp-flash__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background: radial-gradient(ellipse at 50% 0%, rgba(52, 211, 153, 0.35), transparent 62%);
  pointer-events: none;
}
body.gmingo-promote .pp-flash__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
body.gmingo-promote .pp-flash__check {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #059669;
  color: #fff;
}
body.gmingo-promote .pp-flash__check svg { width: 1.2rem; height: 1.2rem; }
body.gmingo-promote .pp-flash__title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #064e3b;
}
body.gmingo-promote .pp-flash__sub {
  margin: 0.25rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #047857;
  font-weight: 500;
}
body.gmingo-promote .pp-flash__row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
body.gmingo-promote .pp-flash input {
  flex: 1 1 14rem;
  min-width: 0;
  min-height: 2.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.75rem;
  border: 1.5px solid #a7f3d0;
  background: #fff;
  font-size: 0.84rem;
  color: #0f172a;
}
body.gmingo-promote .pp-flash input:focus {
  outline: none;
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.18);
}
body.gmingo-promote .pp-flash input.is-copied {
  border-color: #34d399;
  background: #f0fdf4;
}
body.gmingo-promote .pp-flash__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.65rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
body.gmingo-promote .pp-flash__btn svg { width: 1rem; height: 1rem; }
body.gmingo-promote .pp-flash__btn--primary {
  background: #059669;
  color: #fff;
}
body.gmingo-promote .pp-flash__btn--primary.is-copied {
  background: #047857;
}
body.gmingo-promote .pp-flash__btn--open {
  background: linear-gradient(135deg, #1e3a8a, #2f80ed);
  color: #fff;
}
body.gmingo-promote .promote-gen-form {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
}
body.gmingo-promote .promote-gen-form .promote-card-btn-ghost {
  width: 100%;
}
body.gmingo-promote .promote-product-card.is-just-linked {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.45), 0 18px 40px -24px rgba(15, 23, 42, 0.35);
}
body.gmingo-promote .promote-card-btn-ghost.is-pulse {
  animation: ppLinkPulse 1.4s ease-in-out 3;
  color: #047857;
  font-weight: 700;
}
@keyframes ppLinkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
