/* TM DRAKE SLS — professional product storefront */
:root {
  --bg: #05060a;
  --bg-elev: #0c0e14;
  --bg-card: #10131b;
  --bg-card-hover: #141824;
  --text: #f2f4f8;
  --muted: #9aa3b5;
  --line: rgba(255, 255, 255, 0.08);
  --cyan: #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.15);
  --purple: #a78bfa;
  --pink: #ff4d6d;
  --success: #34d399;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Orbitron", "Inter", sans-serif;
  --max: 1120px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
code {
  font-size: 0.88em;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Promo */
.promo-bar {
  background: linear-gradient(90deg, #0a1620, #12102a 50%, #0a1620);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.5rem 1rem;
}

/* Header */
.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 1.25rem;
  background: rgba(5, 6, 10, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.4);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.store-nav {
  display: flex;
  gap: 0.15rem;
  margin-left: auto;
}
.store-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.store-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 0.9rem 1.4rem; font-size: 1rem; }
.btn-xl { padding: 1.05rem 1.5rem; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #00e5ff 0%, #00b4d8 50%, #7c3aed 140%);
  color: #041018;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.25), 0 10px 30px rgba(0, 180, 216, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.4), 0 14px 40px rgba(0, 180, 216, 0.35);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.2); }
.btn-icon { opacity: 0.85; }

/* Product hero */
.product-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.product-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.product-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22) 0%, rgba(124, 58, 237, 0.12) 40%, transparent 70%);
  filter: blur(8px);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}
