:root {
  --navy: #00247D;
  --red: #CF142B;
  --white: #FFFFFF;
  --light-bg: #f5f7fa;
  --border: #e2e8f0;
  --text: #1a202c;
  --muted: #64748b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--red);
  background: var(--navy);
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #001a5e 60%, #000d30 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: #fbbf24;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 2.25rem;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(207,20,43,0.38);
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(207,20,43,0.44);
}
.hero-proof {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.hero-proof strong { color: #fbbf24; }

/* ── STICKER PREVIEW IMAGE (hero) ── */
.hero-visual {
  margin: 3rem auto 0;
  max-width: 280px;
  position: relative;
}
.hero-visual img { width: 100%; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.hero-visual .floating-label {
  position: absolute;
  top: -12px; right: -12px;
  background: #fbbf24;
  color: #1a202c;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

/* ── EXAMPLES / SHOWCASE ── */
.examples-section {
  background: var(--light-bg);
  padding: 5rem 1.5rem;
}
.examples-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin: -2rem auto 3rem;
  max-width: 540px;
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.example-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 36, 125, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.example-card img {
  display: block;
  width: 100%;
  height: auto;
}
.example-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 36, 125, 0.18);
}
.examples-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Tablet */
@media (max-width: 900px) {
  .examples-grid { gap: 1rem; }
}

/* Mobile: stack vertically com scroll horizontal opcional */
@media (max-width: 640px) {
  .examples-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 380px;
  }
  .examples-subtitle { margin: -1rem auto 2.5rem; font-size: 0.95rem; }
}

/* ── HOW IT WORKS ── */
.section { padding: 5rem 1.5rem; }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--navy);
}
.steps {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.step-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.step-num {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1.75rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.proof-strip span { color: #fbbf24; }

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}
footer a { color: rgba(255,255,255,0.6); margin: 0 0.5rem; }
footer a:hover { color: var(--white); }

/* ── FORM PAGE ── */
.form-page {
  min-height: 100vh;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 480px;
}
.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
}
.form-progress-dot {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--border);
  transition: background 0.3s;
}
.form-progress-dot.active { background: var(--navy); }
.form-progress-dot.done { background: var(--red); }

.form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--navy); }

.form-row { display: flex; gap: 0.75rem; }
.form-row .form-group { flex: 1; }

.output-preview {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 0.5rem;
  min-height: 40px;
}

/* file upload */
.upload-area {
  border: 2.5px dashed var(--border);
  border-radius: 12px;
  padding: 2.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.upload-area:hover, .upload-area.drag-over {
  border-color: var(--navy);
  background: #f0f4ff;
}
.upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.upload-area p { color: var(--muted); font-size: 0.9rem; }
.upload-area strong { color: var(--navy); }
.upload-preview {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 8px; display: none; margin-top: 1rem;
}

.upload-tips {
  margin-top: 1rem;
  background: #fff8e1;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #78350f;
}
.upload-tips li { margin-left: 1rem; margin-bottom: 0.2rem; }

.btn-form {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-form:hover { background: #001a5e; transform: translateY(-1px); }
.btn-form:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
  font-family: inherit;
  padding: 0;
}
.btn-back:hover { color: var(--navy); }

/* ── PREVIEW PAGE ── */
.preview-page {
  min-height: 100vh;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
}
.preview-page h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-align: center;
}
.preview-page .subtext {
  color: var(--muted);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.95rem;
}
.sticker-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.sticker-wrapper img {
  display: block;
  max-width: min(380px, 90vw);
  width: 100%;
}
/* Watermark is now burned into the image by sticker-preview.php */
.preview-cta {
  margin-top: 2rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.preview-cta p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
.btn-pay {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 1.1rem;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(207,20,43,0.35);
  transition: transform 0.18s, box-shadow 0.18s;
  text-align: center;
}
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(207,20,43,0.45);
}
.secure-text {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

/* ── GENERATING OVERLAY (multi-step) ── */
.gen-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #001448 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gen-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.gen-spinner {
  width: 64px; height: 64px;
  border: 5px solid rgba(255,255,255,0.15);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1.5rem;
}
.gen-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.gen-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.gen-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.gen-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  transition: all 0.4s ease;
}
.gen-step-icon {
  font-size: 1.3rem;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}
.gen-step-text { flex: 1; }
.gen-step-check {
  opacity: 0;
  color: #4ade80;
  font-weight: 900;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}
.gen-step.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.gen-step.active .gen-step-icon {
  opacity: 1;
  animation: pulse 1.4s ease-in-out infinite;
}
.gen-step.done {
  color: rgba(255,255,255,0.75);
}
.gen-step.done .gen-step-icon { opacity: 1; }
.gen-step.done .gen-step-check { opacity: 1; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* ── LOADING (legacy) ── */
.loading-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}
.loading-page h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.loading-page p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.spinner {
  width: 60px; height: 60px;
  border: 5px solid rgba(255,255,255,0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  padding: 2rem 1rem;
  text-align: center;
}
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.success-page p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }
.btn-download {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-download:hover { background: #001a5e; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav { padding: 1rem; }
  .hero { padding: 3.5rem 1rem 3rem; }
  .form-card { padding: 2rem 1.25rem; }
  .form-row { flex-direction: column; gap: 0; }
}

/* ══════════════════════════════════════════════
   MOBILE POLISH
   ══════════════════════════════════════════════ */

/* Smooth scrolling + baseline text rendering */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove iOS blue tap flash on all interactive elements */
a,
button,
input,
select,
textarea,
label,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

/* Prevent double-tap zoom on buttons — keeps single taps instant */
button,
.btn-primary,
.btn-form,
.btn-pay,
.btn-back,
.btn-download,
.share-btn,
.nav-cta,
.upload-area {
  touch-action: manipulation;
  cursor: pointer;
}

/* Minimum touch target: 44×44px (Apple/Google HIG) */
.btn-back {
  min-height: 44px;
  min-width: 44px;
}
.share-btn {
  min-height: 42px;
}

/* Better focus ring (keyboard navigation + accessibility) */
:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 3px;
  border-radius: 4px;
}

