/* NOBBYO — Modern enhancement layer (loaded AFTER styles.css/subpage.css) */

/* ── motion tokens ───────────────────────────────────── */
:root {
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --grad-1: linear-gradient(135deg, #1E2A78 0%, #4F46E5 50%, #FF5A3C 100%);
  --grad-mesh: radial-gradient(at 20% 30%, rgba(79,70,229,.5), transparent 50%),
               radial-gradient(at 80% 20%, rgba(255,90,60,.4), transparent 50%),
               radial-gradient(at 70% 80%, rgba(16,185,129,.3), transparent 50%);
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/></svg>");
}

/* smooth global */
html { scroll-behavior: smooth; }
* { -webkit-tap-highlight-color: transparent; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* selection */
::selection { background: var(--coral); color: #fff; }

/* ── scroll progress bar ─────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-2), var(--coral));
  width: 0%;
  transition: width .1s linear;
}

/* ── custom cursor blob (desktop only) ───────────────── */
@media (hover: hover) and (pointer: fine) {
  .cursor-blob {
    position: fixed; top: 0; left: 0; width: 28px; height: 28px;
    border-radius: 50%; pointer-events: none; z-index: 9998;
    background: rgba(255,90,60,.18); backdrop-filter: invert(.5);
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease-spring), height .25s var(--ease-spring),
                background .25s ease;
    mix-blend-mode: difference;
  }
  .cursor-blob.hover { width: 64px; height: 64px; background: rgba(255,255,255,.6); }
}

/* ── glass nav upgrade ───────────────────────────────── */
.nav { transition: all .3s var(--ease-out-expo); }
.nav.scrolled {
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 8px 32px -12px rgba(15,23,42,.08);
}

/* brand mark animated rotation on hover */
.brand-mark { transition: transform .6s var(--ease-spring); }
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.08); }

/* magnetic-feel button base */
.btn { transition: transform .25s var(--ease-spring), box-shadow .25s, background .2s, color .2s; position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.2);
  transform: translateX(-110%) skewX(-20deg); transition: transform .55s var(--ease-out-expo);
}
.btn:hover::before { transform: translateX(110%) skewX(-20deg); }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); }

/* ── HERO upgrade ────────────────────────────────────── */
.hero {
  background:
    radial-gradient(at 20% 30%, rgba(79,70,229,.7), transparent 50%),
    radial-gradient(at 80% 20%, rgba(255,90,60,.45), transparent 50%),
    radial-gradient(at 70% 80%, rgba(16,185,129,.25), transparent 50%),
    linear-gradient(135deg, #15205C 0%, #1E2A78 50%, #2D1B69 100%);
  background-size: 200% 200%;
  animation: meshShift 18s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%; }
  100% { background-position: 100% 50%, 0% 100%, 50% 0%, 100% 100%; }
}

/* hero h1 reveal animation */
.hero .h1-bn, .hero .h1-en, .hero .lede, .hero .search-bar, .hero-chips, .hero-trust {
  opacity: 0; transform: translateY(24px);
  animation: heroIn .9s var(--ease-out-expo) forwards;
}
.hero .h1-bn { animation-delay: .1s; }
.hero .h1-en { animation-delay: .25s; }
.hero .lede { animation-delay: .4s; }
.hero .search-bar { animation-delay: .55s; }
.hero-chips { animation-delay: .7s; }
.hero-trust { animation-delay: .85s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* gradient kinetic accent on h1 */
.hero .h1-en {
  background: linear-gradient(90deg, #fff 0%, #FFD2C4 30%, #fff 60%, #B8C0FF 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent !important;
  animation: heroIn .9s var(--ease-out-expo) .25s forwards, shine 6s linear 1.2s infinite;
}
@keyframes shine { from { background-position: 0% 0; } to { background-position: 200% 0; } }

/* stronger floating cards with parallax tilt */
.hero-card {
  transition: transform .6s var(--ease-spring), box-shadow .4s;
  cursor: pointer;
  will-change: transform;
}
.hero-card:hover {
  z-index: 5;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.6) inset;
}

/* ring glow behind hero visual */
.hero-visual::before {
  content: ""; position: absolute; inset: -10%; z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.15), transparent 60%);
  filter: blur(20px); animation: pulseGlow 5s ease-in-out infinite alternate;
}
@keyframes pulseGlow { from { opacity: .5; transform: scale(.95); } to { opacity: 1; transform: scale(1.05); } }

