:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-muted: #fafafa;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --line: #d2d2d7;
  --blue: #0071e3;
  --green: #34c759;
  --red: #ff3b30;
  --wa: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --header-h: 60px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 720px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  height: var(--header-h);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: 1.05rem;
}
.logo-text { font-size: 1.08rem; letter-spacing: -0.03em; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; font-size: .9rem; color: var(--ink-soft); }
.main-nav > a:hover { color: var(--ink); }
.nav-dropdown { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: 0; padding: .65rem 0; cursor: pointer;
  font: inherit; color: inherit;
}
.nav-drop-btn:hover, .nav-dropdown.open .nav-drop-btn { color: var(--ink); }
.nav-caret { transition: transform .28s cubic-bezier(.22,1,.36,1); }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 6px); left: 50%;
  min-width: 220px; max-height: min(70vh, 420px); overflow-y: auto;
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px; padding: .45rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  z-index: 120;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(.98);
  transition:
    opacity .28s cubic-bezier(.22,1,.36,1),
    transform .32s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .28s;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -18px;
  height: 18px;
}
.nav-dropdown.open .nav-drop-menu,
.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  transition:
    opacity .28s cubic-bezier(.22,1,.36,1),
    transform .32s cubic-bezier(.22,1,.36,1),
    visibility 0s;
}
.nav-drop-menu a {
  display: block; padding: .55rem .75rem; border-radius: 8px;
  color: var(--ink); font-size: .82rem; font-weight: 500;
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-drop-divider {
  height: 1px; background: var(--line); margin: .35rem .4rem;
}

/* Mega menu */
.nav-mega {
  width: min(96vw, 860px);
  max-height: min(82vh, 640px);
  left: 50%;
  padding: .85rem .9rem 1rem;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.04);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  transform: translateX(-50%) translateY(-10px) scale(.985);
}
.nav-dropdown.open .nav-mega,
.nav-dropdown:hover .nav-mega {
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .65rem;
  padding: 0 .15rem .55rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.nav-mega-all {
  display: inline-flex !important;
  align-items: center;
  gap: .4rem;
  padding: .4rem .55rem !important;
  border-radius: 999px !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  color: var(--ink-soft) !important;
  white-space: nowrap;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}
.nav-mega-all:hover {
  background: var(--bg-soft) !important;
  color: var(--ink) !important;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .4rem;
}
.nav-mega-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .55rem .35rem .6rem !important;
  border-radius: 14px !important;
  text-align: center;
  white-space: normal !important;
  font-size: .72rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  transition: background .2s ease, transform .25s cubic-bezier(.22,1,.36,1);
  opacity: 0;
  transform: translateY(8px);
}
.nav-dropdown.open .nav-mega-item,
.nav-dropdown:hover .nav-mega-item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1) calc(var(--i, 0) * 28ms),
    transform .4s cubic-bezier(.22,1,.36,1) calc(var(--i, 0) * 28ms),
    background .2s ease;
}
.nav-mega-item:hover {
  background: var(--bg-soft) !important;
  transform: translateY(-2px) !important;
}
.nav-mega-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(160deg, #f7f7f9 0%, #eef0f4 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.nav-mega-item:hover .nav-mega-thumb {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.nav-mega-thumb img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.08));
}
.nav-mega-label {
  line-height: 1.25;
  max-width: 9.5ch;
  letter-spacing: -0.02em;
}
@media (max-width: 1100px) {
  .nav-mega { width: min(94vw, 680px); }
  .nav-mega-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.locale-switchers {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-inline-end: .15rem;
}
.locale-select {
  display: inline-flex;
  align-items: center;
  margin: 0;
  line-height: 0;
}
.locale-select select {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  height: 36px;
  min-height: 36px;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236e6e73' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .55rem center;
  border-radius: 10px;
  padding: 0 1.65rem 0 .65rem;
  font: 650 .78rem/1 var(--font);
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.locale-select select:focus {
  outline: none;
  border-color: rgba(0,0,0,.22);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
html[dir="rtl"] .locale-select select {
  background-position: left .55rem center;
  padding: 0 .65rem 0 1.65rem;
}
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .header-inner,
html[dir="rtl"] .footer-bottom-inner,
html[dir="rtl"] .detail-tabs,
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .card-actions {
  direction: rtl;
}
.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  color: var(--ink);
  flex-shrink: 0;
}
.icon-btn .badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--ink); color: #fff;
  font-size: .65rem; min-width: 16px; height: 16px;
  border-radius: 99px; display: grid; place-items: center; padding: 0 4px;
}
.menu-toggle {
  display: none; background: none; border: 0; width: 28px; height: 20px;
  flex-direction: column; justify-content: space-between; cursor: pointer; padding: 0;
}
.menu-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* Flash */
.flash { padding: .85rem 0; font-size: .9rem; }
.flash-success { background: #e8f8ef; color: #0b7a3b; }
.flash-error { background: #fdeceb; color: #b42318; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border: 0; border-radius: 980px; padding: .7rem 1.35rem;
  font: 600 .9rem/1 var(--font); cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost { background: var(--bg-soft); color: var(--ink); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-wa-icon {
  width: 36px; height: 36px; padding: 0; border-radius: 10px;
  background: var(--ink); color: #fff;
}
.btn-sm { padding: .55rem .95rem; font-size: .8rem; border-radius: 10px; }
.btn-lg { padding: .9rem 1.6rem; font-size: .95rem; }
.btn-block { width: 100%; margin-top: .6rem; }
.text-link { color: var(--blue); font-size: .9rem; font-weight: 600; }
.text-link.danger { color: var(--red); }

/* Hero — Apple style */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, #ececf1 0%, transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #fff 70%);
  padding: 4.5rem 0 2rem;
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(1.65rem, 4.8vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
  max-width: min(100%, 22ch);
  margin: 0 auto .85rem;
  color: var(--ink);
  white-space: nowrap;
}
.hero-title em {
  font-style: normal;
  display: inline;
  background-image: linear-gradient(transparent 72%, rgba(0,0,0,.1) 72%, rgba(0,0,0,.1) 92%, transparent 92%);
}
@media (max-width: 480px) {
  .hero-title {
    white-space: normal;
    max-width: 18ch;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
  }
}
.hero-sub {
  max-width: 36ch;
  margin: 0 auto 1.85rem;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-cta { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-visual {
  display: flex; justify-content: center;
  animation: deviceIn .9s ease both;
}
.hero-photo {
  width: min(900px, 98vw);
  height: auto;
  margin: 0 auto;
  background: transparent;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.16));
}
@keyframes deviceIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero { padding: 3.5rem 0 1.5rem; text-align: center; background: var(--bg-soft); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.04em; }
.page-lead { max-width: 42ch; margin: 0 auto; font-size: 1.05rem; }
.eyebrow { font-size: .85rem; font-weight: 600; color: var(--ink-soft); text-transform: none; margin-bottom: .4rem; }

/* Category showcase hero */
.cat-hero {
  position: relative;
  padding: 2.5rem 0 2.2rem;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f5 100%);
  overflow: hidden;
}
.cat-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(280px, 1.25fr) minmax(220px, .82fr);
  gap: 1.4rem 1.6rem;
  align-items: center;
}
.cat-hero-eyebrow {
  margin: 0 0 .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.cat-hero-title {
  margin: 0 0 .65rem;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.cat-hero-lead {
  margin: 0 0 1.1rem;
  max-width: 36ch;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
}
.cat-hero-perks {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.1rem;
}
.cat-hero-perks li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
}
.cat-hero-perk-ico {
  width: 18px;
  height: 18px;
  color: #111;
  display: inline-grid;
  place-items: center;
}
.cat-hero-perk-ico svg { width: 16px; height: 16px; }
.cat-hero-note {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  max-width: 34rem;
  background: #ececf0;
  border-radius: 14px;
  padding: .75rem 1.05rem .75rem .75rem;
  box-shadow: none;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.cat-hero-note-ico {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #555;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.cat-hero-note-ico svg { width: 14px; height: 14px; }
.cat-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}
.cat-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.12));
  animation: deviceIn .7s ease both;
}
.cat-hero-trust {
  display: grid;
  gap: 0;
  align-self: center;
  padding: .15rem 0;
}
.cat-trust-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .75rem;
  align-items: start;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.cat-trust-item:first-child { padding-top: 0; }
