:root {
  --bg: #0c1222;
  --bg-soft: #141d33;
  --surface: #ffffff;
  --surface-muted: #f4f7fc;
  --text: #0f172a;
  --text-soft: #475569;
  --border: #dbe4f0;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-light: #dbeafe;
  --accent: #06b6d4;
  --success: #059669;
  --warning: #d97706;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--surface-muted);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 18, 34, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid;
  place-items: center;
  font-size: 1rem;
}

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

.nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover {
  color: #fff;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.15rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.btn-header {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cart-btn-has-items {
  border-color: rgba(6, 182, 212, 0.55);
  background: rgba(6, 182, 212, 0.15);
}

.cart-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
  z-index: 200;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.cart-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-stock {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.product-stock-in {
  color: var(--success);
}

.product-stock-out {
  color: #dc2626;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions-lg {
  max-width: 360px;
  margin-top: 1rem;
}

.product-actions .btn {
  font-size: 0.82rem;
  padding: 0.6rem 0.75rem;
}

.btn-view {
  text-align: center;
}

/* Cart page */

.cart-page {
  padding-bottom: 3rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.cart-line-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.cart-line-name {
  margin: 0.1rem 0 0.25rem;
  font-size: 1.05rem;
}

.cart-line-name a {
  color: var(--text);
  text-decoration: none;
}

.cart-line-price {
  margin: 0.35rem 0 0.65rem;
  font-weight: 700;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cart-qty-label {
  font-size: 0.82rem;
  font-weight: 600;
}

.cart-qty {
  display: block;
  margin-top: 0.2rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.cart-remove {
  border: none;
  background: transparent;
  color: #dc2626;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-soft);
}

.cart-summary {
  position: sticky;
  top: 5.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.cart-summary h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
}

.cart-summary-total {
  font-weight: 800;
  font-size: 1.05rem;
  border-top: 1px solid var(--border);
  margin-top: 0.35rem;
  padding-top: 0.75rem;
}

.cart-summary-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 0.75rem 0 0;
}

.cart-summary-note-secondary {
  margin-top: 0.35rem;
}

.checkout-form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.checkout-form h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.checkout-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.checkout-form .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
}

.checkout-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0.75rem 0 0;
}

.checkout-error {
  font-size: 0.88rem;
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  margin: 0.75rem 0 0;
}

.label-optional {
  font-weight: 400;
  opacity: 0.7;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(6, 182, 212, 0.18), transparent 40%),
    linear-gradient(160deg, var(--bg), var(--bg-soft));
  color: #fff;
  padding: 4rem 0 4.5rem;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 18, 34, 0.97) 0%, rgba(12, 18, 34, 0.88) 42%, rgba(12, 18, 34, 0.45) 68%, rgba(12, 18, 34, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-phones {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-phone {
  position: absolute;
  border-radius: 28px;
  object-fit: cover;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0.92;
}

.hero-phone-1 {
  width: min(280px, 34vw);
  height: auto;
  aspect-ratio: 3 / 4;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(-6deg);
  animation: heroFloat1 7s ease-in-out infinite;
}

.hero-phone-2 {
  width: min(220px, 28vw);
  height: auto;
  aspect-ratio: 3 / 4;
  top: 18%;
  right: 28%;
  transform: rotate(8deg);
  opacity: 0.78;
  animation: heroFloat2 8s ease-in-out infinite;
}

.hero-phone-3 {
  width: min(200px, 24vw);
  height: auto;
  aspect-ratio: 3 / 4;
  bottom: 8%;
  right: 22%;
  transform: rotate(-12deg);
  opacity: 0.72;
  animation: heroFloat3 9s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50% { transform: translateY(calc(-50% - 10px)) rotate(-4deg); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-8px); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(8px); }
}

.hero-layout {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 680px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-accent {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.4);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Trust strip */

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

h3 {
  letter-spacing: -0.01em;
}

/* Cards */

.feature-grid,
.steps-grid,
.payout-grid,
.brand-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.payout-grid,
.brand-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--surface-muted);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.step-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.payout-card {
  text-align: center;
}

.payout-bonus {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--success);
}

.brand-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.brand-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.model-group h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin: 1.5rem 0 0.65rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.chip:hover {
  background: var(--brand-light);
  border-color: var(--brand);
}

/* CTA band */

.cta-band {
  background: linear-gradient(135deg, var(--bg), var(--bg-soft));
  color: #fff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.cta-band h2 {
  margin-top: 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  margin: 0 auto 1.25rem;
}

/* FAQ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* SEO content */

.seo-content {
  max-width: 72ch;
  color: var(--text-soft);
}

.seo-content h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 2rem;
}

.seo-content h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 1.25rem;
}

/* Footer */

.site-footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
}

.footer-partner {
  margin-top: 0.75rem !important;
  font-size: 0.86rem !important;
  color: rgba(255, 255, 255, 0.62) !important;
}

.footer-partner a {
  color: #67e8f9;
  font-weight: 600;
}

.footer-partner a:hover {
  color: #fff;
}

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.partner-tag {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
}

.partner-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.partner-copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  max-width: 68ch;
}

.partner-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.partner-list li {
  margin-bottom: 0.35rem;
}

.footer-col h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Wizard */

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

.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

.wizard-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.wizard-progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.wizard-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
}

.wizard-progress-step.is-active,
.wizard-progress-step.is-done {
  background: var(--brand);
}