/* search bar lift + focus ring */
.search-bar { transition: transform .3s var(--ease-spring), box-shadow .3s; }
.search-bar:focus-within { transform: translateY(-2px); box-shadow: 0 32px 80px -20px rgba(0,0,0,.55); }

/* hero chips wave-in */
.hero-chips .chip { transition: transform .25s var(--ease-spring), background .2s, border-color .2s; }
.hero-chips .chip:hover { transform: translateY(-3px) scale(1.05); border-color: rgba(255,255,255,.4); }

/* ── marquee strip (under hero) ──────────────────────── */
.marquee {
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 18px 0; position: relative;
}
.marquee-track {
  display: flex; gap: 56px; animation: marquee 40s linear infinite;
  white-space: nowrap; will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-2); font-weight: 600; font-size: 14px; flex-shrink: 0; }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Service cards: beefy hover ──────────────────────── */
.svc-card { transition: transform .4s var(--ease-spring), box-shadow .35s, border-color .25s; will-change: transform; }
.svc-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(30,42,120,.08), transparent 40%);
  opacity: 0; transition: opacity .25s;
}
.svc-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 30px 60px -20px rgba(30,42,120,.25); }
.svc-card:hover::after { opacity: 1; }

.svc-card .ic { transition: transform .5s var(--ease-spring), background .25s, border-radius .3s; position: relative; overflow: hidden; }
.svc-card .ic::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.6), transparent 60%);
}
.svc-card:hover .ic { transform: scale(1.12) rotate(-6deg); border-radius: 18px; }

.svc-card .explore { transition: color .2s, gap .25s var(--ease-spring); }
.svc-card:hover .explore svg { transform: translateX(3px); }
.svc-card .explore svg { transition: transform .25s; }

/* live pulse for active services */
.pill-live::before { animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.45); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* filler tile sweep */
.svc-card.filler { background: linear-gradient(135deg, #1E2A78, #4F46E5, #7C3AED); background-size: 200% 200%; animation: gradShift 8s ease-in-out infinite alternate; }
@keyframes gradShift { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }

/* ── Section heads: gradient eyebrow ─────────────────── */
.eyebrow {
  background: linear-gradient(90deg, var(--indigo), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent !important;
}

h2 {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 60%, rgba(26,26,46,.88) 100%);
  -webkit-background-clip: text; background-clip: text;
}

/* ── How it works: animated connector + numbers ──────── */
.how-grid::before {
  background-image: linear-gradient(90deg, var(--indigo) 50%, transparent 50%);
  background-size: 12px 2px; background-repeat: repeat-x; border: 0; height: 2px;
  animation: dashMove 24s linear infinite;
}
@keyframes dashMove { from { background-position: 0 0; } to { background-position: 200px 0; } }

.how-step { transition: transform .35s var(--ease-spring), box-shadow .3s, border-color .3s; }
.how-step:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -16px rgba(30,42,120,.18); border-color: transparent; }
.how-step .num { background: linear-gradient(135deg, var(--indigo), var(--indigo-2)); transition: transform .35s var(--ease-spring); }
.how-step:hover .num { transform: scale(1.15) rotate(-8deg); }
.how-step .ic { transition: transform .4s var(--ease-spring); }
.how-step:hover .ic { transform: rotate(8deg) scale(1.06); }

/* ── Trending cards lift ─────────────────────────────── */
.trend-card { transition: transform .35s var(--ease-spring), box-shadow .3s; will-change: transform; }
.trend-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 0 24px 50px -16px rgba(30,42,120,.22); }
.trend-thumb { transition: transform .5s var(--ease-spring); }
.trend-card:hover .trend-thumb { transform: scale(1.04); }
.filter-pill { transition: all .2s var(--ease-spring); }
.filter-pill:hover { transform: translateY(-1px); }
.filter-pill.active { transform: scale(1.04); box-shadow: 0 8px 20px -8px rgba(30,42,120,.45); }