.cat-trust-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cat-trust-ico {
  width: 20px;
  height: 20px;
  margin-top: .12rem;
  color: var(--ink);
  opacity: .72;
}
.cat-trust-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .12rem;
}
.cat-trust-item span {
  display: block;
  font-size: .78rem;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .cat-hero-inner {
    grid-template-columns: 1.05fr 1fr;
  }
  .cat-hero-trust {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin-top: .25rem;
  }
  .cat-trust-item {
    padding: .95rem .85rem;
    border-bottom: 0;
    border-right: 1px solid rgba(0,0,0,.08);
  }
  .cat-trust-item:first-child { padding-top: .95rem; }
  .cat-trust-item:last-child {
    border-right: 0;
    padding-bottom: .95rem;
  }
  .cat-hero-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .cat-hero { padding: 1.75rem 0 1.5rem; }
  .cat-hero-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .cat-hero-visual { order: -1; min-height: 200px; }
  .cat-hero-visual img { max-height: 250px; }
  .cat-hero-trust { display: none; }
  .cat-hero-note { display: none; }
  .cat-hero-lead { max-width: none; }
}

/* Pickup / elden teslim banner */
.pickup-banner {
  position: relative;
  padding: .35rem 0 1.75rem;
}
.pickup-banner-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  align-items: stretch;
  gap: 1rem 1.25rem;
  min-height: 300px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(29,29,31,.06);
  background:
    radial-gradient(720px 320px at 92% 18%, rgba(0,113,227,.10), transparent 58%),
    radial-gradient(520px 260px at 8% 100%, rgba(52,199,89,.07), transparent 55%),
    linear-gradient(165deg, #f7f8fb 0%, #eef1f6 48%, #e8ecf3 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 22px 48px rgba(29,29,31,.07);
  animation: pickupIn .75s cubic-bezier(.22,1,.36,1) both;
}
.pickup-banner-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,29,31,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,29,31,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(110deg, rgba(0,0,0,.55), transparent 72%);
  pointer-events: none;
}
.pickup-banner-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.25rem 2rem 2.25rem;
  max-width: 36rem;
}
.pickup-banner-kicker {
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pickup-banner-title {
  margin: 0 0 .7rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: var(--ink);
}
.pickup-banner-title em {
  font-style: normal;
  color: #1a9f4b;
  background-image: linear-gradient(transparent 68%, rgba(52,199,89,.22) 68%, rgba(52,199,89,.22) 92%, transparent 92%);
}
.pickup-banner-text {
  margin: 0 0 1.35rem;
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
}
.pickup-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.15rem;
}
.pickup-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .78rem 1.25rem;
  border-radius: 980px;
  font: 700 .9rem/1 var(--font);
  color: #fff;
  background: var(--ink);
  transition: transform .18s ease, background .18s ease;
}
.pickup-banner-cta::after {
  content: "→";
  font-weight: 700;
  transition: transform .18s ease;
}
.pickup-banner-cta:hover {
  background: #000;
  transform: translateY(-1px);
}
.pickup-banner-cta:hover::after { transform: translateX(3px); }
html[dir="rtl"] .pickup-banner-cta::after { content: "←"; }
html[dir="rtl"] .pickup-banner-cta:hover::after { transform: translateX(-3px); }
.pickup-banner-hours {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pickup-banner-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 1.75rem 1.35rem .5rem;
  min-height: 0;
}
.pickup-banner-orbit {
  position: absolute;
  width: min(260px, 72%);
  aspect-ratio: 1;
  right: 12%;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,.95), transparent 42%),
    radial-gradient(circle at 50% 55%, rgba(0,113,227,.16), transparent 62%);
  filter: blur(2px);
  animation: pickupOrbit 8s ease-in-out infinite;
  pointer-events: none;
}
.pickup-devices {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .2rem;
  width: 100%;
  max-width: 380px;
  height: 268px;
}
.pickup-device {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(29,29,31,.2));
  user-select: none;
  pointer-events: none;
}
.pickup-device-phone {
  height: 100%;
  max-height: 250px;
  width: auto;
  z-index: 2;
  animation: pickupFloat 5s ease-in-out infinite;
}
.pickup-device-watch-pair {
  height: 44%;
  max-height: 112px;
  width: auto;
  margin-bottom: 5%;
  z-index: 1;
  animation: pickupFloat 5s ease-in-out infinite .35s;
}
.pickup-device-watch-ultra {
  height: 58%;
  max-height: 148px;
  width: auto;
  margin-bottom: 3%;
  z-index: 3;
  animation: pickupFloat 5s ease-in-out infinite .7s;
}
@keyframes pickupIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pickupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pickupOrbit {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.06); opacity: 1; }
}
@media (max-width: 860px) {
  .pickup-banner-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .pickup-banner-copy {
    padding: 1.5rem 1.35rem 1.35rem;
    max-width: none;
    text-align: center;
    align-items: center;
  }
  .pickup-banner-text { margin-inline: auto; }
  .pickup-banner-actions { justify-content: center; }
  .pickup-banner-visual {
    order: -1;
    padding: 1.5rem 1.25rem .25rem;
  }
  .pickup-devices {
    height: 220px;
    max-width: 320px;
  }
  .pickup-device-phone { max-height: 200px; }
  .pickup-device-watch-pair { max-height: 88px; }
  .pickup-device-watch-ultra { max-height: 118px; }
  .pickup-banner-orbit { right: 18%; width: min(220px, 60%); }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-head { margin-bottom: 1.75rem; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.section-head .muted { color: var(--ink-soft); font-weight: 500; }
.section-head-inline { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.center-cta { text-align: center; margin-top: 2rem; }

/* Categories */
.cat-scroll {
  display: flex; gap: .95rem; overflow-x: auto; padding-bottom: .75rem;
  scrollbar-width: thin; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.cat-item {
  flex: 0 0 auto; min-width: 92px; max-width: 110px;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  padding: .7rem .45rem; border-radius: var(--radius-sm);
  transition: background .2s ease;
  scroll-snap-align: start;
}
.cat-item:hover, .cat-item.active { background: var(--bg-soft); }
.cat-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink);
  display: grid; place-items: center;
}
.cat-item.active .cat-icon { background: var(--ink); color: #fff; }
.cat-icon svg { width: 40px; height: 40px; }
.cat-name {
  font-size: .78rem; font-weight: 600; color: var(--ink);
  text-align: center; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Featured category cards (rich) */
.banner-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
}
.feat-card {
  position: relative; overflow: hidden;
  border-radius: 28px; min-height: 340px;
  padding: 1.5rem 1.5rem 1.35rem;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.feat-dark { background: #000; color: #fff; }
.feat-light { background: #f5f5f7; color: var(--ink); }
.feat-soft { background: #ececf1; color: var(--ink); }
.feat-wide { grid-column: 1 / -1; }
.feat-body {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 1rem; height: 100%; min-height: 300px; align-items: stretch;
}
.feat-copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-top: .35rem;
}
.feat-copy h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  letter-spacing: -.03em; margin: 0 0 .4rem;
}
.feat-copy > p {
  margin: 0 0 1.1rem; font-size: .95rem; max-width: 22ch;
  color: var(--ink-soft);
}
.feat-dark .feat-copy > p { color: #a1a1a6; }
.feat-perks {
  list-style: none; padding: 0; margin: 0 0 1.35rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.feat-perks li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .84rem; font-weight: 600; color: var(--ink);
}
.feat-dark .feat-perks li { color: #d2d2d7; }
.feat-ico {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .7rem; font-weight: 700;
  background: rgba(0,0,0,.06); color: var(--ink);
}
.feat-dark .feat-ico { background: rgba(255,255,255,.1); color: #fff; }
.feat-btn {
  margin-top: auto;
  display: inline-flex; align-items: center;
  background: transparent; color: var(--ink);
  font-size: .92rem; font-weight: 700;
  padding: 0; border-radius: 0;
  transition: color .15s ease, transform .15s ease;
}
.feat-card:hover .feat-btn { color: #000; transform: translateX(2px); }
.feat-btn-light {
  background: #fff; color: #000;
  padding: .7rem 1.2rem; border-radius: 980px;
}
.feat-card:hover .feat-btn-light { color: #000; transform: none; }
.feat-media {
  position: relative; display: grid; place-items: center;
  align-self: center; background: transparent;
}
.feat-media img {
  position: relative; z-index: 1;
  width: min(100%, 280px); height: auto;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  mix-blend-mode: normal;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.16));
  transition: transform .3s ease;
}
.feat-dark .feat-media img {
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.5));
}
.feat-wide .feat-media img {
  width: min(100%, 420px);
  max-height: 280px;
}
.feat-img-blend {
  mix-blend-mode: multiply !important;
  filter: none !important;
}
.feat-card:hover .feat-media img { transform: scale(1.04); }
.feat-glow {
  position: absolute; inset: 10% 5%;
  border-radius: 50%; filter: blur(28px); opacity: .85;
  pointer-events: none;
}
.feat-glow-dark { background: radial-gradient(circle, #5a5a5e 0%, transparent 70%); }
.feat-glow-blue { background: radial-gradient(circle, #8eb6ff 0%, #c5b4ff 45%, transparent 70%); }
.feat-glow-cyan { background: radial-gradient(circle, #b8e0ff 0%, #dfe9ff 50%, transparent 72%); }
.feat-glow-lavender { background: radial-gradient(circle, #d4c4ff 0%, #e8e0ff 50%, transparent 72%); }

@media (max-width: 960px) {
  .feat-body { grid-template-columns: 1fr; min-height: 0; }
  .feat-media { order: -1; min-height: 180px; }
  .feat-media img { width: min(70%, 220px); }
  .feat-card { min-height: 0; }
  .feat-wide { grid-column: auto; }
  .feat-copy > p { max-width: none; }
}
@media (max-width: 700px) {
  .banner-grid { grid-template-columns: 1fr; }
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: .9rem;
}
.product-card {
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.04);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: fadeUp .5s ease both;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.07); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.product-card-media { position: relative; background: var(--bg-muted); aspect-ratio: 1 / .92; overflow: hidden; }
.product-img-link {
  height: 100%; display: grid; place-items: center; padding: .85rem;
}
.product-img-link img { max-height: 100%; object-fit: contain; }
.badge-2el {
  position: absolute; top: 0; right: 0; z-index: 3;
  width: 84px; height: 84px;
  overflow: hidden; pointer-events: none;
}
.badge-2el span {
  position: absolute; top: 12px; right: -28px;
  display: block; width: 110px;
  background: linear-gradient(180deg, #2a2a2c 0%, #111 100%);
  color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: .08em;
  text-align: center; text-transform: uppercase;
  padding: .35rem 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.product-card-body { padding: .75rem .8rem .85rem; display: flex; flex-direction: column; flex: 1; }
.product-brand {
  font-size: .62rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .25rem;
}
.product-title { font-size: .88rem; margin: 0 0 .55rem; line-height: 1.25; }
.product-title a:hover { color: var(--blue); }
.spec-pills {
  display: grid; grid-template-columns: 1fr 1fr; gap: .3rem;
  margin-bottom: .7rem;
}
.pill {
  display: flex; align-items: center; gap: .2rem; flex-wrap: wrap;
  background: var(--bg-soft); border-radius: 6px;
  padding: .25rem .4rem; font-size: .65rem; color: var(--ink);
}
.pill em { font-style: normal; color: var(--ink-soft); }
.pill .in { color: var(--green); }
.pill .out { color: var(--red); }
.product-card-footer {
  margin-top: auto; display: flex; flex-direction: column; gap: .55rem;
}
.price-block {
  display: flex; align-items: baseline; justify-content: center; gap: .4rem;
}
.price { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.old-price { font-size: .75rem; color: var(--ink-soft); text-decoration: line-through; }
.card-actions {
  display: flex; gap: .35rem; align-items: center; justify-content: center;
  width: 100%;
}
.product-card .btn-sm {
  padding: .4rem .7rem; font-size: .72rem; border-radius: 8px;
  flex: 1; justify-content: center; text-align: center;
}

/* Trust */
.trust-section {
  padding-block: 1.25rem 2.75rem;
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  overflow: hidden;
}
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .95rem;
  align-items: start;
  padding: 1.45rem 1.4rem 1.5rem;
  background: transparent;
  border-radius: 0;
  position: relative;
  transition: background .25s ease;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(0,0,0,.07);
}
.trust-item:hover { background: rgba(0,0,0,.015); }
.trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(160deg, #f3f3f5 0%, #e8e8ec 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
  flex-shrink: 0;
}
.trust-ico svg { width: 20px; height: 20px; }
.trust-copy strong {
  display: block;
  margin: .1rem 0 .35rem;
  font-size: .98rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.trust-copy p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 28ch;
}

@media (max-width: 960px) {
  .trust-band { grid-template-columns: 1fr; }
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.07);
  }
  .trust-copy p { max-width: none; }
}

/* Detail */
.product-detail { padding: 2.5rem 0; }
.detail-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start;
}
.detail-gallery { position: relative; overflow: hidden; border-radius: 24px; }
.detail-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-soft);
  border-radius: 24px;
  aspect-ratio: 1;
  scrollbar-width: none;
  touch-action: pan-x;
}
.detail-slider::-webkit-scrollbar { display: none; }
.detail-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
}
.detail-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.detail-gallery .badge-2el {
  width: 110px; height: 110px;
  z-index: 2;
  pointer-events: none;
}
.detail-gallery .badge-2el span {
  top: 18px; right: -32px; width: 140px;
  font-size: .75rem; padding: .45rem 0;
}
.detail-dots {
  display: none;
  justify-content: center;
  gap: .4rem;
  margin-top: .75rem;
}
.detail-dot {
  appearance: none;
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(0,0,0,.18);
  padding: 0;
  cursor: pointer;
}
.detail-dot.is-active {
  background: var(--ink);
  width: 18px;
}
.detail-thumbs {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .75rem;
}
.detail-thumb {
  appearance: none; border: 1px solid rgba(0,0,0,.08); background: var(--bg-soft);
  border-radius: 12px; padding: .35rem; width: 68px; height: 68px; cursor: pointer;
  display: grid; place-items: center; transition: border-color .15s ease, box-shadow .15s ease;
}
.detail-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.detail-thumb:hover { border-color: rgba(0,0,0,.18); }
.detail-thumb.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(0,0,0,.08);
}
@media (max-width: 960px) {
  .detail-gallery { border-radius: 18px; }
  .detail-slider { border-radius: 18px; }
  .detail-slide { padding: 1.15rem; }
  .detail-thumbs { display: none; }
  .detail-dots { display: flex; }
}
.detail-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .75rem; }
.detail-price { display: flex; align-items: baseline; gap: .65rem; margin-bottom: 1rem; }
.detail-price .price { font-size: 1.6rem; }
.detail-desc { font-size: 1rem; margin-bottom: 1.25rem; }
.detail-specs { margin-bottom: 1.5rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.35rem; }
.detail-panels {
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 1rem;
}
.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.detail-tab {
  appearance: none;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 980px;
  padding: .55rem 1.05rem;
  font: 650 .84rem/1 var(--font);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.detail-tab:hover { color: var(--ink); border-color: rgba(0,0,0,.18); }
.detail-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.detail-panel {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.detail-panel p { margin: 0; }
.detail-panel .specs-table { margin: 0; }
.detail-panel .specs-table th {
  width: 38%;
  color: var(--ink-soft);
  font-weight: 600;
}
.detail-panel .specs-table td { color: var(--ink); font-weight: 550; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td {
  text-align: left; padding: .85rem 0; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.specs-table th { color: var(--ink-soft); font-weight: 500; width: 40%; }

/* Toolbar / forms */
.toolbar {
  display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.5rem 0 1rem;
}
.input {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .7rem .9rem; font: 500 .9rem/1.4 var(--font); background: #fff; color: var(--ink);
}
.input:focus { outline: 2px solid rgba(0,113,227,.25); border-color: var(--blue); }
.input-sm { width: 72px; padding: .4rem .55rem; }
.toolbar .input { width: auto; min-width: 140px; flex: 1; }
.toolbar select.input { flex: 0 1 170px; min-width: 140px; }
.toolbar input[type="search"].input { flex: 1 1 200px; min-width: 160px; }

.filter-form { margin: 1.25rem 0 1rem; }
.filter-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
  margin-bottom: .65rem;
}
.filter-search {
  position: relative;
  display: block;
  margin: 0;
}
.filter-search svg {
  position: absolute;
  left: .85rem; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}
.filter-search .input { padding-left: 2.4rem; }
.filter-open-btn {
  display: none;
  align-items: center;
  gap: .35rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0 .95rem;
  font: 650 .84rem/1 var(--font);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}
.filter-open-btn svg { width: 18px; height: 18px; }
.filter-count {
  min-width: 18px; height: 18px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: .68rem;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
}
.filter-desktop { margin: 0; }
.filter-sheet { display: none; }

@media (max-width: 768px) {
  .filter-open-btn { display: inline-flex; }
  .filter-desktop {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .filter-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
  }
  .filter-sheet.is-open {
    visibility: visible;
    pointer-events: auto;
  }
  .filter-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .28s ease;
  }
  .filter-sheet.is-open .filter-sheet-backdrop { opacity: 1; }
  .filter-sheet-panel {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    max-height: min(88vh, 720px);
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -12px 40px rgba(0,0,0,.14);
    display: flex;
    flex-direction: column;
    transform: translateY(110%);
    transition: transform .34s cubic-bezier(.22,1,.36,1);
  }
  .filter-sheet.is-open .filter-sheet-panel { transform: translateY(0); }
  .filter-sheet-handle {
    width: 42px; height: 4px;
    border-radius: 99px;
    background: #d8d8dc;
    margin: .65rem auto .15rem;
  }
  .filter-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem 1.15rem .75rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .filter-sheet-head h2 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
  }
  .filter-sheet-close {
    width: 36px; height: 36px;
    border: 0; border-radius: 10px;
    background: var(--bg-soft);
    display: grid; place-items: center;
    cursor: pointer;
  }
  .filter-sheet-close svg { width: 18px; height: 18px; }
  .filter-sheet-body {
    overflow-y: auto;
    padding: .85rem 1.15rem 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .filter-group { margin-bottom: 1rem; }
  .filter-group-title {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 .45rem;
  }
  .filter-select-wrap {
    position: relative;
  }
  .filter-select-wrap::after {
    content: "";
    position: absolute;
    right: .95rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.8px solid var(--ink-soft);
    border-bottom: 1.8px solid var(--ink-soft);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }
  .filter-sheet-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding: .85rem 2.4rem .85rem 1rem;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 600;
    background: var(--bg-soft);
    border: 1px solid transparent;
    cursor: pointer;
  }
  .filter-sheet-select:focus {
    outline: none;
    border-color: rgba(0,0,0,.18);
    background: #fff;
  }
  .filter-sheet-foot {
    display: grid;
    grid-template-columns: .9fr 1.3fr;
    gap: .55rem;
    padding: .85rem 1.15rem calc(.95rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0,0,0,.06);
    background: #fff;
  }
  .filter-sheet-foot .btn { width: 100%; justify-content: center; }
  body.filter-open { overflow: hidden; }
}
label { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .85rem; }
.result-count { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }

.empty-state {
  text-align: center; padding: 4rem 1rem; background: var(--bg-soft); border-radius: var(--radius);
}
.empty-state h3 { margin-bottom: .5rem; }
.success-box { background: #eef9f1; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: start; }
.cart-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-row img {
  width: 96px; height: 96px; object-fit: contain;
  background: var(--bg-soft); border-radius: 12px; padding: .5rem;
}
.cart-meta h3 { font-size: 1rem; margin-bottom: .25rem; }
.qty-form { display: flex; align-items: end; gap: .5rem; margin-top: .5rem; }
.qty-form label { margin: 0; font-size: .75rem; }
.cart-line { text-align: right; display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }
.cart-summary {
  background: var(--bg-soft); border-radius: 20px; padding: 1.5rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}
.checkout-form .btn-block:first-of-type { margin-top: .25rem; }

/* Contact / About */
.contact-layout, .about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start;
}
.contact-list.big li { margin-bottom: 1.1rem; }
.contact-list.big em { display: block; font-style: normal; font-size: .8rem; color: var(--ink-soft); }
.contact-list.big strong { font-size: 1.05rem; }
.card-form {
  background: var(--bg-soft); padding: 1.75rem; border-radius: 20px;
}
.process-list { list-style: decimal; padding-left: 1.2rem; }
.process-list li { margin-bottom: 1rem; color: var(--ink-soft); }
.process-list strong { color: var(--ink); }
.check-list li {
  padding: .65rem 0 .65rem 1.6rem; position: relative; border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink);
}
.highlight-block {
  background: var(--bg-soft); border-radius: 20px; padding: 1.75rem;
}
.highlight-block .btn { margin-top: 1.25rem; }

/* Footer */
.site-footer {
  background: #f5f5f7;
  padding: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.footer-trust {
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.footer-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem .75rem;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.footer-trust-item + .footer-trust-item {
  border-left: 1px solid rgba(0,0,0,.06);
}
.footer-trust-item svg {
  width: 16px;
  height: 16px;
  opacity: .7;
  flex-shrink: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr .85fr 1.1fr;
  gap: 2.5rem 2rem;
  padding: 2.75rem 0 2.35rem;
  align-items: start;
}
.footer-brand .logo { margin-bottom: .85rem; }
.footer-tagline {
  margin: 0 0 .45rem;
  font-size: .92rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.footer-note {
  margin: 0 0 1.15rem !important;
  font-size: .84rem !important;
  line-height: 1.5;
  max-width: 32ch;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 980px;
  background: #25d366;
  color: #fff !important;
  font-size: .82rem !important;
  font-weight: 700;
  transition: transform .15s ease, opacity .15s ease;
}
.footer-wa:hover { transform: translateY(-1px); opacity: .95; color: #fff !important; }
.site-footer h4 {
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-col ul li { margin-bottom: .5rem; }
.site-footer a {
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 500;
}
.site-footer a:hover { color: var(--ink); }
.footer-more {
  font-weight: 650 !important;
  color: var(--ink) !important;
}
.footer-contact-list li {
  display: grid;
  gap: .15rem;
  margin-bottom: .85rem !important;
}
.footer-contact-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-contact-list a,
.footer-contact-list span:not(.footer-contact-label) {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 550;
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.07);
  background: #eeeef0;
  padding: .95rem 0;
  font-size: .78rem;
  color: var(--ink-soft);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.15rem;
}
.footer-bottom-links a {
  font-size: .78rem !important;
  color: var(--ink-soft);
}
.footer-bottom-links a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .footer-trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-trust-item:nth-child(2n+1) { border-left: 0; }
  .footer-trust-item:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,.06); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding: 2.25rem 0 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-trust-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-trust-item { justify-content: flex-start; padding-inline: 0; }
  .footer-trust-item + .footer-trust-item { border-left: 0; }
  .footer-trust-item:nth-child(n+2) { border-top: 1px solid rgba(0,0,0,.06); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* Auth */
.auth-section {
  min-height: calc(100vh - var(--header-h) - 120px);
  display: grid; place-items: center;
  padding: 3rem 1rem;
  background:
    radial-gradient(900px 400px at 50% 0%, #ececf1 0%, transparent 55%),
    var(--bg);
}
.auth-card {
  width: min(100%, 420px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.05);
  text-align: center;
}
.auth-card-wide { width: min(100%, 640px); }
.auth-card h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
  margin-bottom: .4rem;
}
.auth-lead { margin-bottom: 1.5rem; font-size: .95rem; }
.auth-form { text-align: left; }
.auth-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 .85rem;
}
.auth-alert {
  background: #fdeceb; color: #b42318;
  border-radius: 12px; padding: .85rem 1rem;
  font-size: .88rem; text-align: left; margin-bottom: 1rem;
}
.auth-switch {
  margin: 1.25rem 0 0; font-size: .9rem; color: var(--ink-soft);
}
.auth-switch a { color: var(--blue); font-weight: 600; }

/* Header auth */
.header-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 36px;
  padding: 0 .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1;
  white-space: nowrap;
}
.header-auth-link:hover { color: var(--ink); }
.header-register {
  box-sizing: border-box !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 1rem !important;
  font-size: .78rem !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  border-radius: 10px !important;
}
.header-account {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  box-sizing: border-box;
  height: 36px;
  padding: 0 .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.nav-mobile-only { display: none; }
.cart-login-hint {
  font-size: .82rem; background: #fff; border-radius: 12px;
  padding: .75rem .85rem; margin-bottom: 1rem; border: 1px solid var(--line);
}
.cart-login-hint a { color: var(--blue); font-weight: 600; }

/* Account */
.account-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; align-items: start;
}
.account-nav {
  background: var(--bg-soft); border-radius: 18px; padding: .75rem;
  display: flex; flex-direction: column; gap: .25rem; position: sticky; top: calc(var(--header-h) + 1rem);
}
.account-nav a {
  padding: .7rem .9rem; border-radius: 12px; font-size: .9rem; font-weight: 600; color: var(--ink-soft);
}
.account-nav a:hover, .account-nav a.active { background: #fff; color: var(--ink); }
.account-panel {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 20px; padding: 1.5rem;
}
.account-panel h2 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.account-form { max-width: 480px; }
.order-list { display: flex; flex-direction: column; gap: 1rem; }
.order-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.1rem;
}
.order-card-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .75rem;
}
.order-card-head span { display: block; font-size: .8rem; color: var(--ink-soft); font-weight: 500; margin-top: .2rem; }
.order-items { margin: 0 0 .75rem; }
.order-items li { font-size: .88rem; color: var(--ink-soft); margin-bottom: .25rem; }
.order-card-foot { text-align: right; }
.status-pill {
  display: inline-block; padding: .25rem .65rem; border-radius: 99px;
  font-size: .72rem; font-weight: 700; background: #eee;
}
.status-pill.status-new { background: #eef3ff; color: var(--blue); }
.status-pill.status-confirmed { background: #fff4e5; color: #b54708; }
.status-pill.status-shipped,
.status-pill.status-completed { background: #e8f8ef; color: #0b7a3b; }
.status-pill.status-cancelled { background: #fdeceb; color: #b42318; }

/* Responsive */
@media (max-width: 960px) {
  .banner-grid, .detail-grid, .cart-layout, .contact-layout, .about-grid, .account-layout {
    grid-template-columns: 1fr;
  }
  .site-header {
    height: var(--header-h);
    overflow: visible;
  }
  .header-inner {
    height: var(--header-h);
    padding: 0;
    gap: .65rem;
  }
  .header-actions { gap: .4rem; }
  .locale-switchers { gap: .3rem; margin-inline-end: 0; }
  .locale-select select {
    height: 34px;
    min-height: 34px;
    font-size: .7rem;
    padding: 0 1.35rem 0 .45rem;
  }
  .header-auth-link,
  .header-register,
  .header-account {
    height: 34px !important;
    min-height: 34px !important;
  }
  .header-register { padding: 0 .8rem !important; font-size: .72rem !important; }
  .icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    gap: 5px;
  }
  .menu-toggle span { width: 18px; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: .35rem 1.15rem 1.35rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 120;
  }
  .main-nav.open { display: flex; }
  body.nav-open { overflow: hidden; }
  .main-nav > a,
  .main-nav .nav-drop-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .95rem .15rem;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
    background: none;
    color: var(--ink);
    font-size: .95rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    text-align: left;
    text-decoration: none;
    line-height: 1.25;
  }
  .main-nav > a:last-child { border-bottom: 0; }
  .main-nav > a:hover,
  .main-nav .nav-drop-btn:hover {
    color: var(--ink);
    background: transparent;
  }
  .main-nav .nav-mobile-only { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-drop-btn .nav-caret {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: .55;
  }
  .nav-drop-menu,
  .nav-mega {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    box-shadow: none !important;
    border: 0 !important;
    background: var(--bg-soft) !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    border-radius: 14px !important;
    transition: max-height .35s ease, opacity .25s ease, padding .25s ease, margin .25s ease !important;
  }
  .nav-dropdown.open .nav-drop-menu,
  .nav-dropdown.open .nav-mega {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: 55vh !important;
    overflow-y: auto !important;
    margin: .35rem 0 .55rem !important;
    padding: .55rem !important;
  }
  .nav-dropdown:hover .nav-drop-menu,
  .nav-dropdown:hover .nav-mega {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-dropdown.open:hover .nav-drop-menu,
  .nav-dropdown.open:hover .nav-mega {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: 55vh !important;
    margin: .35rem 0 .55rem !important;
    padding: .55rem !important;
  }
  .nav-mega-head {
    position: static;
    margin-bottom: .45rem;
    padding-bottom: .45rem;
  }
  .nav-mega-grid {
    grid-template-columns: 1fr !important;
    gap: .15rem !important;
  }
  .nav-mega-item {
    opacity: 1 !important;
    transform: none !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: .7rem !important;
    padding: .55rem .45rem !important;
    text-align: left !important;
    font-size: .88rem !important;
  }
  .nav-dropdown.open .nav-mega-item,
  .nav-dropdown:hover .nav-mega-item {
    opacity: 1 !important;
    transform: none !important;
    transition: background .2s ease !important;
  }
  .nav-mega-item:hover { transform: none !important; }
  .nav-mega-thumb {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    flex-shrink: 0;
  }
  .nav-mega-label {
    max-width: none !important;
    font-size: .88rem !important;
    font-weight: 600 !important;
  }
  .hero { padding-top: 3rem; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-line { grid-column: 2; flex-direction: row; justify-content: space-between; width: 100%; }
  .account-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .auth-grid { grid-template-columns: 1fr; }
  .header-auth-link, .header-register, .header-account span { display: none; }
  .header-account { display: grid; place-items: center; width: 40px; height: 40px; }
}
@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .product-card-body { padding: .55rem .5rem .65rem; }
  .product-brand { font-size: .55rem; }
  .product-title { font-size: .78rem; margin-bottom: .4rem; }
  .product-card .spec-pills { grid-template-columns: 1fr; gap: .25rem; margin-bottom: .5rem; }
  .product-card .pill { font-size: .6rem; padding: .22rem .35rem; }
  .detail-specs {
    grid-template-columns: 1fr 1fr;
    gap: .45rem;
    margin-bottom: 1.15rem;
  }
  .detail-specs .pill {
    font-size: .78rem;
    padding: .45rem .55rem;
    border-radius: 10px;
  }
  .price { font-size: .88rem; }
  .old-price { font-size: .68rem; }
  .product-card .btn-sm {
    padding: .38rem .35rem; font-size: .65rem;
  }
  .badge-2el { width: 68px; height: 68px; }
  .badge-2el span {
    top: 10px; right: -30px; width: 96px;
    font-size: .55rem; padding: .28rem 0;
  }
}
@media (max-width: 600px) {
  .spec-pills { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}

/* —— Tamir / Teknik Servis page —— */
.svc-hero {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(900px 420px at 70% 0%, #ececf8 0%, transparent 55%),
    linear-gradient(180deg, #fbfbfd 0%, #fff 70%);
  overflow: hidden;
}
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr .85fr;
  gap: 1.1rem;
  align-items: center;
}
.svc-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: #7c3aed; margin: 0 0 .55rem;
}
.svc-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 .85rem;
  color: var(--ink);
  font-style: normal;
}
.svc-title em {
  font-style: normal;
  color: #7c3aed;
}
.svc-lead {
  font-size: 1.05rem;
  max-width: 36ch;
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
}
.svc-hero-cta {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-bottom: 1.5rem;
}
.btn-svc-wa {
  background: #7c3aed;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, .28);
}
.btn-svc-wa:hover { background: #6d28d9; color: #fff; }
.svc-wa-ico { width: 18px; height: 18px; flex-shrink: 0; }
.svc-btn-ghost {
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.svc-hero-perks {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.svc-hero-perks li {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem .7rem .55rem .55rem;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.svc-perk-ico {
  width: 32px; height: 32px; border-radius: 10px;
  background: #f5f3ff; border: 0;
  display: grid; place-items: center;
  box-shadow: none;
  flex-shrink: 0;
}
.svc-perk-ico svg { width: 15px; height: 15px; color: #7c3aed; }
.svc-perk-txt {
  display: flex; flex-direction: column; gap: .05rem; line-height: 1.2;
}
.svc-perk-txt strong {
  font-size: .78rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.svc-perk-txt small {
  font-size: .68rem; color: var(--ink-soft); font-weight: 500;
}

.svc-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin-inline: -0.5rem;
}
.svc-hero-glow {
  position: absolute;
  width: min(100%, 560px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.06) 0%, transparent 68%);
  filter: blur(6px);
}
.svc-hero-visual img {
  position: relative; z-index: 1;
  width: min(100%, 680px);
  height: auto; max-height: 520px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.16));
  animation: deviceIn .75s ease both;
}

.svc-hero-aside {
  align-self: center;
  display: grid;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  padding: 0;
}
.svc-side-card {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: .85rem 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}
.svc-side-card:first-child { padding-top: .15rem; }
.svc-side-card:last-child {
  border-bottom: 0;
  padding-bottom: .15rem;
}
div.svc-side-card { grid-template-columns: 2.4rem 1fr; }
a.svc-side-card:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
  opacity: .78;
}
.svc-side-num {
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .06em;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-top: .15rem;
}
.svc-side-txt { display: flex; flex-direction: column; gap: .28rem; min-width: 0; }
.svc-side-txt strong {
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.svc-side-txt small {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 28ch;
}
.svc-scroll {
  position: absolute;
  left: 50%;
  bottom: .85rem;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #3f3f46;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease;
}
.svc-scroll:hover { background: #27272a; transform: translateX(-50%) translateY(2px); }
.svc-scroll svg { width: 18px; height: 18px; }

.svc-section-head { text-align: center; margin-bottom: 2rem; }
.svc-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  margin-bottom: .4rem;
}
.svc-section-head .muted { margin: 0 auto; max-width: 42ch; }

.svc-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: none;
}
.svc-step {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 18px;
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.svc-step-num {
  display: block;
  font-size: .78rem; font-weight: 800;
  letter-spacing: .08em;
  color: #7c3aed;
  margin-bottom: .75rem;
}
.svc-step h3 {
  font-size: 1.05rem;
  margin: 0 0 .45rem;
  letter-spacing: -0.03em;
}
.svc-step p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
}

.svc-band {
  padding: 3.5rem 0;
  background: var(--bg-soft);
}
.svc-devices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.svc-device {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.15rem 1.35rem;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow);
  text-align: center;
}
.svc-device-ico {
  width: 52px; height: 52px; margin: 0 auto .9rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%);
  color: #7c3aed;
  display: grid; place-items: center;
}
.svc-device-ico svg { width: 24px; height: 24px; }
.svc-device h3 {
  font-size: .98rem; margin: 0 0 .35rem; letter-spacing: -0.02em;
}
.svc-device p {
  margin: 0; font-size: .82rem;
}

.svc-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.svc-service {
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.svc-service:hover {
  background: #fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.svc-service h3 {
  font-size: 1rem; margin: 0 0 .35rem; letter-spacing: -0.02em;
}
.svc-service p { margin: 0; font-size: .86rem; }

.svc-cta {
  padding: 2.5rem 0 1rem;
}
.svc-cta-mid {
  padding: 1.5rem 0 0;
}
.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background:
    radial-gradient(600px 240px at 10% 50%, rgba(124,58,237,.12) 0%, transparent 60%),
    #111;
  color: #fff;
  border-radius: 24px;
  padding: 2.25rem 2rem;
}
.svc-cta-inner .svc-eyebrow { color: #c4b5fd; }
.svc-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  letter-spacing: -0.035em;
  margin: 0 0 .45rem;
}
.svc-cta-inner p {
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 42ch;
}
.svc-cta-actions {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.svc-cta .btn-outline {
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.svc-cta .btn-outline:hover {
  background: rgba(255,255,255,.08);
}

@media (max-width: 1024px) {
  .svc-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .svc-hero-aside {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .svc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-devices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .svc-hero { padding: 1.75rem 0 2.75rem; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .svc-hero-visual { order: -1; min-height: 260px; }
  .svc-hero-visual img { max-height: 340px; width: min(100%, 100%); }
  .svc-hero-aside { grid-template-columns: 1fr; }
  .svc-lead { max-width: none; }
  .svc-steps,
  .svc-devices,
  .svc-services { grid-template-columns: 1fr; }
  .svc-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.35rem;
  }
}

/* —— Cihazını Sat —— */
.sell-hero {
  position: relative;
  padding: 2.5rem 0 1.5rem;
  background:
    radial-gradient(900px 420px at 12% -10%, #ececf1 0%, transparent 55%),
    linear-gradient(180deg, #fbfbfd 0%, #fff 78%);
  overflow: hidden;
}
.sell-hero-top {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.sell-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 .85rem;
  padding: .35rem .75rem .35rem .4rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .01em;
}
.sell-badge-ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.sell-badge-ico svg { width: 12px; height: 12px; }
.sell-hero h1 {
  font-size: clamp(2.05rem, 4.5vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 .85rem;
  color: var(--ink);
  font-style: normal;
}
.sell-hero h1 em {
  font-style: normal;
  color: var(--ink);
  background-image: linear-gradient(transparent 68%, rgba(0,0,0,.1) 68%, rgba(0,0,0,.1) 88%, transparent 88%);
}
.sell-lead {
  max-width: 42ch;
  font-size: 1.02rem;
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}
.sell-hero-points {
  display: flex; flex-wrap: wrap; gap: .55rem .75rem;
  list-style: none; margin: 0 0 1.25rem; padding: 0;
}
.sell-hero-points li {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 650; color: var(--ink);
  padding: .4rem .7rem .4rem .45rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.sell-point-ico {
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--bg-soft); color: var(--ink);
  display: grid; place-items: center;
}
.sell-point-ico svg { width: 13px; height: 13px; }

.sell-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.sell-mini-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 16px;
  padding: 1rem .9rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.sell-mini-ico {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: .65rem;
  line-height: 0;
  flex-shrink: 0;
}
.sell-mini-ico svg {
  display: block;
  width: 17px;
  height: 17px;
}
.sell-mini-card strong {
  display: block;
  font-size: .88rem;
  letter-spacing: -0.02em;
  margin-bottom: .2rem;
  color: var(--ink);
}
.sell-mini-card strong + span {
  display: block;
  font-size: .74rem;
  color: var(--ink-soft);
  font-weight: 550;
}

.sell-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.sell-hero-glow {
  position: absolute;
  width: min(92%, 480px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.05) 0%, transparent 68%);
  filter: blur(8px);
}
.sell-hero-visual img {
  position: relative; z-index: 1;
  width: min(100%, 620px);
  height: auto; max-height: 460px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.14));
  animation: deviceIn .75s ease both;
}
.sell-float-badge {
  position: absolute;
  right: 4%;
  top: 18%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .8rem .55rem .55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  animation: deviceIn .9s ease .15s both;
}
.sell-float-ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.sell-float-ico svg { width: 14px; height: 14px; }

.sell-trust-bar {
  list-style: none;
  margin: 0;
  padding: 1rem 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem 1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.sell-trust-bar li {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}
.sell-trust-ico {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  background: var(--bg-soft); color: var(--ink);
  display: grid; place-items: center;
}
.sell-trust-ico svg { width: 17px; height: 17px; }
.sell-trust-bar strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.sell-section { padding-top: 1.5rem; }
.sell-layout {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 1.75rem;
  align-items: start;
}
.sell-side h2 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.sell-steps {
  list-style: none;
  display: grid;
  gap: .85rem;
  margin: 0 0 1.5rem;
  padding: 0;
  counter-reset: sellstep;
}
.sell-steps li {
  counter-increment: sellstep;
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--bg-soft);
  border-radius: 14px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.sell-steps li::before {
  content: counter(sellstep, decimal-leading-zero);
  position: absolute;
  left: .95rem; top: 1rem;
  font-size: .72rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .04em;
}
.sell-steps strong {
  display: block;
  color: var(--ink);
  margin-bottom: .2rem;
  font-size: .92rem;
}
.sell-side-note {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
}
.sell-side-note p { margin: 0; font-size: .88rem; }
.sell-side-note a { color: var(--wa); font-weight: 650; }
.sell-side-note a:hover { color: #1da851; }

.sell-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.sell-form-head {
  margin-bottom: 1.25rem;
}
.sell-form-head h2 {
  margin: 0 0 .25rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.sell-form-head p {
  margin: 0;
  font-size: .85rem;
}
.sell-progress {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .45rem;
}
.sell-progress li {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .5rem;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.sell-progress li span {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.sell-progress li.is-active {
  background: #111;
  color: #fff;
}
.sell-progress li.is-active span {
  background: #fff;
  color: #111;
  border-color: transparent;
}
.sell-progress li.is-done {
  background: #ececf1;
  color: var(--ink);
}
.sell-progress li.is-done span {
  background: #111;
  color: #fff;
  border-color: transparent;
}
.sell-step-error {
  margin: 0 0 .85rem;
  padding: .7rem .85rem;
  border-radius: 12px;
  background: #fff1f0;
  color: #b42318;
  font-size: .84rem;
  font-weight: 600;
}
.sell-panel { display: none; }
.sell-panel.is-active { display: block; }
.sell-panel-title {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0 0 .9rem;
}
.sell-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
  align-items: center;
}
.sell-nav .sell-submit { width: auto; margin: 0; flex: 1; min-width: 180px; }
.sell-nav #sellNext { margin-left: auto; min-width: 140px; }
.sell-nav #sellPrev { min-width: 96px; }
.sell-nav [hidden] { display: none !important; }
.sell-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 .9rem;
}
.sell-span-2 { grid-column: 1 / -1; }
.sell-form select:disabled {
  opacity: .55;
  cursor: not-allowed;
  background: #f5f5f7;
}
.sell-divider {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: .35rem 0 1rem;
}
.sell-hidden { display: none !important; }

.sell-extras {
  margin: .35rem 0 1.15rem;
  padding: 0;
  border: 0;
}
.sell-extras legend {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0;
  margin: 0 0 .2rem;
}
.sell-extras-hint {
  margin: 0 0 .75rem;
  font-size: .8rem;
  color: var(--ink-soft);
}
.sell-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1.25rem;
}
.sell-extra-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 550;
  color: var(--ink);
  user-select: none;
}
.sell-extra-item input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #111;
  flex-shrink: 0;
}
.sell-extra-item span {
  line-height: 1.25;
}
.sell-extra-item:has(input:checked) span {
  font-weight: 700;
}

.sell-upload {
  margin: 1rem 0 1.25rem;
}
.sell-upload-head h3 {
  margin: 0 0 .2rem;
  font-size: 1rem;
}
.sell-upload-head p {
  margin: 0 0 .75rem;
  font-size: .82rem;
}
.sell-drop {
  position: relative;
  display: grid;
  place-items: center;
  gap: .25rem;
  min-height: 120px;
  border: 1.5px dashed rgba(0,0,0,.18);
  border-radius: 16px;
  background: var(--bg-soft);
  cursor: pointer;
  text-align: center;
  padding: 1.25rem;
  transition: border-color .2s ease, background .2s ease;
}
.sell-drop:hover {
  border-color: rgba(0,0,0,.35);
  background: #f0f0f2;
}
.sell-drop input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}
.sell-drop-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
}
.sell-drop-sub {
  font-size: .8rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.sell-previews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .55rem;
  margin-top: .85rem;
}
.sell-preview {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}
.sell-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sell-submit { width: 100%; }
.sell-legal {
  margin: .75rem 0 0;
  text-align: center;
  font-size: .78rem;
}

@media (max-width: 960px) {
  .sell-hero-top,
  .sell-layout { grid-template-columns: 1fr; }
  .sell-trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sell-hero-visual { order: -1; min-height: 280px; }
  .sell-hero-visual img { max-height: 320px; }
}
@media (max-width: 720px) {
  .sell-grid-2 { grid-template-columns: 1fr; }
  .sell-previews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sell-form { padding: 1.25rem 1rem 1.4rem; border-radius: 18px; }
  .sell-hero-cards { grid-template-columns: 1fr; }
  .sell-trust-bar { grid-template-columns: 1fr; padding: .9rem 1rem; }
  .sell-float-badge { top: 8%; right: 2%; font-size: .72rem; }
  .sell-lead { max-width: none; }
  .sell-extras-grid { grid-template-columns: 1fr; }
  .sell-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sell-nav #sellNext { margin-left: 0; width: 100%; }
  .sell-nav .sell-submit { width: 100%; }
  .sell-nav #sellPrev { width: 100%; }
}


/* —— İletişim —— */
.ct-hero {
  padding: 2.5rem 0 1.35rem;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #fff 85%);
}
.ct-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.ct-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-soft); margin: 0 0 .55rem;
}
.ct-hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.ct-lead {
  font-size: 1.02rem;
  max-width: 42ch;
  margin: 0 auto 1.1rem;
  color: var(--ink-soft);
}
.ct-hero-points {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .55rem .95rem;
  list-style: none; margin: 0; padding: 0;
}
.ct-hero-points li {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 650; color: var(--ink);
}
.ct-point-ico {
  width: 26px; height: 26px; border-radius: 8px;
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  display: grid; place-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.ct-point-ico svg { width: 13px; height: 13px; color: var(--ink); opacity: .75; }

.ct-section { padding-top: .5rem; padding-bottom: 3rem; }
.ct-shell {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 1.35rem;
  align-items: stretch;
}
.ct-side {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .045);
  display: flex;
  flex-direction: column;
}
.ct-side h2 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin: 0 0 .35rem;
}
.ct-side-lead {
  margin: 0 0 1.1rem;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.ct-channels {
  display: grid;
  gap: .6rem;
  flex: 1;
}
.ct-channel {
  display: grid;
  grid-template-columns: 42px 1fr 14px;
  gap: .75rem;
  align-items: center;
  padding: .9rem .95rem;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.ct-channel:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
}
.ct-channel--static { cursor: default; }
.ct-channel--static .ct-channel-chev { display: none; }
.ct-channel--wa {
  background: #111;
  border-color: transparent;
  color: #fff;
  margin-top: .15rem;
}
.ct-channel--wa .ct-channel-txt em { color: rgba(255,255,255,.62); }
.ct-channel--wa .ct-channel-txt strong { color: #fff; }
.ct-channel--wa .ct-channel-ico {
  background: #25d366;
  color: #fff;
  border: 0;
}
.ct-channel--wa .ct-channel-chev { color: rgba(255,255,255,.55); }
a.ct-channel--wa:hover {
  background: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.ct-channel-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.05);
}
.ct-channel-ico svg { width: 19px; height: 19px; }
.ct-channel-txt { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.ct-channel-txt em {
  font-style: normal;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--ink-soft);
}
.ct-channel-txt strong {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  word-break: break-word;
}
.ct-channel-chev {
  color: var(--ink-soft);
  font-size: 1.2rem;
  font-weight: 600;
  justify-self: end;
  opacity: .5;
}
.ct-side-note {
  margin-top: 1rem;
  padding: .95rem 1rem;
  border-radius: 14px;
  background: var(--bg-soft);
}
.ct-side-note strong {
  display: block;
  font-size: .84rem;
  margin-bottom: .25rem;
  letter-spacing: -0.02em;
}
.ct-side-note p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.ct-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 1.5rem 1.45rem 1.4rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .045);
  height: 100%;
}
.ct-form-head {
  margin-bottom: 1rem;
}
.ct-form-head h2 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin: 0 0 .2rem;
}
.ct-form-head p {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-soft);
}
.ct-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 .85rem;
}
.ct-submit { width: 100%; margin-top: .2rem; }
.ct-legal {
  margin: .7rem 0 0;
  text-align: center;
  font-size: .78rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .ct-shell { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ct-hero { padding: 1.75rem 0 1.1rem; }
  .ct-side,
  .ct-form { padding: 1.25rem 1.1rem; border-radius: 20px; }
  .ct-grid-2 { grid-template-columns: 1fr; }
  .ct-lead { max-width: none; }
}


/* —— Cart drawer (sağdan sola) —— */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .42);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.cart-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: #fff;
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,.14);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  visibility: hidden;
}
.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.cart-drawer-head h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.cart-drawer-close {
  width: 36px; height: 36px;
  border: 0; border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
}
.cart-drawer-close:hover { background: #ebebed; }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.15rem;
}
.cart-drawer-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--ink-soft);
}
.cart-drawer-empty p { margin: 0 0 1rem; }
.cart-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.cart-drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr 28px;
  gap: .75rem;
  align-items: center;
}
.cart-drawer-thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
}
.cart-drawer-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cart-drawer-meta a {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: .2rem;
}
.cart-drawer-meta a:hover { color: var(--blue); }
.cart-drawer-meta span {
  font-size: .78rem;
  color: var(--ink-soft);
  font-weight: 550;
}
.cart-drawer-remove {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1;
  background: var(--bg-soft);
}
.cart-drawer-remove:hover { color: var(--red); background: #fff1f0; }
.cart-drawer-foot {
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: grid;
  gap: .65rem;
  background: #fff;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .15rem;
}
.cart-drawer-total span {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.cart-drawer-total strong {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
body.cart-drawer-open { overflow: hidden; }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; }
}
