:root {
  --bg: #050607;
  --surface: #0c0f14;
  --surface-soft: #10141a;
  --surface-glass: rgba(16, 20, 26, 0.82);
  --panel: var(--surface-soft);
  --panel-2: #151b23;
  --text-main: #f8fafc;
  --text: var(--text-main);
  --text-muted: #aeb7c3;
  --muted: var(--text-muted);
  --text-subtle: #748091;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --line: var(--border);
  --brand: #f6c445;
  --brand-hover: #ffda72;
  --brand-soft: rgba(246, 196, 69, 0.14);
  --brand-border: rgba(246, 196, 69, 0.28);
  --accent: #36d399;
  --accent-soft: rgba(54, 211, 153, 0.13);
  --accent-border: rgba(54, 211, 153, 0.26);
  --cyan: #73c8ff;
  --lime: var(--accent);
  --magenta: #f472b6;
  --warning: var(--brand);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-premium: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(245, 197, 24, 0.12), transparent 32rem),
    radial-gradient(circle at 88% 6%, rgba(250, 204, 21, 0.075), transparent 28rem),
    linear-gradient(180deg, #07090d 0%, #050607 48%, #07090d 100%),
    var(--bg);
  color: var(--text);
  font-family: Arial, "Microsoft JhengHei", "PingFang TC", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  animation: pageFadeIn 0.55s ease both;
}

body > main {
  flex: 1 0 auto;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 6, 7, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025), 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-main);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--brand-border);
  background:
    linear-gradient(145deg, rgba(245, 197, 24, 0.26), rgba(255, 255, 255, 0.04)),
    rgba(12, 15, 20, 0.96);
  border-radius: var(--radius-sm);
  color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 30px rgba(245, 197, 24, 0.1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.62rem 0.82rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.12);
  color: var(--text);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav a.header-icon:hover,
.site-nav a.header-icon.active {
  transform: none;
}

.site-nav .cart-link {
  display: none;
  border-color: var(--brand-border);
  background: rgba(250, 204, 21, 0.08);
}

.cart-link span {
  display: inline-grid;
  min-width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.25rem;
  place-items: center;
  background: var(--brand);
  color: #050607;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-left: 20px;
}

.header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  min-height: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #cbd5e1;
  line-height: 1;
  appearance: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav .header-actions .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #cbd5e1;
  line-height: 1;
}

.header-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon:hover,
.header-icon.active {
  transform: none;
  border-color: rgba(250, 204, 21, 0.18);
  background: transparent;
  color: #f8fafc;
}

.site-nav .header-icon:hover,
.site-nav .header-icon.active {
  transform: none;
}

.site-nav .header-actions .header-icon:hover,
.site-nav .header-actions .header-icon.active {
  transform: none;
  border-color: transparent;
  background: transparent;
  color: #f8fafc;
}

.header-icon span {
  position: absolute;
  right: -7px;
  top: -8px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--bg);
  border-radius: 999px;
  background: #ff4d4f;
  color: white;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.header-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.75rem;
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-auth-link:hover {
  border-color: rgba(250, 204, 21, 0.35);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(17, 21, 28, 0.9);
  color: var(--text);
  border-radius: 0.65rem;
  font-size: 1.2rem;
  padding: 0.4rem 0.65rem;
}

.hero,
.page-hero,
.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 680px;
  padding: 5rem 0 3.5rem;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--text-main);
  font-size: 4.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.detail-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.qty-control {
  display: grid;
  gap: 0.35rem;
  min-width: 7.5rem;
  color: var(--muted);
  font-weight: 800;
}

.qty-control input {
  height: 2.75rem;
  max-width: 7.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  border-color: rgba(250, 204, 21, 0.55);
  background: linear-gradient(135deg, #f5c518, #ffe066);
  color: #050607;
  box-shadow: 0 16px 34px rgba(245, 197, 24, 0.18);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 28px rgba(245, 197, 24, 0.08);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ffe066, #f5c518);
  box-shadow: 0 20px 48px rgba(245, 197, 24, 0.24);
}

.button.wide {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 78% 20%, rgba(250, 204, 21, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(90deg, rgba(250, 204, 21, 0.035) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 44px),
    rgba(12, 15, 20, 0.7);
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(250, 204, 21, 0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.digital-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(17, 21, 28, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  animation: slowFloat 7s ease-in-out infinite;
}

@keyframes slowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.card-main {
  left: 13%;
  top: 24%;
  width: 74%;
  min-height: 205px;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border-color: rgba(250, 204, 21, 0.22);
}

.card-main span,
.card-main small {
  display: block;
  color: var(--muted);
}

.card-main strong {
  display: block;
  margin: 2.6rem 0 1.2rem;
  color: var(--text-main);
  font-size: 2.15rem;
  letter-spacing: 0;
}

.card-small {
  display: grid;
  place-items: center;
  width: 176px;
  min-height: 86px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
}

.card-small.top {
  right: 7%;
  top: 11%;
}

.card-small.bottom {
  left: 8%;
  bottom: 12%;
  animation-delay: -2.8s;
}

.card-chip {
  display: grid;
  min-width: 132px;
  min-height: 46px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 900;
}

.account-menu-wrap {
  position: relative;
  display: inline-flex;
}

.account-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 60;
  display: none;
  min-width: 150px;
  padding: 0.45rem;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: var(--radius);
  background: rgba(14, 17, 22, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.account-menu.open {
  display: grid;
}

.account-menu a,
.account-menu button {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.account-menu a:hover,
.account-menu button:hover {
  background: rgba(250, 204, 21, 0.12);
  color: var(--brand);
}

.card-chip.ai {
  left: 10%;
  top: 16%;
  animation-delay: -1.4s;
}

.card-chip.secure {
  right: 9%;
  bottom: 18%;
  animation-delay: -4s;
}

.signal-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.65), transparent);
  opacity: 0.65;
}

.signal-line.one {
  top: 22%;
  left: 4%;
  width: 80%;
}

.signal-line.two {
  bottom: 28%;
  right: 8%;
  width: 72%;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.section {
  padding: 3.4rem 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.trust-row.home-trust {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  padding-bottom: 2rem;
}

.trust-row article {
  min-height: 112px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(250, 204, 21, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(17, 21, 28, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-row article:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.trust-row article::before {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.42);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1.05rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.split-band h2,
.support-strip h2,
.panel h2,
.values-grid h2 {
  margin: 0;
  font-size: 2rem;
}

.section-heading a {
  color: var(--cyan);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card,
.panel,
.values-grid article,
.steps article,
details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(17, 21, 28, 0.82);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 1.05rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(250, 204, 21, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(17, 21, 28, 0.88);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 76% 0%, rgba(250, 204, 21, 0.13), transparent 15rem);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.32);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.42), 0 0 38px rgba(250, 204, 21, 0.055);
}

.product-art {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 158px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  padding: 1rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 6rem),
    linear-gradient(135deg, rgba(240, 185, 11, 0.42), rgba(252, 213, 53, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-art::after,
.detail-art::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.product-art strong {
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
}

.product-art small,
.product-art-label {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.product-art.has-product-image {
  isolation: isolate;
  justify-content: flex-end;
  background: rgba(17, 21, 28, 0.9);
}

.product-art.has-product-image img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.product-art.has-product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.12), rgba(5, 6, 7, 0.68));
}

.product-art-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-badges {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.product-badges span {
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.075);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card h3 {
  position: relative;
  margin: 0;
  color: var(--text-main);
  font-size: 1.3rem;
  letter-spacing: 0;
}

.product-card p {
  position: relative;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.price {
  position: relative;
  margin-top: auto;
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(250, 204, 21, 0.16);
}

.product-card-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.product-card-actions .button {
  min-height: 3rem;
}

.product-empty-state {
  grid-column: 1 / -1;
}

.visual-chatgpt .product-art,
.visual-chatgpt.detail-art {
  background: radial-gradient(circle at 80% 20%, rgba(166, 255, 77, 0.28), transparent 7rem), linear-gradient(135deg, #12352e, #1ba77a 58%, #1a2230);
}

.visual-claude .product-art,
.visual-claude.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(255, 209, 102, 0.32), transparent 7rem), linear-gradient(135deg, #3b2418, #b16a3a 58%, #191d28);
}

.visual-gemini .product-art,
.visual-gemini.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.32), transparent 7rem), linear-gradient(135deg, #213b9a, #8b5cf6 58%, #111827);
}

.visual-grok .product-art,
.visual-grok.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(38, 217, 255, 0.28), transparent 7rem), linear-gradient(135deg, #102b3a, #1f8db5 58%, #111827);
}

.visual-perplexity .product-art,
.visual-perplexity.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(166, 255, 77, 0.24), transparent 7rem), linear-gradient(135deg, #0d3338, #2aa7a0 58%, #111827);
}

.visual-netflix .product-art,
.visual-netflix.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.25), transparent 7rem), linear-gradient(135deg, #3d1116, #d92d3a 58%, #161a24);
}

.visual-spotify .product-art,
.visual-spotify.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 7rem), linear-gradient(135deg, #103521, #21c45a 58%, #111827);
}

.visual-youtube .product-art,
.visual-youtube.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 7rem), linear-gradient(135deg, #45151a, #ff334a 58%, #111827);
}