.wizard-step-hint {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.wizard-search {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.wizard-search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.wizard-results,
.wizard-option-grid {
  display: grid;
  gap: 0.45rem;
}

.wizard-results {
  max-height: 340px;
  overflow-y: auto;
}

.wizard-result-btn,
.wizard-option-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.wizard-result-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.wizard-result-btn:hover,
.wizard-result-btn.is-selected,
.wizard-option-btn:hover,
.wizard-option-btn.is-selected {
  border-color: var(--brand);
  background: var(--brand-light);
}

.wizard-result-brand {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wizard-option-btn strong {
  display: block;
  margin-bottom: 0.1rem;
}

.wizard-option-btn span {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.wizard-summary {
  position: sticky;
  top: 5.5rem;
  background: linear-gradient(160deg, var(--bg), var(--bg-soft));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.35rem;
}

.wizard-summary h2 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.wizard-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-summary-label {
  color: rgba(255, 255, 255, 0.65);
}

.wizard-quote-price {
  margin: 1rem 0 0.35rem;
  font-size: 2.1rem;
  font-weight: 800;
  color: #67e8f9;
  letter-spacing: -0.02em;
}

.wizard-quote-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.wizard-quote-form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wizard-quote-form label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.wizard-quote-form input,
.wizard-quote-form select,
.wizard-quote-form textarea {
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
}

.wizard-quote-form input::placeholder,
.wizard-quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.wizard-quote-form .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
}

.wizard-empty {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.wizard-hidden {
  display: none !important;
}

.page-intro {
  padding: 2rem 0 0;
}

.page-intro h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text);
}

.page-intro p {
  color: var(--text-soft);
  max-width: 60ch;
}

/* Shop / sales */

.shop-page {
  padding-bottom: 2rem;
}

.shop-hero {
  background: linear-gradient(160deg, var(--bg), var(--bg-soft));
  color: #fff;
  padding: 2.5rem 0;
}

.shop-hero h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.shop-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
}

.shop-trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.shop-trust-item strong {
  color: var(--text);
}

.deal-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.deal-banner {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.deal-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.deal-banner-apple {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 40%),
    linear-gradient(135deg, #1e293b, #334155);
}

.deal-banner-samsung {
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.25), transparent 40%),
    linear-gradient(135deg, #0f172a, #1e3a5f);
}

.deal-banner-content {
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.deal-banner-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin: 0 0 0.35rem;
}

.deal-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  color: #fff;
}

.deal-banner-content > p {
  margin: 0 0 1rem;
  opacity: 0.85;
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-image-link {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-muted);
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover .product-image-link img {
  transform: scale(1.03);
}

.product-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.product-name {
  margin: 0.15rem 0 0.25rem;
  font-size: 1.05rem;
}

.product-name a {
  color: var(--text);
  text-decoration: none;
}

.product-name a:hover {
  color: var(--brand);
}

.product-spec {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.product-meta-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
}

.product-meta-new {
  background: #d1fae5;
  color: #065f46;
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.product-price-row-lg .product-price {
  font-size: 1.8rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.product-was {
  font-size: 0.88rem;
  color: var(--text-soft);
  text-decoration: line-through;
}

.product-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
}

.btn-product-enquire {
  width: 100%;
  margin-top: auto;
  font-size: 0.85rem;
  padding: 0.6rem 0.85rem;
}

.section-cta-row {
  text-align: center;
  margin: 1.75rem 0 0;
}

.price-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-band-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.2s ease;
}

.price-band-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
}

.price-band-card h3 {
  margin: 0 0 0.35rem;
}

.price-band-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.category-card span {
  font-size: 1.35rem;
}

.category-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
}

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

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex: 1;
}

.shop-search,
.shop-filters select {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--surface);
}

.shop-search {
  min-width: 200px;
  flex: 1;
}

.shop-count {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 600;
}

.price-band-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.price-band-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
}

.product-stock-reserved {
  color: #d97706;
}

.shop-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-soft);
  padding: 2rem 1rem;
}

.shop-empty {
  grid-column: 1 / -1;
  color: var(--text-soft);
  text-align: center;
  padding: 2rem;
}

.product-detail-wrap {
  margin-bottom: 2rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.product-detail-image img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: 1.8rem;
  color: var(--text);
  margin: 0.25rem 0 0.5rem;
}

.product-detail-list {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.product-detail-list li {
  margin-bottom: 0.35rem;
}

.product-detail-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 1rem;
}

.modal-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: min(420px, 100%);
  position: relative;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-soft);
}

.modal-lead {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

.modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.modal-form input {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.modal-form .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .feature-grid,
  .payout-grid,
  .brand-grid,
  .trust-grid,
  .deal-banner-grid,
  .price-band-grid,
  .category-grid,
  .shop-trust-grid,
  .product-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .wizard-summary {
    position: static;
  }

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

  .cart-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav-wrap {
    position: relative;
  }

  .btn-header {
    display: none;
  }

  .header-actions .cart-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.65rem;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 80px 1fr;
  }

  .feature-grid,
  .steps-grid,
  .payout-grid,
  .brand-grid,
  .trust-grid,
  .footer-grid,
  .deal-banner-grid,
  .price-band-grid,
  .category-grid,
  .shop-trust-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero-phone-1 {
    width: min(180px, 42vw);
    right: -4%;
    opacity: 0.55;
  }

  .hero-phone-2 {
    width: min(140px, 34vw);
    right: 18%;
    top: 10%;
    opacity: 0.4;
  }

  .hero-phone-3 {
    width: min(120px, 30vw);
    right: 8%;
    bottom: 4%;
    opacity: 0.35;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(12, 18, 34, 0.94) 0%, rgba(12, 18, 34, 0.82) 55%, rgba(12, 18, 34, 0.7) 100%);
  }
}
