/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0e0f13;
  color: #e2e8f0;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --bg: #0e0f13;
  --bg2: #13151c;
  --bg3: #1a1d27;
  --border: rgba(255,255,255,0.08);
  --gold: #f5a623;
  --gold-dark: #d4891a;
  --blue: #3b6ef6;
  --text: #e2e8f0;
  --muted: #8896b0;
  --radius: 12px;
  --glow: 0 0 40px rgba(245,166,35,0.08);
}

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.hidden { display: none !important; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.section-head p { color: var(--muted); font-size: 1.02rem; max-width: 480px; margin: 0 auto; }
.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #0e0f13;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn-nav {
  background: var(--gold);
  color: #0e0f13;
  padding: 10px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.btn-nav:hover { background: var(--gold-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,19,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo { font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.hamburger { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* ===== BACKGROUND VIDEO (hero sections) ===== */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10,15,19,0.55) 0%, rgba(10,15,19,0.30) 100%);
  pointer-events: none;
}
.hero-inner { z-index: 2; }
.hero-grid-bg { z-index: 1; }
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(245,166,35,0.25);
  margin-bottom: 20px;
}
.hero-left h1 {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-left p { color: var(--muted); font-size: 1.08rem; margin-bottom: 34px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; }
.stat span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--glow);
}
.ba-label-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.ba-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
}
.before-tag { background: rgba(255,255,255,0.1); color: #aab; }
.after-tag { background: var(--gold); color: #0e0f13; }
.ba-slider-wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
/* fix: these were empty divs with no size before — without this,
   background-image has nothing to display against (0x0 box) */
.ba-after-img,
.ba-before-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-after-img{
  background-image: url('images/GG done.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ba-before-img{
  background-image: url('images/GG raw.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: inset(0 50% 0 0);  /* start at center — left half dikhe, right half after */
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  cursor: col-resize;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.ba-caption {
  padding: 14px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  background: rgba(255,255,255,0.02);
}

/* ===== SERVICES SECTION ===== */
.services-section { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all 0.25s;
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.svc-card.featured {
  background: linear-gradient(135deg, #1a1d27 0%, #1e2232 100%);
  border-color: rgba(245,166,35,0.4);
}
.popular-badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--gold);
  color: #0e0f13;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.svc-icon { font-size: 1.8rem; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.svc-card p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.svc-price { font-size: 0.85rem; color: var(--muted); }
.svc-price strong { font-size: 1.15rem; color: var(--gold); }
.svc-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  transition: all 0.2s;
  border: 1px solid var(--border);
  align-self: flex-start;
}
.svc-btn:hover { background: rgba(255,255,255,0.12); }
.svc-btn.gold { background: var(--gold); color: #0e0f13; border-color: var(--gold); }
.svc-btn.gold:hover { background: var(--gold-dark); }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 90px 0; background: var(--bg2); }
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 44px;
}
.step-item { text-align: center; flex: 1; }
.step-circle {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.12);
  border: 2px solid rgba(245,166,35,0.4);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-item h4 { font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-item p { font-size: 0.85rem; color: var(--muted); max-width: 160px; margin: 0 auto; }
.step-line {
  flex: 0.5;
  height: 1px;
  background: rgba(245,166,35,0.3);
  margin-bottom: 40px;
  border-top: 1px dashed rgba(245,166,35,0.4);
}
.steps-cta { text-align: center; }

/* ===== GALLERY / BEFORE AFTER ===== */
.gallery-section { padding: 100px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-ba-item { }
.gba-wrap {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  border: 1px solid var(--border);
}
.gba-after, .gba-before { position: absolute; inset: 0; }
.gba-before { clip-path: inset(0 50% 0 0); } /* start at center */
/* ===== GALLERY 1 — Skin Retouching ===== */
.portrait-before{
  background-image: url('images/cloth color chnage home.jpg');
  background-size: cover;
  background-position: center;
}
.portrait-after{
  background-image: url('images/cloth color home.jpg');
  background-size: cover;
  background-position: center;
}

/* ===== GALLERY 2 — Background Swap ===== */
.wedding-before{
  background-image: url('images/BG Swap not.jpg');
  background-size: cover;
  background-position: center;
}
.wedding-after{
  background-image: url('images/BG Swap.jpg');
  background-size: cover;
  background-position: center;
}

/* ===== GALLERY 3 — Glass Glare ===== */
.newborn-before{
  background-image: url('images/GGraw.jpg');
  background-size: cover;
  background-position: center;
}
.newborn-after{
  background-image: url(images/GGdone2.jpg);
  background-size: cover;
  background-position: center;
}
.gba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,0.8);
  transform: translateX(-50%);
}
.gba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #333; font-weight: 800;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.gba-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== WHY US ===== */
.why-section { padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.2s;
  text-align: center;
}
.why-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-2px); }
.why-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.why-card h4 { font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--muted); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(59,110,246,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-inner p { color: var(--muted); }

/* ===== CONTACT ===== */
.contact-section { padding: 90px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-block h2 { font-size: 2rem; font-weight: 800; color: #fff; margin: 10px 0 14px; }
.contact-info-block p { color: var(--muted); margin-bottom: 24px; }
.contact-details p { color: var(--text); margin-bottom: 10px; font-size: 0.93rem; }
.contact-form-block { display: flex; flex-direction: column; gap: 14px; }
.contact-form-block input,
.contact-form-block textarea {
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form-block input:focus,
.contact-form-block textarea:focus { border-color: rgba(245,166,35,0.5); }
.full-width { width: 100%; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer .logo { font-size: 1.15rem; }
.footer p { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ===== ORDER PAGE ===== */
.order-page {
  background: #0e0f13;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 80px;
}
.step-dots-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
}
.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2a2d38;
  transition: all 0.3s;
}
.step-dot.active { background: var(--gold); opacity: 0.5; }
.step-dot.current { background: var(--gold); opacity: 1; transform: scale(1.2); }
.order-step {
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.step-eyebrow {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.order-step h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.step-sub { color: var(--muted); font-size: 1rem; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* Upload Zone */
.upload-zone {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.upload-zone.drag-over { border-color: var(--gold); background: rgba(245,166,35,0.05); }
.upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px;
}
.upload-inner p { color: var(--text); font-size: 0.97rem; font-weight: 500; }
.upload-inner small { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.05em; }
.upload-link { color: var(--gold); text-decoration: underline; cursor: pointer; }
.upload-preview {
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
}
.upload-preview img { max-height: 200px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.remove-img {
  background: rgba(255,80,80,0.15);
  border: 1px solid rgba(255,80,80,0.3);
  color: #ff6b6b;
  padding: 8px 20px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}
.order-continue-btn {
  width: 100%;
  padding: 18px;
  background: #1e2132;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}
.order-continue-btn:hover { background: var(--gold); color: #0e0f13; border-color: var(--gold); }
.back-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  margin-top: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.2s;
}
.back-btn:hover { color: #fff; }

/* Service Options */
.service-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; text-align: left; }
.svc-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  cursor: pointer;
  transition: all 0.2s;
}
.svc-option:hover { border-color: rgba(245,166,35,0.4); background: rgba(245,166,35,0.04); }
.svc-option.selected { border-color: var(--gold); background: rgba(245,166,35,0.07); }
.svc-opt-info h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.svc-opt-info p { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.svc-opt-info ul li { font-size: 0.8rem; color: var(--blue); padding: 2px 0; }
.svc-opt-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-opt-price span { font-size: 0.8rem; font-weight: 600; color: var(--muted); }

/* Order Form */
.order-form { text-align: left; margin-bottom: 20px; }
.order-field { margin-bottom: 18px; }
.order-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #13151c;
  border: 1px solid #2a2d3a;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus { border-color: rgba(245,166,35,0.6); }
.order-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.btn-place-order {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: #0e0f13;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}
.btn-place-order:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Success */
.success-icon { font-size: 4rem; margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left p { margin: 0 auto 34px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: #13151c; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .btn-nav { display: none; }
  .hero-left h1 { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .order-step h1 { font-size: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .steps-row { flex-direction: column; gap: 20px; }
  .step-line { width: 1px; height: 30px; margin: 0 auto; border: none; background: rgba(245,166,35,0.3); border-left: 1px dashed rgba(245,166,35,0.4); }
}
/* ===== BEFORE / AFTER COMPARE SLIDER (used on services.html) ===== */
.compare{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  cursor:ew-resize;
  touch-action:none;
}

.compare-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
}

.compare-before{
  clip-path: inset(0 50% 0 0); /* starts at 50% — JS moves this */
}

.compare-handle{
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:2px;
  background:rgba(244,242,237,0.7);
  transform:translateX(-50%);
}

.compare-handle::before{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width:36px; height:36px;
  border-radius:50%;
  background:var(--bg2);
  border:1px solid var(--border);
  transform:translate(-50%,-50%);
}

.compare-handle::after{
  content:"⋯";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-60%) rotate(90deg);
  color:var(--text);
  font-size:14px;
}

.compare-caption{
  text-align:center;
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
}