/* ==========================================================================
   KIDS SMARTPHONE — VISUAL REDESIGN LAYER
   Mobile-only (320–430px, reference 360px).
   Loaded AFTER the compiled Tailwind bundle, so unlayered rules here win.
   Structure, markup order and JS behaviour are untouched.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* surfaces */
  --rd-bg: #f2f5fb;
  --rd-surface: #ffffff;
  --rd-soft: rgba(83, 109, 254, 0.06);

  /* ink */
  --rd-text: #172033;
  --rd-muted: #667085;
  --rd-faint: #98a2b3;

  /* accent */
  --rd-accent: #536dfe;
  --rd-accent-ink: #3a51d6;
  --rd-accent-08: rgba(83, 109, 254, 0.08);
  --rd-accent-12: rgba(83, 109, 254, 0.12);
  --rd-accent-20: rgba(83, 109, 254, 0.2);

  /* warm secondary — price + discount only */
  --rd-warm: #ff5c8a;
  --rd-warm-08: rgba(255, 92, 138, 0.09);

  /* lines & shadows */
  --rd-line: rgba(23, 32, 51, 0.07);
  --rd-line-strong: rgba(23, 32, 51, 0.13);
  --rd-shadow: 0 10px 32px rgba(23, 32, 51, 0.07);
  --rd-shadow-sm: 0 4px 16px rgba(23, 32, 51, 0.05);
  --rd-shadow-cta: 0 10px 24px rgba(83, 109, 254, 0.28);

  /* radii */
  --rd-r-sm: 12px;
  --rd-r-md: 16px;
  --rd-r-lg: 20px;
  --rd-r-xl: 24px;
  --rd-r-pill: 999px;

  /* spacing */
  --rd-pad: 16px;
  --rd-s-xs: 8px;
  --rd-s-sm: 12px;
  --rd-s-md: 16px;
  --rd-s-lg: 24px;
  --rd-s-xl: 32px;
  --rd-s-section: 52px;

  /* type */
  --rd-font: "Manrope", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --rd-display: "Unbounded", "Manrope", "Montserrat", sans-serif;

  /* re-theme the compiled Tailwind tokens so untouched elements harmonise */
  --font-sans: "Manrope", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Manrope", "Nunito Sans", sans-serif;
  --font-commercial: "Manrope", "Montserrat", sans-serif;
  --color-brand-blue: #536dfe;
  --color-brand-pink: #ff5c8a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #e9edf6;
  font-family: var(--rd-font);
  color: var(--rd-text);
}

#root {
  background-color: var(--rd-surface);
  max-width: 430px;
  overflow-x: hidden;
  box-shadow: 0 0 40px rgba(23, 32, 51, 0.07);
}

/* --------------------------------------------------------------------------
   2. PAGE + SECTION RHYTHM
   -------------------------------------------------------------------------- */
.rd-page {
  font-family: var(--rd-font);
  color: var(--rd-text);
  background: var(--rd-surface);
  padding-bottom: 40px;
  overflow-x: clip;
}

.rd-sec {
  position: relative;
  width: 100%;
  padding: var(--rd-s-section) var(--rd-pad);
  background: var(--rd-surface);
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rd-sec--alt {
  background: var(--rd-bg);
}

.rd-sec > * {
  width: 100%;
  max-width: 398px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.rd-h1 {
  font-family: var(--rd-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--rd-text);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.rd-h1 .rd-h1__accent {
  display: block;
  margin-top: 8px;
  font-family: var(--rd-font);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--rd-accent);
}

.rd-h2 {
  font-family: var(--rd-display);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--rd-text);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 12px;
  text-wrap: balance;
}

.rd-rule {
  width: 40px;
  height: 3px;
  border-radius: var(--rd-r-pill);
  background: var(--rd-accent);
  margin: 0 0 24px;
  flex: none;
}

.rd-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--rd-muted);
  text-align: center;
  margin: 0 0 var(--rd-s-lg);
  max-width: 340px;
}

.rd-p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--rd-muted);
  margin: 0;
}

.rd-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rd-faint);
}

/* --------------------------------------------------------------------------
   4. ICONS — one consistent outline family (CSS masks, colour = currentColor)
   -------------------------------------------------------------------------- */
.rd-ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  background-color: currentColor;
  -webkit-mask-image: var(--rd-ico-url);
  mask-image: var(--rd-ico-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* --------------------------------------------------------------------------
   5. BADGES / PILLS
   -------------------------------------------------------------------------- */
.rd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--rd-r-pill);
  background: var(--rd-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 0;
  box-shadow: none;
  width: auto;
  animation: none;
}

.rd-badge--warm {
  background: var(--rd-warm);
}

.rd-badge--soft {
  background: var(--rd-accent-08);
  color: var(--rd-accent-ink);
}

.rd-badge__ico {
  width: 14px;
  height: 14px;
}

.rd-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--rd-s-xs);
  margin: 0 0 var(--rd-s-md);
}

.rd-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--rd-r-pill);
  background: var(--rd-accent-08);
  border: 1px solid var(--rd-accent-12);
  color: var(--rd-accent-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.rd-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--rd-s-xs);
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 0;
  border-radius: 15px;
  font-family: var(--rd-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--rd-accent);
  color: #fff;
  box-shadow: var(--rd-shadow-cta);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
  animation: none;
  text-align: center;
}

