:root {
  --bg: #0a0a0d;
  --bg-alt: #131318;
  --surface: #1a1a22;
  --surface-2: #212129;
  --border: #2c2c36;
  --text: #f5f5f7;
  --text-muted: #9b9ba8;
  --text-faint: #6b6b78;
  --magenta: #ff2d95;
  --purple: #8b2ff5;
  --gradient: linear-gradient(135deg, var(--magenta), var(--purple));
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -20px rgba(139, 47, 245, 0.35);
  --max-w: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: 0 24px 60px -18px rgba(255, 45, 149, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--magenta);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-eyebrow {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.brand-mark {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.icon-btn:hover {
  border-color: var(--magenta);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(139, 47, 245, 0.24), transparent 70%);
  pointer-events: none;
}

.hero::before,
.hero::after {
  animation: heroGlow 9s ease-in-out infinite;
}

.hero::after {
  animation-delay: -4.5s;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.hero-inner>* {
  opacity: 0;
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-inner>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-inner>*:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-inner>*:nth-child(3) {
  animation-delay: 0.27s;
}

.hero-inner>*:nth-child(4) {
  animation-delay: 0.38s;
}

.trust-row {
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.48s;
  opacity: 0;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual-wrap {
  position: absolute;
  top: 200px;
  right: 30px;
  z-index: 1;
  width: 550px;
  max-width: 38vw;
  opacity: 0;
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.32s;
}

.hero-visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
  animation: floatY 6s ease-in-out infinite;
  animation-delay: 1.1s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1100px) {
  .hero-visual-wrap {
    display: none;
  }
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat strong {
  font-size: 26px;
  font-weight: 800;
}

.trust-stat span {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
}

/* ---------- Section shells ---------- */
section {
  padding: 90px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
}

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

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 45, 149, 0.18), transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.page-header p {
  position: relative;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 16px;
}

.breadcrumb a:hover {
  color: var(--magenta);
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 149, 0.4);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .icon-badge {
  transform: scale(1.1) rotate(-4deg);
}

/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-photo {
  margin: -32px -32px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .service-photo img {
  transform: scale(1.06);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 22px;
}

.service-price {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-price small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Stats band */
.stats-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: 34px;
  font-weight: 800;
}

.stat-label {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* CTA banner */
.cta-banner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-banner .btn-outline {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-banner .btn-outline:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* ---------- Forms ---------- */
.auth-shell {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.auth-tabs {
  display: flex;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 30px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border: none;
  background: transparent;
}

.auth-tab.active {
  background: var(--gradient);
  color: #fff;
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--magenta);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-hint {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
}

.field-error {
  font-size: 12px;
  color: var(--magenta);
  margin-top: 6px;
  display: none;
}

.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-msg.show {
  display: block;
}

.form-msg.success {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-msg.error {
  background: rgba(255, 45, 149, 0.1);
  color: #ff6bb0;
  border: 1px solid rgba(255, 45, 149, 0.3);
}

/* ---------- Cart ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  align-items: start;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.cart-item .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-info span {
  font-size: 13px;
  color: var(--text-faint);
}

.cart-item-price {
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
}

.cart-remove {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-faint);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-remove:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.summary-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin: 16px 0 24px;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-state .icon-badge {
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  font-size: 30px;
}

.empty-state h3 {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 10px;
}

/* ---------- Checkout ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.bank-card {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bank-card .bank-name {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bank-card .bank-num {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.copy-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.copy-btn:hover {
  border-color: var(--magenta);
}

.notice {
  background: rgba(139, 47, 245, 0.1);
  border: 1px solid rgba(139, 47, 245, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
}

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

.success-box {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.about-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(200deg, rgba(255, 45, 149, 0.5), rgba(10, 10, 13, 0.75) 75%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%);
  z-index: 1;
}

.about-visual .mark {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.value-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 17px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-info-row .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 16px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-row h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-row p,
.contact-info-row a {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--magenta);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.social-row a:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--magenta);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Motion: scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-inner>*,
  .trust-row {
    opacity: 1;
    animation: none;
  }

  .hero::before,
  .hero::after {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-grid,
  .contact-layout,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

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

  .summary-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 80px 0 60px;
  }

  .cta-banner {
    padding: 44px 24px;
  }
}