/* ── Why-choose: shimmer cards ───────────────────────── */
.why-card { transition: transform .35s var(--ease-spring), box-shadow .3s; position: relative; overflow: hidden; }
.why-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(255,90,60,.1), transparent 60%);
  transform: translateX(-100%); transition: transform .8s var(--ease-out-expo);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -16px rgba(30,42,120,.18); }
.why-card:hover::before { transform: translateX(100%); }
.why-card .ic { transition: transform .4s var(--ease-spring); }
.why-card:hover .ic { transform: scale(1.12) rotate(-6deg); }

/* stats stronger */
.stats { background: linear-gradient(135deg, #1E2A78 0%, #4F46E5 50%, #7C3AED 100%); background-size: 200% 200%; animation: gradShift 12s ease infinite alternate; }
.stat-num { background: linear-gradient(180deg, #fff, #B8C0FF); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── App strip ───────────────────────────────────────── */
.app-strip { background: linear-gradient(135deg, #1E2A78, #4F46E5 60%, #FF5A3C); background-size: 200% 200%; animation: gradShift 14s ease infinite alternate; }
.app-badge { transition: transform .25s var(--ease-spring); }
.app-badge:hover { transform: translateY(-3px) scale(1.03); }

/* ── Testimonials: tilt hover ───────────────────────── */
.test-card { transition: transform .4s var(--ease-spring), box-shadow .3s, border-color .3s; }
.test-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 28px 50px -16px rgba(30,42,120,.18); border-color: transparent; }

/* press strip subtle scroll */
.press-strip span { transition: color .2s, transform .2s; cursor: default; }
.press-strip span:hover { color: var(--ink); transform: translateY(-2px); }

/* ── Footer animated ─────────────────────────────────── */
footer { background: linear-gradient(180deg, #0F1124 0%, #07081A 100%); position: relative; overflow: hidden; }
footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(at 20% 30%, rgba(79,70,229,.18), transparent 40%),
              radial-gradient(at 80% 70%, rgba(255,90,60,.12), transparent 40%);
  pointer-events: none;
}
footer .container { position: relative; }
.foot-social a { transition: all .25s var(--ease-spring); }
.foot-social a:hover { transform: translateY(-3px) scale(1.08); }
.foot-col a { transition: color .2s, transform .2s; display: inline-block; }
.foot-col a:hover { transform: translateX(3px); }
.pay-logo { transition: transform .2s; }
.pay-logo:hover { transform: translateY(-2px) scale(1.05); }

/* ── Reveal on scroll (per-element) ──────────────────── */
.r-up { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
.r-up.in { opacity: 1; transform: none; }
.r-up.d1 { transition-delay: .08s; }
.r-up.d2 { transition-delay: .16s; }
.r-up.d3 { transition-delay: .24s; }
.r-up.d4 { transition-delay: .32s; }

/* override base reveal to use spring */
section.reveal { transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }

/* ── Modal (shared) ─────────────────────────────────── */
.modal-veil {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,17,36,.65); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 24px;
  animation: veilIn .25s ease-out;
}
@keyframes veilIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: 20px; max-width: 480px; width: 100%;
  padding: 32px; box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
  animation: modalIn .35s var(--ease-spring);
  max-height: 90vh; overflow: auto;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
.modal h3 { font-size: 22px; margin-bottom: 8px; }
.modal p { color: var(--ink-2); margin: 0 0 20px; line-height: 1.55; }
.modal .field { margin-bottom: 14px; }
.modal label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.modal input, .modal textarea, .modal select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-family: inherit; outline: none; transition: border .15s, box-shadow .15s;
}
.modal input:focus, .modal textarea:focus, .modal select:focus { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(30,42,120,.08); }
.modal textarea { min-height: 90px; resize: vertical; }
.modal .row { display: flex; gap: 8px; margin-top: 8px; }
.modal .row .btn { flex: 1; justify-content: center; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: 0; background: var(--bg-soft); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); }
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-success { text-align: center; padding: 16px 0; }
.modal-success .ok { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: #D1FAE5; color: #059669; display: grid; place-items: center; animation: bounceIn .6s var(--ease-spring); }
@keyframes bounceIn { from { transform: scale(0); } 60% { transform: scale(1.15); } to { transform: scale(1); } }

/* ── Mini cart drawer ────────────────────────────────── */
.cart-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; border: 0;
  background: var(--coral); color: #fff;
  box-shadow: 0 12px 32px -8px rgba(255,90,60,.6);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .25s var(--ease-spring);
}
.cart-fab:hover { transform: scale(1.08); }
.cart-fab .badge {
  position: absolute; top: -4px; right: -4px;
  background: #fff; color: var(--coral); border-radius: 999px;
  font-size: 11px; font-weight: 800; padding: 2px 7px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  animation: bounceIn .4s var(--ease-spring);
}
.drawer-veil { position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); animation: veilIn .25s; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw; background: #fff; z-index: 1001; box-shadow: -16px 0 40px -8px rgba(0,0,0,.2); display: flex; flex-direction: column; animation: drawerIn .35s var(--ease-out-expo); }
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: none; } }
.drawer header { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer header h3 { font-size: 18px; }
.drawer .items { flex: 1; overflow: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.drawer-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
.drawer-item:last-child { border-bottom: 0; }
.drawer-item .thumb { width: 56px; height: 56px; border-radius: 10px; display: grid; place-items: center; }
.drawer-item h5 { font-size: 13px; font-weight: 600; margin: 0 0 4px; line-height: 1.3; }
.drawer-item .qty { display: inline-flex; align-items: center; gap: 6px; }
.drawer-item .qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: #fff; border-radius: 6px; color: var(--ink); }
.drawer-item .qty button:hover { border-color: var(--indigo); color: var(--indigo); }
.drawer-item .qty span { min-width: 18px; text-align: center; font-weight: 600; font-size: 13px; }
.drawer-item .price { font-weight: 700; font-size: 14px; }
.drawer-item .rm { background: transparent; border: 0; color: var(--ink-2); font-size: 12px; cursor: pointer; padding: 0; }
.drawer-item .rm:hover { color: var(--coral); }
.drawer footer { padding: 20px 24px; border-top: 1px solid var(--line); }
.drawer .total-row { display: flex; justify-content: space-between; margin-bottom: 14px; }
.drawer .total-row.big { font-size: 18px; font-weight: 700; color: var(--ink); }
.drawer .empty { display: grid; place-items: center; height: 100%; padding: 32px; text-align: center; color: var(--ink-2); }
.drawer .empty .ic { width: 80px; height: 80px; border-radius: 20px; background: var(--bg-soft); display: grid; place-items: center; color: var(--ink-2); margin-bottom: 16px; }

/* ── Toast ───────────────────────────────────────────── */
.toast-stack { position: fixed; bottom: 100px; right: 24px; z-index: 1100; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 500; box-shadow: 0 16px 40px -8px rgba(0,0,0,.4);
  animation: toastIn .35s var(--ease-spring), toastOut .3s ease forwards;
  animation-delay: 0s, 2.7s;
  display: flex; align-items: center; gap: 10px; pointer-events: auto;
}
.toast.success { background: var(--mint); }
.toast.coral { background: var(--coral); }
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toastOut { to { transform: translateX(20px); opacity: 0; } }

/* ── Form validation ─────────────────────────────────── */
input.invalid, .auth-form input.invalid, .modal input.invalid { border-color: var(--coral) !important; box-shadow: 0 0 0 4px rgba(255,90,60,.12) !important; animation: shake .35s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.field-error { color: var(--coral); font-size: 12px; margin-top: 4px; font-weight: 500; }
.field-ok { color: var(--mint); font-size: 12px; margin-top: 4px; font-weight: 500; }

/* ── Button "saved" pulse ────────────────────────────── */
.saved { background: var(--mint) !important; color: #fff !important; }

/* ── Job card actions ────────────────────────────────── */
.job-card .actions { display: flex; gap: 6px; margin-top: 8px; }
.job-card .icon-btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink-2); transition: all .2s; cursor: pointer; }
.job-card .icon-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.job-card .icon-btn.saved { background: var(--coral); border-color: var(--coral); color: #fff; }

/* ── Carousel arrow tweak ────────────────────────────── */
.arrow-btn { transition: all .25s var(--ease-spring); }
.arrow-btn:hover { transform: scale(1.12) rotate(2deg); border-color: var(--indigo); color: var(--indigo); box-shadow: 0 8px 16px -6px rgba(30,42,120,.3); }

/* ── Subnav tweaks ───────────────────────────────────── */
.subnav { transition: all .3s; }
.subnav.scrolled { background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(20px); }

/* ── Page hero gradient blob ─────────────────────────── */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,.12), transparent 60%);
  pointer-events: none;
}
.page-hero .ic-large { transition: transform .4s var(--ease-spring); }
.page-hero:hover .ic-large { transform: rotate(-8deg) scale(1.05); }

/* product-card upgrade */
.product-card { transition: transform .35s var(--ease-spring), box-shadow .3s, border-color .25s; }
.product-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 22px 50px -18px rgba(30,42,120,.22); }
.product-card .thumb { transition: transform .5s var(--ease-spring); }
.product-card:hover .thumb { transform: scale(1.03); }
.product-card .add-btn {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; transform: translateY(8px) scale(.9);
  transition: all .25s var(--ease-spring);
  box-shadow: 0 8px 16px -4px rgba(0,0,0,.3);
}
.product-card:hover .add-btn { opacity: 1; transform: none; }
.product-card .add-btn:hover { background: var(--coral); transform: scale(1.1); }
.product-card .add-btn.added { background: var(--mint); }

/* job & provider cards */
.job-card { transition: all .25s var(--ease-spring); }
.job-card:hover { transform: translateX(4px); }
.provider-card { transition: transform .35s var(--ease-spring), box-shadow .3s; }
.provider-card:hover { transform: translateY(-4px); }

/* category tile */
.cat-tile { transition: all .3s var(--ease-spring); }
.cat-tile:hover .ic { transform: scale(1.15) rotate(-8deg); }
.cat-tile .ic { transition: transform .35s var(--ease-spring); }

/* ── Sticky nav cart count ───────────────────────────── */
.nav-cart-btn { position: relative; }
.nav-cart-btn .badge { position: absolute; top: -2px; right: -2px; background: var(--coral); color: #fff; border-radius: 999px; font-size: 10px; font-weight: 800; padding: 1px 6px; min-width: 16px; text-align: center; }

/* ── Hide cursor blob on mobile ──────────────────────── */
@media (hover: none) { .cursor-blob { display: none; } }

/* ── Auth pages: animated bg ─────────────────────────── */
.auth-side { background: linear-gradient(135deg, #1E2A78, #4F46E5 50%, #7C3AED); background-size: 200% 200%; animation: gradShift 14s ease infinite alternate; }
.auth-form input { transition: border-color .2s, box-shadow .2s, transform .2s; }
.social-btn { transition: all .25s var(--ease-spring); }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px -8px rgba(0,0,0,.15); }

/* ── Coming soon: animated bg ────────────────────────── */
.cs-hero { background: linear-gradient(135deg, #1E2A78, #4F46E5 50%, #FF5A3C); background-size: 200% 200%; animation: gradShift 14s ease infinite alternate; }
.cs-hero .ic-bubble { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Confetti dots (decoration) ──────────────────────── */
.confetti { position: fixed; pointer-events: none; z-index: 1200; left: 50%; top: 30%; }
.confetti span { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: confetti 1.4s var(--ease-out-expo) forwards; }
@keyframes confetti { to { transform: translate(var(--x, 50px), var(--y, 200px)) rotate(720deg); opacity: 0; } }
