/* ===================== BASE / TOKENS ===================== */
:root {
  --bg: #ffffff;
  --ink: #111114;
  --muted: #6b6b73;
  --line: #ededf2;
  --tile: #ffffff;
  --accent-1: #6d5efc;
  --accent-2: #00d4ff;
  --accent-3: #ff7ad9;
  --star: #ffc107;
  --radius: 16px;
  --maxw: 1100px;   /* single content width — banner, reviews, shop all align */
  --head-h: 66px;
  --shadow: 0 10px 30px rgba(17, 17, 20, 0.08);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

/* Smooth page-to-page transitions (fade in on load, fade out before leaving) */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFadeIn 0.28s ease backwards; }
body.page-leaving { opacity: 0; transition: opacity 0.18s ease; }

img { max-width: 100%; display: block; }

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

strong, b { font-weight: 800; }

h1, h2, h3, .brand, .banner-text {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ===================== LOADING SCREEN ===================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.preloader.hide { opacity: 0; pointer-events: none; }
.preloader-logo {
  width: clamp(120px, 26vw, 200px);
  height: auto;
  animation: preloaderIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both,
             preloaderPulse 1.6s ease-in-out 0.7s infinite;
}
@keyframes preloaderIn {
  from { opacity: 0; transform: scale(0.92) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}

/* ===================== TOP BAR / HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  /* clean "paper layer" edge — a soft shadow instead of a hard boxed cut */
  border-bottom: 1px solid #f1f1f5;
  box-shadow: 0 8px 20px -14px rgba(17, 17, 20, 0.28);
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--head-h);
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.header-left { display: flex; align-items: center; gap: 6px; justify-self: start; }
.header-right { display: flex; align-items: center; justify-self: end; }

.brand { justify-self: center; display: inline-flex; align-items: center; }
.brand-logo {
  height: 34px;
  width: auto;   /* shows in its true blue — no recolor */
}

/* icon buttons */
.icon-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.icon-btn:hover { background: #f3f3f7; }
.icon-btn:active { transform: scale(0.94); }
.icon-btn svg { width: 24px; height: 24px; }
.telegram { color: #229ed9; }

/* hamburger 3 lines */
.hamburger { flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* cart badge */
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.cart-badge.show { transform: scale(1); }

/* ===================== OVERLAY + DRAWERS ===================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 20, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 60;
}
.overlay.show { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(86vw, 340px);
  background: #fff;
  z-index: 70;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-drawer { left: 0; transform: translateX(-105%); }
.cart-drawer { right: 0; transform: translateX(105%); }
.nav-drawer.open, .cart-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-title { font-weight: 700; font-size: 18px; }
.drawer-close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.drawer-nav { display: flex; flex-direction: column; padding: 8px 0; }
.drawer-nav a {
  padding: 14px 22px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.drawer-nav a:hover { background: #f6f6fa; }

.drawer-telegram {
  margin: auto 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  background: #229ed9;
  color: #fff;
  font-weight: 600;
}
.drawer-telegram svg { width: 20px; height: 20px; }

/* cart drawer body */
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 30px; }
.cart-foot { border-top: 1px solid var(--line); padding: 14px 18px 18px; }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===================== BANNER ===================== */
/* Contained (not full-screen) with a little padding. Image + looped-text strip read as ONE rounded unit. */
.banner-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 22px 0;
}
/* single rounded card; clips both children so the seam between them is invisible */
.banner-unit {
  border-radius: clamp(16px, 2.2vw, 32px);
  overflow: hidden;
}
/* Top: image keeps its full size */
.banner {
  width: 100%;
  aspect-ratio: 1930 / 600;
  background: #000;
  position: relative;
}
.banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* white "Shop Now" button, lower-right of the banner */
.banner-cta {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 9%, 46px);
  z-index: 3;
  display: inline-block;
  background: #fff;
  color: #111114;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(0.74rem, 1.3vw, 0.95rem);
  line-height: 1;
  padding: clamp(7px, 1vw, 11px) clamp(13px, 1.9vw, 22px);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.banner-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32); }