.rd-btn:active {
  transform: scale(0.985);
  box-shadow: 0 6px 16px rgba(83, 109, 254, 0.24);
  background: var(--rd-accent-ink);
}

.rd-btn--ghost {
  background: var(--rd-surface);
  color: var(--rd-accent-ink);
  border: 1px solid var(--rd-accent-20);
  box-shadow: var(--rd-shadow-sm);
  min-height: 50px;
  font-size: 15px;
  margin-top: var(--rd-s-md);
}

.rd-btn--ghost:active {
  background: var(--rd-accent-08);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   7. PRICE COMPONENT (identical everywhere it appears)
   -------------------------------------------------------------------------- */
.rd-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: var(--rd-s-sm);
  row-gap: 2px;
  width: 100%;
  padding: 16px 18px;
  margin: 0 0 var(--rd-s-sm);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-lg);
  box-shadow: var(--rd-shadow);
  text-align: left;
  white-space: normal;
}

.rd-sec--alt .rd-price {
  box-shadow: var(--rd-shadow);
}

.rd-price__old {
  grid-column: 1;
  grid-row: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--rd-faint);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}

.rd-price__old span {
  text-decoration: line-through;
}

.rd-price__div {
  display: none;
}

.rd-price__now {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--rd-muted);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.1;
}

.rd-price__label {
  display: none;
}

.rd-price__value {
  font-family: var(--rd-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rd-text);
  line-height: 1;
}

.rd-price__cur {
  font-size: 17px;
  font-weight: 700;
  color: var(--rd-text);
  text-transform: lowercase;
}

.rd-price__badge {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--rd-r-pill);
  background: var(--rd-warm);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* promo window */
.rd-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  margin: 0 0 var(--rd-s-lg);
  background: var(--rd-warm-08);
  border: 1px solid rgba(255, 92, 138, 0.18);
  border-radius: var(--rd-r-md);
  color: #c93a67;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  overflow: visible;
  animation: none;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.rd-hero {
  padding-top: 28px;
  padding-bottom: 40px;
  overflow: hidden;
  text-align: center;
}

.rd-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
  animation: none;
  width: 200px;
  height: 200px;
}

.rd-glow--a {
  top: -60px;
  left: -70px;
  background: rgba(83, 109, 254, 0.16);
}

.rd-glow--b {
  top: 90px;
  right: -80px;
  background: rgba(255, 92, 138, 0.13);
}

.rd-hero > * {
  position: relative;
  z-index: 1;
}

.rd-hero > .rd-glow {
  position: absolute;
  z-index: 0;
}

.rd-hero__badge {
  margin: 0 0 16px;
}

.rd-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 4px 0 28px;
  min-height: 470px;
}

.rd-hero__device {
  position: relative;
  z-index: 2;
}

.rd-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rd-line);
  box-shadow: 0 6px 18px rgba(23, 32, 51, 0.08);
  color: var(--rd-accent);
  font-size: 20px;
}

.rd-chip .rd-ico {
  width: 20px;
  height: 20px;
}

/* two calm columns rather than a scatter */
.rd-chip--1 { left: -2px;  top: 34px; }   /* camera  */
.rd-chip--6 { left: -2px;  top: 214px; }  /* video   */
.rd-chip--3 { left: -2px;  top: 394px; }  /* games   */
.rd-chip--2 { right: -2px; top: 96px; }   /* music   */
.rd-chip--4 { right: -2px; top: 276px; }  /* alarm   */
.rd-chip--5 { right: -2px; top: 456px; }  /* drawing */

.rd-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rd-s-xs);
  margin: 0 0 var(--rd-s-md);
}

.rd-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: var(--rd-r-md);
  background: var(--rd-accent-08);
  border: 1px solid var(--rd-accent-12);
  color: var(--rd-accent-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.01em;
}

.rd-fact .rd-ico {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   9. MEDIA FRAMES
   -------------------------------------------------------------------------- */
.rd-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--rd-r-xl);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  box-shadow: var(--rd-shadow);
  margin: 0 0 var(--rd-s-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-media__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.rd-media__img--cover {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rd-media__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--rd-r-pill);
  background: rgba(23, 32, 51, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--rd-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.rd-media__tag--accent {
  background: var(--rd-accent);
}

/* product callout tags share the accent; the warm tone stays reserved for
   the discount / promo elements only */
.rd-media__tag--warm {
  background: var(--rd-accent);
}

.rd-media__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: none;
}

/* video */
.rd-video {
  width: 100%;
  overflow: hidden;
  border-radius: var(--rd-r-xl);
  background: #0e1526;
  border: 1px solid var(--rd-line);
  box-shadow: var(--rd-shadow);
  aspect-ratio: 9 / 16;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.rd-grid {
  display: grid;
  gap: var(--rd-s-sm);
}

.rd-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rd-card {
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-lg);
  box-shadow: var(--rd-shadow);
  padding: 18px;
}

/* feature card (benefits, learning) */
.rd-fcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  padding: 16px 13px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-lg);
  box-shadow: var(--rd-shadow);
  transition: none;
}