/* NAV — safe area for notched phones (iPhone X+) */
.nav {
  padding-left:  max(2rem, calc(1rem + env(safe-area-inset-left,  0px)));
  padding-right: max(2rem, calc(1rem + env(safe-area-inset-right, 0px)));
  padding-top:   calc(1rem + env(safe-area-inset-top, 0px));
}

/* HERO — push content below notch on landscape */
.hero {
  padding-left:  max(1.5rem, env(safe-area-inset-left,  0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
}

/* Form inputs — 16px minimum to prevent iOS zoom-in */
.form-group input,
.form-group select {
  font-size: 1rem;       /* = 16px — never zoom on focus */
  min-height: 48px;      /* comfortable tap target */
}

/* Upload area — bigger tap zone on mobile */
@media (max-width: 600px) {
  .upload-area {
    padding: 3rem 1.25rem;
  }
  .btn-form,
  .btn-pay {
    min-height: 54px;
    font-size: 1rem;
  }
  .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }

  /* Preview sticker — full width on small screens */
  .sticker-box img {
    max-width: min(320px, 92vw);
  }

  /* Share buttons — stack on very small screens */
  .share-buttons {
    gap: 0.45rem;
  }
  .share-btn {
    font-size: 0.82rem;
    padding: 0.52rem 0.9rem;
  }

  /* Success page — more breathing room */
  .success-page { padding: 2rem 1.25rem; }
}

/* ══════════════════════════════════════════════
   CINEMATIC REVEAL — preview.html
   ══════════════════════════════════════════════ */

/* Reveal header (fades in after animation) */
.reveal-header {
  text-align: center;
  margin-bottom: 0.25rem;
}
.reveal-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.reveal-header .subtext {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Outer wrapper — houses both sticker and sparkles */
.sticker-reveal-area {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 0;
  padding: 2rem;           /* room for sparkles that overflow */
}

/* Sticker box — starts invisible, pops in on .revealed */
.sticker-box {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;         /* keeps shine inside the card */
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0);
  opacity: 0;
}

.sticker-box.revealed {
  animation: stickerReveal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sticker-box img {
  display: block;
  max-width: min(360px, 86vw);
  width: 100%;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

@keyframes stickerReveal {
  0%   { transform: scale(0.22) rotateY(18deg);
         opacity: 0;
         box-shadow: 0 0 0 rgba(251,191,36,0); }
  55%  { opacity: 1; }
  72%  { transform: scale(1.07) rotateY(-4deg);
         box-shadow: 0 32px 90px rgba(251,191,36,0.42); }
  86%  { transform: scale(0.97) rotateY(1deg); }
  100% { transform: scale(1) rotateY(0deg);
         opacity: 1;
         box-shadow: 0 20px 60px rgba(0,0,0,0.30); }
}

/* Shine overlay — sweeps across the card */
.shine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 25%,
    rgba(255,255,255,0.58) 50%,
    transparent 75%
  );
  transform: translateX(-160%);
  pointer-events: none;
  border-radius: 16px;
}

.shine-overlay.animate {
  animation: shineSwipe 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shineSwipe {
  to { transform: translateX(160%); }
}

/* Sparkles — float outside the sticker */
.sparkle {
  position: absolute;
  color: #fbbf24;
  font-size: 1.9rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  user-select: none;
}

.sparkle.animate { animation: sparklePop 1.1s ease forwards; }

.s1 { top: 2px;    left: 12%;  animation-delay: 0.44s; }
.s2 { top: 18%;   right: 4px;  animation-delay: 0.56s; font-size: 2.3rem; }
.s3 { bottom: 8px; right: 14%; animation-delay: 0.50s; }
.s4 { bottom: 22%; left: 4px;  animation-delay: 0.63s; font-size: 2.1rem; }

@keyframes sparklePop {
  0%   { opacity: 0; transform: scale(0) rotate(0deg); }
  40%  { opacity: 1; transform: scale(1.45) rotate(16deg); }
  100% { opacity: 0; transform: scale(0.8) rotate(52deg) translateY(-30px); }
}

/* Golden background flash */
@keyframes bgFlash {
  0%   { background-color: var(--light-bg); }
  12%  { background-color: #fef9ec; }
  100% { background-color: var(--light-bg); }
}
#previewView.bg-flash {
  animation: bgFlash 2s ease forwards;
}

/* ══════════════════════════════════════════════
   SHARE BUTTONS
   ══════════════════════════════════════════════ */
.share-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.share-label {
  font-size: 0.8rem !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
  margin-bottom: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.share-buttons {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, opacity 0.18s, box-shadow 0.18s;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
}
.share-btn:hover  { transform: translateY(-2px); opacity: 0.92; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.share-btn:active { transform: translateY(0); }

.share-x  { background: #000; color: #fff; }
.share-ig {
  background: linear-gradient(135deg, #405de6 0%, #833ab4 40%, #c13584 70%, #fd1d1d 100%);
  color: #fff;
}
.share-tt { background: #010101; color: #69C9D0; border: 1.5px solid #69C9D0; }

.share-feedback {
  font-size: 0.82rem;
  margin-top: 0.8rem;
  text-align: center;
  font-weight: 600;
}
