@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --pink: #f4b6d2;
  --pink-deep: #e98bb6;
  --pink-dark: #9f3f70;
  --pink-soft: #fff1f7;
  --ink: #22202a;
  --muted: #686572;
  --white: #ffffff;
  --border: rgba(36, 28, 38, 0.09);
  --shadow: 0 24px 70px rgba(73, 29, 51, 0.20);
  --card-shadow: 0 10px 28px rgba(71, 30, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.72), transparent 26rem),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,.48), transparent 30rem),
    var(--pink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  opacity: .28;
  background: #fff;
}

.glow-one {
  top: -8rem;
  left: -8rem;
}

.glow-two {
  right: -10rem;
  bottom: -8rem;
}

.site-card {
  position: relative;
  z-index: 5;
  width: min(94vw, 610px);
  margin: 6rem auto 4rem;
  padding: 2.2rem clamp(1rem, 4vw, 2rem) 1.25rem;
  background: rgba(255,255,255,.98);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.site-header {
  text-align: center;
  padding: .25rem .5rem 1.5rem;
}

.channel-banner {
  width: 100%;
  height: 176px;
  margin: 0 auto 1.25rem;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.98);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(71, 30, 50, .12);
  overflow: hidden;
}

.channel-banner img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.tagline {
  margin: .7rem 0 1rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}

.store-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.store-link:hover {
  transform: translateY(-1px);
  background: #ffe2ef;
}

.section-heading {
  margin: .25rem 0 1rem;
}