.visual-x .product-art,
.visual-x.detail-art {
  background: radial-gradient(circle at 85% 15%, rgba(38, 217, 255, 0.2), transparent 7rem), linear-gradient(135deg, #0f172a, #334155 58%, #111827);
}

.plan-thumb.visual-chatgpt {
  background: linear-gradient(135deg, #12352e, #1ba77a);
}

.plan-thumb.visual-claude {
  background: linear-gradient(135deg, #3b2418, #b16a3a);
}

.plan-thumb.visual-gemini {
  background: linear-gradient(135deg, #213b9a, #8b5cf6);
}

.plan-thumb.visual-grok {
  background: linear-gradient(135deg, #102b3a, #1f8db5);
}

.plan-thumb.visual-perplexity {
  background: linear-gradient(135deg, #0d3338, #2aa7a0);
}

.plan-thumb.visual-netflix {
  background: linear-gradient(135deg, #3d1116, #d92d3a);
}

.plan-thumb.visual-spotify {
  background: linear-gradient(135deg, #103521, #21c45a);
}

.plan-thumb.visual-youtube {
  background: linear-gradient(135deg, #45151a, #ff334a);
}

.plan-thumb.visual-x {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.split-band,
.support-strip,
.page-hero {
  border-top: 1px solid var(--border);
}

.split-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps article,
.panel,
.values-grid article,
details {
  padding: 1.35rem;
}

.steps span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.12);
  color: var(--brand);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(250, 204, 21, 0.08);
}

.steps h3 {
  margin: 1rem 0 0.4rem;
}

.steps p,
.support-strip p,
.panel p,
.values-grid p,
details p {
  color: var(--muted);
}

details {
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

details:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.22);
}

summary {
  color: var(--text-main);
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 4rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero.compact {
  padding-top: 3rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.chip {
  min-height: 2.35rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.chip.active {
  background: var(--brand-soft);
  color: var(--text);
  border-color: var(--brand-border);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.detail-art {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.45rem;
  background:
    radial-gradient(circle at center, rgba(250, 204, 21, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(250, 204, 21, 0.04)),
    rgba(17, 21, 28, 0.84);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.detail-art strong {
  position: relative;
  font-size: 4rem;
  line-height: 0.95;
}

.detail-art span,
.detail-art small {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.detail-art.has-product-image {
  justify-content: end;
  background: #0c0f14;
}

.detail-art.has-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.detail-art.has-product-image::after {
  display: none;
}

.detail-photo-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 11, 18, 0.68);
  backdrop-filter: blur(16px);
}

.detail-photo-caption strong {
  font-size: 1.35rem;
  line-height: 1;
}

.mock-product-photo {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 7rem),
    linear-gradient(155deg, rgba(8, 11, 18, 0.18), rgba(8, 11, 18, 0.62));
}

.mock-envelope {
  position: absolute;
  left: 8%;
  top: 16%;
  width: 62%;
  height: 34%;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(238, 229, 216, 0.92), rgba(172, 139, 111, 0.8));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.mock-envelope::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, transparent 48%, rgba(90, 62, 46, 0.28) 49%, transparent 50%);
}

.mock-card {
  position: relative;
  min-height: 46%;
  margin: 0 0 4.4rem 10%;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
  color: #111827;
  transform: rotate(-2deg);
  overflow: hidden;
}

.mock-card::before {
  content: "";
  position: absolute;
  right: -3rem;
  top: 1rem;
  width: 12rem;
  height: 12rem;
  border-radius: 32%;
  background: currentColor;
  opacity: 0.22;
  transform: rotate(18deg);
}

.mock-card span,
.mock-card small,
.mock-card strong {
  position: relative;
  display: block;
}

.mock-card span {
  color: rgba(17, 24, 39, 0.68);
  font-weight: 900;
}

.mock-card strong {
  margin: 4.2rem 0 0.35rem;
  font-size: 4rem;
  line-height: 0.95;
}

.mock-card small {
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.05rem;
  font-weight: 900;
}

.mock-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 11, 18, 0.62);
  backdrop-filter: blur(10px);
}

.mock-caption strong {
  font-size: 1.35rem;
  line-height: 1;
}

.visual-gemini .mock-card {
  color: #6d5df6;
}

.visual-grok .mock-card {
  color: #1f8db5;
}

.visual-perplexity .mock-card {
  color: #2aa7a0;
}

.visual-netflix .mock-card {
  color: #d92d3a;
}

.visual-spotify .mock-card {
  color: #21c45a;
}

.visual-youtube .mock-card {
  color: #ff334a;
}

.visual-x .mock-card {
  color: #64748b;
}

.detail-copy h1 {
  margin: 0 0 1rem;
  font-size: 3.1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.info-table {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0;
}

.info-table div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.info-table span {
  color: var(--muted);
}

.plans-box {
  margin: 1.2rem 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(250, 204, 21, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(17, 21, 28, 0.8);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.plans-box h2 {
  margin: 0;
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.plan-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 0.75rem 1rem 1rem;
}

.plan-option {
  display: grid;
  grid-template-columns: 3.3rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
  min-height: 4.45rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.plan-option:hover,
.plan-option.selected {
  border-color: rgba(250, 204, 21, 0.72);
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.08), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.plan-option:hover {
  transform: translateY(-2px);
}

.plan-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  color: white;
  font-weight: 900;
}

.plan-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-main {
  display: grid;
  min-width: 0;
}

.plan-main strong {
  color: var(--text);
  font-size: 1rem;
}

.plan-main small {
  color: var(--muted);
}

.plan-side {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
}

.plan-side em {
  display: inline-flex;
  align-items: center;
  min-height: 1.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.95);
  color: #050607;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.plan-side strong {
  color: var(--brand);
  font-size: 1.05rem;
}

.purchase-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.9rem 1.2rem;
  margin: 1.1rem 0;
  padding: 1rem;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 0%, rgba(250, 204, 21, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(255, 255, 255, 0.025));
}

.purchase-summary div {
  display: grid;
  gap: 0.1rem;
}

.purchase-summary span {
  color: var(--muted);
  font-size: 0.86rem;
}

.purchase-summary strong {
  color: var(--brand);
  font-size: 2.6rem;
  line-height: 1;
}

.purchase-summary s {
  color: #d6b646;
  font-size: 1.3rem;
  font-weight: 800;
}

.purchase-summary em {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 900;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.checkout-step {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(17, 21, 28, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.checkout-step span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.checkout-step strong {
  color: var(--text);
  font-size: 1.05rem;
}

.checkout-step.active {
  border-color: rgba(250, 204, 21, 0.36);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.13), rgba(255, 255, 255, 0.035));
}

.checkout-step.active span {
  color: var(--lime);
}

.checkout-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.checkout-confirmation {
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  padding-bottom: 3rem;
}

.cart-panel,
.contact-panel {
  background:
    linear-gradient(160deg, rgba(250, 204, 21, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(17, 21, 28, 0.9);
  box-shadow: var(--shadow-premium);
}

.panel-heading {
  margin-bottom: 1.2rem;
}

.panel-heading .eyebrow {
  margin-bottom: 0.25rem;
}

.cart-list {
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease;
}

.cart-item:hover {
  border-color: rgba(250, 204, 21, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.cart-thumb {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(255, 255, 255, 0.04));
  color: #050607;
  font-weight: 900;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-thumb span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: var(--radius-xs);
  background: var(--brand);
}

.cart-item-main strong,
.cart-item-side strong {
  display: block;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.cart-item-meta span {
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-item-side {
  display: grid;
  justify-items: end;
  gap: 0.5rem;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 2rem 2.2rem 2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.cart-qty button {
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-qty span {
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.order-summary-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.order-summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.order-summary-lines strong {
  color: var(--text);
}

.order-summary-lines .summary-total {
  color: var(--brand);
  font-size: 1.22rem;
  font-weight: 900;
}

.order-summary-lines .summary-total strong {
  color: var(--brand);
  font-size: 2.1rem;
  line-height: 1;
}

.checkout-reminder {
  margin: 0.9rem 0 0;
  padding-left: 0.8rem;
  border-left: 3px solid var(--warning);
}

.remove-button {
  border: 1px solid rgba(250, 204, 21, 0.24);
  background: rgba(250, 204, 21, 0.07);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

.cart-empty-state {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-height: 320px;
  padding: 2rem 1rem;
  place-content: center;
  text-align: center;
}

.empty-icon,
.success-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5c518, #ffe066);
  color: #050607;
  font-weight: 950;
}

.cart-empty-state h3 {
  margin: 0;
  font-size: 1.45rem;
}

.cart-empty-state p {
  max-width: 20rem;
  margin: 0;
}

.order-form label {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font: inherit;
  padding: 0.86rem 0.9rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(250, 204, 21, 0.52);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08);
}

select {
  min-height: 2.9rem;
}

option {
  background: #181a20;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.radio-field {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

.radio-field legend {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-weight: 700;
}

.order-form .radio-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.8rem;
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.radio-option input {
  width: 1rem;
  accent-color: var(--brand);
}

.notice {
  border-left: 3px solid var(--warning);
  padding-left: 0.8rem;
}

.safe-notice {
  margin: 1.1rem 0;
  padding: 1rem;
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(250, 204, 21, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(17, 21, 28, 0.72);
}

.safe-notice strong {
  color: var(--brand);
}

.safe-notice p {
  margin: 0.3rem 0 0;
}

.submit-hint {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  text-align: center;
}

.form-result {
  min-height: 1.5rem;
  color: var(--brand);
  font-weight: 800;
}

.success-section {
  padding-bottom: 3rem;
}

.success-card {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(250, 204, 21, 0.14), transparent 18rem),
    rgba(17, 21, 28, 0.94);
  text-align: center;
  box-shadow: var(--shadow);
}

.success-card h2,
.success-card p {
  margin: 0;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.auth-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.auth-nav button {
  min-height: 2.35rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.auth-nav button:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 204, 21, 0.14);
  background: rgba(250, 204, 21, 0.08);
  color: var(--text-main);
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.auth-dialog {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: clamp(1.25rem, 4vw, 1.8rem);
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(250, 204, 21, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(17, 21, 28, 0.96);
  box-shadow: var(--shadow-premium);
}

.auth-dialog h2,
.auth-dialog p {
  margin-top: 0;
}

.auth-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-main);
  font-size: 1.35rem;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1.1rem 0;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-tabs button {
  min-height: 2.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.auth-tabs button.active {
  background: var(--brand);
  color: #050607;
}

.auth-form {
  display: none;
}

.auth-form.active,
.auth-page-form {
  display: grid;
  gap: 0.9rem;
}

.auth-form label,
.auth-page-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
  font-weight: 800;
}

.auth-error {
  min-height: 1.45rem;
  margin: 0;
  color: #fca5a5;
  font-weight: 800;
}

.modal-open {
  overflow: hidden;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 60;
  transform: translate(-50%, 1rem);
  opacity: 0;
  pointer-events: none;
  min-width: min(90vw, 280px);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 999px;
  background: rgba(17, 21, 28, 0.96);
  color: var(--brand);
  text-align: center;
  font-weight: 900;
  box-shadow: var(--shadow-premium);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.drawer-open {
  width: 100%;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 220ms ease, opacity 220ms ease;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background 220ms ease, backdrop-filter 220ms ease;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: clamp(360px, 24vw, 440px);
  max-width: 100vw;
  height: 100dvh;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(250, 204, 21, 0.055), transparent 11rem),
    rgba(12, 15, 20, 0.99);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 240ms ease;
  will-change: transform;
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer.open .cart-drawer-backdrop {
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.cart-drawer.open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.cart-drawer-body {
  display: grid;
  align-content: start;
  gap: 0;
  overflow: auto;
  padding: 0.45rem 1.2rem;
}

.drawer-cart-item {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
}

.drawer-cart-item .cart-thumb {
  width: 3.6rem;
  height: 3.6rem;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.drawer-cart-main {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.drawer-cart-item strong,
.drawer-cart-item span,
.drawer-cart-item small {
  display: block;
}

.drawer-cart-item strong {
  color: var(--text-main);
  line-height: 1.25;
}

.drawer-cart-item span,
.drawer-cart-item small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.drawer-cart-item em {
  justify-self: end;
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
  font-size: 0.94rem;
  white-space: nowrap;
}

.drawer-cart-side {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.drawer-cart-qty.cart-qty {
  grid-template-columns: 1.65rem 1.8rem 1.65rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.drawer-cart-qty.cart-qty button {
  height: 1.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.drawer-cart-qty.cart-qty span {
  font-size: 0.86rem;
}

.drawer-remove {
  justify-self: end;
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-remove:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-main);
}

.cart-drawer-foot {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(5, 6, 7, 0.42);
}

.drawer-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-total span {
  color: var(--muted);
}

.drawer-total strong {
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1;
}

.cart-drawer-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.drawer-empty {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-height: 55vh;
  place-content: center;
  text-align: center;
}

.drawer-empty h3,
.drawer-empty p {
  margin: 0;
}

.auth-page-layout {
  display: grid;
  justify-items: center;
  padding-bottom: 4rem;
}

.account-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.account-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.account-page .auth-page-layout {
  flex: 1;
  align-content: start;
}

.account-wide-card {
  width: min(100%, 760px);
  padding: 1.1rem;
}

.account-page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.account-page-tabs a,
.account-page-tabs button {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.account-page-tabs a.active,
.account-page-tabs a:hover,
.account-page-tabs button:hover {
  border-color: rgba(250, 204, 21, 0.35);
  background: rgba(250, 204, 21, 0.14);
  color: var(--brand);
}

.account-profile-card {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.account-orders-block {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.compact-heading {
  margin-bottom: 0;
}

.orders-list {
  display: grid;
  gap: 0.75rem;
}

.order-record-card {
  display: grid;
  grid-template-columns: minmax(12rem, 1.4fr) repeat(4, minmax(7rem, 1fr));
  gap: 0.65rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.order-record-card div {
  display: grid;
  gap: 0.2rem;
}

.order-record-card span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.order-record-card strong {
  color: var(--text-main);
  overflow-wrap: anywhere;
}

.order-status {
  color: var(--brand) !important;
}

.order-screenshot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(250, 204, 21, 0.1);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.order-error-card {
  padding: 1rem;
  border: 1px solid rgba(248, 113, 113, 0.45);
  border-radius: var(--radius-lg);
  background: rgba(248, 113, 113, 0.08);
}

.order-error-card h3,
.order-error-card p {
  margin: 0;
}

.order-error-card p {
  margin-top: 0.45rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.account-empty-state {
  min-height: 260px;
}

.recent-grid {
  display: grid;
  gap: 0.75rem;
}

.recent-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.recent-item:hover {
  border-color: rgba(250, 204, 21, 0.32);
  background: rgba(250, 204, 21, 0.08);
}

.recent-item strong,
.recent-item em {
  color: var(--text-main);
  font-style: normal;
  font-weight: 900;
}

.recent-item span {
  display: block;
  color: var(--text-muted);
}

.auth-page-form,
.account-card {
  width: min(100%, 520px);
}

.auth-switch {
  margin: 0;
  text-align: center;
}

.auth-switch a {
  color: var(--brand);
  font-weight: 900;
}

.auth-gate-actions,
.account-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.clean-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.checkout-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 197, 24, 0.12), transparent 34rem),
    radial-gradient(circle at 90% 6%, rgba(250, 204, 21, 0.08), transparent 30rem),
    linear-gradient(180deg, #07090d 0%, #050607 56%, #07090d 100%);
  color: var(--text);
}

.checkout-page .site-header {
  background: rgba(5, 6, 7, 0.82);
  border-bottom-color: var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.checkout-page .brand,
.checkout-page .site-nav a {
  color: var(--text-main);
}

.checkout-page .site-nav a:not(.active) {
  color: var(--muted);
}

.checkout-page .header-icon svg {
  stroke: var(--muted);
}

.checkout-main-page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.checkout-title {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.checkout-title h1 {
  margin: 0;
  color: var(--text-main);
  font-size: 3rem;
  line-height: 1.05;
}

.checkout-login-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-left: 4px solid var(--brand);
  border-radius: 0.65rem;
  background: rgba(17, 21, 28, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.checkout-login-strip p {
  margin: 0;
  color: var(--muted);
}

.checkout-login-strip button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
  cursor: pointer;
}

.checkout-user-icon {
  color: var(--brand);
  font-weight: 900;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: start;
  gap: 2rem;
}

.checkout-form-stack {
  display: grid;
  gap: 1.5rem;
}

.checkout-card,
.checkout-summary-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(17, 21, 28, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.checkout-card {
  display: grid;
  gap: 1rem;
  padding: 1.65rem;
}

.checkout-card-title {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkout-card-title > span {
  display: grid;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #050607;
  font-weight: 900;
  line-height: 1;
}

.checkout-card-title h2 {
  margin: 0;
  color: var(--text-main);
  font-size: 1.35rem;
}

.checkout-card-title p {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.checkout-page label {
  display: grid;
  gap: 0.45rem;
  color: var(--text-main);
  font-weight: 800;
}

.checkout-page input,
.checkout-page textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  font: inherit;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checkout-page textarea {
  min-height: 6rem;
  resize: vertical;
}

.checkout-page input:focus,
.checkout-page textarea:focus {
  border-color: rgba(250, 204, 21, 0.56);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.checkout-product-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.045);
}

.checkout-product-note strong {
  color: var(--text-main);
}

.checkout-product-note span {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.payment-method {
  position: relative;
  display: flex;
  min-height: 5.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-main);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.payment-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method:has(input:checked),
.payment-method.selected {
  border-color: rgba(250, 204, 21, 0.52);
  background: rgba(250, 204, 21, 0.1);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08);
}

.payment-logo-card {
  flex-direction: column;
}

.payment-logo-card input {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;
}

.payment-logo-card img {
  display: block;
  width: 100%;
  height: 3.1rem;
  padding: 0.35rem;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  pointer-events: none;
}

.payment-logo-card span {
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
}

.payment-icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.payment-product-thumb {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.payment-product-thumb[hidden] {
  display: none;
}

.payment-product-thumb img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.checkout-summary-card {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: 1.65rem;
}

.checkout-summary-card h2 {
  margin: 0;
  color: var(--text-main);
  font-size: 1.35rem;
}

.checkout-summary-list {
  display: grid;
  gap: 0.75rem;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 3.7rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.checkout-summary-item .cart-thumb {
  width: 3.7rem;
  height: 3.7rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.checkout-summary-main {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.checkout-summary-main strong {
  color: var(--text-main);
  line-height: 1.25;
}

.checkout-summary-main span {
  color: var(--muted);
  font-size: 0.85rem;
}

.checkout-summary-qty.cart-qty {
  grid-template-columns: 1.65rem 1.8rem 1.65rem;
  width: max-content;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.checkout-summary-qty.cart-qty button {
  height: 1.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-summary-qty.cart-qty span {
  color: var(--text-main);
  font-size: 0.86rem;
}

.checkout-summary-side {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.checkout-summary-side strong {
  color: var(--brand);
  white-space: nowrap;
}

.checkout-remove {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.checkout-remove:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-main);
}

.checkout-summary-box {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 0.85rem;
  background: rgba(5, 6, 7, 0.32);
}

.checkout-summary-box div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.checkout-grand-total {
  align-items: end;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-grand-total span,
.checkout-grand-total strong {
  color: var(--text-main);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.checkout-terms {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.checkout-terms input {
  width: auto;
  min-height: 0;
  margin-top: 0.22rem;
}

.checkout-terms a {
  color: var(--brand);
  text-decoration: underline;
}

.checkout-submit-button {
  background: var(--brand);
  color: #050607;
  box-shadow: 0 16px 30px rgba(245, 197, 24, 0.2);
}

.checkout-submit-button:hover {
  background: var(--brand-hover);
}

.checkout-submit-button:disabled {
  background: rgba(255, 255, 255, 0.14);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
}

.checkout-submit-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.checkout-footer {
  color: var(--text-subtle);
  border-top-color: var(--border);
}

.payment-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 4%, rgba(250, 204, 21, 0.13), transparent 32rem),
    radial-gradient(circle at 86% 10%, rgba(250, 204, 21, 0.08), transparent 34rem),
    linear-gradient(180deg, #050607 0%, #07090d 48%, #050607 100%);
  color: var(--text-main);
}

.payment-main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}

.payment-hero {
  display: grid;
  gap: 0.45rem;
  max-width: 720px;
  margin-bottom: 1rem;
}

.payment-hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.payment-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.85rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(15, 18, 24, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.payment-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.payment-method-panel {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.9rem 0.9rem 0.65rem;
}

.payment-panel-title,
.payment-warning,
.payment-actions,
.payment-method-panel > .form-result {
  grid-column: 1 / -1;
}

.payment-panel-title h2,
.payment-amount-card h2 {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
}

.payment-panel-title p:not(.eyebrow) {
  margin: 0.45rem 0 0;
  color: var(--brand);
  font-weight: 900;
}

.qr-card {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  align-content: center;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.2);
}

.qr-frame {
  display: grid;
  width: min(100%, 170px);
  min-height: 170px;
  place-items: center;
  padding: 0.8rem;
  border-radius: var(--radius-lg);
  background: #fff;
  color: #111827;
  text-align: center;
}

.qr-frame span {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #111827 0 8px, #fff 8px 16px);
  color: transparent;
}

.qr-frame p {
  max-width: 9rem;
  margin: 0;
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 800;
}

.qr-frame img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card small {
  color: var(--muted);
  font-weight: 800;
}

.payment-fields {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.payment-order-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: var(--radius);
  background: rgba(250, 204, 21, 0.065);
}

.payment-order-box div,
.payment-product-due {
  display: grid;
  gap: 0.2rem;
}

.payment-order-box span,
.payment-product-due span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.payment-order-box strong,
.payment-product-due strong {
  color: var(--text-main);
}

.order-contact-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.order-contact-form h3,
.order-contact-form p {
  margin: 0;
}

.order-contact-form p {
  color: var(--muted);
}

.order-contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text-main);
  font-weight: 900;
}

.order-contact-form input,
.order-contact-form select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: var(--text-main);
  font: inherit;
  font-weight: 800;
  padding: 0.75rem 0.9rem;
}

.order-contact-form select option {
  color: #111827;
}

.order-contact-form .button {
  justify-self: start;
}

.order-contact-form .form-result:empty {
  display: none;
}

.payment-upload-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.9rem;
  padding: 0.95rem;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.09), rgba(255, 255, 255, 0.035));
}

.payment-upload-card[hidden] {
  display: none;
}

.payment-upload-card h3,
.payment-upload-card p {
  margin: 0;
}

.payment-upload-card p {
  color: var(--text-muted);
}

.payment-upload-form {
  display: grid;
  gap: 0.75rem;
}

.payment-upload-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text-main);
  font-weight: 900;
}

.payment-upload-form input[type="file"] {
  width: 100%;
  min-height: 3rem;
  padding: 0.78rem;
  border: 1px dashed rgba(250, 204, 21, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text-muted);
  font: inherit;
}

.payment-upload-form .button {
  justify-self: start;
}

.form-result.error {
  color: #f87171;
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(250, 204, 21, 0.11), transparent 34rem),
    radial-gradient(circle at 15% 10%, rgba(14, 165, 233, 0.08), transparent 32rem),
    var(--bg);
}

.admin-main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.admin-hero {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.admin-shell {
  display: grid;
  gap: 1rem;
}

.admin-loading-card,
.admin-access-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.85rem;
}

.admin-access-card h2,
.admin-access-card p {
  margin: 0;
}

.admin-error-card {
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.08);
}

.admin-dashboard {
  display: grid;
  gap: 1rem;
}

.admin-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 1rem 0;
}

.admin-dashboard-head h2,
.admin-dashboard-head p {
  margin: 0;
}

.admin-orders-list {
  display: grid;
  gap: 1rem;
}

.admin-order-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 21, 28, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.admin-order-top,
.admin-order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-order-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-order-top div,
.admin-order-grid div {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.admin-order-card span,
.admin-order-card small,
.admin-muted {
  color: var(--text-muted);
}

.admin-order-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text-main);
}

.admin-price {
  color: var(--brand) !important;
  font-size: 1.2rem;
}

.admin-shot-button {
  width: fit-content;
  min-height: 2.2rem;
  padding: 0.45rem 0.7rem;
}

.admin-order-form {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 0.75rem;
  align-items: end;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-order-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.admin-order-form select,
.admin-order-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  padding: 0.8rem;
  font: inherit;
  font-weight: 700;
}

.admin-order-form select option {
  color: #111827;
}

.admin-order-form textarea {
  min-height: 5rem;
  resize: vertical;
}

.admin-order-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.admin-order-actions .form-result {
  margin: 0;
}

.payment-field {
  display: grid;
  grid-template-columns: minmax(7rem, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.payment-field span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.payment-field strong {
  color: var(--text-main);
  overflow-wrap: anywhere;
}

.payment-field button {
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  color: var(--brand);
  cursor: pointer;
  font-weight: 900;
  padding: 0.35rem 0.65rem;
}

.payment-method-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.payment-warning {
  padding: 0.75rem;
  border: 1px solid rgba(250, 204, 21, 0.38);
  border-radius: var(--radius);
  background: rgba(250, 204, 21, 0.09);
}

.payment-warning strong {
  color: var(--brand);
}

.payment-warning p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 3rem;
}

.payment-method-panel > .form-result:empty {
  display: none;
}

.payment-actions .button {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
}

.payment-amount-card {
  order: -1;
  position: static;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  padding: 0.15rem 0.75rem 0.9rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-amount-card > strong {
  color: var(--brand);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 18px 46px rgba(250, 204, 21, 0.14);
}

.payment-amount-card dl {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 440px);
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.payment-amount-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.payment-amount-card dt,
.payment-amount-card dd {
  margin: 0;
}

.payment-amount-card dt,
.payment-amount-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.payment-amount-card dd {
  color: var(--text-main);
  font-weight: 900;
}

/* Apple-style continuous-corner approximation for rectangular UI surfaces. */
.hero-visual,
.digital-card,
.trust-row article,
.product-card,
.panel,
.values-grid article,
.steps article,
details,
.detail-art,
.plans-box,
.purchase-summary,
.checkout-step,
.cart-item,
.safe-notice,
.success-card,
.auth-dialog,
.checkout-card,
.checkout-summary-card,
.cart-empty-state,
.account-card {
  border-radius: var(--radius-lg);
}

.product-art,
.detail-photo-caption,
.mock-card,
.mock-caption,
.plan-option,
.cart-thumb,
input,
textarea,
select,
.order-form .radio-option,
.checkout-login-strip,
.checkout-product-note,
.payment-method,
.checkout-summary-box {
  border-radius: var(--radius);
}

.brand-mark,
.plan-thumb,
.mock-envelope,
.checkout-summary-item .cart-thumb,
.drawer-cart-item .cart-thumb,
.empty-icon,
.success-icon {
  border-radius: var(--radius-sm);
}

@supports (corner-shape: squircle) {
  .hero-visual,
  .digital-card,
  .trust-row article,
  .product-card,
  .panel,
  .values-grid article,
  .steps article,
  details,
  .detail-art,
  .plans-box,
  .purchase-summary,
  .checkout-step,
  .cart-item,
  .safe-notice,
  .success-card,
  .auth-dialog,
  .checkout-card,
  .checkout-summary-card,
  .product-art,
  .detail-photo-caption,
  .mock-card,
  .mock-caption,
  .plan-option,
  .cart-thumb,
  input,
  textarea,
  select,
  .payment-method {
    corner-shape: squircle;
  }
}

.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
  color: var(--text-subtle);
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .checkout-main-page {
    width: min(100% - 1rem, 680px);
    padding: 2rem 0 3rem;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .payment-main {
    width: min(100% - 1rem, 680px);
    padding: 2.5rem 0 3.5rem;
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-method-panel {
    grid-template-columns: 1fr;
  }

  .payment-order-box {
    grid-template-columns: 1fr;
  }

  .payment-amount-card {
    position: static;
    order: -1;
  }

  .payment-field {
    grid-template-columns: 1fr auto;
  }

  .payment-field span {
    grid-column: 1 / -1;
  }

  .payment-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-order-top,
  .admin-order-grid,
  .admin-order-form {
    grid-template-columns: 1fr;
  }

  .admin-order-actions {
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .order-record-card {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }

  .checkout-card,
  .checkout-summary-card {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
  }

  .checkout-login-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-summary-item {
    grid-template-columns: 3.4rem minmax(0, 1fr) auto;
  }

  .checkout-summary-item .cart-thumb {
    width: 3.4rem;
    height: 3.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 4.6rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: rgba(12, 15, 20, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(18px);
  }

  .site-nav.open {
    display: flex;
  }

  .auth-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-nav button,
  .auth-nav a {
    width: 100%;
    text-align: left;
  }

  .header-actions {
    justify-content: flex-start;
    margin-left: 0;
    padding: 0.35rem 0.2rem 0;
  }

  .site-nav .header-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    padding: 0;
  }

  .account-menu {
    left: 0;
    right: auto;
  }

  .account-page-tabs {
    flex-direction: column;
  }

  .account-page-tabs a,
  .account-page-tabs button {
    width: 100%;
    text-align: left;
  }

  .recent-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .recent-item em {
    grid-column: 2;
  }

  .hero,
  .split-band,
  .detail-layout,
  .checkout-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .product-grid,
  .steps,
  .values-grid,
  .trust-row,
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .checkout-step {
    grid-template-columns: 5rem 1fr;
    align-items: center;
  }

  .section-heading,
  .support-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-art {
    min-height: 260px;
  }

  .card-actions,
  .detail-buy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .card-actions .button,
  .detail-buy-row .button {
    width: 100%;
  }

  .info-table div,
  .plan-options {
    grid-template-columns: 1fr;
  }

  .plan-option {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .plan-side {
    grid-column: 2;
    justify-items: start;
  }

  .purchase-summary em {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero,
  .page-hero,
  .section,
  .site-footer {
    width: min(100% - 1rem, 1120px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.95rem;
    line-height: 1.12;
  }

  .card-main {
    left: 8%;
    width: 84%;
  }

  .card-small {
    width: 145px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .cart-thumb {
    width: 100%;
    height: 7.5rem;
  }

  .cart-item-side {
    justify-items: stretch;
  }

  .cart-item-side strong {
    font-size: 1.2rem;
  }

  .cart-qty {
    width: 100%;
    grid-template-columns: 1fr 3rem 1fr;
  }

  .cart-qty button {
    height: 2.7rem;
  }

  .success-actions,
  .success-actions .button {
    width: 100%;
  }

  .auth-dialog {
    width: min(100%, 440px);
  }

  .auth-gate-actions,
  .auth-gate-actions .button,
  .account-actions,
  .account-actions .button {
    width: 100%;
  }

  .cart-drawer-panel {
    width: min(100vw, 420px);
  }

}

@media (max-width: 520px) {
  .cart-drawer-panel {
    width: 100vw;
  }
}

/* 2026 storefront refresh */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(54, 211, 153, 0.12), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(115, 200, 255, 0.1), transparent 32rem),
    radial-gradient(circle at 64% 34%, rgba(246, 196, 69, 0.07), transparent 26rem),
    linear-gradient(180deg, #07090d 0%, #050607 46%, #080b10 100%);
}

h1,
h2,
h3,
.brand,
.hero h1,
.page-hero h1,
.detail-copy h1 {
  letter-spacing: 0;
}

.site-header {
  min-height: 72px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 7, 10, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.brand-mark {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 196, 69, 0.28), rgba(54, 211, 153, 0.09)),
    rgba(15, 18, 24, 0.95);
}

.site-nav a {
  min-height: 2.4rem;
  border-radius: 8px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(246, 196, 69, 0.18);
}

.button {
  min-height: 3rem;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  border-color: rgba(246, 196, 69, 0.72);
  background: linear-gradient(135deg, #ffd76c, #f6c445 54%, #dcae30);
  color: #08100d;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.hero,
.page-hero,
.section {
  width: min(1160px, calc(100% - 2rem));
}

.store-hero {
  min-height: 640px;
  padding: 4.5rem 0 2.4rem;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  font-size: 4.2rem;
  line-height: 1.06;
}

.hero p,
.page-hero p {
  font-size: 1.04rem;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 620px;
  margin-top: 1.35rem;
}

.hero-proof-grid div {
  min-height: 74px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  color: var(--text-main);
  font-size: 1.22rem;
  line-height: 1.1;
}

.hero-proof-grid span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.platform-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.platform-pill-row span {
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.store-terminal {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(13, 17, 23, 0.82);
}

.store-terminal::before {
  border-color: rgba(54, 211, 153, 0.14);
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  width: min(100%, 430px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 11, 16, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.hero-dashboard-head,
.hero-product-row,
.hero-checkline,
.summary-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.hero-dashboard-head {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dashboard-head span,
.hero-product-row span,
.hero-checkline span {
  color: var(--text-muted);
}

.hero-dashboard-head strong {
  display: block;
  color: var(--text-main);
  font-size: 1.4rem;
}

.hero-dashboard-head em,
.hero-product-row em {
  color: var(--accent);
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.hero-product-list {
  display: grid;
  gap: 0.65rem;
}

.hero-product-row {
  min-height: 72px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-product-row.featured {
  border-color: rgba(54, 211, 153, 0.28);
  background: linear-gradient(135deg, rgba(54, 211, 153, 0.14), rgba(255, 255, 255, 0.045));
}

.hero-product-row img,
.hero-product-initial {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  object-fit: cover;
}

.hero-product-initial {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d92d3a, #21c45a);
  color: white;
  font-weight: 950;
}

.hero-product-row div {
  min-width: 0;
  flex: 1;
}

.hero-product-row strong {
  display: block;
  color: var(--text-main);
}

.hero-product-row span {
  display: block;
  overflow: hidden;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-payments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-payments img {
  width: 100%;
  height: 42px;
  padding: 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
}

.hero-checkline {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-checkline span {
  padding: 0.25rem 0.45rem;
  border: 1px solid rgba(54, 211, 153, 0.22);
  border-radius: 999px;
  background: rgba(54, 211, 153, 0.08);
  color: #c7f9e4;
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-row article,
.product-card,
.panel,
.steps article,
details,
.checkout-card,
.checkout-summary-card,
.payment-panel,
.auth-benefit-panel,
.page-hero-panel {
  border-radius: 8px;
}

.trust-row article {
  min-height: 118px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.02)),
    rgba(16, 20, 26, 0.82);
}

.trust-row article::before {
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(54, 211, 153, 0.28);
}

.section-heading h2,
.split-band h2,
.support-strip h2,
.panel h2,
.values-grid h2,
.catalog-toolbar h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 1.5rem;
  padding-bottom: 2.4rem;
}

.page-hero-panel {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(54, 211, 153, 0.22);
  background:
    linear-gradient(145deg, rgba(54, 211, 153, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(16, 20, 26, 0.86);
}

.page-hero-panel strong {
  color: var(--text-main);
  font-size: 1.12rem;
}

.page-hero-panel span {
  color: var(--text-muted);
}

.page-hero-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-hero-panel em {
  padding: 0.24rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dff8ff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.catalog-toolbar p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
}

.filter-row {
  position: sticky;
  top: 72px;
  z-index: 12;
  padding: 0.65rem 0;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(16px);
}

.chip {
  border-radius: 8px;
  font-weight: 900;
}

.chip:hover,
.chip.active {
  border-color: rgba(54, 211, 153, 0.34);
  background: rgba(54, 211, 153, 0.12);
  color: #eafff7;
}

.product-grid {
  gap: 1rem;
}

.product-card {
  min-height: 0;
  padding: 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.022)),
    rgba(15, 19, 25, 0.9);
}

.product-card::before {
  background:
    radial-gradient(circle at 84% 0%, rgba(54, 211, 153, 0.12), transparent 12rem),
    radial-gradient(circle at 5% 100%, rgba(115, 200, 255, 0.08), transparent 10rem);
}

.product-card:hover {
  border-color: rgba(54, 211, 153, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(54, 211, 153, 0.08);
}

.product-art {
  min-height: 150px;
  margin-bottom: 0;
  border-radius: 8px;
}

.product-art.has-product-image img {
  filter: saturate(1.04) contrast(1.02);
}

.product-stock-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 1;
  padding: 0.25rem 0.48rem;
  border: 1px solid rgba(54, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(7, 13, 12, 0.72);
  color: #bdf8df;
  font-size: 0.76rem;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.product-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 0.15rem 0.1rem;
}

.product-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.product-card-title-row h3 {
  margin: 0.18rem 0 0;
}

.product-card-type {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card .price {
  margin: 0;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: right;
  white-space: nowrap;
}

.product-card p {
  min-height: 3.2rem;
  margin: 0;
  font-size: 0.94rem;
}

.product-badges {
  margin-bottom: 0;
}

.product-badges span {
  border-color: rgba(54, 211, 153, 0.22);
  background: rgba(54, 211, 153, 0.08);
  color: #bdf8df;
}

.product-meta {
  margin: 0;
}

.tag {
  max-width: 100%;
  border-radius: 8px;
  overflow-wrap: anywhere;
}

.product-card-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.product-card-checks span,
.checkout-assurance span,
.payment-safe-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-card-actions {
  margin-top: 0;
}

.detail-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
}

.detail-copy h1 {
  font-size: 3.1rem;
  line-height: 1.08;
}

.detail-trust-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.detail-trust-grid div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-trust-grid strong {
  color: var(--text-main);
}

.detail-trust-grid span {
  color: var(--text-muted);
}

.purchase-summary {
  border-color: rgba(54, 211, 153, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(54, 211, 153, 0.13), transparent 13rem),
    linear-gradient(135deg, rgba(246, 196, 69, 0.11), rgba(255, 255, 255, 0.026));
}

.purchase-summary strong {
  font-size: 2.6rem;
}

.plans-box {
  border-radius: 8px;
}

.plans-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.35rem;
}

.plans-box-head h2 {
  margin: 0;
  padding: 0;
  font-size: 1.15rem;
}

.plans-box-head span {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.plan-option {
  border-radius: 8px;
}

.detail-notice {
  border-color: rgba(246, 196, 69, 0.28);
  background: rgba(246, 196, 69, 0.08);
}

.checkout-page,
.payment-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(54, 211, 153, 0.12), transparent 34rem),
    radial-gradient(circle at 88% 6%, rgba(115, 200, 255, 0.1), transparent 32rem),
    linear-gradient(180deg, #07090d 0%, #050607 58%, #080b10 100%);
}

.checkout-title h1,
.payment-hero h1 {
  font-size: 3rem;
}

.checkout-title > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
}

.checkout-login-strip {
  border-left: 0;
  border-color: rgba(54, 211, 153, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(16, 20, 26, 0.86);
}

.checkout-user-icon {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 8px;
  background: rgba(246, 196, 69, 0.16);
  color: var(--brand);
  font-size: 0.78rem;
}

.checkout-steps {
  margin: 0;
}

.checkout-step {
  border-radius: 8px;
}

.checkout-step.active {
  border-color: rgba(54, 211, 153, 0.3);
  background: linear-gradient(135deg, rgba(54, 211, 153, 0.13), rgba(255, 255, 255, 0.035));
}

.checkout-step.active span {
  color: var(--accent);
}

.checkout-card,
.checkout-summary-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.022)),
    rgba(15, 19, 25, 0.92);
}

.checkout-card-title > span {
  border-radius: 8px;
  background: rgba(54, 211, 153, 0.16);
  color: var(--accent);
}

.checkout-page input,
.checkout-page textarea,
.order-contact-form input,
.order-contact-form select {
  border-radius: 8px;
}

.checkout-page input:focus,
.checkout-page textarea:focus {
  border-color: rgba(54, 211, 153, 0.52);
  box-shadow: 0 0 0 4px rgba(54, 211, 153, 0.1);
}

.summary-card-head {
  align-items: flex-start;
}

.summary-card-head .eyebrow {
  margin-bottom: 0.2rem;
}

.summary-card-head span {
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: rgba(246, 196, 69, 0.12);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
}

.checkout-assurance,
.payment-safe-list {
  display: grid;
  gap: 0.45rem;
}

.payment-main {
  width: min(1160px, calc(100% - 2rem));
}

.payment-hero {
  max-width: 820px;
  margin-bottom: 1.4rem;
}

.payment-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.payment-progress span {
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.payment-progress .done,
.payment-progress .active {
  border-color: rgba(54, 211, 153, 0.28);
  background: rgba(54, 211, 153, 0.1);
  color: #dffbed;
}

.payment-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1rem;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.payment-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.024)),
    rgba(15, 19, 25, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.payment-method-panel {
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  padding: 1.15rem;
}

.payment-amount-card {
  order: initial;
  position: sticky;
  top: 6rem;
  align-self: start;
  justify-items: start;
  padding: 1.15rem;
  text-align: left;
  border-bottom: 0;
}

.payment-amount-card > strong {
  font-size: 2.8rem;
}

.payment-amount-card dl {
  width: 100%;
}

.payment-safe-list {
  width: 100%;
}

.payment-field,
.payment-order-box,
.order-contact-form,
.payment-warning,
.payment-upload-card,
.qr-card {
  border-radius: 8px;
}

.payment-warning {
  border-color: rgba(246, 196, 69, 0.3);
}

.payment-actions {
  margin-top: 1rem;
}

.auth-split-layout {
  grid-template-columns: minmax(0, 520px) minmax(280px, 420px);
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.auth-split-layout .auth-page-form {
  width: 100%;
}

.auth-benefit-panel {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid rgba(54, 211, 153, 0.22);
  background:
    linear-gradient(145deg, rgba(54, 211, 153, 0.12), rgba(115, 200, 255, 0.06)),
    rgba(16, 20, 26, 0.86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.auth-benefit-panel h2 {
  margin: 0;
  font-size: 1.55rem;
}

.auth-benefit-panel div {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-benefit-panel strong {
  color: var(--text-main);
}

.auth-benefit-panel span {
  color: var(--text-muted);
}

.support-methods {
  display: grid;
  gap: 0.65rem;
}

.support-methods p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.support-methods span {
  color: var(--text-main);
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .hero h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  .store-hero,
  .product-page-hero,
  .payment-layout,
  .auth-split-layout {
    grid-template-columns: 1fr;
  }

  .payment-amount-card {
    position: static;
    order: -1;
  }
}

@media (max-width: 860px) {
  .filter-row {
    top: 72px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
  }

  .hero-proof-grid,
  .product-card-checks {
    grid-template-columns: 1fr;
  }

  .store-terminal {
    min-height: 380px;
  }

  .payment-method-panel {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero,
  .page-hero,
  .section,
  .site-footer,
  .checkout-main-page,
  .payment-main {
    width: 100% !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero,
  .page-hero,
  .section,
  .store-hero,
  .product-page-hero,
  .checkout-shell,
  .payment-layout,
  .auth-split-layout,
  .trust-row,
  .product-grid,
  .steps,
  .contact-grid {
    min-width: 0;
  }

  .hero-copy,
  .hero-visual,
  .hero-dashboard,
  .page-hero-panel,
  .product-card,
  .checkout-card,
  .checkout-summary-card,
  .payment-panel,
  .auth-benefit-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .eyebrow,
  .hero h1,
  .page-hero h1,
  .hero p,
  .page-hero p,
  .checkout-title > p,
  .product-card p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero h1,
  .page-hero h1,
  .checkout-title h1,
  .payment-hero h1 {
    word-break: break-all;
  }

  .hero h1,
  .page-hero h1,
  .checkout-title h1,
  .payment-hero h1 {
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .store-hero {
    padding-top: 2.2rem;
  }

  .hero-dashboard {
    padding: 0.75rem;
  }

  .hero-product-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-product-row em {
    width: 100%;
    padding-left: 3.2rem;
  }

  .hero-payments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-title-row,
  .summary-card-head,
  .support-methods p {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card .price,
  .support-methods span {
    text-align: left;
  }

  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .checkout-step {
    grid-template-columns: 1fr;
  }

  .payment-progress span {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }

  .payment-field {
    grid-template-columns: 1fr;
  }
}

/* Apple-inspired consumer refresh */
:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #f8f8fb;
  --surface-glass: rgba(255, 255, 255, 0.76);
  --panel: #ffffff;
  --panel-2: #f2f4f7;
  --text-main: #1d1d1f;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --muted: #6e6e73;
  --text-subtle: #8a8a90;
  --border: rgba(29, 29, 31, 0.1);
  --border-strong: rgba(29, 29, 31, 0.18);
  --line: var(--border);
  --brand: #0071e3;
  --brand-hover: #147ce5;
  --brand-soft: rgba(0, 113, 227, 0.1);
  --brand-border: rgba(0, 113, 227, 0.2);
  --accent: #34c759;
  --accent-soft: rgba(52, 199, 89, 0.12);
  --accent-border: rgba(52, 199, 89, 0.24);
  --cyan: #5ac8fa;
  --lime: #34c759;
  --magenta: #af52de;
  --warning: #ff9f0a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-premium: 0 30px 80px rgba(15, 23, 42, 0.12);
}

html {
  background: var(--bg);
}

body,
.checkout-page,
.payment-page,
.admin-page {
  background:
    linear-gradient(180deg, #050607 0%, #080a0f 48%, #11161f 100%);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, "Microsoft JhengHei", "PingFang TC", sans-serif;
}

body::selection {
  background: rgba(0, 113, 227, 0.18);
}

.site-header,
.checkout-page .site-header {
  min-height: 64px;
  padding: 0.68rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: none;
  backdrop-filter: saturate(1.8) blur(22px);
}

.brand,
.checkout-page .brand,
.checkout-page .site-nav a {
  color: var(--text-main);
}

.brand-mark {
  border-color: rgba(29, 29, 31, 0.12);
  background:
    linear-gradient(145deg, #111827, #2f3440);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.site-nav a {
  color: #424245;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: transparent;
  background: rgba(0, 113, 227, 0.09);
  color: var(--brand);
}

.header-icon,
.site-nav .header-actions .header-icon,
.checkout-page .header-icon svg {
  color: #1d1d1f;
  stroke: currentColor;
}

.header-icon span {
  border-color: #ffffff;
  background: #ff3b30;
}

.nav-toggle {
  border-color: rgba(29, 29, 31, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-main);
}

.hero,
.page-hero,
.section,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
}

.store-hero.apple-hero {
  min-height: 640px;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  padding: 5.2rem 0 3.2rem;
}

.eyebrow {
  color: var(--brand);
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  color: #1d1d1f;
  font-weight: 760;
}

.hero h1 {
  max-width: 780px;
  font-size: 4.5rem;
  line-height: 1.03;
}

.page-hero h1 {
  font-size: 4rem;
  line-height: 1.05;
}

.hero p,
.page-hero p,
.catalog-toolbar p:not(.eyebrow),
.steps p,
.support-strip p,
.panel p,
.values-grid p,
details p,
.checkout-title > p:not(.eyebrow),
.payment-hero p:not(.eyebrow) {
  color: #6e6e73;
}

.button {
  border-radius: 8px;
  border-color: rgba(29, 29, 31, 0.12);
  background: #ffffff;
  color: var(--brand);
  box-shadow: none;
}

.button.primary,
.checkout-submit-button {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 113, 227, 0.2);
}

.button.ghost {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.07);
  color: var(--brand);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.button.primary:hover,
.checkout-submit-button:hover {
  background: var(--brand-hover);
}

.hero-proof-grid div,
.trust-row article,
.product-card,
.panel,
.values-grid article,
.steps article,
details,
.page-hero-panel,
.checkout-card,
.checkout-summary-card,
.payment-panel,
.auth-benefit-panel,
.account-profile-card,
.order-record-card,
.recent-item {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.hero-proof-grid div {
  min-height: 86px;
  padding: 1rem;
}

.hero-proof-grid strong {
  color: #1d1d1f;
  font-size: 1.35rem;
}

.hero-proof-grid span,
.trust-row span,
.product-card p,
.tag,
.checkout-card-title p,
.checkout-submit-note,
.payment-method-note,
.payment-warning p {
  color: #6e6e73;
}

.platform-pill-row span,
.product-badges span,
.product-card-checks span,
.checkout-assurance span,
.payment-safe-list span,
.payment-progress span {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #424245;
}

.platform-pill-row span:hover,
.product-badges span:hover {
  border-color: rgba(0, 113, 227, 0.2);
  color: var(--brand);
}

.store-terminal.apple-showcase {
  min-height: 510px;
  border: 0;
  background:
    linear-gradient(135deg, #f7faff 0%, #ffffff 38%, #eef7ff 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.08), 0 34px 80px rgba(15, 23, 42, 0.12);
}

.store-terminal::before {
  display: none;
}

.hero-dashboard {
  width: min(100%, 450px);
  padding: 1rem;
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(20px);
}

.hero-dashboard-head {
  border-bottom-color: rgba(29, 29, 31, 0.08);
}

.hero-dashboard-head span,
.hero-product-row span,
.hero-checkline span {
  color: #6e6e73;
}

.hero-dashboard-head strong,
.hero-product-row strong {
  color: #1d1d1f;
}

.hero-dashboard-head em,
.hero-product-row em,
.price,
.product-card .price,
.checkout-summary-side strong,
.drawer-total strong,
.payment-amount-card > strong {
  color: var(--brand);
}

.hero-product-row {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.hero-product-row.featured {
  border-color: rgba(0, 113, 227, 0.18);
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(90, 200, 250, 0.12));
}

.hero-payments img,
.payment-logo-card img {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.06);
}

.hero-checkline span {
  border-color: rgba(0, 113, 227, 0.12);
  background: rgba(0, 113, 227, 0.06);
  color: var(--brand);
}

.apple-category-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.apple-category-band article {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 247, 0.78));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.apple-category-band article:first-child {
  background:
    linear-gradient(155deg, #111827 0%, #1b2b57 58%, #6c5ce7 100%);
  color: #ffffff;
}

.apple-category-band article:nth-child(2) {
  background:
    linear-gradient(155deg, #ffffff 0%, #f6fbff 45%, #e9f5ff 100%);
}

.apple-category-band article:nth-child(3) {
  background:
    linear-gradient(155deg, #ffffff 0%, #fff8f0 48%, #f4edff 100%);
}

.apple-category-band span {
  color: var(--brand);
  font-weight: 900;
}

.apple-category-band article:first-child span,
.apple-category-band article:first-child p,
.apple-category-band article:first-child a {
  color: rgba(255, 255, 255, 0.84);
}

.apple-category-band h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.12;
}

.apple-category-band p {
  margin: 0;
  color: #6e6e73;
}

.apple-category-band a {
  color: var(--brand);
  font-weight: 900;
}

.product-page-hero.apple-page-hero {
  padding-top: 4.5rem;
}

.page-hero-panel {
  border-color: rgba(0, 113, 227, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.page-hero-panel strong {
  color: #1d1d1f;
}

.page-hero-panel em,
.summary-card-head span {
  background: rgba(0, 113, 227, 0.08);
  color: var(--brand);
}

.trust-row article::before {
  background: var(--brand);
  box-shadow: 0 0 22px rgba(0, 113, 227, 0.18);
}

.section-heading h2,
.split-band h2,
.support-strip h2,
.panel h2,
.values-grid h2,
.catalog-toolbar h2 {
  color: #1d1d1f;
  font-weight: 760;
}

.section-heading a {
  color: var(--brand);
}

.filter-row {
  top: 64px;
  background: rgba(245, 245, 247, 0.82);
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
}

.chip {
  background: #ffffff;
  color: #424245;
}

.chip:hover,
.chip.active {
  border-color: rgba(0, 113, 227, 0.2);
  background: var(--brand);
  color: #ffffff;
}

.product-card {
  padding: 0.75rem;
  background: #ffffff;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  border-color: rgba(0, 113, 227, 0.16);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.product-art {
  min-height: 178px;
  background:
    linear-gradient(135deg, #f5f5f7, #ffffff);
}

.product-art.has-product-image::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(29, 29, 31, 0.42));
}

.product-stock-badge {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.86);
  color: #1d1d1f;
}

.product-card-type {
  color: var(--brand);
}

.product-card h3,
.cart-empty-state h3,
.drawer-empty h3,
.checkout-card-title h2,
.checkout-summary-card h2,
.payment-panel-title h2,
.payment-amount-card h2,
.order-contact-form h3,
.payment-upload-card h3 {
  color: #1d1d1f;
}

.tag {
  border-color: rgba(29, 29, 31, 0.08);
  background: #f5f5f7;
}

.product-badges span {
  background: rgba(0, 113, 227, 0.07);
  color: var(--brand);
}

.detail-art {
  background:
    linear-gradient(145deg, #ffffff, #f5f5f7);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.1);
}

.detail-trust-grid div,
.info-table div,
.plan-option,
.checkout-product-note,
.checkout-summary-box,
.payment-order-box,
.payment-field,
.order-contact-form,
.payment-warning,
.payment-upload-card,
.qr-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.plans-box {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.plan-option:hover,
.plan-option.selected {
  border-color: rgba(0, 113, 227, 0.32);
  background: rgba(0, 113, 227, 0.06);
}

.plan-side em {
  background: var(--brand);
  color: #ffffff;
}

.purchase-summary {
  border-color: rgba(0, 113, 227, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.07), rgba(90, 200, 250, 0.09));
}

.purchase-summary s {
  color: #8a8a90;
}

.notice,
.detail-notice {
  border-color: rgba(255, 159, 10, 0.22);
  background: rgba(255, 159, 10, 0.08);
  color: #6e6e73;
}

.checkout-title h1,
.payment-hero h1 {
  color: #1d1d1f;
}

.checkout-login-strip {
  border-color: rgba(0, 113, 227, 0.12);
  background: #ffffff;
}

.checkout-user-icon,
.checkout-card-title > span,
.success-icon,
.empty-icon {
  background: var(--brand);
  color: #ffffff;
}

.checkout-step {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.checkout-step.active {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.06);
}

.checkout-step.active span,
.checkout-login-strip button,
.checkout-terms a,
.auth-switch a,
.account-page-tabs a.active,
.account-page-tabs a:hover,
.account-page-tabs button:hover,
.payment-field button {
  color: var(--brand);
}

.checkout-page input,
.checkout-page textarea,
.auth-form input,
.auth-page-form input,
.order-contact-form input,
.order-contact-form select,
.admin-order-form select,
.admin-order-form textarea,
.payment-upload-form input[type="file"] {
  border-color: rgba(29, 29, 31, 0.12);
  background: #ffffff;
  color: #1d1d1f;
}

.checkout-page input:focus,
.checkout-page textarea:focus,
.auth-form input:focus,
.auth-page-form input:focus,
.order-contact-form input:focus,
.order-contact-form select:focus {
  border-color: rgba(0, 113, 227, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.payment-layout {
  gap: 1rem;
}

.payment-progress .done,
.payment-progress .active,
.payment-safe-list span {
  border-color: rgba(0, 113, 227, 0.16);
  background: rgba(0, 113, 227, 0.07);
  color: var(--brand);
}

.qr-frame {
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.auth-modal,
.cart-drawer {
  color: #1d1d1f;
}

.auth-dialog,
.cart-drawer-panel,
.account-menu {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.auth-tabs,
.cart-drawer-foot {
  background: #f5f5f7;
}

.auth-tabs button.active {
  background: #ffffff;
  color: var(--brand);
}

.cart-item,
.drawer-cart-item,
.checkout-summary-item,
.recent-item,
.order-record-card {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.cart-thumb,
.plan-thumb {
  border-color: rgba(29, 29, 31, 0.08);
  background: #f5f5f7;
}

.cart-qty,
.checkout-summary-qty.cart-qty {
  border-color: rgba(29, 29, 31, 0.1);
  background: #f5f5f7;
}

.remove-button,
.checkout-remove,
.drawer-remove {
  border-color: rgba(29, 29, 31, 0.08);
  background: #f5f5f7;
  color: #6e6e73;
}

.support-methods p {
  border-color: rgba(29, 29, 31, 0.08);
  background: #ffffff;
}

.product-load-error {
  display: block;
  max-width: 34rem;
  color: #8a8a90;
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.site-footer,
.checkout-footer {
  color: #8a8a90;
  border-top-color: rgba(29, 29, 31, 0.08);
}

@media (max-width: 980px) {
  .store-hero.apple-hero,
  .apple-category-band {
    grid-template-columns: 1fr;
  }

  .apple-category-band article {
    min-height: 230px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 860px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(29, 29, 31, 0.1);
  }

  .filter-row {
    top: 64px;
  }
}

@media (max-width: 560px) {
  .store-hero.apple-hero {
    padding-top: 2.6rem;
  }

  .hero h1,
  .page-hero h1,
  .checkout-title h1,
  .payment-hero h1 {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .store-terminal.apple-showcase {
    min-height: 390px;
  }

  .hero-product-row {
    align-items: center;
  }

  .hero-product-row em {
    width: auto;
    padding-left: 0;
  }

  .apple-category-band article {
    min-height: 210px;
  }

  .apple-category-band h2 {
    font-size: 1.45rem;
  }

  .product-art {
    min-height: 155px;
  }

  .payment-layout {
    gap: 0.8rem;
  }
}

/* Reference-inspired store discovery */
.store-category-rail {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 21;
  display: flex;
  width: max-content;
  max-width: min(58vw, 760px);
  transform: translate(-50%, -50%);
  justify-content: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: saturate(1.8) blur(20px);
  overflow-x: auto;
  scrollbar-width: none;
}

.store-category-rail::-webkit-scrollbar {
  display: none;
}

.store-category-rail a {
  flex: 0 0 auto;
  padding: 0.5rem 0.72rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
}

.store-category-rail a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.store-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.store-search-panel label {
  display: grid;
  gap: 0.45rem;
  color: #1d1d1f;
  font-weight: 900;
}

.store-search-panel input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 8px;
  background: #f5f5f7;
  color: #1d1d1f;
  font: inherit;
  outline: none;
}

.store-search-panel input:focus {
  border-color: rgba(0, 113, 227, 0.38);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.store-search-hint {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(90, 200, 250, 0.12));
}

.store-search-hint strong {
  color: #1d1d1f;
}

.store-search-hint span {
  color: #6e6e73;
  font-size: 0.9rem;
}

.store-advisor-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 20%, rgba(90, 200, 250, 0.24), transparent 18rem),
    linear-gradient(135deg, #111827 0%, #1d2d5c 54%, #0f172a 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  color: #ffffff;
}

.store-advisor-band .eyebrow,
.store-advisor-band p,
.store-advisor-band h2 {
  color: #ffffff;
}

.store-advisor-band p {
  max-width: 680px;
  opacity: 0.78;
}

.advisor-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.advisor-prompt input {
  min-height: 3rem;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d1d1f;
  font: inherit;
  padding: 0.8rem 0.9rem;
  outline: none;
}

.advisor-prompt .button {
  white-space: nowrap;
}

.bundle-plans {
  padding-top: 2rem;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bundle-grid article {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 290px;
  padding: 1.35rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.bundle-grid article.featured {
  background:
    linear-gradient(155deg, #1d1d1f 0%, #26324a 48%, #0071e3 100%);
  color: #ffffff;
}

.bundle-grid span {
  color: var(--brand);
  font-weight: 950;
}

.bundle-grid .featured span,
.bundle-grid .featured p,
.bundle-grid .featured a {
  color: rgba(255, 255, 255, 0.86);
}

.bundle-grid h3 {
  margin: 0;
  color: inherit;
  font-size: 1.8rem;
  line-height: 1.1;
}

.bundle-grid p {
  margin: 0;
  color: #6e6e73;
}

.bundle-grid strong {
  margin-top: auto;
  color: inherit;
  font-size: 1.35rem;
}

.bundle-grid a {
  color: var(--brand);
  font-weight: 950;
}

.detail-concierge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.07), rgba(90, 200, 250, 0.1));
}

.detail-concierge strong,
.detail-concierge span {
  display: block;
}

.detail-concierge strong {
  color: #1d1d1f;
}

.detail-concierge span {
  color: #6e6e73;
}

.detail-concierge a {
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 950;
}

@media (max-width: 900px) {
  .store-advisor-band,
  .store-search-panel,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .advisor-prompt {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .store-category-rail {
    justify-content: flex-start;
    top: 64px;
  }

  .store-search-panel,
  .store-advisor-band {
    padding: 1rem;
  }

  .bundle-grid article {
    min-height: 230px;
  }

  .detail-concierge {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* InfinityOne-inspired platform layer */
body {
  background:
    linear-gradient(180deg, #050607 0%, #080a0f 48%, #11161f 100%);
}

.site-header,
.checkout-page .site-header {
  background: rgba(8, 10, 14, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand,
.checkout-page .brand,
.checkout-page .site-nav a,
.site-nav a,
.header-icon,
.site-nav .header-actions .header-icon {
  color: #f8fafc;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.brand-mark {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, #f8fafc, #dbeafe);
  color: #111827;
}

.store-category-rail {
  background: rgba(8, 10, 14, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.store-category-rail a {
  color: rgba(255, 255, 255, 0.76);
}

.store-category-rail a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.store-hero.apple-hero {
  width: min(1280px, calc(100% - 2rem));
  min-height: 720px;
  padding-top: 6rem;
  color: #ffffff;
}

.store-hero.apple-hero .eyebrow,
.store-hero.apple-hero h1,
.store-hero.apple-hero p {
  color: #ffffff;
}

.store-hero.apple-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.store-hero.apple-hero h1 {
  font-size: 4.8rem;
}

.page-hero.compact:not(.auth-page),
.detail-layout {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.page-hero.compact:not(.auth-page) h1,
.page-hero.compact:not(.auth-page) p,
.detail-copy h1,
.detail-copy p {
  color: #1d1d1f;
}

.page-hero.compact:not(.auth-page) p:not(.eyebrow),
.detail-copy > p {
  color: #6e6e73;
}

.hero-proof-grid div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.store-hero.apple-hero .hero-proof-grid strong,
.store-hero.apple-hero .hero-proof-grid span {
  color: #ffffff;
}

.platform-pill-row span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.store-terminal.apple-showcase {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    #101827;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 34px 90px rgba(0, 0, 0, 0.38);
}

.hero-dashboard {
  background: rgba(255, 255, 255, 0.92);
}

.apple-category-band,
.store-advisor-band,
.trust-row,
.section:not(.store-hero) {
  position: relative;
}

.vault-showcase,
.care-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 1.4rem;
  align-items: center;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1020;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.2);
}

.vault-showcase .eyebrow,
.vault-showcase h2,
.vault-showcase p,
.care-band .eyebrow,
.care-band h2,
.care-band p {
  color: #ffffff;
}

.vault-showcase p,
.care-band p {
  opacity: 0.76;
}

.vault-copy h2,
.care-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: 2.5rem;
  line-height: 1.08;
}

.vault-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.vault-terminal,
.care-console {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #05070c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.terminal-bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.terminal-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #ff5f57;
}

.terminal-bar span:nth-child(2) {
  background: #ffbd2e;
}

.terminal-bar span:nth-child(3) {
  background: #28c840;
}

.vault-terminal pre {
  margin: 0;
  color: #9ee7ff;
  font: 800 0.95rem/1.8 Consolas, "SFMono-Regular", monospace;
  white-space: pre-wrap;
}

.care-band {
  background:
    linear-gradient(135deg, #f5f7fb 0%, #ffffff 42%, #eaf4ff 100%);
  color: #1d1d1f;
  border-color: rgba(29, 29, 31, 0.08);
}

.care-band .eyebrow,
.care-band h2 {
  color: #1d1d1f;
}

.care-band p {
  color: #6e6e73;
  opacity: 1;
}

.care-console {
  background: #111827;
  color: #ffffff;
}

.care-console span,
.care-console p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.care-console strong {
  display: block;
  margin: 1.8rem 0 0.3rem;
  color: #34c759;
  font-size: 1.4rem;
}

.detail-service-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}

.detail-service-stack article {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.detail-service-stack span {
  color: var(--brand);
  font-weight: 950;
}

.detail-service-stack strong {
  color: #1d1d1f;
}

.detail-service-stack p {
  margin: 0;
  color: #6e6e73;
  font-size: 0.88rem;
}

.store-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 1.4rem;
  padding: 2rem 0 1.2rem;
}

.footer-brand-block p {
  max-width: 34rem;
  color: #6e6e73;
}

.footer-brand {
  color: #1d1d1f;
}

.store-footer-grid h3 {
  margin: 0 0 0.75rem;
  color: #1d1d1f;
  font-size: 0.95rem;
}

.store-footer-grid a {
  display: block;
  margin: 0.45rem 0;
  color: #6e6e73;
  font-weight: 750;
}

.store-footer-grid a:hover {
  color: var(--brand);
}

.store-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  color: #8a8a90;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .store-hero.apple-hero h1 {
    font-size: 3.3rem;
  }

  .vault-showcase,
  .care-band,
  .store-footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-service-stack {
    grid-template-columns: 1fr;
  }

  .store-category-rail {
    position: static;
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    transform: none;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 560px) {
  body {
    background:
      linear-gradient(180deg, #050607 0%, #080a0f 48%, #11161f 100%);
  }

  .store-hero.apple-hero h1 {
    font-size: 2.45rem;
  }

  .vault-showcase,
  .care-band {
    padding: 1rem;
  }

  .vault-copy h2,
  .care-band h2 {
    font-size: 1.75rem;
  }

  .store-footer-bottom {
    flex-direction: column;
  }
}

.store-category-rail {
  display: flex !important;
}

.brand {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header,
  .checkout-page .site-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .store-category-rail {
    flex: 1 0 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .checkout-page .site-header {
    gap: 0.55rem;
    padding: 0.72rem 1rem 0.78rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 2.15rem;
    font-size: 0.78rem;
  }

  .store-category-rail {
    margin-top: 0.2rem;
    padding-top: 0.6rem;
    gap: 0.25rem;
    scroll-padding-inline: 0.2rem;
  }

  .store-category-rail a {
    padding: 0.52rem 0.62rem;
    font-size: 0.82rem;
  }

  .store-hero.apple-hero {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* Premium trust redesign */
body {
  background:
    linear-gradient(180deg, #050607 0%, #080a0f 48%, #11161f 100%);
}

.site-header,
.checkout-page .site-header,
.payment-page .site-header {
  background: rgba(4, 6, 10, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 54px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  background: linear-gradient(145deg, #f7fbff, #dce8f7);
  color: #0b1220;
}

.store-category-rail a {
  color: rgba(255, 255, 255, 0.76);
}

.store-category-rail a:hover,
.store-category-rail a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.store-hero.apple-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 760px;
  margin: 0;
  padding: 7rem max(1rem, calc((100% - 1240px) / 2)) 4.8rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.82) 38%, rgba(5, 7, 11, 0.2) 74%, rgba(5, 7, 11, 0.52) 100%),
    url("assets/premium-hero-digital-store.png") center / cover no-repeat;
  color: #ffffff;
}

.store-hero.apple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(5, 7, 11, 0.35) 76%, #0b111d 100%);
  pointer-events: none;
}

.store-hero.apple-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, rgba(11, 17, 29, 0), rgba(11, 17, 29, 0.92));
  pointer-events: none;
}

.store-hero.apple-hero > * {
  position: relative;
  z-index: 1;
}

.store-hero.apple-hero .hero-copy {
  max-width: 690px;
}

.store-hero.apple-hero h1 {
  max-width: 670px;
  color: #ffffff;
  font-size: 4.7rem;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.store-hero.apple-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.premium-photo-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 12, 20, 0.42);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.premium-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
  animation: premiumPhotoDrift 18s ease-in-out infinite alternate;
}

.premium-photo-frame .hero-dashboard {
  position: relative;
  z-index: 1;
  margin: auto;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(6, 10, 18, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.premium-photo-frame .hero-dashboard-head,
.premium-photo-frame .hero-product-row {
  border-color: rgba(255, 255, 255, 0.12);
}

.premium-photo-frame .hero-product-row {
  background: rgba(255, 255, 255, 0.08);
}

.premium-photo-frame .hero-product-row.featured {
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.22), rgba(52, 199, 89, 0.12));
}

.premium-photo-frame .hero-dashboard-head strong,
.premium-photo-frame .hero-product-row strong {
  color: #ffffff;
}

.premium-photo-frame .hero-dashboard-head span,
.premium-photo-frame .hero-product-row span {
  color: rgba(255, 255, 255, 0.66);
}

.hero-proof-grid div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.store-hero.apple-hero .hero-proof-grid strong,
.store-hero.apple-hero .hero-proof-grid span {
  color: #ffffff;
}

.platform-pill-row span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.button,
.product-card,
.checkout-card,
.checkout-summary-card,
.payment-panel,
.plan-option,
.payment-method {
  position: relative;
  overflow: hidden;
}

.button::after,
.product-card::after,
.checkout-card::after,
.checkout-summary-card::after,
.payment-panel::after,
.plan-option::after,
.payment-method::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.2), transparent 16rem);
  transition: opacity 180ms ease;
}

.button:hover::after,
.product-card:hover::after,
.checkout-card:hover::after,
.checkout-summary-card:hover::after,
.payment-panel:hover::after,
.plan-option:hover::after,
.payment-method:hover::after {
  opacity: 1;
}

.button.primary {
  border-color: rgba(0, 113, 227, 0.34);
  background: linear-gradient(180deg, #0a84ff, #006edc);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 113, 227, 0.24);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.section:not(.store-hero),
.page-hero,
.checkout-main-page,
.payment-main {
  position: relative;
}

.premium-category-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2.8rem;
}

.category-showcase-media {
  position: relative;
  grid-column: 1 / -1;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b111d;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.22);
}

.category-showcase-media img,
.care-photo-panel img,
.checkout-trust-visual img,
.payment-trust-visual img,
.product-hero-visual-card img,
.catalog-visual-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-showcase-media::after,
.care-photo-panel::after,
.checkout-trust-visual::after,
.payment-trust-visual::after,
.catalog-visual-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0), rgba(5, 7, 11, 0.64));
}

.category-showcase-media figcaption,
.care-photo-panel figcaption,
.checkout-trust-visual figcaption,
.payment-trust-visual figcaption,
.catalog-visual-strip > div {
  position: absolute;
  z-index: 1;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.22rem;
  color: #ffffff;
}

.category-showcase-media figcaption span,
.care-photo-panel figcaption span,
.checkout-trust-visual figcaption span,
.payment-trust-visual figcaption span,
.catalog-visual-strip span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-showcase-media figcaption strong,
.care-photo-panel figcaption strong,
.checkout-trust-visual figcaption strong,
.payment-trust-visual figcaption strong,
.catalog-visual-strip strong {
  max-width: 640px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.premium-category-showcase article,
.trust-row article,
.steps article,
.bundle-grid article,
.store-advisor-band,
.support-strip,
.product-card,
.page-hero-panel,
.checkout-card,
.checkout-summary-card,
.payment-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.premium-category-showcase article {
  min-height: 245px;
  padding: 1.45rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.premium-category-showcase article:hover,
.product-card:hover {
  transform: translateY(-6px);
}

.premium-category-showcase article:first-of-type {
  background: linear-gradient(145deg, #0d1630, #4338ca);
  color: #ffffff;
}

.premium-category-showcase article:first-of-type h2,
.premium-category-showcase article:first-of-type p,
.premium-category-showcase article:first-of-type a,
.premium-category-showcase article:first-of-type span {
  color: #ffffff;
}

.store-advisor-band {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.92)),
    #ffffff;
}

.advisor-prompt {
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.care-photo-panel,
.checkout-trust-visual,
.payment-trust-visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0b111d;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.premium-care-band {
  background: #ffffff;
}

.vault-showcase {
  background:
    linear-gradient(135deg, rgba(8, 12, 20, 0.94), rgba(14, 26, 46, 0.92)),
    #0b111d;
}

.vault-terminal {
  animation: terminalGlow 3.8s ease-in-out infinite;
}

.product-page-hero {
  width: 100%;
  margin: 0;
  padding: 7rem max(1rem, calc((100% - 1180px) / 2)) 3rem;
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.96), rgba(6, 9, 15, 0.76)),
    url("assets/premium-category-showcase.png") center / cover no-repeat;
  color: #ffffff;
}

.page-hero.compact.product-page-hero,
.page-hero.product-page-hero {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.96), rgba(6, 9, 15, 0.76)),
    url("assets/premium-category-showcase.png") center / cover no-repeat;
  box-shadow: none;
}

.product-page-hero h1,
.product-page-hero p,
.product-page-hero .eyebrow {
  color: #ffffff !important;
}

.product-page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72) !important;
}

.product-hero-visual-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(6, 10, 18, 0.58);
  backdrop-filter: blur(20px);
}

.product-hero-visual-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.46;
  filter: saturate(1.02) contrast(1.04);
}

.product-hero-visual-card strong,
.product-hero-visual-card span,
.product-hero-visual-card em {
  color: #ffffff;
}

.catalog-visual-strip {
  position: relative;
  min-height: 280px;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border-radius: 8px;
  background: #0b111d;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.product-catalog-section {
  margin-top: 2rem;
}

.product-card {
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  border-color: rgba(0, 113, 227, 0.18);
  box-shadow: 0 34px 84px rgba(15, 23, 42, 0.14);
}

.product-art {
  min-height: 188px;
}

.product-art.has-product-image img {
  transition: transform 480ms ease, filter 480ms ease;
}

.product-card:hover .product-art.has-product-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

.product-card .button.primary {
  box-shadow: none;
}

.checkout-title,
.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 1.2rem;
  align-items: end;
}

.checkout-title > .checkout-steps,
.checkout-title > .checkout-login-strip {
  grid-column: 1;
}

.checkout-trust-visual,
.payment-trust-visual {
  grid-column: 2;
  grid-row: 1 / span 5;
  min-height: 410px;
}

.checkout-page,
.payment-page {
  background:
    linear-gradient(180deg, #050607 0%, #080a0f 48%, #11161f 100%);
}

.checkout-title,
.payment-hero {
  color: #ffffff;
}

.checkout-title h1,
.checkout-title > p,
.payment-hero h1,
.payment-hero > p,
.checkout-title .eyebrow,
.payment-hero .eyebrow {
  color: #ffffff !important;
}

.checkout-title > p:not(.eyebrow),
.payment-hero > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72) !important;
}

.checkout-step,
.payment-progress span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.checkout-step.active,
.payment-progress .done,
.payment-progress .active {
  border-color: rgba(52, 199, 89, 0.34);
  background: rgba(52, 199, 89, 0.13);
  color: #ffffff;
}

.checkout-step span,
.checkout-step strong,
.checkout-step.active span,
.checkout-step.active strong,
.payment-progress span,
.payment-progress .done,
.payment-progress .active {
  color: #ffffff;
}

.checkout-step:not(.active) span,
.checkout-step:not(.active) strong,
.payment-progress span:not(.done):not(.active) {
  color: rgba(255, 255, 255, 0.66);
}

.site-header .header-icon,
.site-header .header-icon svg,
.site-header .site-nav .header-actions .header-icon,
.checkout-page .site-header .header-icon,
.checkout-page .site-header .header-icon svg,
.payment-page .site-header .header-icon,
.payment-page .site-header .header-icon svg {
  color: #f8fafc;
  opacity: 1;
}

.payment-progress .active {
  animation: progressPulse 2.2s ease-in-out infinite;
}

.checkout-login-strip {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.checkout-login-strip p {
  color: rgba(255, 255, 255, 0.74);
}

.checkout-login-strip button {
  background: #ffffff;
  color: #0b1220;
  min-height: 2.35rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.checkout-card,
.checkout-summary-card,
.payment-panel {
  box-shadow: 0 30px 84px rgba(15, 23, 42, 0.1);
}

.payment-amount-card {
  border-color: rgba(0, 113, 227, 0.18);
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.08), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.detail-layout .button.ghost,
.checkout-shell .button.ghost,
.payment-panel .button.ghost,
.support-strip .button.ghost,
.auth-page-form .button.ghost,
.cart-drawer .button.ghost {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #0a84ff;
}

.page-hero:not(.product-page-hero):not(.auth-page) {
  width: 100%;
  margin: 0;
  padding: 7rem max(1rem, calc((100% - 1120px) / 2)) 3.2rem;
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.94), rgba(6, 9, 15, 0.7)),
    url("assets/premium-support-trust.png") center / cover no-repeat;
  color: #ffffff;
}

.page-hero:not(.product-page-hero):not(.auth-page) h1,
.page-hero:not(.product-page-hero):not(.auth-page) p,
.page-hero:not(.product-page-hero):not(.auth-page) .eyebrow {
  color: #ffffff;
}

.page-hero.auth-page {
  width: min(1120px, calc(100% - 2rem));
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 9, 15, 0.9), rgba(20, 32, 55, 0.86)),
    url("assets/premium-hero-digital-store.png") center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.22);
}

.page-hero.auth-page h1,
.page-hero.auth-page p,
.page-hero.auth-page .eyebrow {
  color: #ffffff;
}

.auth-page-form,
.auth-benefit-panel,
.panel,
.values-grid article,
.faq-list details,
.account-profile-card,
.order-record-card,
.recent-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.auth-benefit-panel {
  background:
    linear-gradient(145deg, rgba(10, 132, 255, 0.1), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.support-methods p,
.clean-list li,
.faq-list details {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.faq-list details:hover,
.values-grid article:hover,
.panel:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 113, 227, 0.16);
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.11);
}

.luxury-anim-ready .luxury-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.luxury-anim-ready .luxury-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes premiumPhotoDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.4%, -1.2%, 0);
  }
}

@keyframes terminalGlow {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 rgba(10, 132, 255, 0);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 34px rgba(10, 132, 255, 0.18);
  }
}

@keyframes progressPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(52, 199, 89, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(52, 199, 89, 0.22);
  }
}

@media (max-width: 980px) {
  .store-hero.apple-hero,
  .product-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5.4rem;
  }

  .store-hero.apple-hero h1 {
    font-size: 3.35rem;
  }

  .premium-photo-frame {
    min-height: 430px;
  }

  .premium-category-showcase,
  .checkout-title,
  .payment-hero {
    grid-template-columns: 1fr;
  }

  .checkout-trust-visual,
  .payment-trust-visual {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .store-hero.apple-hero {
    padding-top: 4.6rem;
    padding-bottom: 2.4rem;
    background-position: 62% center;
  }

  .store-hero.apple-hero h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .store-hero.apple-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .premium-photo-frame {
    min-height: 360px;
  }

  .premium-photo-frame .hero-dashboard {
    width: calc(100% - 1rem);
  }

  .premium-category-showcase {
    margin-top: 1rem;
  }

  .category-showcase-media,
  .catalog-visual-strip,
  .care-photo-panel,
  .checkout-trust-visual,
  .payment-trust-visual {
    min-height: 260px;
  }

  .category-showcase-media figcaption strong,
  .care-photo-panel figcaption strong,
  .checkout-trust-visual figcaption strong,
  .payment-trust-visual figcaption strong,
  .catalog-visual-strip strong {
    font-size: 1.08rem;
  }

  .premium-category-showcase article {
    min-height: 0;
  }

  .product-page-hero {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}

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

  .luxury-anim-ready .luxury-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Apple x Binance black-gold refinement */
:root {
  --premium-black: #050607;
  --premium-ink: #0b0f16;
  --premium-panel: #11161f;
  --premium-panel-soft: rgba(17, 22, 31, 0.78);
  --premium-gold: #f0b90b;
  --premium-gold-soft: #ffd866;
  --premium-gold-muted: rgba(240, 185, 11, 0.18);
  --premium-line: rgba(255, 255, 255, 0.12);
  --premium-white: #f7f8fb;
  --premium-muted: rgba(255, 255, 255, 0.72);
  --premium-card-radius: 28px;
  --premium-media-radius: 34px;
  --premium-control-radius: 14px;
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  background: #050607;
}

body,
.checkout-page,
.payment-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 185, 11, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 14%, rgba(255, 216, 102, 0.06), transparent 28rem),
    linear-gradient(180deg, #050607 0%, #080a0f 36%, #0d1119 70%, #11161f 100%);
  background-attachment: fixed;
}

.site-header,
.checkout-page .site-header,
.payment-page .site-header {
  min-height: 68px;
  background: rgba(5, 6, 7, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: saturate(1.4) blur(18px);
  transition: min-height 360ms var(--premium-ease), background 360ms var(--premium-ease), box-shadow 360ms var(--premium-ease), border-color 360ms var(--premium-ease);
}

.site-header.is-scrolled,
.checkout-page .site-header.is-scrolled,
.payment-page .site-header.is-scrolled {
  min-height: 60px;
  background: rgba(5, 6, 7, 0.88);
  border-bottom-color: rgba(240, 185, 11, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.brand {
  font-weight: 950;
}

.brand-mark {
  border-color: rgba(240, 185, 11, 0.38);
  background: linear-gradient(145deg, #f8d33a, #f0b90b 52%, #a66d00);
  color: #0b0f16;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(240, 185, 11, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.store-category-rail a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 260ms var(--premium-ease), background 260ms var(--premium-ease), transform 260ms var(--premium-ease);
}

.store-category-rail a:hover,
.store-category-rail a:focus-visible {
  background: rgba(240, 185, 11, 0.12);
  color: var(--premium-gold-soft);
  transform: translateY(-1px);
}

.store-hero.apple-hero {
  min-height: 820px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.84) 42%, rgba(5, 6, 7, 0.22) 78%, rgba(5, 6, 7, 0.58) 100%),
    url("assets/premium-hero-digital-store.png") center / cover no-repeat;
}

.store-hero.apple-hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  letter-spacing: 0;
}

.eyebrow,
.store-hero.apple-hero .eyebrow,
.product-card-type,
.catalog-visual-strip span,
.category-showcase-media figcaption span,
.checkout-title .eyebrow,
.payment-hero .eyebrow,
.store-footer-grid h3 {
  color: var(--premium-gold-soft) !important;
  letter-spacing: 0.08em;
}

.hero-proof-grid div,
.platform-pill-row span,
.hero-product-row,
.hero-dashboard,
.page-hero-panel,
.product-card,
.trust-row article,
.premium-category-showcase article,
.store-advisor-band,
.steps article,
.vault-showcase,
.care-band,
.bundle-grid article,
.support-strip,
.checkout-card,
.checkout-summary-card,
.payment-panel,
.panel,
.auth-page-form,
.auth-benefit-panel,
.faq-list details,
.values-grid article,
.account-profile-card,
.order-record-card,
.recent-item,
.cart-empty-state {
  border-radius: var(--premium-card-radius);
}

.premium-photo-frame,
.category-showcase-media,
.care-photo-panel,
.checkout-trust-visual,
.payment-trust-visual,
.catalog-visual-strip,
.product-hero-visual-card,
.detail-art {
  border-radius: var(--premium-media-radius);
}

.button,
.chip,
.tag,
.product-badges span,
.product-card-checks span,
.checkout-assurance span,
.payment-safe-list span,
.payment-progress span,
.checkout-step,
.payment-method,
.payment-field,
.payment-order-box,
.checkout-summary-box,
.plan-option,
.checkout-login-strip button,
.header-auth-link {
  border-radius: var(--premium-control-radius);
}

.premium-photo-frame {
  border-color: rgba(240, 185, 11, 0.22);
  background: rgba(8, 10, 14, 0.46);
  box-shadow: 0 46px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.premium-photo-frame .hero-dashboard {
  border-color: rgba(240, 185, 11, 0.22);
  background: rgba(5, 6, 7, 0.74);
}

.hero-dashboard-head em,
.hero-product-row em,
.price,
.product-card .price,
.payment-amount-card > strong,
.checkout-grand-total strong,
.drawer-total strong {
  color: var(--premium-gold) !important;
  text-shadow: 0 0 28px rgba(240, 185, 11, 0.18);
}

.button.primary,
.checkout-submit-button,
.payment-panel .button.primary {
  border-color: rgba(240, 185, 11, 0.38);
  background: linear-gradient(180deg, #ffd866 0%, #f0b90b 58%, #c88700 100%);
  color: #0b0f16;
  box-shadow: 0 18px 45px rgba(240, 185, 11, 0.26);
  transform: translateZ(0);
  transition: transform 320ms var(--premium-ease), box-shadow 320ms var(--premium-ease), filter 320ms var(--premium-ease);
}

.button.primary::before,
.checkout-submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.5) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: opacity 320ms var(--premium-ease), transform 700ms var(--premium-ease);
}

.button.primary:hover,
.checkout-submit-button:hover,
.payment-panel .button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 58px rgba(240, 185, 11, 0.34);
  filter: saturate(1.04);
}

.button.primary:hover::before,
.checkout-submit-button:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.button.ghost,
.detail-layout .button.ghost,
.checkout-shell .button.ghost,
.payment-panel .button.ghost,
.support-strip .button.ghost,
.auth-page-form .button.ghost,
.cart-drawer .button.ghost {
  border-color: rgba(240, 185, 11, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--premium-gold-soft);
  backdrop-filter: blur(16px);
  transition: transform 300ms var(--premium-ease), border-color 300ms var(--premium-ease), background 300ms var(--premium-ease);
}

.button.ghost:hover {
  border-color: rgba(240, 185, 11, 0.34);
  background: rgba(240, 185, 11, 0.1);
  transform: translateY(-2px);
}

.product-card,
.premium-category-showcase article,
.trust-row article,
.steps article,
.bundle-grid article,
.checkout-card,
.checkout-summary-card,
.payment-panel,
.panel,
.faq-list details,
.values-grid article {
  border-color: rgba(240, 185, 11, 0.12);
  box-shadow: 0 26px 76px rgba(5, 6, 7, 0.1);
}

.product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 239, 0.94)),
    #ffffff;
}

.product-card:hover {
  border-color: rgba(240, 185, 11, 0.42);
  box-shadow: 0 34px 92px rgba(5, 6, 7, 0.16), 0 0 0 1px rgba(240, 185, 11, 0.12), 0 0 42px rgba(240, 185, 11, 0.11);
}

.page-hero.compact.product-page-hero,
.page-hero.product-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.68)),
    url("assets/premium-category-showcase.png") center / cover no-repeat;
}

.product-card:hover .product-art.has-product-image img,
.product-card:hover .cart-thumb img,
.plan-option:hover .plan-thumb img {
  transform: scale(1.045);
}

.product-stock-badge,
.plan-side em,
.checkout-user-icon,
.checkout-card-title > span,
.empty-icon,
.success-icon {
  background: linear-gradient(145deg, #ffd866, #f0b90b);
  color: #0b0f16;
}

.product-badges span,
.product-card-checks span,
.checkout-assurance span,
.payment-safe-list span {
  border-color: rgba(240, 185, 11, 0.16);
  background: rgba(240, 185, 11, 0.08);
  color: #6f5200;
}

.tag {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(245, 242, 232, 0.9);
}

.filter-row {
  background: rgba(5, 6, 7, 0.82);
  border-bottom: 1px solid rgba(240, 185, 11, 0.08);
}

.chip:hover,
.chip.active {
  border-color: rgba(240, 185, 11, 0.42);
  background: rgba(240, 185, 11, 0.13);
  color: var(--premium-gold-soft);
}

.premium-care-band,
.support-strip {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 246, 229, 0.92)),
    #ffffff;
}

.support-strip {
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  padding: clamp(2rem, 4vw, 3.35rem) clamp(1.6rem, 5vw, 4.4rem);
}

.support-strip > div {
  max-width: 720px;
}

.support-strip h2 {
  margin: 0 0 0.7rem;
}

.support-strip p:not(.eyebrow) {
  max-width: 660px;
}

.support-strip .button {
  flex: 0 0 auto;
  min-width: 128px;
  justify-content: center;
}

.store-advisor-band {
  border-color: rgba(240, 185, 11, 0.22);
  background:
    radial-gradient(circle at 92% 10%, rgba(240, 185, 11, 0.2), transparent 18rem),
    radial-gradient(circle at 10% 92%, rgba(14, 165, 233, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(13, 17, 25, 0.96), rgba(17, 22, 31, 0.9));
  color: #f8fafc;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-advisor-band .eyebrow {
  color: var(--premium-gold-soft);
  opacity: 1;
}

.store-advisor-band h2 {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.store-advisor-band p {
  color: rgba(248, 250, 252, 0.8);
  opacity: 1;
}

.advisor-prompt {
  border-color: rgba(240, 185, 11, 0.2);
  background: rgba(5, 6, 7, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.advisor-prompt input {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
}

.advisor-prompt input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.advisor-prompt .button.primary {
  background: linear-gradient(135deg, #ffe082, #f0b90b 72%, #d99a00);
  color: #050607;
  box-shadow: 0 12px 30px rgba(240, 185, 11, 0.26);
}

.advisor-prompt .button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(240, 185, 11, 0.34);
}

.auth-page-form,
.auth-benefit-panel {
  border-color: rgba(240, 185, 11, 0.18);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 216, 102, 0.2), transparent 16rem),
    linear-gradient(135deg, #fffdf8 0%, #f8f4e8 58%, #eee8d8 100%);
  color: #1d1d1f;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.auth-page-form h2,
.auth-benefit-panel h2,
.auth-benefit-panel strong {
  color: #1d1d1f;
}

.auth-page-form label,
.auth-switch,
.auth-benefit-panel span {
  color: #6b7280;
}

.auth-page-form input {
  border: 1px solid rgba(29, 29, 31, 0.09);
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.auth-page-form input::placeholder {
  color: #8a8f98;
}

.auth-page-form .button.primary {
  background: linear-gradient(135deg, #ffd76a 0%, #f0b90b 64%, #d99a00 100%);
  color: #050607;
  box-shadow: 0 16px 38px rgba(240, 185, 11, 0.28);
}

.auth-switch a,
.auth-benefit-panel .eyebrow {
  color: #b98300;
}

.auth-benefit-panel div {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.account-wide-card {
  border-color: rgba(240, 185, 11, 0.18);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 102, 0.2), transparent 18rem),
    linear-gradient(135deg, #fffdf8 0%, #f8f4e8 58%, #eee8d8 100%);
  color: #1d1d1f;
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.account-profile-card,
.account-page .cart-empty-state,
.account-page .account-empty-state,
.account-page .order-record-card,
.account-page .recent-item {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: #1d1d1f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.account-wide-card h2,
.account-wide-card h3,
.account-wide-card strong,
.account-wide-card em {
  color: #1d1d1f;
}

.account-wide-card p,
.account-wide-card span {
  color: #6b7280;
}

.account-wide-card .eyebrow {
  color: #b98300;
}

.account-page-tabs {
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.account-page-tabs a,
.account-page-tabs button {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.5);
  color: #6b7280;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.account-page-tabs a.active,
.account-page-tabs a:hover,
.account-page-tabs button:hover {
  border-color: rgba(240, 185, 11, 0.32);
  background: linear-gradient(135deg, rgba(255, 216, 102, 0.92), rgba(240, 185, 11, 0.82));
  color: #050607;
  box-shadow: 0 10px 26px rgba(240, 185, 11, 0.2);
}

.account-wide-card .button.primary {
  background: linear-gradient(135deg, #ffd76a 0%, #f0b90b 64%, #d99a00 100%);
  color: #050607;
  box-shadow: 0 16px 38px rgba(240, 185, 11, 0.26);
}

.vault-showcase {
  border-color: rgba(240, 185, 11, 0.16);
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 185, 11, 0.18), transparent 22rem),
    linear-gradient(135deg, #050607 0%, #11161f 66%, #1c1607 100%);
}

.vault-terminal,
.care-photo-panel,
.checkout-trust-visual,
.payment-trust-visual,
.catalog-visual-strip,
.category-showcase-media {
  border: 1px solid rgba(240, 185, 11, 0.16);
  box-shadow: 0 34px 100px rgba(5, 6, 7, 0.22);
}

.purchase-flow-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.purchase-flow-steps article {
  min-height: 190px;
}

.purchase-flow-steps article span,
.steps article span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffd866, #f0b90b);
  color: #0b0f16;
  font-weight: 950;
}

.checkout-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.checkout-step,
.payment-progress span {
  min-height: 74px;
  padding: 0.82rem;
  border-color: rgba(240, 185, 11, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.checkout-step strong,
.payment-progress span {
  line-height: 1.35;
  overflow-wrap: break-word;
}

.checkout-step.active,
.payment-progress .done,
.payment-progress .active {
  border-color: rgba(240, 185, 11, 0.42);
  background: rgba(240, 185, 11, 0.14);
}

.payment-progress .active {
  animation: premiumStepPulse 2.8s var(--premium-ease) infinite;
}

.payment-amount-card {
  border-color: rgba(240, 185, 11, 0.26);
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 185, 11, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 232, 0.95)),
    #ffffff;
}

.payment-warning {
  border-color: rgba(240, 185, 11, 0.24);
  background: rgba(240, 185, 11, 0.08);
}

.checkout-page input,
.checkout-page textarea,
.payment-page input,
.payment-page textarea,
.payment-page select,
.auth-page-form input {
  border-radius: var(--premium-control-radius);
  transition: border-color 240ms var(--premium-ease), box-shadow 240ms var(--premium-ease), background 240ms var(--premium-ease);
}

.checkout-page input:focus,
.checkout-page textarea:focus,
.payment-page input:focus,
.payment-page textarea:focus,
.payment-page select:focus,
.auth-page-form input:focus,
.advisor-prompt input:focus,
.store-search-panel input:focus {
  border-color: rgba(240, 185, 11, 0.55);
  box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.14);
  outline: none;
}

.cart-empty-state,
.product-empty-state,
.auth-gate {
  border: 1px solid rgba(240, 185, 11, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 185, 11, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(5, 6, 7, 0.1);
}

.account-page .account-wide-card,
.account-page .auth-gate,
.account-page .account-empty-state {
  border-color: rgba(240, 185, 11, 0.18);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 102, 0.2), transparent 18rem),
    linear-gradient(135deg, #fffdf8 0%, #f8f4e8 58%, #eee8d8 100%);
  color: #1d1d1f;
}

.account-page .account-profile-card,
.account-page .order-record-card,
.account-page .recent-item {
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.site-header .account-menu,
.account-menu {
  min-width: 178px;
  padding: 0.55rem;
  border-color: rgba(240, 185, 11, 0.2);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 102, 0.22), transparent 9rem),
    linear-gradient(135deg, #fffdf8 0%, #f8f4e8 62%, #eee8d8 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.account-menu a,
.account-menu button {
  color: #1d1d1f;
}

.account-menu a:hover,
.account-menu button:hover {
  background: linear-gradient(135deg, rgba(255, 216, 102, 0.78), rgba(240, 185, 11, 0.7));
  color: #050607;
}

.site-footer .footer-brand,
.site-footer .footer-brand span:last-child {
  color: #ffffff;
}

main > .section > .section-heading h2,
.bundle-plans > .section-heading h2,
.split-band > div > h2 {
  color: #ffffff !important;
}

.split-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.42fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: stretch;
  margin-top: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.35rem, 3vw, 2.35rem);
  border: 1px solid rgba(240, 185, 11, 0.18);
  border-radius: var(--premium-card-radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 185, 11, 0.18), transparent 24rem),
    radial-gradient(circle at 96% 18%, rgba(14, 165, 233, 0.11), transparent 22rem),
    linear-gradient(135deg, rgba(8, 11, 17, 0.96), rgba(17, 22, 31, 0.9));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.split-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 68%);
  opacity: 0.34;
}

.split-band > div:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-width: 0;
}

.split-band h2 {
  max-width: 460px;
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(2.25rem, 3.6vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.flow-subcopy {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
}

.purchase-flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.purchase-flow-steps article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  grid-column: span 2;
  min-height: 172px;
  padding: 1.15rem;
  border: 1px solid rgba(240, 185, 11, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 185, 11, 0.12), transparent 11rem),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 320ms var(--premium-ease), border-color 320ms var(--premium-ease), background 320ms var(--premium-ease), box-shadow 320ms var(--premium-ease);
}

.purchase-flow-steps article:nth-child(-n + 2) {
  grid-column: span 3;
}

.purchase-flow-steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 185, 11, 0.38);
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 185, 11, 0.2), transparent 12rem),
    rgba(255, 255, 255, 0.105);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3), 0 0 38px rgba(240, 185, 11, 0.1);
}

.purchase-flow-steps article span,
.steps article span {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffd866, #f0b90b);
  color: #0b0f16;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(240, 185, 11, 0.24);
}

.purchase-flow-steps h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.32;
}

.purchase-flow-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.62;
}

.luxury-anim-ready .purchase-flow-steps article {
  transition-duration: 840ms;
}

.detail-layout {
  width: min(1320px, calc(100% - 2rem));
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: start;
  margin-top: clamp(2.2rem, 5vw, 4rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.detail-art {
  min-height: clamp(620px, 72vw, 900px);
  padding: 1rem;
  border-color: rgba(240, 185, 11, 0.18);
  border-radius: 18px;
  background: #08090b;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.detail-art.has-product-image {
  background: #08090b;
}

.detail-art.has-product-image img {
  object-fit: cover;
  transform: none;
}

.detail-photo-caption {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.8rem;
  width: auto;
  min-height: 68px;
  padding: 0.95rem 1.15rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 8, 10, 0.78);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.detail-photo-caption span,
.detail-photo-caption small {
  color: rgba(255, 255, 255, 0.82);
}

.detail-photo-caption strong {
  color: #ffffff;
}

.detail-copy {
  min-width: 0;
  color: #ffffff;
}

.detail-copy h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.detail-copy > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.22rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.detail-badges {
  margin: 1.25rem 0 1.6rem;
}

.detail-badges span {
  border-color: rgba(240, 185, 11, 0.28);
  background: rgba(240, 185, 11, 0.12);
  color: var(--premium-gold-soft);
}

.detail-trust-grid,
.detail-concierge,
.detail-service-stack {
  display: none !important;
}

.purchase-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(130px, 0.75fr) auto;
  align-items: end;
  gap: 1.4rem;
  margin: 1.4rem 0 1.25rem;
  padding: 1.55rem 1.8rem;
  border-color: rgba(240, 185, 11, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(240, 185, 11, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(240, 185, 11, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(18, 18, 12, 0.86);
  box-shadow: none;
}

.purchase-summary span {
  color: rgba(255, 255, 255, 0.64);
}

.purchase-summary strong {
  color: #ffdb35;
  font-size: clamp(3.3rem, 6vw, 4.8rem);
  line-height: 0.94;
  text-shadow: none;
}

.purchase-summary s {
  color: rgba(255, 216, 102, 0.72);
  font-size: 1.55rem;
}

.purchase-summary em {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
}

.plans-box {
  margin: 1.3rem 0;
  padding: 1.25rem;
  border-color: rgba(240, 185, 11, 0.24);
  border-radius: 18px;
  background: rgba(18, 18, 12, 0.8);
  box-shadow: none;
}

.plans-box-head {
  padding: 0 0 1rem;
}

.plans-box-head h2 {
  color: #ffffff;
  font-size: 1.45rem;
}

.plans-box-head span {
  color: rgba(255, 255, 255, 0.56);
}

.plan-options {
  gap: 0.8rem;
  padding: 0;
}

.plan-option {
  min-width: 0;
  min-height: 82px;
  padding: 0.75rem 0.9rem;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.plan-option:hover,
.plan-option.selected {
  border-color: rgba(240, 185, 11, 0.72);
  background: linear-gradient(90deg, rgba(240, 185, 11, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: 0 0 0 1px rgba(240, 185, 11, 0.12);
}

.plan-main strong {
  color: #ffffff;
  font-size: 1.14rem;
  overflow-wrap: anywhere;
}

.plan-main small {
  color: rgba(255, 255, 255, 0.64);
  overflow-wrap: anywhere;
}

.plan-side strong,
.plan-side em {
  color: #ffdb35;
}

.detail-notice {
  margin: 1.2rem 0;
  padding: 0.1rem 0 0.1rem 1rem;
  border: 0;
  border-left: 4px solid #ffdb35;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.detail-buy-row {
  align-items: end;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.detail-buy-row .button.primary {
  min-height: 58px;
  padding-inline: 1.6rem;
}

.detail-buy-row .button.ghost {
  min-height: 58px;
  padding-inline: 1.6rem;
}

.qty-control {
  color: rgba(255, 255, 255, 0.78);
}

.qty-control input {
  width: 140px;
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.product-loading-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  width: 100%;
}

.product-skeleton {
  min-height: 430px;
  pointer-events: none;
}

.product-skeleton .product-art,
.product-skeleton .product-card-body span,
.product-skeleton .product-card-body strong,
.product-skeleton .product-card-body p,
.product-skeleton .product-card-body div {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(90deg, #ece7d9 0%, #fff8df 42%, #ece7d9 78%);
  background-size: 220% 100%;
  animation: skeletonSweep 1.7s var(--premium-ease) infinite;
}

.product-skeleton .product-card-body {
  gap: 0.8rem;
}

.product-skeleton .product-card-body span {
  width: 42%;
  height: 0.8rem;
}

.product-skeleton .product-card-body strong {
  width: 72%;
  height: 1.5rem;
}

.product-skeleton .product-card-body p {
  width: 100%;
  height: 3.2rem;
}

.product-skeleton .product-card-body div {
  width: 62%;
  height: 2.5rem;
}

.luxury-anim-ready .luxury-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 920ms var(--premium-ease), transform 920ms var(--premium-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.luxury-anim-ready .luxury-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.store-hero.apple-hero .hero-copy > * {
  animation: premiumHeroEnter 1100ms var(--premium-ease) both;
}

.store-hero.apple-hero .hero-copy > :nth-child(2) {
  animation-delay: 90ms;
}

.store-hero.apple-hero .hero-copy > :nth-child(3) {
  animation-delay: 180ms;
}

.store-hero.apple-hero .hero-copy > :nth-child(4) {
  animation-delay: 270ms;
}

.store-hero.apple-hero .hero-copy > :nth-child(5) {
  animation-delay: 360ms;
}

.premium-photo-frame {
  animation: premiumHeroEnter 1200ms var(--premium-ease) 220ms both;
}

@keyframes premiumHeroEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumStepPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(240, 185, 11, 0);
  }
  50% {
    box-shadow: 0 0 36px rgba(240, 185, 11, 0.24);
  }
}

@keyframes skeletonSweep {
  from {
    background-position: 120% 0;
  }
  to {
    background-position: -120% 0;
  }
}

@media (max-width: 1120px) {
  .detail-layout {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 2rem));
  }

  .detail-art {
    min-height: 680px;
  }

  .purchase-flow-steps,
  .checkout-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-flow-steps article,
  .purchase-flow-steps article:nth-child(-n + 2) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --premium-card-radius: 22px;
    --premium-media-radius: 24px;
    --premium-control-radius: 13px;
  }

  .site-header,
  .checkout-page .site-header,
  .payment-page .site-header {
    min-height: 66px;
  }

  .store-hero.apple-hero {
    min-height: auto;
    padding-top: 4.7rem;
  }

  .store-hero.apple-hero h1 {
    font-size: 2.5rem;
  }

  .purchase-flow-steps,
  .checkout-steps,
  .payment-progress {
    grid-template-columns: 1fr;
  }

  .purchase-flow-steps article,
  .checkout-step,
  .payment-progress span {
    min-height: 0;
  }

  .product-loading-grid {
    grid-template-columns: 1fr;
  }

  .checkout-title,
  .payment-hero {
    gap: 1rem;
  }

  .support-strip {
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.5rem;
  }

  .support-strip .button {
    width: 100%;
  }

  .split-band {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.25rem;
    border-radius: 24px;
  }

  .split-band h2 {
    font-size: 2.15rem;
  }

  .flow-subcopy {
    font-size: 0.96rem;
  }

  .purchase-flow-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .purchase-flow-steps::before {
    content: "";
    position: absolute;
    left: 1.22rem;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.38), rgba(240, 185, 11, 0.04));
  }

  .purchase-flow-steps article,
  .purchase-flow-steps article:nth-child(-n + 2) {
    grid-column: auto;
  }

  .purchase-flow-steps article {
    grid-template-columns: 2.45rem minmax(0, 1fr);
    gap: 0.28rem 0.85rem;
    min-height: 0;
    padding: 1rem;
  }

  .purchase-flow-steps article span {
    grid-row: 1 / span 2;
    position: relative;
    z-index: 1;
  }

  .detail-layout {
    width: min(100%, calc(100% - 1rem));
    margin-top: 1.2rem;
    gap: 1.6rem;
  }

  .detail-art {
    min-height: 470px;
    border-radius: 16px;
  }

  .detail-photo-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.35rem;
  }

  .detail-copy h1 {
    font-size: 3rem;
  }

  .purchase-summary {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .plan-option {
    grid-template-columns: 2.8rem minmax(0, 1fr);
  }

  .plan-side {
    grid-column: 2;
    justify-self: start;
    align-items: start;
  }

  .detail-buy-row,
  .detail-buy-row .button.primary,
  .qty-control,
  .qty-control input {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .store-hero.apple-hero .hero-copy > *,
  .premium-photo-frame,
  .payment-progress .active,
  .vault-terminal,
  .product-skeleton .product-art,
  .product-skeleton .product-card-body span,
  .product-skeleton .product-card-body strong,
  .product-skeleton .product-card-body p,
  .product-skeleton .product-card-body div {
    animation: none !important;
  }

  .luxury-anim-ready .luxury-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product detail compact premium layout */
.detail-layout {
  width: min(980px, calc(100% - 2.5rem));
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1fr);
  gap: clamp(1.35rem, 2.7vw, 2.35rem);
  align-items: stretch;
}

.detail-art {
  min-height: clamp(470px, 32vw, 580px);
  max-height: 620px;
}

.detail-copy {
  padding-top: clamp(0.1rem, 0.8vw, 0.55rem);
}

.detail-copy h1 {
  font-size: clamp(2.65rem, 3.8vw, 3.75rem);
}

.detail-copy > p {
  max-width: 500px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.plans-box {
  margin: 0.95rem 0 0.8rem;
  padding: 0.85rem;
}

.plans-box-head {
  align-items: end;
}

.plan-option {
  min-height: 64px;
  padding: 0.65rem 0.75rem;
}

.purchase-summary {
  grid-template-columns: minmax(0, 1.2fr) minmax(110px, 0.62fr) auto;
  gap: 0.8rem;
  margin: 0.8rem 0 0.95rem;
  padding: 0.95rem 1.1rem;
}

.purchase-summary strong {
  font-size: clamp(2.15rem, 3.4vw, 2.95rem);
}

.purchase-summary s {
  font-size: 1.08rem;
}

.purchase-summary em {
  font-size: 0.96rem;
}

@media (min-width: 1121px) {
  .detail-layout {
    min-height: auto;
  }

  .detail-art {
    height: 100%;
    min-height: 100%;
    max-height: none;
  }

  .detail-copy {
    max-width: 500px;
  }
}

@media (max-width: 1120px) {
  .detail-layout {
    width: min(720px, calc(100% - 2rem));
    grid-template-columns: 1fr;
  }

  .detail-art {
    min-height: clamp(420px, 68vw, 560px);
  }

  .detail-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .detail-layout {
    width: min(100%, calc(100% - 1.5rem));
    gap: 1.1rem;
    margin-top: 1rem;
  }

  .detail-art {
    min-height: 390px;
    max-height: 440px;
    padding: 0.75rem;
  }

  .detail-photo-caption {
    min-height: 52px;
    padding: 0.75rem;
    border-radius: 14px;
  }

  .detail-copy {
    padding-inline: 0.1rem;
  }

  .detail-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.05rem);
    line-height: 1;
  }

  .detail-copy > p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .detail-badges {
    margin: 1rem 0;
  }

  .plans-box {
    padding: 0.85rem;
    border-radius: 16px;
  }

  .plans-box-head {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 0.8rem;
  }

  .plans-box-head h2 {
    font-size: 1.2rem;
  }

  .plan-option {
    min-height: 68px;
    padding: 0.7rem;
  }

  .purchase-summary {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem;
  }

  .purchase-summary > div:first-child {
    grid-column: 1 / -1;
  }

  .purchase-summary strong {
    font-size: clamp(2.7rem, 13vw, 3.3rem);
  }

  .detail-notice {
    font-size: 0.95rem;
  }
}

/* Black-gold premium cart drawer */
.cart-drawer {
  color: #f7f5ed;
}

.cart-drawer-backdrop {
  background: rgba(0, 0, 0, 0);
}

.cart-drawer.open .cart-drawer-backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.cart-drawer-panel {
  width: clamp(390px, 30vw, 520px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 185, 11, 0.1), transparent 16rem),
    radial-gradient(circle at 100% 18%, rgba(0, 113, 227, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(15, 17, 20, 0.98), rgba(5, 7, 10, 0.99));
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.54), inset 1px 0 0 rgba(255, 255, 255, 0.035);
}

.cart-drawer-head {
  padding: 1.35rem 1.45rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0));
}

.cart-drawer-head .eyebrow {
  color: #ffd866;
  letter-spacing: 0.14em;
}

.cart-drawer-head h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.cart-drawer .auth-close {
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cart-drawer .auth-close:hover {
  background: rgba(240, 185, 11, 0.13);
  color: #ffd866;
}

.cart-drawer-body {
  gap: 0;
  padding: 1rem 1.35rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16rem);
}

.drawer-cart-item {
  position: relative;
  grid-template-columns: 4.35rem minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1rem 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: transparent;
  box-shadow: none;
  transition: transform 260ms var(--premium-ease), border-color 260ms var(--premium-ease), background 260ms var(--premium-ease);
}

.drawer-cart-item:hover {
  transform: none;
  background: transparent;
}

.drawer-cart-item .cart-thumb {
  width: 3.7rem;
  height: 3.7rem;
  border: 0;
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(240, 185, 11, 0.08), rgba(255, 255, 255, 0.045)),
    #0d1218;
  color: #ffd866;
}

.drawer-cart-main {
  align-self: center;
  gap: 0.38rem;
}

.drawer-cart-item strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.drawer-cart-item span,
.drawer-cart-item small {
  color: rgba(255, 255, 255, 0.62);
}

.drawer-cart-side {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  padding-top: 0.45rem;
  border-top: 0;
}

.drawer-cart-qty.cart-qty {
  grid-template-columns: 2rem 2.15rem 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
}

.drawer-cart-qty.cart-qty button {
  height: 2rem;
  color: rgba(255, 255, 255, 0.72);
}

.drawer-cart-qty.cart-qty button:hover {
  color: #0b0f16;
  background: linear-gradient(145deg, #ffd866, #f0b90b);
}

.drawer-cart-qty.cart-qty span {
  color: #ffffff;
  font-weight: 900;
}

.drawer-cart-item em {
  align-self: center;
  color: #ffdb35;
  font-size: 1.1rem;
  text-shadow: none;
}

.drawer-remove {
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.drawer-remove:hover {
  background: rgba(240, 185, 11, 0.14);
  color: #ffd866;
}

.cart-drawer-foot {
  gap: 1rem;
  padding: 1.25rem 1.45rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 0%, rgba(240, 185, 11, 0.08), transparent 13rem),
    rgba(5, 7, 10, 0.92);
  box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.26);
}

.drawer-total {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.drawer-total span {
  color: rgba(255, 255, 255, 0.68);
}

.drawer-total strong {
  color: #ffdb35;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
}

.cart-drawer-foot .button.primary {
  min-height: 58px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.cart-drawer-foot p {
  color: rgba(255, 255, 255, 0.54);
}

.drawer-empty {
  min-height: 58vh;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.drawer-empty h3 {
  color: #ffffff;
}

.drawer-empty p {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 560px) {
  .cart-drawer-panel {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
  }

  .cart-drawer-head {
    padding: 1.15rem 1.1rem 1rem;
  }

  .cart-drawer-body {
    padding: 0.85rem 1rem 1.05rem;
  }

  .drawer-cart-item {
    border-radius: 0;
    padding: 0.9rem 0;
  }

  .cart-drawer-foot {
    padding: 1rem;
  }
}

/* Restore cart.html compact checkout layout */
.checkout-page .checkout-main-page {
  width: min(1060px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(2.4rem, 5vw, 4.6rem) 0 4rem;
}

.checkout-page .checkout-title {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.6rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.checkout-page .checkout-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.checkout-page .checkout-login-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(240, 185, 11, 0.22);
  border-left-width: 4px;
  border-radius: 18px;
  background: rgba(18, 22, 30, 0.72);
  box-shadow: none;
}

.checkout-page .checkout-login-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
}

.checkout-page .checkout-user-icon {
  width: 0.42rem;
  height: 0.42rem;
  min-width: 0.42rem;
  border-radius: 999px;
  background: #f0b90b;
  color: transparent;
  box-shadow: none;
}

.checkout-page .checkout-login-strip button,
.checkout-page .checkout-login-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffd43b;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.checkout-page .checkout-shell {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  gap: 1.6rem;
  align-items: start;
}

.checkout-page .checkout-form-stack {
  gap: 1.35rem;
}

.checkout-page .checkout-card,
.checkout-page .checkout-summary-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(32, 37, 45, 0.92), rgba(22, 26, 33, 0.94));
  box-shadow: none;
}

.checkout-page .checkout-card {
  padding: 1.55rem 1.65rem;
}

.checkout-page .checkout-card-title {
  align-items: start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.checkout-page .checkout-card-title > span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  min-width: 1.7rem;
  place-items: center;
  border-radius: 999px;
  background: #ffd43b;
  color: #0b0f16;
  font-size: 0.9rem;
  font-weight: 950;
}

.checkout-page .checkout-card-title h2,
.checkout-page .checkout-summary-card h2 {
  color: #ffffff;
  font-size: 1.25rem;
}

.checkout-page .checkout-card-title p {
  color: rgba(255, 255, 255, 0.52);
}

.checkout-page label {
  color: rgba(255, 255, 255, 0.86);
}

.checkout-page input,
.checkout-page textarea {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  box-shadow: none;
}

.checkout-page input::placeholder,
.checkout-page textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.checkout-page input:focus,
.checkout-page textarea:focus {
  border-color: rgba(240, 185, 11, 0.4);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.08);
}

.checkout-page .checkout-product-note {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
}

.checkout-page .checkout-product-note span {
  display: inline-flex;
  margin-left: 0.45rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(240, 185, 11, 0.18);
  color: #ffd43b;
  font-size: 0.72rem;
  font-weight: 900;
}

.checkout-page .payment-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.checkout-page .payment-logo-card {
  min-height: 5.6rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.checkout-page .payment-logo-card.selected,
.checkout-page .payment-logo-card:hover {
  border-color: rgba(240, 185, 11, 0.36);
  background: rgba(255, 255, 255, 0.065);
}

.checkout-page .payment-logo-card img {
  width: min(92px, 100%);
  height: 34px;
  border-radius: 12px;
  background: #ffffff;
}

.checkout-page .payment-logo-card span {
  color: #ffffff;
}

.checkout-page .checkout-summary-card {
  top: 5.2rem;
  padding: 1.5rem;
}

.checkout-page .summary-card-head > span,
.checkout-page .summary-card-head .eyebrow {
  display: none;
}

.checkout-page .checkout-summary-list {
  gap: 1rem;
}

.checkout-page .checkout-summary-item {
  grid-template-columns: 3.2rem minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.checkout-page .checkout-summary-item .cart-thumb {
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.checkout-page .checkout-summary-main strong {
  color: #ffffff;
}

.checkout-page .checkout-summary-main span {
  color: rgba(255, 255, 255, 0.55);
}

.checkout-page .checkout-summary-qty.cart-qty {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.checkout-page .checkout-summary-side strong {
  color: #ffd43b;
}

.checkout-page .checkout-remove {
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  background: rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.72);
  transition: background-color 180ms ease, color 180ms ease;
}

.checkout-page .checkout-remove:hover {
  background: rgba(148, 163, 184, 0.3);
  color: #9ca3af;
}

.checkout-page .checkout-summary-box {
  margin-top: 0.5rem;
  border-radius: 16px;
  background: rgba(5, 6, 7, 0.38);
}

.checkout-page .checkout-grand-total strong,
.checkout-page .checkout-grand-total span {
  color: #ffffff;
}

.checkout-page .checkout-terms {
  color: rgba(255, 255, 255, 0.72);
}

.checkout-page .checkout-terms a {
  color: #ffd43b;
}

.checkout-page .checkout-submit-button {
  min-height: 54px;
  border-radius: 999px;
}

.checkout-page .checkout-submit-note {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 980px) {
  .checkout-page .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-page .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .checkout-page .checkout-main-page {
    width: min(100%, calc(100% - 1.25rem));
    padding-top: 1.5rem;
  }

  .checkout-page .checkout-card,
  .checkout-page .checkout-summary-card {
    padding: 1.1rem;
    border-radius: 16px;
  }

  .checkout-page .payment-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* cart.html final reference restore */
.checkout-page .checkout-main-page {
  width: min(1060px, calc(100% - 2rem));
  padding-top: clamp(4.4rem, 7vw, 5.75rem);
}

.checkout-page .checkout-title {
  gap: 1.15rem;
  margin-bottom: 1.55rem;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: stretch;
}

.checkout-page .checkout-title h1 {
  font-size: clamp(2.45rem, 4vw, 3.15rem);
}

.checkout-page .checkout-login-strip {
  grid-column: 1 / -1;
  min-height: 44px;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding: 0.62rem 1rem;
  border-color: rgba(240, 185, 11, 0.28);
  background: rgba(15, 18, 25, 0.86);
}

.checkout-page .checkout-shell {
  width: 1060px;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) 405px;
  gap: 28px;
}

.checkout-page .checkout-form-stack {
  gap: 0.9rem;
}

.checkout-page .checkout-card {
  min-height: 0;
  gap: 0.55rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.035), transparent 16rem),
    linear-gradient(145deg, rgba(29, 34, 42, 0.94), rgba(22, 26, 33, 0.96));
}

.checkout-page .checkout-card-title {
  margin-bottom: 0.1rem;
}

.checkout-page .checkout-card-title > span {
  width: 1.55rem;
  height: 1.55rem;
  min-width: 1.55rem;
}

.checkout-page .checkout-card-title h2 {
  font-size: 1.18rem;
}

.checkout-page .checkout-card-title p {
  font-size: 0.88rem;
  line-height: 1.32;
  margin-top: 0.18rem;
  margin-bottom: 0;
}

.checkout-page .checkout-card-title + label,
.checkout-page .checkout-card-title + .checkout-product-note {
  margin-top: 0.1rem;
}

.checkout-page label {
  gap: 0.32rem;
  margin-top: 0.35rem;
}

.checkout-page input {
  min-height: 38px;
}

.checkout-page textarea {
  min-height: 92px;
}

.checkout-page .checkout-product-note {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
}

.checkout-page .checkout-product-note strong {
  color: #ffffff;
}

.checkout-page .checkout-summary-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 5.2rem;
  grid-column: 2;
  grid-row: 1;
  width: 405px;
  align-self: start;
  margin-top: 0;
  transform: none;
  padding: 1.45rem 1.35rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.035), transparent 13rem),
    linear-gradient(145deg, rgba(29, 34, 42, 0.96), rgba(22, 26, 33, 0.98));
}

.checkout-page .checkout-shell > .checkout-summary-card {
  margin-top: 0 !important;
}

.checkout-page .checkout-summary-card h2 {
  font-size: 1.24rem;
}

.checkout-page .checkout-summary-item {
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  gap: 0.72rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-page .checkout-summary-item + .checkout-summary-item {
  margin-top: 0.95rem;
}

.checkout-page .checkout-summary-item .cart-thumb {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
}

.checkout-page .checkout-summary-main {
  gap: 0.28rem;
}

.checkout-page .checkout-summary-main strong {
  font-size: 0.96rem;
}

.checkout-page .checkout-summary-main span {
  font-size: 0.82rem;
}

.checkout-page .checkout-summary-qty.cart-qty {
  grid-template-columns: 1.6rem 1.75rem 1.6rem;
  margin-top: 0.12rem;
}

.checkout-page .checkout-summary-qty.cart-qty button:hover {
  background: linear-gradient(145deg, #ffd866, #f0b90b);
  color: #0b0f16;
}

.checkout-page .checkout-summary-side {
  gap: 0.65rem;
}

.checkout-page .checkout-summary-side strong {
  font-size: 0.92rem;
}

.checkout-page .checkout-summary-box {
  padding: 1rem 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.08rem;
  border-radius: 16px;
}

.checkout-page .checkout-grand-total span,
.checkout-page .checkout-grand-total strong {
  font-size: 1.28rem;
}

.checkout-page .checkout-assurance {
  display: none;
}

.checkout-page .checkout-terms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.08rem;
  margin-bottom: 0;
  font-size: 0.76rem;
}

.checkout-page .checkout-terms input {
  flex: 0 0 auto;
  margin: 0;
  transform: translateY(-1px);
}

.checkout-page .checkout-submit-button {
  min-height: 52px;
  margin-top: 0.25rem;
}

.checkout-page .checkout-submit-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
}

.checkout-page .payment-method-grid {
  gap: 0.65rem;
}

.checkout-page .payment-logo-card {
  min-height: 5.2rem;
  padding: 0.35rem;
  border-color: transparent;
  background: transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.checkout-page .payment-logo-card.selected {
  border-color: transparent;
  background: transparent;
}

.checkout-page .payment-logo-card:hover {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(148, 163, 184, 0.18);
}

.checkout-page .payment-logo-card img {
  width: min(132px, 100%);
  height: 50px;
}

.checkout-page .checkout-card::after,
.checkout-page .checkout-summary-card::after,
.checkout-page .button::after,
.checkout-page .payment-method::after {
  display: none;
}

.checkout-page .checkout-login-strip button,
.checkout-page .checkout-login-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .checkout-page .checkout-main-page {
    width: min(720px, calc(100% - 2rem));
    padding-top: 2.5rem;
  }

  .checkout-page .checkout-shell {
    width: 100%;
    grid-template-columns: 1fr;
  }

.checkout-page .checkout-card {
  width: 100%;
}

.checkout-page #checkout-payment-method {
  scroll-margin-top: 5.5rem;
}

  .checkout-page .checkout-summary-card {
    grid-column: 1;
    grid-row: auto;
    position: static;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .checkout-page .checkout-main-page {
    width: min(100%, calc(100% - 1.25rem));
    padding-top: 1.4rem;
  }

  .checkout-page .checkout-login-strip {
    align-items: flex-start;
  }
}

/* Restore compact payment page layout */
.payment-page {
  background:
    radial-gradient(circle at 28% 0%, rgba(240, 185, 11, 0.1), transparent 34rem),
    linear-gradient(180deg, #050607 0%, #07090d 48%, #090d13 100%) !important;
}

.payment-page .payment-main {
  width: min(920px, calc(100% - 2rem)) !important;
  max-width: 920px;
  padding: 2.4rem 0 4rem;
}

.payment-page .payment-hero {
  display: block !important;
  max-width: 920px !important;
  margin: 0 auto 1rem !important;
  color: #ffffff;
}

.payment-page .payment-hero .eyebrow {
  color: var(--premium-gold) !important;
}

.payment-page .payment-hero h1 {
  margin: 0.35rem 0 0.4rem;
  color: #ffffff !important;
  font-size: clamp(2.2rem, 6vw, 3rem);
}

.payment-page .payment-hero > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.68) !important;
}

.payment-page .payment-progress,
.payment-page .payment-trust-visual {
  display: none !important;
}

.payment-page .payment-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 1.25rem !important;
  border: 1px solid rgba(240, 185, 11, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(18, 22, 30, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.payment-page .payment-panel {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.payment-page .payment-panel::after {
  display: none !important;
}

.payment-page .payment-amount-card {
  order: -2 !important;
  position: static !important;
  display: grid !important;
  gap: 0.28rem;
  justify-items: center;
  padding: 0.05rem 0 0.85rem !important;
  border-bottom: 1px solid rgba(240, 185, 11, 0.28);
  text-align: center;
}

.payment-page .payment-amount-card > .eyebrow,
.payment-page .payment-amount-card h2,
.payment-page .payment-amount-card > strong,
.payment-page .payment-amount-card > p {
  width: 100%;
  text-align: center;
}

.payment-page .payment-amount-card h2,
.payment-page .payment-panel-title h2,
.payment-page .order-contact-form h3,
.payment-page .payment-upload-card h3 {
  color: #ffffff !important;
}

.payment-page .payment-amount-card > strong {
  display: block;
  margin: 0.15rem 0 0.25rem;
  font-size: clamp(2.35rem, 8vw, 3.35rem) !important;
}

.payment-page .payment-product-due,
.payment-page .payment-safe-list {
  display: none !important;
}

.payment-page .payment-product-due {
  display: flex !important;
  gap: 0.8rem;
  align-items: center;
}

.payment-page .payment-amount-card dl {
  width: min(100%, 350px) !important;
  margin: 0.15rem auto 0 !important;
  padding: 0.55rem 0.9rem;
  border-radius: 22px;
  background: rgba(5, 7, 11, 0.58);
}

.payment-page .payment-amount-card > p {
  margin: 0.35rem 0 0;
}

.payment-page .payment-amount-card dt,
.payment-page .payment-amount-card p {
  color: rgba(255, 255, 255, 0.58) !important;
}

.payment-page .payment-amount-card dd {
  color: #ffffff !important;
}

.payment-page .payment-method-panel {
  display: grid !important;
  grid-template-columns: minmax(200px, 220px) minmax(0, 1fr) !important;
  gap: 0.5rem 0.75rem !important;
  padding: 0.8rem 0 0 !important;
}

.payment-page .payment-panel-title,
.payment-page .payment-warning,
.payment-page .payment-actions,
.payment-page .order-contact-form,
.payment-page .payment-upload-card,
.payment-page .payment-order-box,
.payment-page .payment-method-panel > .form-result {
  grid-column: 1 / -1 !important;
}

.payment-page .payment-panel-title p:not(.eyebrow) {
  color: var(--premium-gold) !important;
}

.payment-page .payment-panel-title {
  display: grid;
  gap: 0.16rem;
  margin: 0;
}

.payment-page .payment-panel-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 1.05rem;
  background: rgba(255, 255, 255, 0.12);
}

.payment-page .payment-panel-title .eyebrow,
.payment-page .payment-panel-title h2,
.payment-page .payment-panel-title p {
  margin: 0 !important;
}

.payment-page .qr-card,
.payment-page .payment-field,
.payment-page .payment-order-box,
.payment-page .order-contact-form,
.payment-page .payment-warning,
.payment-page .payment-upload-card {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border-radius: 18px !important;
}

.payment-page .qr-frame {
  width: 136px;
  height: 136px;
  min-height: 136px;
  aspect-ratio: 1 / 1;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: #ffffff !important;
  border-radius: 18px;
}

.payment-page .qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-page .qr-card {
  aspect-ratio: auto;
  min-height: auto;
  align-content: center;
  overflow: visible;
}

.payment-page .qr-card small,
.payment-page .payment-field span,
.payment-page .payment-order-box span,
.payment-page .order-contact-form p,
.payment-page .payment-upload-card p,
.payment-page .payment-warning p {
  color: rgba(255, 255, 255, 0.62) !important;
}

.payment-page .payment-field strong,
.payment-page .payment-order-box strong {
  color: #ffffff !important;
}

.payment-page .payment-field button {
  color: var(--premium-gold) !important;
}

.payment-page .order-contact-form {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.15rem;
  margin-bottom: 0.95rem;
  order: 9;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
}

.payment-page .order-contact-form .form-result {
  flex-basis: 100%;
  margin: 0.45rem 0 0;
  padding: 0.25rem 0 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
}

.payment-page .order-contact-form .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 3.25rem;
  min-height: 3.25rem;
  min-width: 8.4rem;
  padding-left: 1.05rem;
  padding-right: 1.05rem;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 999px;
  box-shadow: none !important;
  justify-self: end;
}

.payment-page .order-contact-form .button:hover {
  box-shadow: none !important;
}

.payment-page .payment-warning {
  order: 8;
  margin-top: 0.75rem;
  border-color: rgba(240, 185, 11, 0.34) !important;
  background: rgba(240, 185, 11, 0.16) !important;
}

.payment-page .payment-warning strong {
  color: var(--premium-gold) !important;
}

.payment-page .payment-warning p {
  color: rgba(255, 244, 210, 0.82) !important;
}

.payment-page .payment-upload-card {
  order: 10;
  margin-top: 0.55rem;
  padding: 1.35rem 1.45rem !important;
  gap: 1.15rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035) !important;
}

.payment-page .payment-upload-card > div {
  display: grid;
  gap: 0.45rem;
}

.payment-page .payment-upload-card .eyebrow {
  margin-bottom: 0.1rem;
}

.payment-page .payment-upload-form {
  gap: 1rem;
}

.payment-page .payment-upload-form label {
  gap: 0.65rem;
  color: #ffffff !important;
}

.payment-page .payment-upload-form input[type="file"] {
  min-height: 4rem;
  padding: 1rem;
  border-radius: 14px;
}

.payment-page .payment-upload-form .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  min-width: 8.4rem;
  height: 3.25rem;
  min-height: 3.25rem;
  padding: 0 1.05rem;
  border-radius: 999px;
}

.payment-page .payment-upload-card .form-result {
  margin: 0;
  padding-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.payment-page .payment-actions {
  justify-content: flex-end;
  order: 11;
}

.payment-page .payment-actions .button.primary {
  display: none;
}

@media (max-width: 620px) {
  .payment-page .payment-main {
    width: min(100%, calc(100% - 1rem)) !important;
    padding-top: 1.35rem;
  }

  .payment-page .payment-layout {
    padding: 1rem !important;
    border-radius: 26px;
  }

  .payment-page .payment-method-panel {
    grid-template-columns: 1fr !important;
  }

  .payment-page .qr-card {
    width: 100%;
  }
}

/* Keep payment-page cards static: no reveal, hover, or card motion. */
.payment-page .luxury-reveal,
.payment-page .payment-layout,
.payment-page .payment-panel,
.payment-page .payment-amount-card,
.payment-page .payment-method-panel,
.payment-page .payment-panel-title,
.payment-page .qr-card,
.payment-page .payment-field,
.payment-page .payment-warning,
.payment-page .order-contact-form,
.payment-page .payment-upload-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.payment-page .payment-layout::before,
.payment-page .payment-layout::after,
.payment-page .payment-panel::before,
.payment-page .payment-panel::after,
.payment-page .payment-amount-card::before,
.payment-page .payment-amount-card::after,
.payment-page .payment-method-panel::before,
.payment-page .payment-method-panel::after,
.payment-page .qr-card::before,
.payment-page .qr-card::after,
.payment-page .payment-field::before,
.payment-page .payment-field::after,
.payment-page .payment-warning::before,
.payment-page .payment-warning::after,
.payment-page .order-contact-form::before,
.payment-page .order-contact-form::after,
.payment-page .payment-upload-card::before,
.payment-page .payment-upload-card::after {
  animation: none !important;
  transition: none !important;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* Brand SVG icons should occupy the full icon tile. */
.plan-thumb img[src*="-icon.svg"],
.cart-thumb img[src*="-icon.svg"],
.payment-product-thumb img[src*="-icon.svg"] {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.12);
}