.product-hero-art {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 229, 255, 0.2);
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.product-badge-float {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 6%;
  background: rgba(12, 14, 20, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  animation: heroIn 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-buy-panel {
  animation: heroIn 0.85s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.store-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
}
.product-buy-panel h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.1;
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
}
.cyan { color: var(--cyan); text-shadow: 0 0 28px rgba(0, 229, 255, 0.45); }
.tagline {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 28rem;
}
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.stars { color: #fbbf24; letter-spacing: 0.08em; }

.price-block {
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.06), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem 1.2rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.06);
}
.price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.price-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.price-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.price-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #041018;
  background: var(--cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.price-value {
  font-family: var(--display);
  color: var(--cyan);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
}
.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.35rem;
  margin-right: 0.08rem;
  opacity: 0.9;
}
.price-dollars {
  font-size: clamp(2.4rem, 6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-cents {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.4rem;
  opacity: 0.9;
}
.price-value.price-plain {
  font-size: 1.75rem;
  font-weight: 800;
  align-items: baseline;
}
.price-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.plan-price-sub {
  margin: -0.65rem 0 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.buy-bullets {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.buy-bullets li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.buy-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.buy-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.buy-row.compact {
  flex-direction: row;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.65rem;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}
.trust-item span {
  font-size: 0.72rem;
  color: var(--muted);
}
.fine-line {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.download-note { margin-top: 0.35rem; margin-bottom: 1rem; }
a.btn.is-disabled,
.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

/* Logo banner */
.logo-banner {
  max-width: var(--max);
  margin: 0 auto 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(120deg, rgba(0, 229, 255, 0.08), rgba(124, 58, 237, 0.1));
  border: 1px solid var(--line);
  border-radius: 20px;
}
.logo-banner-img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.logo-banner h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.logo-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* Sections */
.store-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 0.5rem;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.fcard {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.fcard:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.28);
  background: var(--bg-card-hover);
}
.fcard-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--cyan-dim);
  color: var(--cyan);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}
.fcard h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.fcard p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Gallery */
.gallery-store {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}
.gal-tile {
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.gal-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  aspect-ratio: 16/10;
}
.gal-wide {
  grid-row: span 2;
}
.gal-wide img {
  min-height: 100%;
  aspect-ratio: auto;
  height: 100%;
}
.gal-brand img {
  object-fit: cover;
  object-position: center top;
}
.gal-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.85rem;
  font-weight: 600;
}

/* Specs */
.specs-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.25rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span {
  color: var(--muted);
  font-size: 0.9rem;
}
.spec-row strong {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Pricing */
.pricing-store {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}
.plan:hover { transform: translateY(-3px); }
.plan-featured {
  background: linear-gradient(180deg, #12162a 0%, #0c1018 100%);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.04) translateY(-2px); }
.plan-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cyan);
  color: #041018;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.plan-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.3);
  margin-bottom: 0.75rem;
}
.plan-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}
.plan-price {
  font-family: var(--display);
  color: var(--cyan);
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.plan li {
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}
.plan li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 700;
}
.plan .btn { margin-top: auto; }

/* Steps */
.steps-store {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.steps-store li {
  display: flex;
  gap: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.steps-store .n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-weight: 800;
  font-family: var(--display);
  font-size: 0.9rem;
}
.steps-store h3 { margin: 0 0 0.3rem; font-size: 1rem; }
.steps-store p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* FAQ */
.faq-store {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.faq-store details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.1rem;
}
.faq-store details[open] {
  border-color: rgba(0, 229, 255, 0.3);
}
.faq-store summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-store summary::-webkit-details-marker { display: none; }
.faq-store summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.25rem;
  font-weight: 400;
}
.faq-store details[open] summary::after { content: "−"; }
.faq-store p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Bottom CTA */
.bottom-cta {
  max-width: var(--max);
  margin: 1rem auto 3rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #0c1220, #15102a);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.08);
}
.bottom-cta-art {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  flex-shrink: 0;
}
.bottom-cta h2 {
  font-family: var(--display);
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}
.bottom-cta p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

/* Footer */
.store-foot {
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.foot-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.foot-brand strong {
  display: block;
  color: var(--text);
}
.foot-brand span { font-size: 0.8rem; }
.foot-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.sep { opacity: 0.4; }

/* Sticky store bar */
.sticky-store {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-store.visible { transform: translateY(0); }
.sticky-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.sticky-inner img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}
.sticky-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-meta strong { font-size: 0.9rem; }
.sticky-meta span { font-size: 0.75rem; color: var(--muted); }

/* Drawers / modals — the POP */
.drawer[hidden] { display: none !important; }
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: end center;
  padding: 0;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.drawer-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: linear-gradient(180deg, #12151e, #0a0c12);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 24px 24px 0 0;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 229, 255, 0.1);
  animation: drawerPop 0.42s cubic-bezier(0.34, 1.35, 0.64, 1) both;
}
@keyframes drawerPop {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: none; }
}
@media (min-width: 640px) {
  .drawer { place-items: center; padding: 1rem; }
  .drawer-panel {
    border-radius: 20px;
    animation-name: modalPop;
  }
  @keyframes modalPop {
    from { opacity: 0; transform: translateY(28px) scale(0.94); }
    to { opacity: 1; transform: none; }
  }
}
.drawer-x {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}
.drawer-x:hover { color: var(--text); background: rgba(255, 255, 255, 0.1); }
.drawer-product {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}
.drawer-product img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.3);
}
.drawer-product h2 {
  font-family: var(--display);
  margin: 0.15rem 0;
  font-size: 1.25rem;
}
.drawer-price {
  margin: 0;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
}
.drawer-steps, .drawer-list {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}
.drawer-list {
  list-style: none;
  padding-left: 0;
}
.drawer-list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}
.drawer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.fine {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0.85rem 0 0;
}
body.modal-open { overflow: hidden; }

/* Lightbox */
.lightbox { place-items: center; padding: 1rem; }
.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #05060a;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
  animation: modalPop 0.4s cubic-bezier(0.34, 1.35, 0.64, 1) both;
}
.lightbox-panel img {
  width: 100%;
  border-radius: 10px;
}
.lightbox-panel p {
  text-align: center;
  color: var(--muted);
  margin: 0.65rem 0 0.25rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1.25rem; }
  .product-stage { min-height: 0; order: -1; }
  .product-hero-art { width: min(100%, 360px); }
  .store-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 28px);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    background: rgba(12, 14, 20, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }
  .store-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .feature-cards { grid-template-columns: 1fr; }
  .gallery-store { grid-template-columns: 1fr 1fr; }
  .gal-wide { grid-column: span 2; grid-row: auto; }
  .gal-wide img { min-height: 200px; aspect-ratio: 16/10; }
  .pricing-store { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-3px); }
  .steps-store { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .logo-banner { flex-direction: column; text-align: center; }
  .bottom-cta { flex-direction: column; text-align: center; }
  .bottom-cta .buy-row.compact { justify-content: center; }
  .trust-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