.eyebrow {
  display: block;
  margin-bottom: .35rem;
  color: var(--pink-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.section-heading h2 {
  margin: 0;
  color: var(--pink-dark);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .13em;
}


.last-updated {
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.4;
}

.last-updated strong {
  color: var(--ink);
}

.products-heading {
  margin-top: 2rem;
}

.products-heading p {
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.coupon-list {
  display: grid;
  gap: 1rem;
}

.coupon-card,
.product-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.coupon-card {
  padding: 1.2rem;
}

.coupon-card.featured {
  border: 2px solid var(--pink-deep);
  background:
    linear-gradient(135deg, #fff, #fff7fb);
}

.coupon-topline {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
  margin-bottom: .75rem;
}

.badge,
.discount,
.product-discount {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.badge {
  padding: .4rem .6rem;
  border-radius: 999px;
  color: #fff;
  background: var(--pink-dark);
}

.permanent-badge {
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.coupon-status-row {
  margin: -.1rem 0 .75rem;
}

.coupon-status {
  display: inline-flex;
  align-items: center;
  padding: .36rem .62rem;
  border-radius: 8px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.discount,
.product-discount {
  color: var(--pink-dark);
}

.product-status {
  display: inline-block;
  margin: .3rem 0 .2rem;
  padding: .28rem .45rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.active-status {
  color: #2f6b43;
  background: #edf7f0;
}

.expired-status {
  color: #6d6871;
  background: #efedef;
}

.coupon-card h3,
.product-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.28;
  letter-spacing: -.02em;
}

.coupon-note {
  margin: .45rem 0 .9rem;
  color: var(--muted);
  font-size: .88rem;
}

.code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
  margin: 1rem 0 .75rem;
}

.code-box {
  min-width: 0;
  padding: .82rem .75rem;
  border: 2px dashed #e5a4c3;
  border-radius: 12px;
  color: var(--pink-dark);
  background: #fff8fb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  font-size: .95rem;
  text-align: center;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.copy-button {
  border: 0;
  border-radius: 12px;
  padding: .75rem .9rem;
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.copy-button:hover {
  transform: translateY(-1px);
}

.copy-button.copied {
  background: #5c8a68;
}

.copy-button.small {
  padding: .65rem .75rem;
  font-size: .82rem;
}

.primary-button,
.secondary-button,
.product-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  min-height: 46px;
  border-radius: 13px;
  padding: .75rem 1rem;
  text-decoration: none;
  font-weight: 800;
  transition: transform .15s ease, opacity .15s ease;
}

.primary-button {
  color: #fff;
  background: var(--pink-dark);
}

.secondary-button {
  color: var(--ink);
  background: #f4f2f4;
}

.primary-button:hover,
.secondary-button:hover,
.product-button:hover {
  transform: translateY(-1px);
}

.expiration {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .74rem;
  text-align: center;
}

.product-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1rem;
  padding: .8rem;
}

.product-media {
  min-height: 180px;
  overflow: hidden;
  border-radius: 16px;
}

.product-media.placeholder {
  display: grid;
  place-items: center;
  color: #a15b7e;
  background:
    linear-gradient(135deg, #ffe6f1, #f7c0d9);
  text-align: center;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: .25rem .25rem .3rem 0;
}

.product-content h3 {
  margin-top: .3rem;
  font-size: 1rem;
}

.code-line {
  margin: .65rem 0 .15rem;
  font-size: .84rem;
  color: var(--muted);
}

.code-line strong {
  color: var(--pink-dark);
  font-family: ui-monospace, monospace;
}

.product-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem;
  margin-top: .8rem;
}

.product-button {
  min-height: 42px;
  color: #fff;
  background: var(--ink);
  font-size: .82rem;
}

.review-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  min-height: 46px;
  margin-top: .65rem;
  padding: .72rem 1rem;
  border-radius: 12px;
  color: #fff;
  background: #e62117;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(198, 28, 21, .18);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.review-link:hover {
  transform: translateY(-1px);
  opacity: .96;
  box-shadow: 0 7px 18px rgba(198, 28, 21, .24);
}

.youtube-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.youtube-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.youtube-icon .youtube-play {
  fill: #e62117;
}

.review-arrow {
  margin-left: auto;
  font-size: 1rem;
}

.disabled-link {
  opacity: .55;
  cursor: default;
}

.site-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  font-size: .72rem;
  line-height: 1.5;
}

.disclosure {
  margin: 0 auto .55rem;
  max-width: 48rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 20;
  transform: translateX(-50%) translateY(120px);
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  transition: .2s ease;
}

.avatar-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.avatar {
  position: absolute;
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(65, 25, 47, .18));
}

.avatar-left-top {
  top: 1rem;
  left: calc(50% - 410px);
  transform: rotate(-5deg);
}

.avatar-right-middle {
  top: 16rem;
  left: calc(50% + 230px);
  transform: rotate(5deg);
}

.avatar-left-bottom {
  top: 39rem;
  left: calc(50% - 435px);
  transform: rotate(-4deg);
}

@media (max-width: 760px) {
  .site-card {
    margin-top: 4rem;
  }

  .avatar {
    width: 125px;
    opacity: .94;
  }

  .avatar-left-top {
    top: .6rem;
    left: -48px;
  }

  .avatar-right-middle {
    top: 15rem;
    left: auto;
    right: -48px;
  }

  .avatar-left-bottom {
    top: 34rem;
    left: -54px;
  }
}

@media (max-width: 560px) {
  .site-card {
    width: min(94vw, 520px);
    margin: 2rem auto 2.5rem;
    padding: 1.25rem .8rem 1rem;
    border-radius: 24px;
  }

  .channel-banner {
    height: 132px;
    margin-bottom: 1.05rem;
    border-radius: 18px;
  }

  .channel-banner img {
    border-radius: 13px;
  }

  .avatar {
    width: 102px;
    opacity: .92;
  }

  .avatar-left-top {
    top: .45rem;
    left: -38px;
  }

  .avatar-right-middle {
    top: 13.5rem;
    right: -38px;
  }

  .avatar-left-bottom {
    top: 31rem;
    left: -42px;
  }

  .code-row {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 190px;
  }

  .product-media img {
    min-height: 190px;
  }

  .product-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.archive-heading {
  margin-top: 2rem;
}

.expired-card {
  opacity: .78;
  background: #faf9fa;
}

.expired-card .product-media {
  position: relative;
}

.status-badge {
  position: absolute;
  left: .55rem;
  bottom: .55rem;
  padding: .35rem .5rem;
  border-radius: 999px;
  color: #fff;
  background: #6d6871;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.copy-button:disabled {
  cursor: not-allowed;
  opacity: .6;
}


/* V10: featured status badges share one horizontal row */
.featured-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: nowrap;
}

.featured-badges {
  flex-wrap: nowrap;
}

@media (max-width: 480px) {
  .featured-badges {
    gap: 6px;
  }

  .featured-badge-group {
    gap: 6px;
  }
}