.rd-fcard__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0 8px;
  border-radius: 13px;
  background: var(--rd-accent-08);
  color: var(--rd-accent);
  filter: none;
  font-size: 20px;
}

.rd-fcard__ico .rd-ico {
  width: 21px;
  height: 21px;
}

.rd-fcard__title {
  font-family: var(--rd-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--rd-text);
  margin: 0;
}

.rd-fcard__text {
  font-size: 13px;
  line-height: 1.42;
  color: var(--rd-muted);
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

/* app grid */
.rd-appgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 8px;
}

.rd-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: none;
}

.rd-app__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--rd-r-md);
  background: var(--rd-accent-08);
  border: 1px solid var(--rd-accent-12);
  color: var(--rd-accent);
  box-shadow: none;
  font-size: 22px;
}

.rd-app__tile .rd-ico {
  width: 24px;
  height: 24px;
}

.rd-app__label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--rd-muted);
  text-align: center;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* quote */
.rd-quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 18px;
  margin: 0 0 var(--rd-s-lg);
  background: var(--rd-accent-08);
  border: 1px solid var(--rd-accent-12);
  border-radius: var(--rd-r-lg);
  box-shadow: none;
  text-align: left;
}

.rd-quote__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 13px;
  background: var(--rd-surface);
  color: var(--rd-accent);
  font-size: 20px;
}

.rd-quote__ico .rd-ico {
  width: 21px;
  height: 21px;
}

.rd-quote__text {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--rd-text);
  margin: 0;
}

/* protective case block */
.rd-case {
  width: 100%;
  padding: 18px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-xl);
  box-shadow: var(--rd-shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.rd-case .rd-media {
  margin-bottom: var(--rd-s-md);
}

.rd-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rd-checklist__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: var(--rd-r-sm);
  background: var(--rd-bg);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--rd-text);
  text-align: left;
}

.rd-checklist__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--rd-accent);
  font-size: 15px;
}

.rd-checklist__ico .rd-ico {
  width: 18px;
  height: 18px;
}

/* feature list rows */
.rd-featlist {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 6px 18px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-xl);
  box-shadow: var(--rd-shadow);
}

.rd-featrow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rd-line);
  text-align: left;
}

.rd-featrow:last-child {
  border-bottom: 0;
}

.rd-featrow__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--rd-accent-08);
  border: 0;
  box-shadow: none;
  color: var(--rd-accent);
  font-size: 19px;
}

.rd-featrow__ico .rd-ico {
  width: 21px;
  height: 21px;
}

.rd-featrow__title {
  font-family: var(--rd-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--rd-text);
  margin: 0;
}

.rd-featrow__text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--rd-muted);
  margin: 3px 0 0;
}

/* --------------------------------------------------------------------------
   11. SPECIFICATIONS
   -------------------------------------------------------------------------- */
.rd-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.rd-spec {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: var(--rd-s-sm);
  padding: 15px 16px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-md);
  box-shadow: var(--rd-shadow-sm);
  text-align: left;
  transition: none;
}

.rd-spec__label {
  grid-column: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rd-faint);
  line-height: 1.3;
}

.rd-spec__value {
  grid-column: 2;
  justify-self: end;
  font-family: var(--rd-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rd-accent);
  white-space: normal;
  text-align: right;
  line-height: 1.2;
}

.rd-spec__detail {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.45;
  color: var(--rd-muted);
  margin: 6px 0 0;
}

/* --------------------------------------------------------------------------
   12. DESIGN PICKER
   -------------------------------------------------------------------------- */
.rd-designstage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  margin: 0 0 var(--rd-s-md);
  background: var(--rd-bg);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-xl);
  box-shadow: none;
}

.rd-sec--alt .rd-designstage {
  background: var(--rd-surface);
}

.rd-designstage__ring {
  position: absolute;
  inset: 0;
  border-radius: var(--rd-r-xl);
  border: 2px solid var(--rd-accent-20);
  opacity: 1;
  box-shadow: none !important;
  pointer-events: none;
}

.rd-designstage__frame {
  position: relative;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--rd-r-lg);
  border: 0;
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-designstage__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.rd-designstage__cap {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px;
  border-radius: var(--rd-r-pill);
  background: rgba(23, 32, 51, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.rd-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 var(--rd-s-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rd-faint);
}

.rd-hint svg {
  width: 14px;
  height: 14px;
  animation: none;
}

.rd-carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.rd-carousel__track {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 6px 2px 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  user-select: none;
}

.rd-carousel__track::-webkit-scrollbar {
  display: none;
}

.rd-carousel__nav {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rd-line);
  box-shadow: 0 6px 16px rgba(23, 32, 51, 0.1);
  color: var(--rd-text);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.rd-carousel__nav:active {
  transform: scale(0.9);
}

.rd-carousel__nav svg {
  width: 18px;
  height: 18px;
}

.rd-carousel__nav--prev { left: -6px; }
.rd-carousel__nav--next { right: -6px; }

.rd-dcard {
  flex: none;
  width: 104px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: var(--rd-r-lg);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  box-shadow: var(--rd-shadow-sm);
  cursor: pointer;
  text-align: center;
  transform: none;
  opacity: 1;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.rd-dcard.is-active {
  border-color: var(--rd-accent);
  box-shadow: 0 0 0 3px var(--rd-accent-12), var(--rd-shadow-sm);
}

.rd-dcard__face {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rd-bg);
  border: 1px solid var(--rd-line);
  font-size: 24px;
  margin: 0;
}

.rd-dcard__name {
  font-family: var(--rd-font);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--rd-text);
  margin: 0;
}