.banner-cta:active { transform: translateY(0) scale(0.98); }
/* Below: a VERY short black strip with the looping text, attached straight to the image */
.banner-bar {
  width: 100%;
  height: clamp(28px, 3.4vw, 42px);         /* short band */
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-marquee {
  white-space: nowrap;
  will-change: transform;
  animation: pingpong 14s ease-in-out infinite alternate;
}
.banner-text {
  /* small, sized to the short strip */
  font-size: clamp(0.72rem, 1.9vw, 1.05rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;             /* visible on black */
}
/* "goes on and goes back" — slides one way then reverses */
@keyframes pingpong {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== REVIEWS ===================== */
.reviews {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 22px 6px;
}
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 4px 8px;
}
.reviews-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.05rem; }
.reviews-rating { font-weight: 600; font-size: 0.88rem; color: var(--muted); }
.reviews-rating .stars { color: var(--star); letter-spacing: 1px; margin-right: 5px; }
/* the smooth box */
.reviews-box {
  position: relative;
  overflow: hidden;   /* clips the row; no box framing, edges just fade into the page */
}
/* white gradient fading out on both sides */
.reviews-box::before,
.reviews-box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 340px;
  z-index: 2;
  pointer-events: none;
}
/* eased multi-stop fade so the side cards dissolve smoothly instead of cutting off */
.reviews-box::before { left: 0;  background: linear-gradient(90deg,  #fff 0%, rgba(255,255,255,0.98) 14%, rgba(255,255,255,0.85) 32%, rgba(255,255,255,0.55) 54%, rgba(255,255,255,0.25) 74%, rgba(255,255,255,0.08) 88%, rgba(255,255,255,0) 100%); }
.reviews-box::after  { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0.98) 14%, rgba(255,255,255,0.85) 32%, rgba(255,255,255,0.55) 54%, rgba(255,255,255,0.25) 74%, rgba(255,255,255,0.08) 88%, rgba(255,255,255,0) 100%); }
.reviews-viewport { overflow: hidden; padding: 16px 0; }
.reviews-track {
  display: flex;
  gap: 26px;
  width: max-content;
  transition: transform 0.7s cubic-bezier(0.45, 0, 0.15, 1);   /* smooth glide, no blur */
  will-change: transform;
}
.review-card {
  flex: 0 0 auto;
  width: 360px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);              /* slight outline so it's not dull */
  border-radius: 18px;                        /* bubble form */
  background: #fff;
  /* hard, close, even (no x-offset, no blur) shadow underneath */
  box-shadow: 0 3px 0 rgba(17, 17, 20, 0.10);
}
.review-img {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
}
/* stack: stars → quote → name, evenly spaced and centered next to the image */
.review-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.review-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-name { display: block; white-space: nowrap; font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.review-name::after {
  content: "✓ Verified";
  display: block;        /* own line so flag-emoji names don't wrap mid-name */
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #16a34a;
}
.reviews-more {
  display: block;
  text-align: center;
  margin: 14px auto 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.reviews-more .reviews-cta { color: #229ed9; }    /* telegram-blue action text */
.reviews-more:hover .reviews-cta { text-decoration: underline; }
.reviews-more .reviews-count {                    /* clean dark-grey Apple-style gradient text */
  background: linear-gradient(180deg, #86868b 0%, #1d1d1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.reviews-more .arrow { display: inline-block; animation: nudge 1.4s ease-in-out infinite; }   /* clean looping nudge */
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.shop-title {
  max-width: var(--maxw);
  margin: 16px auto 0;
  scroll-margin-top: 84px;   /* land below the sticky header */
  padding: 0 22px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.shop-filters {
  position: relative;
  z-index: 2;            /* lift chips + active glow above the product cards below */
  max-width: var(--maxw);
  margin: 14px auto 0;
  padding: 0 22px;
  display: flex;
  gap: 8px;
}
.shop-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.shop-chip:hover { background: #f6f6fa; }
/* active chip: clean blue glow hugging the pill, pulsing logo blue → deeper blue */
.shop-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 0 14px 2px rgba(34, 158, 217, 0.55);   /* logo blue */
  animation: bluePulse 3s ease-in-out infinite;
}
@keyframes bluePulse {
  0%, 100% { box-shadow: 0 0 13px 1px rgba(34, 158, 217, 0.55); }  /* logo blue */
  50%      { box-shadow: 0 0 20px 4px rgba(15, 94, 133, 0.80); }   /* deeper blue */
}
.shop-search-row {
  max-width: var(--maxw);
  margin: 14px auto 0;
  padding: 0 22px;
}
.shop-search {
  position: relative;
  display: block;
}
.shop-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #8b8b97;
  pointer-events: none;
}
.shop-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.94rem;
  padding: 11px 14px 11px 42px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.shop-search input::placeholder { color: #a1a1ab; }
.shop-search input:focus {
  border-color: #cfcfe0;
  box-shadow: 0 0 0 4px rgba(17, 17, 20, 0.06);
}
.shop-empty {
  max-width: var(--maxw);
  margin: 8px auto 0;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ===================== PRODUCTS ===================== */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 22px 8px;
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head p { margin: 6px 0 0; color: var(--muted); }

.product-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 22px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 4 per row on desktop */
  gap: 24px;
}
/* tablet / small laptop: 3 per row */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  transition: transform 0.22s ease;
}
.product-card:hover { transform: translateY(-4px); }

/* PNG-friendly media: NO border, contain so nothing is cropped */
.product-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;        /* 1000 x 1000 */
  object-fit: contain;
  display: block;
  transition: opacity 0.32s ease;
}
/* Overlay copy used to cross-fade product images during the disguise swap */
.product-media .pm-fade { position: absolute; inset: 0; opacity: 0; transition: opacity 0.32s ease; }
/* The disguise (candy) image sits a touch smaller than the real product image */
.product-media img.is-candy { transform: scale(0.9); }
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(17, 17, 20, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.product-info { padding: 14px 8px 8px; }
.product-title { margin: 0; font-size: 1.05rem; font-weight: 600; }
.product-sub { margin: 2px 0 0; font-size: 0.82rem; color: var(--muted); }

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 4px;
}
.stars { color: var(--star); letter-spacing: 1px; font-size: 0.95rem; }
.rating-num { color: var(--ink); font-weight: 600; font-size: 0.9rem; }
.rating-count { color: var(--muted); font-size: 0.82rem; }

.product-price { font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.price-was { color: var(--muted); text-decoration: line-through; font-weight: 600; font-size: 0.86em; margin-right: 7px; }
.price-now { color: var(--ink); }

/* buttons */
.btn-add, .btn-primary {
  appearance: none;
  border: 0;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.btn-add:hover, .btn-primary:hover { opacity: 0.9; }
.btn-add:active, .btn-primary:active { transform: scale(0.98); }

/* ===================== ORDER TRACKING ===================== */
.track {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 22px 56px;
}
.track-head { text-align: center; margin-bottom: 18px; }
.track-title { margin: 0; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; letter-spacing: -0.02em; }
.track-sub { margin: 6px 0 0; color: var(--muted); font-size: 0.95rem; }
.track-form { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.track-field { position: relative; flex: 1 1 auto; display: flex; align-items: center; }
.track-ico { position: absolute; left: 14px; width: 20px; height: 20px; color: var(--muted); pointer-events: none; }
.track-field input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 40px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.track-field input::placeholder { color: #a6a6b0; }
.track-field input:focus { border-color: #cfcfe0; box-shadow: 0 0 0 4px rgba(109, 94, 252, 0.12); }
.track-validity { position: absolute; right: 14px; font-weight: 800; font-size: 1rem; }
.track-validity.ok  { color: #16a34a; }
.track-validity.bad { color: #e5484d; }
.track-btn {
  appearance: none;
  border: 0;
  padding: 0 26px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.track-btn:hover { opacity: 0.9; }
.track-btn:active { transform: scale(0.98); }
.track-foot { text-align: center; color: var(--muted); font-size: 0.78rem; margin: 12px 0 0; opacity: 0.85; }
.track-result { max-width: 720px; margin: 14px auto 0; }
.track-widget { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; min-height: 120px; background: #fff; }
.track-frame { width: 100%; height: 520px; border: 0; display: block; background: #fff; }
.track-ext { display: block; text-align: center; margin: 10px 0 0; font-size: 0.85rem; font-weight: 600; color: #229ed9; }
.track-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px -22px rgba(17, 17, 20, 0.4);
  animation: trackIn 0.35s ease both;
}
@keyframes trackIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.track-panel.bad { border-color: #f2c9cb; background: #fdf4f4; }
.track-panel-title { font-weight: 700; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.track-panel-body { margin-top: 8px; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===================== MOBILE-DEDICATED ===================== */
@media (max-width: 768px) {
  :root { --head-h: 58px; }
  .brand-logo { height: 26px; }
  .banner-wrap { padding: 16px 14px 0; }
  .reviews { padding: 20px 14px 4px; }
  .reviews-track { gap: 14px; }
  .review-card { width: 215px; gap: 12px; padding: 11px; }
  .review-img { width: 58px; height: 58px; }
  .reviews-box::before, .reviews-box::after { width: 36px; }
  .shop-title { padding: 0 14px; }
  .shop-filters { padding: 0 14px; }
  .shop-search-row, .shop-empty { padding: 0 14px; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 22px 14px 44px;
  }
  .product-info { padding: 12px 6px 6px; }
  .product-title { font-size: 0.98rem; }
  .product-price { font-size: 1rem; }
  .btn-add { padding: 11px 12px; font-size: 0.9rem; }
  .track { padding: 16px 14px 44px; }
  .track-form { flex-direction: column; }
  .track-btn { width: 100%; padding: 13px; }
}

@media (max-width: 380px) {
  .header-left .telegram { display: none; } /* keep top bar tidy on tiny screens */
}

/* respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .banner-marquee,
  .reviews-more .arrow,
  .preloader-logo,
  .shop-chip.active,
  .cart-nudge,
  .cart-nudge-fill,
  .cart-nudge-bar::after,
  .order-copy-toggle,
  .track-panel { animation: none; }
}

/* ===================== MODALS (flavors / shipping / order) ===================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 20, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-inner {
  width: 100%;
  max-width: 520px;
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px -20px rgba(17, 17, 20, 0.5);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.show .modal-inner { transform: translateY(0) scale(1); }
.modal-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.modal-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.05rem; }
.modal-close { width: 36px; height: 36px; }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }

/* Flavor picker */
.flavor-body { padding: 16px 18px; }
.flavor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.flavor-chip {
  appearance: none;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.flavor-chip:hover { background: #f6f6fa; }
.flavor-chip.selected { border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink) inset; }
.fc-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.fc-sub { font-size: 0.76rem; color: var(--muted); }
.flavor-actions { position: sticky; bottom: 0; padding: 14px 18px 18px; background: #fff; border-top: 1px solid var(--line); }

/* Cart items */
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ci-img { width: 60px; height: 60px; flex: 0 0 auto; border-radius: 12px; object-fit: contain; background: #fff; border: 1px solid var(--line); }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-weight: 600; font-size: 0.95rem; }
.ci-name-link { color: inherit; text-decoration: underline; text-decoration-color: #c9c9d9; text-underline-offset: 2px; }
.ci-name-link:hover { text-decoration-color: currentColor; }
.ci-flavor { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.ci-qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 6px; }
.ci-step { appearance: none; border: 0; background: transparent; font-size: 1rem; line-height: 1; width: 22px; height: 22px; border-radius: 50%; cursor: pointer; color: var(--ink); }
.ci-step:hover { background: #f3f3f7; }
.ci-qnum { font-weight: 600; font-size: 0.85rem; min-width: 14px; text-align: center; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.ci-price { font-weight: 700; font-size: 0.95rem; }
.ci-remove { appearance: none; border: 0; background: transparent; color: var(--muted); font-size: 0.78rem; cursor: pointer; padding: 0; text-decoration: underline; }
.ci-remove:hover { color: #e5484d; }
.ci-remove.is-confirming { color: #e5484d; font-weight: 700; }
.ci-deal-tag { display: inline-block; margin-top: 6px; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: #fff; background: var(--ink); border-radius: 6px; padding: 3px 7px; }
.ci-was { color: var(--muted); font-weight: 600; font-size: 0.82em; margin-right: 4px; text-decoration: line-through; }

/* free-shipping nudge (only when exactly one item is in the cart) */
.cart-nudge { margin: 12px 0 0; padding: 11px 13px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(135deg, #1c1c22, #111114); color: #fff; box-shadow: 0 12px 28px -16px rgba(17, 17, 20, 0.75); animation: nudgePulse 2.4s ease-in-out infinite; }
.cart-nudge-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-nudge-left { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.cart-nudge-ico { display: inline-flex; flex: 0 0 auto; color: #4cc2f0; }
.cart-nudge-ico svg { width: 18px; height: 18px; display: block; }
.cart-nudge-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 0.92rem; color: #fff; }
.cart-nudge-count { flex: 0 0 auto; font-size: 0.72rem; font-weight: 700; color: #fff; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22); padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.cart-nudge-bar { position: relative; height: 10px; margin: 11px 0 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.13); overflow: hidden; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); }
.cart-nudge-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 50%; border-radius: 999px; background: linear-gradient(90deg, #2aa8e6, #36d67f); box-shadow: 0 0 12px rgba(54, 214, 127, 0.55); transform-origin: left center; animation: nudgeGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cart-nudge-bar::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 55%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent); transform: translateX(-100%); animation: nudgeShimmer 2.4s linear infinite; }
.cart-nudge-sub { margin: 0; font-size: 0.78rem; color: rgba(255, 255, 255, 0.62); }
.cart-nudge-sub strong { color: #fff; font-weight: 700; }
.cart-nudge-deal { display: inline-flex; align-items: center; gap: 6px; margin-top: 9px; font-size: 0.78rem; font-weight: 700; color: #ffcf5a; }
.cart-nudge-deal svg { flex: 0 0 auto; }
.cart-nudge-deal strong { color: #fff; font-weight: 800; }
@keyframes nudgeGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes nudgeShimmer { 0% { transform: translateX(-100%); } 55% { transform: translateX(185%); } 100% { transform: translateX(185%); } }
@keyframes nudgePulse { 0%, 100% { box-shadow: 0 12px 28px -16px rgba(17, 17, 20, 0.75), 0 0 0 0 rgba(34, 158, 217, 0); } 50% { box-shadow: 0 12px 28px -16px rgba(17, 17, 20, 0.75), 0 0 0 4px rgba(34, 158, 217, 0.14); } }
/* Free Dope Dough FOMO card + claimed freebie line */
.fomo-offer { margin-top: 12px; padding: 12px 13px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(135deg, #1c1c22, #111114); color: #fff; box-shadow: 0 14px 30px -18px rgba(17, 17, 20, 0.85); animation: nudgePulse 2.4s ease-in-out infinite; }
.fomo-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fomo-left { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.fomo-ico { color: #5fd2ff; display: inline-flex; flex: 0 0 auto; }
.fomo-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 0.9rem; color: #fff; }
.fomo-timer { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.fomo-time { font-variant-numeric: tabular-nums; font-weight: 700; color: inherit; }
.fomo-body { margin-top: 10px; display: grid; grid-template-columns: 58px 1fr; gap: 10px; align-items: start; }
.fomo-img { width: 58px; height: 58px; border-radius: 12px; object-fit: contain; background: #fff; border: 1px solid rgba(255, 255, 255, 0.16); padding: 2px; display: block; }
.fomo-info { min-width: 0; }
.fomo-name { font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fomo-pill { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px; padding: 2px 7px; color: rgba(255, 255, 255, 0.8); }
.fomo-price { margin-top: 3px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; }
.fomo-price s { color: rgba(255, 255, 255, 0.6); }
.fomo-price strong { color: #35db81; font-size: 0.9rem; }
.fomo-select-wrap { margin-top: 8px; }
.fomo-select-wrap .pack-select { background: rgba(255, 255, 255, 0.95); border-color: rgba(255, 255, 255, 0.45); color: #0f1115; }
.fomo-select-wrap .pack-select:hover { border-color: rgba(255, 255, 255, 0.8); }
.fomo-select-wrap .pack-select:focus { border-color: rgba(255, 255, 255, 0.8); box-shadow: 0 0 0 4px rgba(34, 158, 217, 0.2); }
.fomo-select-wrap .pack-select-caret { color: #5b6274; }
.fomo-add { appearance: none; width: 100%; border: 0; margin-top: 10px; border-radius: 10px; background: #fff; color: #0f1115; font-weight: 800; font-family: inherit; font-size: 0.88rem; padding: 11px 12px; cursor: pointer; transition: transform 0.15s ease, opacity 0.15s ease; }
.fomo-add:hover { opacity: 0.95; }
.fomo-add:active { transform: scale(0.985); }
.fomo-foot { margin: 7px 0 0; font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); }

.cart-item.is-free { border-bottom: 1px solid var(--line); background: transparent; border-radius: 0; padding: 14px 0; margin-bottom: 0; }
.cart-item.is-free .ci-img { border-color: var(--line); background: #fff; }
.ci-free-tag { margin-left: 7px; display: inline-block; font-size: 0.61rem; letter-spacing: 0.07em; text-transform: uppercase; color: #fff; background: var(--ink); border-radius: 999px; padding: 2px 6px; vertical-align: middle; }
.ci-free-timer { margin-top: 6px; display: inline-flex; align-items: center; gap: 5px; font-size: 0.74rem; color: var(--muted); white-space: nowrap; }
.ci-free-timer svg { color: var(--muted); width: 12px; height: 12px; }

/* Cart extras: packaging picker + delivery estimate — one compact card above the subtotal */
.cart-extras { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-bottom: 12px; }
.cart-extras:empty { display: none; }
.pack-row { display: grid; grid-template-columns: 44px 1fr; gap: 11px; padding: 11px 12px; align-items: flex-start; }
.pack-img { width: 44px; height: 44px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 3px; display: block; }
.pack-info { min-width: 0; }
.pack-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pack-name { font-weight: 600; font-size: 0.9rem; }
.pack-price { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #16a34a; }
.pack-sub { font-size: 0.75rem; color: var(--muted); margin-top: 1px; line-height: 1.35; }
.pack-select-wrap { position: relative; margin-top: 8px; }
.pack-select { appearance: none; -webkit-appearance: none; width: 100%; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; padding: 8px 28px 8px 10px; font-family: inherit; font-size: 0.8rem; font-weight: 500; cursor: pointer; outline: none; transition: border-color 0.15s ease, box-shadow 0.15s ease; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.pack-select:hover { border-color: #cfcfe0; }
.pack-select:focus { border-color: #cfcfe0; box-shadow: 0 0 0 4px rgba(34, 158, 217, 0.12); }
.pack-select-caret { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.deliv-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fafafb; }
.deliv-ico { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #f3f3f7; color: var(--ink); }
.deliv-ico svg { width: 16px; height: 16px; }
.deliv-main { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.deliv-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.deliv-date { font-weight: 600; font-size: 0.85rem; }
.deliv-days { flex: 0 0 auto; font-size: 0.72rem; font-weight: 600; color: var(--muted); }

/* Country picker */
.country-body { padding: 18px; }
.country-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.1rem; margin: 0; }
.country-sub { color: var(--muted); font-size: 0.9rem; margin: 6px 0 14px; }
.country-search { position: relative; display: flex; align-items: center; }
.country-search svg { position: absolute; left: 13px; color: var(--muted); }
.country-search input { width: 100%; font-family: inherit; font-size: 1rem; padding: 12px 14px 12px 38px; border: 1px solid var(--line); border-radius: 12px; outline: none; }
.country-search input:focus { border-color: #cfcfe0; box-shadow: 0 0 0 4px rgba(34, 158, 217, 0.12); }
.country-list { list-style: none; margin: 12px 0 0; padding: 0; max-height: 42vh; overflow-y: auto; }
.country-item { padding: 12px 14px; border-radius: 10px; cursor: pointer; font-size: 0.92rem; }
.country-item:hover { background: #f6f6fa; }
.country-empty { padding: 14px; color: var(--muted); font-size: 0.9rem; }
/* Shipping confirmation — clean, restrained, professional */
.ship-confirm { padding: 20px 18px 18px; }
.sc-top { display: flex; align-items: center; gap: 12px; }
.sc-check { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; }
.sc-check svg { width: 17px; height: 17px; }
.sc-head { min-width: 0; display: flex; flex-direction: column; }
.sc-kicker { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.sc-country { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.45rem; letter-spacing: -0.02em; line-height: 1.15; }
.sc-deliv { margin: 18px 0 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.sc-deliv-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; font-size: 0.92rem; }
.sc-deliv-row + .sc-deliv-row { border-top: 1px solid var(--line); }
.sc-deliv-label { color: var(--muted); }
.sc-deliv-value { font-weight: 600; text-align: right; }
.sc-assure { list-style: none; margin: 15px 0 18px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.sc-assure li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: #2c2c33; }
.sc-assure svg { flex: 0 0 auto; color: #16a34a; }
.check-ring { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 4px auto 12px; color: #16a34a; background: #e7f7ee; }
#countryGo { display: flex; align-items: center; justify-content: center; gap: 8px; }
.confirm-change { appearance: none; cursor: pointer; width: 100%; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; background: transparent; border: 0; color: var(--muted); font-family: inherit; font-size: 0.84rem; font-weight: 600; padding: 9px 12px; border-radius: 10px; transition: background 0.15s ease, color 0.15s ease; }
.confirm-change:hover { background: #f3f3f7; color: var(--ink); }

/* Order copied */
.order-body { padding: 18px; text-align: center; }
.order-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.15rem; margin: 0; }
.order-sub { color: var(--muted); font-size: 0.9rem; margin: 6px 0 16px; }
.order-rail { list-style: none; display: flex; align-items: center; justify-content: center; margin: 0 0 16px; padding: 0; }
.order-rail-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; position: relative; color: var(--muted); }
.order-rail-step:not(:last-child)::after { content: ""; position: absolute; top: 13px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.order-rail-bubble { position: relative; z-index: 1; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f1f1f5; color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.order-rail-step.done .order-rail-bubble { background: #16a34a; color: #fff; }
.order-rail-step.active .order-rail-bubble { background: var(--ink); color: #fff; }
.order-rail-step.done:not(:last-child)::after { background: #16a34a; }
.order-rail-label { font-size: 0.72rem; }
.order-tg { display: flex; align-items: center; justify-content: center; gap: 8px; background: #229ed9; color: #fff; border-radius: 12px; padding: 13px; font-weight: 600; text-decoration: none; }
.order-tg:hover { opacity: 0.92; }
.order-hint { font-size: 0.78rem; color: var(--muted); margin: 10px 0 0; }
.order-copy-toggle { appearance: none; border: 0; background: transparent; cursor: pointer; margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; font-size: 0.9rem; font-weight: 700; color: #229ed9; animation: copyPulse 1.7s ease-in-out infinite; }
.order-copy-toggle svg { width: 15px; height: 15px; }
.order-copy-toggle.copied { animation: copiedPop 0.45s cubic-bezier(0.22, 1, 0.36, 1); color: #16a34a; }
.order-preview { margin: 12px 0 0; text-align: left; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.order-preview[hidden] { display: none; }
@keyframes copyPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.04); opacity: 0.72; } }
@keyframes copiedPop { 0% { transform: scale(0.85); } 55% { transform: scale(1.12); } 100% { transform: scale(1); } }
.order-pre { white-space: pre-wrap; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; color: var(--ink); background: #fafafa; border-radius: 8px; padding: 10px; margin: 10px 0 8px; overflow-x: auto; }
.pay-section { margin: 18px 0 0; }
.pay-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.pay-grid { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; }
.pay-icon { display: inline-flex; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.pay-icon svg { display: block; }
.pay-more { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* "Open in browser" notice for TikTok in-app visitors */
.tt-body { padding: 22px 20px 20px; text-align: center; }
.tt-badge { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; background: rgba(34, 158, 217, 0.10); color: #229ed9; }
.tt-badge svg { width: 26px; height: 26px; }
.tt-title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.2rem; margin: 0; }
.tt-sub { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin: 8px 0 16px; }
.tt-steps { list-style: none; margin: 0 0 14px; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.tt-steps li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; line-height: 1.4; }
.tt-num { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tt-foot { font-size: 0.84rem; color: var(--muted); margin: 0 0 14px; }

/* Modals as bottom sheets on mobile */
@media (max-width: 768px) {
  .modal { align-items: flex-end; padding: 0; }
  .modal-inner { max-width: 100%; max-height: 90vh; border-radius: 20px 20px 0 0; }
}

/* ===================== PINNED ANNOUNCEMENT (verified support post) ===================== */
.notice-wrap { max-width: var(--maxw); margin: 18px auto 0; padding: 0 22px; }
.notice { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 14px 16px; color: var(--ink); }
.notice-head { display: flex; align-items: center; gap: 10px; }
.notice-avatar { position: relative; overflow: hidden; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #0b0b0d; color: #fff; }
.notice-avatar img, .notice-avatar .notice-logo { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; }
.notice-avatar img { object-fit: cover; }
.notice-avatar svg { width: 22px; height: 22px; margin-left: -1px; }
.notice-id { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.notice-name { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 0.95rem; }
.notice-verified { display: inline-flex; }
.notice-verified svg { width: 15px; height: 15px; display: block; }
.notice-handle { font-size: 0.78rem; color: var(--muted); }
.notice-pin { margin-left: auto; color: #b9b9c2; transform: rotate(40deg); }
.notice-pin svg { width: 16px; height: 16px; display: block; }
.notice-msg { margin: 10px 0 0; font-size: 0.85rem; line-height: 1.45; color: #2c2c33; }
.notice-msg-sub { margin-top: 9px; }
.notice-msg strong { color: var(--ink); font-weight: 700; }
.notice-msg a { color: #229ed9; font-weight: 700; }
.notice-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 0.85rem; font-weight: 700; color: #229ed9; }
.notice-link .arrow { transition: transform 0.2s ease; }
.notice-link:hover .arrow { transform: translateX(3px); }
#track { scroll-margin-top: 90px; }
@media (max-width: 768px) {
  .notice-wrap { padding: 0 14px; }
}

/* Disguise toggle (floating eye, bottom-right) */
.disguise-btn { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 45; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); box-shadow: 0 8px 22px -8px rgba(17, 17, 20, 0.35); cursor: pointer; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.disguise-btn:hover { transform: translateY(-2px); }
.disguise-btn:active { transform: scale(0.94); }
.disguise-btn svg { width: 22px; height: 22px; display: block; }
.disguise-btn.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
