:root {
  --bg: #fff7fb;
  --card: #ffffff;
  --text: #20151b;
  --muted: #6f5f68;
  --primary: #e91e63;
  --primary-dark: #bc0d49;
  --gold: #f5b642;
  --soft: #ffe6f0;
  --border: #f2c9d9;
  --success: #0f9f6e;
  --shadow: 0 18px 50px rgba(125, 22, 65, .14);
  --radius: 24px;
}

html { scroll-behavior: smooth; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(233,30,99,0.4); transform: scale(1); }
  50% { box-shadow: 0 0 0 15px rgba(233,30,99,0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(233,30,99,0); transform: scale(1); }
}

@keyframes pulseDot {
  0% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.2); }
  100% { opacity:1; transform:scale(1); }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Tajawal", system-ui, sans-serif;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 45%, #fff7fb 100%);
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 28px));
  margin: auto;
}

/* ─── 1. TOP BAR ─── */
.topbar {
  background: #171016;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar-timer {
  background: var(--primary);
  padding: 2px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 13px;
}

.topbar-timer-label {
  font-size: 12px;
  color: #eee;
  font-weight: 500;
}

/* ─── 2. HERO ─── */
.hero { padding: 28px 0 18px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--soft);
  color: var(--primary-dark);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}

.highlight { color: var(--primary); }