.rd-dcard__pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--rd-r-pill);
  background: var(--rd-bg);
  color: var(--rd-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.rd-dcard.is-active .rd-dcard__pill {
  background: var(--rd-accent);
  color: #fff;
}

/* --------------------------------------------------------------------------
   13. ORDER SECTION + FORM
   -------------------------------------------------------------------------- */
.rd-order__preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 18px;
  margin: 0 0 var(--rd-s-sm);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-xl);
  box-shadow: var(--rd-shadow);
}

.rd-order__previewLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rd-faint);
  margin: 0 0 12px;
}

.rd-order__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 3 / 4;
  height: auto;
  padding: 10px;
  overflow: hidden;
  background: var(--rd-bg);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-lg);
  box-shadow: none;
}

.rd-order__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--rd-r-sm);
}

.rd-formcard {
  width: 100%;
  padding: 20px 18px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-xl);
  box-shadow: var(--rd-shadow);
}

.rd-form {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-md);
  text-align: left;
}

.rd-label {
  display: block;
  margin: 0 0 7px 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rd-muted);
}

.rd-field {
  position: relative;
}

.rd-field__ico {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rd-faint);
  pointer-events: none;
}

.rd-field__ico svg {
  width: 18px;
  height: 18px;
}

.rd-input,
.rd-select {
  width: 100%;
  height: 56px;
  padding: 0 16px 0 44px;
  font-family: var(--rd-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--rd-text);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line-strong);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  -webkit-appearance: none;
  appearance: none;
}

.rd-input::placeholder {
  color: var(--rd-faint);
  font-weight: 500;
}

.rd-select {
  padding-left: 16px;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px 18px;
}

.rd-input:focus,
.rd-select:focus {
  border-color: var(--rd-accent);
  box-shadow: 0 0 0 3px var(--rd-accent-12);
}

.rd-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--rd-faint);
  text-align: center;
}

.rd-secure .rd-ico {
  width: 14px;
  height: 14px;
}

/* success state */
.rd-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 4px;
  text-align: center;
}

.rd-success__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 0 var(--rd-s-md);
  border-radius: 50%;
  background: var(--rd-accent-08);
  border: 1px solid var(--rd-accent-12);
  color: var(--rd-accent);
  font-size: 28px;
  animation: none;
}

.rd-success__ico .rd-ico {
  width: 28px;
  height: 28px;
}

.rd-success__title {
  font-family: var(--rd-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rd-text);
  margin: 0;
}

.rd-success__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--rd-muted);
  margin: 10px 0 0;
}

.rd-success__text strong {
  color: var(--rd-accent-ink);
  font-weight: 800;
}

.rd-success__again {
  margin: var(--rd-s-lg) 0 0;
  background: none;
  border: 0;
  font-family: var(--rd-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--rd-accent);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   13b. ANIMAL SELECTOR UNDER THE INTERACTIVE PREVIEW
   -------------------------------------------------------------------------- */
.rd-minichips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 300px;
  margin: 18px auto 0;
}

.rd-minichip {
  padding: 7px 12px;
  border-radius: var(--rd-r-pill);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line-strong);
  color: var(--rd-muted);
  font-family: var(--rd-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rd-minichip.is-active {
  background: var(--rd-accent);
  border-color: var(--rd-accent);
  color: #fff;
}

/* --------------------------------------------------------------------------
   14. STICKY CTA
   -------------------------------------------------------------------------- */
.rd-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 40;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 var(--rd-pad);
  pointer-events: none;
}

.rd-sticky__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rd-s-sm);
  width: 100%;
  min-height: 58px;
  padding: 12px 16px 12px 20px;
  border: 0;
  border-radius: var(--rd-r-md);
  background: var(--rd-accent);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.22);
  transition: transform 0.16s ease;
  animation: none;
}

.rd-sticky__btn:active {
  transform: scale(0.98);
}

.rd-sticky__price {
  font-family: var(--rd-display);
  white-space: nowrap;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.rd-sticky__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: right;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.rd-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px var(--rd-pad) 36px;
  background: var(--rd-bg);
  border-top: 1px solid var(--rd-line);
  text-align: center;
}

.rd-footer__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--rd-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.rd-footer__link:active {
  color: var(--rd-accent);
}

.rd-footer br {
  display: none;
}

/* --------------------------------------------------------------------------
   16. MOTION
   -------------------------------------------------------------------------- */
@keyframes rd-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@keyframes rd-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.animate-fade-in {
  animation: rd-fade-in 0.4s ease both;
}

.animate-fade-in-up {
  animation: rd-fade-up 0.35s ease both;
}

/* neutralise the old loud effects wherever they survive */
.animate-gradient-flow {
  background: var(--rd-accent) !important;
  animation: none !important;
}

.button-shine::after {
  display: none !important;
}

.ripple-effect::before {
  display: none !important;
}

.animate-pulse-slow {
  animation: none !important;
}

/* the interactive phone preview keeps its own look — just soften the frame */
#kids-smartphone-device {
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.14) !important;
}

/* --------------------------------------------------------------------------
   17. NARROW / WIDE VIEWPORT TUNING (320px → 430px)
   -------------------------------------------------------------------------- */
@media (max-width: 359px) {
  :root {
    --rd-pad: 14px;
    --rd-s-section: 44px;
  }

  .rd-h1 { font-size: 25px; }
  .rd-h2 { font-size: 20px; }
  .rd-price__value { font-size: 28px; }
  .rd-price { padding: 14px 14px; }
  .rd-price__badge { padding: 6px 9px; font-size: 12px; }
  .rd-appgrid { gap: 16px 4px; }
  .rd-app__tile { width: 48px; height: 48px; }
  .rd-app__label { font-size: 10px; }
  .rd-fact { font-size: 11px; padding: 10px 4px; }
  .rd-checklist__item { font-size: 11px; padding: 9px 8px; }
  .rd-hero__stage { min-height: 450px; }
  .rd-chip { width: 34px; height: 34px; border-radius: 11px; }
  .rd-chip .rd-ico { width: 17px; height: 17px; }
  .rd-chip--1 { top: 30px; }
  .rd-chip--6 { top: 206px; }
  .rd-chip--3 { top: 382px; }
  .rd-chip--2 { top: 90px; }
  .rd-chip--4 { top: 266px; }
  .rd-chip--5 { top: 442px; }
  .rd-btn { font-size: 15px; }
  .rd-sticky__btn { padding: 12px 14px; }
  .rd-sticky__price { font-size: 17px; }
  .rd-sticky__label { font-size: 11px; letter-spacing: 0; }
}