.price-box {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0;
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.price { font-size: 34px; font-weight: 900; color: var(--primary); }
.old-price { text-decoration: line-through; color: #9f8b95; font-size: 18px; font-weight: 700; }
.discount { background: #171016; color: #fff; border-radius: 999px; padding: 7px 12px; font-weight: 900; font-size: 13px; }
.cod-badge { background: var(--success); color: #fff; border-radius: 999px; padding: 7px 12px; font-weight: 900; font-size: 13px; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 18px; }

.btn {
  border: 0;
  border-radius: 18px;
  padding: 15px 22px;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff6aa2);
  color: #fff;
  box-shadow: 0 12px 26px rgba(233,30,99,.28);
  animation: pulseGlow 2.5s infinite;
}

.btn-primary:hover { transform: translateY(-2px) scale(1.02); animation: none; }
.btn-ghost { background: #fff; border: 1px solid var(--border); color: var(--primary-dark); }

.trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: #4b3d45;
  font-weight: 800;
  font-size: 14px;
}

.trust span {
  background: #fff;
  border: 1px solid #f1d6e1;
  border-radius: 999px;
  padding: 8px 12px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid #f4d5e1;
  position: relative;
  overflow: hidden;
}

.product-card:before {
  content: "";
  position: absolute;
  inset: -40px auto auto -60px;
  width: 190px;
  height: 190px;
  background: rgba(233,30,99,.13);
  filter: blur(20px);
  border-radius: 50%;
}

.main-img {
  border-radius: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #f9e6ef;
  width: 100%;
}

.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.thumbs img { height: 76px; width: 100%; object-fit: cover; border-radius: 14px; border: 2px solid transparent; cursor: pointer; background: #f8eef3; transition: border-color .2s; }
.thumbs img.active { border-color: var(--primary); }

/* ─── SECTIONS SHARED ─── */
.section { padding: 42px 0; }
.section-title { text-align: center; font-size: clamp(26px, 4vw, 42px); margin: 0 0 10px; font-weight: 900; }
.section-sub { text-align: center; color: var(--muted); font-size: 18px; max-width: 760px; margin: 0 auto 24px; line-height: 1.7; }

/* ─── 3. PROBLEM ─── */
.problem-section { background: linear-gradient(180deg, #fff7fb, #ffffff); }

.problem {
  background: #171016;
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.problem h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 14px; }
.problem p { color: #eadce4; font-size: 17px; line-height: 1.7; }
.problem ul { padding: 0; margin: 18px 0 0; list-style: none; }
.problem li { margin: 10px 0; font-weight: 800; font-size: 16px; }
.problem li:before { content: "✓"; color: var(--gold); margin-left: 10px; }
.problem-img { border-radius: 20px; width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ─── 4. SOLUTION CARDS ─── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.solution-card {
  background: #fff;
  border: 1px solid #f1d6e1;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(125,22,65,.08);
  transition: transform .3s, box-shadow .3s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(125,22,65,.14);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #f9e6ef;
  padding: 8px;
}

.solution-card-body { padding: 14px; }
.solution-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 900; }
.solution-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }

/* ─── 5. VIDEO ─── */
.video-section {
  padding: 42px 0;
  background: linear-gradient(180deg, #fff7fb, #ffffff);
  text-align: center;
}

.video-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
  font-weight: 900;
}

.video-section p { color: var(--muted); font-size: 18px; margin-bottom: 22px; }

.video-frame {
  max-width: 420px;
  margin: 0 auto 22px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #000;
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* ─── 6. FEATURE PROOF ─── */
.proof-section { background: linear-gradient(180deg, #ffffff, #fff7fb); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.proof-img {
  border-radius: 24px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.proof-text { font-size: 17px; color: var(--muted); line-height: 1.8; }

/* ─── 7. CAPACITY ─── */
.capacity-section { background: linear-gradient(180deg, #fff7fb, #ffffff); }

.capacity-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.capacity-img {
  border-radius: 24px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ─── 8. USE CASES ─── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.usecase-card {
  background: #fff;
  border: 1px solid #f1d6e1;
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(125,22,65,.06);
  transition: transform .3s;
}

.usecase-card:hover { transform: translateY(-4px); }
.usecase-icon { font-size: 36px; margin-bottom: 10px; }
.usecase-card h3 { margin: 0 0 6px; font-size: 17px; }
.usecase-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.usecase-img {
  border-radius: 24px;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ─── 9. OFFER + BUNDLES ─── */
.offer-section { background: linear-gradient(180deg, #fff7fb, #fff); }

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.bundle-card {
  position: relative;
  border: 2px solid #ead1dc;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  cursor: pointer;
  transition: .3s ease;
  text-align: center;
}

.bundle-card.active {
  border-color: var(--primary);
  background: #fff4f8;
  box-shadow: 0 10px 28px rgba(233,30,99,.2);
  transform: scale(1.03);
  border-width: 3px;
}

.bundle-card .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.bundle-card strong { display: block; font-size: 18px; margin-bottom: 6px; }
.bundle-card .bundle-price { font-size: 24px; font-weight: 900; color: var(--primary); }
.bundle-card .bundle-old { text-decoration: line-through; color: #aaa; font-size: 14px; }
.bundle-card .bundle-save { color: var(--success); font-weight: 800; font-size: 13px; margin-top: 4px; }

.offer-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.offer-list { padding: 0; margin: 14px 0; list-style: none; }
.offer-list li { margin: 8px 0; font-weight: 800; font-size: 15px; }
.offer-list li:before { content: "✓"; color: var(--primary); margin-left: 8px; }

/* ─── 10. FORM ─── */
#order {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,244,248,0.95) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-card h3 { font-size: 24px; margin: 0 0 6px; }
.form-card small { color: var(--muted); font-weight: 700; }

.field { margin: 14px 0; }
.field label { display: block; font-weight: 900; margin-bottom: 6px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ead1dc;
  border-radius: 14px;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(233,30,99,.08);
}

.bundle-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.bundle {
  position: relative;
  border: 2px solid #ead1dc;
  background: #fff;
  border-radius: 18px;
  padding: 13px;
  cursor: pointer;
  transition: .2s ease;
  text-align: center;
}

.bundle.active {
  border-color: var(--primary);
  background: #fff4f8;
  box-shadow: 0 10px 24px rgba(233,30,99,.25);
  transform: scale(1.02);
  border-width: 3px;
}

.bundle strong { display: block; font-size: 15px; }
.bundle span { display: block; color: var(--muted); font-weight: 800; font-size: 12px; margin-top: 4px; }
.bundle .tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: #171016; color: #fff; border-radius: 999px; padding: 4px 9px; font-size: 11px; font-weight: 900; white-space: nowrap; }

.summary {
  background: #fff7fb;
  border: 1px dashed var(--primary);
  border-radius: 16px;
  padding: 12px;
  margin: 14px 0;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
}

.submit { width: 100%; margin-top: 10px; }
.note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 10px; font-weight: 700; }

/* ─── 11. REVIEWS ─── */
.reviews {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: none;
}

.reviews::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 calc(90% - 14px);
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid #f1d6e1;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(125,22,65,.08);
}

.stars { color: #f6a700; font-size: 20px; }
.review p { color: var(--muted); line-height: 1.7; }
.review strong { display: block; margin-top: 10px; }

/* ─── 12. FAQ ─── */
.faq { max-width: 820px; margin: auto; }
.faq details { background: #fff; border: 1px solid #f1d6e1; border-radius: 18px; padding: 16px; margin: 10px 0; box-shadow: 0 8px 22px rgba(125,22,65,.06); }
.faq summary { font-weight: 900; cursor: pointer; font-size: 17px; }
.faq p { color: var(--muted); line-height: 1.7; }

/* ─── 13. FINAL CTA ─── */
.final-cta {
  padding: 60px 16px;
  background: linear-gradient(135deg, var(--primary), #ff6aa2);
  text-align: center;
  color: #fff;
}

.final-cta h2 { font-size: clamp(28px, 5vw, 44px); margin: 0 0 12px; font-weight: 900; }
.final-cta p { font-size: 19px; opacity: .9; margin: 0 0 24px; }

.final-cta .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  animation: none;
}

.final-cta .btn:hover { transform: scale(1.05); }

/* ─── STICKY ─── */
.sticky { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30; display: none; }
.sticky .btn { width: 100%; box-shadow: 0 16px 36px rgba(233,30,99,.35); }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #101010;
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
  z-index: 50;
  display: none;
}

/* ─── FOOTER ─── */
.footer { text-align: center; padding: 26px; color: var(--muted); font-weight: 700; font-size: 14px; }

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
  .hero-grid,
  .problem,
  .proof-grid,
  .capacity-grid,
  .order-grid { grid-template-columns: 1fr; }

  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bundle-options { grid-template-columns: 1fr 1fr; }

  .hero { padding-top: 18px; }
  .product-card { order: -1; }
  .sticky { display: block; }
  body { padding-bottom: 76px; }
}

@media(max-width:540px) {
  .solution-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr 1fr; }
  .bundles-grid { grid-template-columns: 1fr !important; }
  .bundle-options { grid-template-columns: 1fr; }
  .price { font-size: 30px; }
  .btn { width: 100%; }
  .topbar { font-size: 13px; }
  .problem { padding: 20px; border-radius: 24px; }
  .thumbs img { height: 62px; }
}

@media(min-width:900px) {
  .review { flex: 0 0 calc(33.333% - 10px); scroll-snap-align: none; }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(37,211,102,0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Live Popup */
.live-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.live-popup img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }

/* ─── VIDEO PILLS ─── */
.video-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.video-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.video-pill-live {
  background: #fff0f0;
  border: 1px solid #ffcdd2;
  color: #c62828;
}

.video-pill-time {
  background: rgba(23,16,22,0.07);
  border: 1px solid rgba(23,16,22,0.12);
  color: #20151b;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e53935;
  display: inline-block;
  animation: livePulse 1.2s infinite;
  flex-shrink: 0;
}

/* ─── BEST DEAL HIGHLIGHT ─── */
.bundle-card.best-deal,
.bundle.best-deal {
  border-color: #f5b642;
  background: linear-gradient(135deg, #fffbf0, #fff8e6);
  box-shadow: 0 10px 28px rgba(245,182,66,0.25);
  transform: scale(1.05);
  border-width: 3px;
}
.bundle-card.best-deal .tag,
.bundle.best-deal .tag {
  background: linear-gradient(135deg, #f5b642, #f09819);
  color: #171016;
}

/* ─── CONFIRMATION POPUP OVERLAY ─── */
@keyframes popupSlideIn {
  from { opacity:0; transform:scale(0.7) translateY(40px); }
  to { opacity:1; transform:scale(1) translateY(0); }
}
@keyframes confettiDrop {
  0% { transform: translateY(-20px) rotate(0deg); opacity:1; }
  100% { transform: translateY(60px) rotate(360deg); opacity:0; }
}
@keyframes checkBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,16,22,0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.confirm-overlay.show { display: flex; }

.confirm-popup {
  background: #fff;
  border-radius: 28px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 30px 80px rgba(125,22,65,0.25);
  animation: popupSlideIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative;
}

.confirm-header {
  background: linear-gradient(135deg, #e91e63, #ff6aa2);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.confirm-check {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 36px;
  animation: checkBounce 0.6s 0.3s both;
}

.confirm-header h2 { margin: 0; font-size: clamp(20px, 5vw, 24px); font-weight: 900; }
.confirm-header p { margin: 6px 0 0; opacity: 0.9; font-size: 15px; }

.confirm-body { padding: 24px; }

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f8eef3;
  font-size: 15px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-label { color: var(--muted); font-weight: 700; }
.confirm-value { font-weight: 900; color: #20151b; }

.confirm-total-box {
  background: #171016;
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
  text-align: center;
  color: #fff;
}
.confirm-total-box .total-amount {
  font-size: 32px;
  font-weight: 900;
  color: #ff6aa2;
  margin: 4px 0;
}
.confirm-total-box .total-label { font-size: 13px; color: #eadce4; }
.confirm-total-box .cod-label {
  display: inline-block;
  background: #0f9f6e;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 8px;
}

.confirm-footer {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-footer .btn { width: 100%; font-size: 16px; }

.confirm-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.confirm-close:hover { background: rgba(255,255,255,0.35); }