@media (min-width: 400px) {
  .rd-h1 { font-size: 31px; }
  .rd-h2 { font-size: 24px; }
  .rd-chip--1, .rd-chip--6, .rd-chip--3 { left: 6px; }
  .rd-chip--2, .rd-chip--4, .rd-chip--5 { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-fade-in-up {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   18. ICON SET (generated — Lucide-style 24px outline, 2px stroke)
   -------------------------------------------------------------------------- */
.rd-ico--camera{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3z'/%3E%3Ccircle cx='12' cy='13' r='3.5'/%3E%3C/svg%3E")}
.rd-ico--video{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='13' height='12' rx='2.5'/%3E%3Cpath d='M15 10.5 22 7v10l-7-3.5z'/%3E%3C/svg%3E")}
.rd-ico--music{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V6l11-2v12'/%3E%3Ccircle cx='6.5' cy='18' r='2.8'/%3E%3Ccircle cx='17.5' cy='16' r='2.8'/%3E%3C/svg%3E")}
.rd-ico--gamepad{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11h4M9 9v4'/%3E%3Ccircle cx='16' cy='11' r='1'/%3E%3Ccircle cx='18.5' cy='13.5' r='1'/%3E%3Crect x='2' y='6' width='20' height='12' rx='5'/%3E%3C/svg%3E")}
.rd-ico--image{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='3'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.6'/%3E%3Cpath d='m4 17 5-5 4.5 4.5L16 14l4 4'/%3E%3C/svg%3E")}
.rd-ico--clock{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.2 2'/%3E%3C/svg%3E")}
.rd-ico--palette{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3a9 9 0 0 0 0 18h1.6a2 2 0 0 0 1.4-3.4 2 2 0 0 1 1.4-3.4H19a2.6 2.6 0 0 0 2-2.6A9 9 0 0 0 12 3Z'/%3E%3Ccircle cx='8' cy='10' r='1.1'/%3E%3Ccircle cx='12' cy='7.5' r='1.1'/%3E%3Ccircle cx='16' cy='10' r='1.1'/%3E%3C/svg%3E")}
.rd-ico--book{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H20v15H6.5A2.5 2.5 0 0 0 4 20.5z'/%3E%3Cpath d='M4 20.5A2.5 2.5 0 0 1 6.5 18H20v3H6.5'/%3E%3C/svg%3E")}
.rd-ico--sparkles{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 1.9 4.6L18.5 9.5l-4.6 1.9L12 16l-1.9-4.6L5.5 9.5l4.6-1.9z'/%3E%3Cpath d='M18 15.5 18.9 18l2.6.9-2.6.9L18 22.5l-.9-2.7-2.6-.9 2.6-.9z'/%3E%3C/svg%3E")}
.rd-ico--calculator{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2.5' width='16' height='19' rx='3'/%3E%3Cpath d='M8 7h8'/%3E%3Cpath d='M8.5 12h.01M12 12h.01M15.5 12h.01M8.5 16.5h.01M12 16.5h.01M15.5 16.5h.01'/%3E%3C/svg%3E")}
.rd-ico--calendar{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='3'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3Cpath d='M8 14.5h.01M12 14.5h.01M16 14.5h.01'/%3E%3C/svg%3E")}
.rd-ico--list{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6h11M9 12h11M9 18h11'/%3E%3Cpath d='M4.5 6h.01M4.5 12h.01M4.5 18h.01'/%3E%3C/svg%3E")}
.rd-ico--shield{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5 20 6v6c0 4.6-3.3 8.3-8 9.5-4.7-1.2-8-4.9-8-9.5V6z'/%3E%3Cpath d='m8.8 12 2.2 2.2 4.2-4.4'/%3E%3C/svg%3E")}
.rd-ico--target{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1.4'/%3E%3C/svg%3E")}
.rd-ico--bulb{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 21.5h4'/%3E%3Cpath d='M12 2.5a6.5 6.5 0 0 0-3.8 11.8c.5.4.8 1 .8 1.7h6c0-.7.3-1.3.8-1.7A6.5 6.5 0 0 0 12 2.5Z'/%3E%3C/svg%3E")}
.rd-ico--pencil{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16.5 3.5a2.6 2.6 0 0 1 3.7 3.7L7.5 19.9 3 21l1.1-4.5z'/%3E%3Cpath d='m14.5 5.5 4 4'/%3E%3C/svg%3E")}
.rd-ico--cloud{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 19a4.5 4.5 0 0 1-.4-9A6 6 0 0 1 18 10.2 3.9 3.9 0 0 1 17.5 19z'/%3E%3C/svg%3E")}
.rd-ico--bag{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 8h15l-1 12.5a1 1 0 0 1-1 .9H6.5a1 1 0 0 1-1-.9z'/%3E%3Cpath d='M8.5 11V6.5a3.5 3.5 0 0 1 7 0V11'/%3E%3C/svg%3E")}
.rd-ico--phone{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='2.5' width='12' height='19' rx='3.2'/%3E%3Cpath d='M10.5 5.5h3'/%3E%3Cpath d='M12 18.2h.01'/%3E%3C/svg%3E")}
.rd-ico--plug{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2.5v5M15 2.5v5'/%3E%3Cpath d='M6.5 7.5h11v3.2a5.5 5.5 0 0 1-11 0z'/%3E%3Cpath d='M12 16.2v5.3'/%3E%3C/svg%3E")}
.rd-ico--doc{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2.5H7.5a2.5 2.5 0 0 0-2.5 2.5v14a2.5 2.5 0 0 0 2.5 2.5h9a2.5 2.5 0 0 0 2.5-2.5V7.5z'/%3E%3Cpath d='M14 2.5v5h5'/%3E%3Cpath d='M9 13h6M9 17h4'/%3E%3C/svg%3E")}
.rd-ico--lock{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='10' width='16' height='11' rx='3'/%3E%3Cpath d='M8 10V7.5a4 4 0 0 1 8 0V10'/%3E%3C/svg%3E")}
.rd-ico--bolt{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.5 2.5 4.5 13.8H11l-.5 7.7 9-11.3H13z'/%3E%3C/svg%3E")}
.rd-ico--check{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4.5 12.5 5 5 10-11'/%3E%3C/svg%3E")}
.rd-ico--star{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 2.7 5.6 6.1.9-4.4 4.3 1 6.2-5.4-2.9-5.4 2.9 1-6.2L3.2 9.5l6.1-.9z'/%3E%3C/svg%3E")}
.rd-ico--truck{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6.5h11v11h-11z'/%3E%3Cpath d='M13.5 10h4l3 3.2v4.3h-7z'/%3E%3Ccircle cx='7' cy='18.5' r='2'/%3E%3Ccircle cx='17' cy='18.5' r='2'/%3E%3C/svg%3E")}
.rd-ico--sun{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2.5v2M12 19.5v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4M2.5 12h2M19.5 12h2M4.2 19.8l1.4-1.4M18.4 5.6l1.4-1.4'/%3E%3C/svg%3E")}
.rd-ico--thumbup{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 21V10.5l5-8a2.4 2.4 0 0 1 3.5 2.6L14.5 9h4.6a2.4 2.4 0 0 1 2.3 3l-1.9 7a2.4 2.4 0 0 1-2.3 2H7z'/%3E%3Crect x='2.5' y='10.5' width='4.5' height='10.5' rx='1.6'/%3E%3C/svg%3E")}
.rd-ico--thumbdown{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3v10.5l-5 8a2.4 2.4 0 0 1-3.5-2.6L9.5 15H4.9a2.4 2.4 0 0 1-2.3-3l1.9-7A2.4 2.4 0 0 1 6.8 3H17z'/%3E%3Crect x='17' y='3' width='4.5' height='10.5' rx='1.6'/%3E%3C/svg%3E")}
.rd-ico--fire{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5s5.5 4.2 5.5 9.3a5.5 5.5 0 0 1-11 0c0-2 .8-3.6 1.7-4.8.3 1.3 1 2.2 1.9 2.2 1.4 0 1.6-2 1.4-3.4-.1-1.2-.3-2.3-.5-3.3Z'/%3E%3Cpath d='M12 21.5a3 3 0 0 0 3-3c0-1.9-3-4.2-3-4.2s-3 2.3-3 4.2a3 3 0 0 0 3 3Z'/%3E%3C/svg%3E")}
.rd-ico--shieldcheck{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5 20 6v6c0 4.6-3.3 8.3-8 9.5-4.7-1.2-8-4.9-8-9.5V6z'/%3E%3Cpath d='m8.8 12 2.2 2.2 4.2-4.4'/%3E%3C/svg%3E")}
.rd-ico--users{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20v-1.8a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4V20'/%3E%3Ccircle cx='9' cy='7.5' r='3.6'/%3E%3Cpath d='M22 20v-1.8a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16.5 4.1a4 4 0 0 1 0 7'/%3E%3C/svg%3E")}
.rd-ico--pen{--rd-ico-url:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 4H5.5A2.5 2.5 0 0 0 3 6.5v12A2.5 2.5 0 0 0 5.5 21h12a2.5 2.5 0 0 0 2.5-2.5V13'/%3E%3Cpath d='M17.5 2.9a2.3 2.3 0 0 1 3.3 3.3L12.6 14.4l-4 .9.9-4z'/%3E%3C/svg%3E")}

/* ==========================================================================
   19. ANIMATED ORDER BUTTONS (gradient flow + soft breathing scale)
   ========================================================================== */
@keyframes rd-gradient-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rd-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

.rd-btn:not(.rd-btn--ghost),
.rd-sticky__btn {
  background-image: linear-gradient(110deg, #3a51d6 0%, #536dfe 25%, #7a6cff 50%, #536dfe 75%, #3a51d6 100%);
  background-size: 260% 100%;
  animation: rd-gradient-flow 5s ease-in-out infinite, rd-breathe 2.6s ease-in-out infinite;
  will-change: background-position, transform;
}

.rd-btn:not(.rd-btn--ghost):active,
.rd-sticky__btn:active {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .rd-btn:not(.rd-btn--ghost),
  .rd-sticky__btn {
    animation: none;
    background-image: none;
  }
}

/* ==========================================================================
   20. PARTNER BANNERS
   ========================================================================== */
.rd-banner {
  display: block;
  width: 100%;
  padding: 0 var(--rd-pad);
  background: var(--rd-surface);
}

.rd-banner--alt {
  background: var(--rd-bg);
}

.rd-banner__inner {
  width: 100%;
  max-width: 398px;
  margin: 0 auto;
  padding: 26px 0;
}

.rd-banner__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--rd-r-xl);
  border: 1px solid var(--rd-line);
  box-shadow: var(--rd-shadow);
  object-fit: contain;
}

/* ==========================================================================
   21. HIGH-DEMAND / STOCK LEFT
   ========================================================================== */
.rd-stock {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  padding: 14px 16px;
  margin: 0 0 var(--rd-s-lg);
  background: var(--rd-warm-08);
  border: 1px solid rgba(255, 92, 138, 0.22);
  border-radius: var(--rd-r-md);
  text-align: left;
}

.rd-stock__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rd-stock__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--rd-surface);
  color: var(--rd-warm);
  box-shadow: 0 2px 8px rgba(255, 92, 138, 0.16);
  animation: rd-breathe 1.8s ease-in-out infinite;
}

.rd-stock__icon .rd-ico {
  width: 19px;
  height: 19px;
}

.rd-stock__text {
  flex: 1;
  min-width: 0;
}

.rd-stock__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c93a67;
  line-height: 1.2;
}

.rd-stock__desc {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--rd-muted);
}

.rd-stock__num {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 6px;
  background: var(--rd-warm);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.rd-stock__track {
  width: 100%;
  height: 7px;
  border-radius: var(--rd-r-pill);
  background: rgba(23, 32, 51, 0.08);
  overflow: hidden;
}

.rd-stock__fill {
  height: 100%;
  border-radius: var(--rd-r-pill);
  background: linear-gradient(90deg, #ff5c8a, #ff8f6b);
  transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-reduced-motion: reduce) {
  .rd-stock__icon { animation: none; }
}

/* ==========================================================================
   22. FOMO PURCHASE TOAST
   ========================================================================== */
.rd-fomo {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  min-width: 262px;
  max-width: min(94vw, 398px);
  padding: 8px 14px 8px 8px;
  border-radius: var(--rd-r-pill);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--rd-line);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-180%);
  transition: transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.4s ease;
}

.rd-fomo.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.rd-fomo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rd-accent);
  color: #fff;
}

.rd-fomo__icon .rd-ico {
  width: 18px;
  height: 18px;
}

.rd-fomo__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.rd-fomo__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--rd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rd-fomo__desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--rd-muted);
}

.rd-fomo__time {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--rd-faint);
  white-space: nowrap;
}

/* ==========================================================================
   23. REVIEWS
   ========================================================================== */
.rd-reviews {
  background: linear-gradient(180deg, rgba(83, 109, 254, 0.05), rgba(83, 109, 254, 0.03));
}
.rd-trust {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
  padding: 18px;
  margin: 0 0 var(--rd-s-md);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-r-lg);
  box-shadow: var(--rd-shadow);
  text-align: left;
}

.rd-trust__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--rd-line);
}

.rd-trust__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.rd-trust__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--rd-accent-08);
  color: var(--rd-accent);
}

.rd-trust__mark .rd-ico {
  width: 21px;
  height: 21px;
}

.rd-trust__id {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rd-trust__name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--rd-text);
}

.rd-trust__sub {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--rd-muted);
}

.rd-trust__sub .rd-ico {
  width: 12px;
  height: 12px;
  color: #12a150;
}

.rd-trust__score {
  flex: none;
  text-align: right;
  line-height: 1;
}

.rd-trust__scoreNum {
  font-family: var(--rd-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rd-text);
}

.rd-trust__scoreMax {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rd-faint);
}

.rd-trust__bar {
  width: 100%;
  height: 6px;
  border-radius: var(--rd-r-pill);
  background: rgba(23, 32, 51, 0.08);
  overflow: hidden;
}

.rd-trust__barFill {
  width: 94%;
  height: 100%;
  border-radius: var(--rd-r-pill);
  background: #12a150;
}

.rd-trust__stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rd-muted);
}

.rd-trust__ok {
  color: #12a150;
  font-weight: 700;
}

/* write-a-review trigger */
.rd-revBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  margin: 0 0 var(--rd-s-md);
  border: 1px solid var(--rd-accent-20);
  border-radius: 14px;
  background: var(--rd-accent-08);
  color: var(--rd-accent-ink);
  font-family: var(--rd-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.15s ease;
}

.rd-revBtn:active {
  background: var(--rd-accent-12);
  transform: scale(0.985);
}

.rd-revBtn .rd-ico {
  width: 17px;
  height: 17px;
}

/* review form */
#review-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  border-radius: var(--rd-r-lg);
  text-align: left;
}

#review-form-wrap.is-open {
  max-height: 720px;
  padding: 18px;
  margin: 0 0 var(--rd-s-md);
  background: var(--rd-surface);
  border: 1px solid var(--rd-accent-20);
  box-shadow: var(--rd-shadow);
}

.rd-rf__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: var(--rd-text);
}

.rd-rf__stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 var(--rd-s-md);
}

.rd-rf__star {
  padding: 0;
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  color: rgba(23, 32, 51, 0.16);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.rd-rf__star.is-on {
  color: #f5a524;
  transform: scale(1.1);
}

.rd-rf__input {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  margin: 0 0 10px;
  font-family: var(--rd-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--rd-text);
  background: var(--rd-surface);
  border: 1px solid var(--rd-line-strong);
  border-radius: 14px;
  outline: none;
  resize: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.rd-rf__input::placeholder {
  color: var(--rd-faint);
}

.rd-rf__input:focus {
  border-color: var(--rd-accent);
  box-shadow: 0 0 0 3px var(--rd-accent-12);
}

.rd-rf__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  background: var(--rd-accent);
  color: #fff;
  font-family: var(--rd-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.rd-rf__submit:active {
  transform: scale(0.985);
  background: var(--rd-accent-ink);
}

/* review feed */
.rd-revFeed {
  display: flex;
  flex-direction: column;
  gap: var(--rd-s-sm);
  width: 100%;
}

.rd-rev {
  padding: 16px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-line);
  border-radius: 18px;
  box-shadow: var(--rd-shadow);
  text-align: left;
}

.rd-rev.is-new {
  animation: rd-rev-in 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.1) both,
             rd-rev-flash 2.4s ease-out 0.2s forwards;
}

@keyframes rd-rev-in {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes rd-rev-flash {
  0%   { border-color: #12a150; box-shadow: 0 0 0 3px rgba(18, 161, 80, 0.16); }
  100% { border-color: var(--rd-line); box-shadow: var(--rd-shadow); }
}

.rd-rev__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 11px;
}

.rd-rev__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.rd-rev__id {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.rd-rev__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--rd-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rd-rev__stars {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
  color: #f5a524;
}

.rd-rev__starsOff {
  color: rgba(23, 32, 51, 0.16);
}

.rd-rev__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(18, 161, 80, 0.1);
  border: 1px solid rgba(18, 161, 80, 0.2);
  color: #12a150;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.rd-rev__badge .rd-ico {
  width: 11px;
  height: 11px;
}

.rd-rev__badge--own {
  background: var(--rd-accent-08);
  border-color: var(--rd-accent-20);
  color: var(--rd-accent-ink);
}

.rd-rev__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--rd-muted);
}

.rd-rev__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--rd-line);
}

.rd-rev__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--rd-faint);
}

.rd-rev__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rd-rev__react {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: var(--rd-r-pill);
  background: none;
  color: var(--rd-faint);
  font-family: var(--rd-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
}

.rd-rev__react .rd-ico {
  width: 15px;
  height: 15px;
}

.rd-rev__react:active {
  transform: scale(0.92);
}

.rd-rev__react.is-like {
  color: var(--rd-accent-ink);
  background: var(--rd-accent-08);
  border-color: var(--rd-accent-20);
}

.rd-rev__react.is-dislike {
  color: #c93a67;
  background: var(--rd-warm-08);
  border-color: rgba(255, 92, 138, 0.22);
}

@media (max-width: 359px) {
  .rd-trust__scoreNum { font-size: 24px; }
  .rd-rev__badge { font-size: 9px; padding: 4px 6px; }
  .rd-rev__react { padding: 6px 8px; font-size: 12px; }
  .rd-fomo { min-width: 0; max-width: 94vw; }
  .rd-stock__desc { font-size: 12px; }
}
