/* VaultGaming – Steam Deck Pre-Order Shop
   Mobile First Stylesheet */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg: #0a0c0f;
  --card: #1a1e26;
  --card-hover: #1f2430;
  --border: #2e333b;
  --accent: #4b9eff;
  --accent-dark: #2d7dd9;
  --accent-glow: rgba(75, 158, 255, 0.25);
  --text: #ffffff;
  --text-muted: #8b95a5;
  --text-dim: #5a6272;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.2s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 0 24px var(--accent-glow);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text);
}

.section-title span {
  color: var(--accent);
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo span {
  color: var(--accent);
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-switch:hover {
  border-color: var(--accent);
  color: var(--text);
}

.lang-switch .flag {
  font-size: 1rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
  color: #fff;
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

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

.btn-outline:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-xl {
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
}

.btn:disabled,
.btn.loading {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.btn .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.loading .spinner {
  display: block;
}

.btn.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  padding: 5rem 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75, 158, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(75, 158, 255, 0.12);
  border: 1px solid rgba(75, 158, 255, 0.35);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-greeting {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.hero-image-wrap {
  margin-top: 3.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 7%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 7%, black 82%, transparent 100%);
  animation: heroFloat 7s ease-in-out infinite;
}

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

/* ============================================================
   Countdown Timer
   ============================================================ */
.countdown-wrapper {
  margin: 2rem 0;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-digit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent);
  min-width: 3rem;
  text-align: center;
  line-height: 1;
}

.countdown-unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.countdown-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ============================================================
   Variant Cards
   ============================================================ */
.variants-section {
  position: relative;
  overflow: hidden;
}

.variants-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/variants-bg.png') center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.variants-section .container {
  position: relative;
  z-index: 1;
}

.variants-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.variant-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  user-select: none;
}

.variant-card:hover {
  border-color: rgba(75, 158, 255, 0.5);
  transform: scale(1.01);
  background: var(--card-hover);
}

.variant-card.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  background: var(--card-hover);
}

.variant-card.sold-out {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.variant-card.sold-out:hover {
  border-color: var(--border);
  transform: none;
  background: var(--card);
}

.sold-out-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--text-muted);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bundle-variant-tab.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.variant-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.variant-badge.popular {
  background: var(--warning);
  color: #000;
}

.variant-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.variant-specs {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.variant-specs li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.variant-specs li::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.7rem;
}

.variant-specs li.spec-included {
  color: var(--success);
  font-weight: 600;
}

.variant-specs li.spec-included::before {
  content: '✓';
  color: var(--success);
}

.variant-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.variant-price .price-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.variant-price .price-deposit {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.variant-check {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.variant-card.active .variant-check {
  background: var(--accent);
  border-color: var(--accent);
}

.variant-check::after {
  content: '✓';
  font-size: 0.7rem;
  color: #fff;
  display: none;
}

.variant-card.active .variant-check::after {
  display: block;
}

/* ============================================================
   Accessories Section
   ============================================================ */
.accessories-section {
  padding: 4rem 0;
}

.accessories-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: -1.25rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.accessories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.accessory-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}

.accessory-card:hover {
  border-color: rgba(75, 158, 255, 0.5);
  background: var(--card-hover);
}

.accessory-icon {
  font-size: 2rem;
  line-height: 1;
}

.accessory-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.accessory-specs {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex: 1;
}

.accessory-specs li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.accessory-specs li::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.accessory-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

@media (min-width: 640px) {
  .accessories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Pre-Order CTA Block
   ============================================================ */
.preorder-cta {
  text-align: center;
  padding: 3rem 0;
}

.preorder-cta-inner {
  background: linear-gradient(135deg, var(--card) 0%, rgba(75, 158, 255, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.preorder-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 0.5rem;
}

.preorder-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.preorder-btn-wrap {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.preorder-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.bonus-badge .bonus-icon {
  font-size: 1rem;
}

/* ============================================================
   Trust Badges
   ============================================================ */
.trust-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.trust-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   Feature Grid
   ============================================================ */
.features-section {
  padding: 3.5rem 0;
}

.features-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(75, 158, 255, 0.4);
  transform: translateY(-3px);
}

.feature-card-img-wrap {
  height: 200px;
  overflow: hidden;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-img {
  transform: scale(1.05);
}

.feature-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  gap: 0.85rem;
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(75, 158, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   Controls Split Section
   ============================================================ */
.controls-section {
  padding: 0;
}

.controls-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.controls-image-wrap {
  overflow: hidden;
  max-height: 420px;
}

.controls-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.controls-content {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
}

.controls-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.controls-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.controls-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.controls-spec-tag {
  background: rgba(75, 158, 255, 0.1);
  border: 1px solid rgba(75, 158, 255, 0.25);
  color: var(--accent);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .controls-inner {
    grid-template-columns: 1fr 1fr;
  }

  .controls-image-wrap {
    max-height: none;
    min-height: 400px;
  }

  .controls-content {
    padding: 3rem 3.5rem;
  }
}

/* ============================================================
   Availability Bar
   ============================================================ */
.availability-section {
  padding: 2rem 0;
}

.availability-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.availability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.availability-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.availability-count {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.progress-bar {
  height: 10px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #22c55e);
  border-radius: 99px;
  transition: width 1s ease;
}

.availability-footer {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================
   Social Proof
   ============================================================ */
.social-proof {
  text-align: center;
  padding: 3rem 0;
}

.stars {
  font-size: 1.5rem;
  color: var(--warning);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.rating-text {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.discord-btn {
  background: #5865f2;
  color: #fff;
  border-color: #5865f2;
}

.discord-btn:hover {
  background: #4752c4;
  border-color: #4752c4;
  color: #fff;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-section {
  padding: 3.5rem 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(75, 158, 255, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   Newsletter Section
   ============================================================ */
.newsletter-section {
  padding: 3rem 0;
  background: rgba(255,255,255,0.02);
}

.newsletter-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  margin-bottom: 0.5rem;
}

.newsletter-inner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(75, 158, 255, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.newsletter-success {
  display: none;
  color: var(--success);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #25d366;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-whatsapp:hover {
  color: #1faa52;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   Thank You Page
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.thankyou-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.check-animation {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.thankyou-title {
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.order-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.88rem;
}

.order-summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.order-summary-row .label {
  color: var(--text-muted);
}

.order-summary-row .value {
  font-weight: 600;
}

.next-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.next-steps h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.next-steps ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.next-steps ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.next-steps ol li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Notification Toast
   ============================================================ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 999;
  transition: transform 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.toast-success {
  border-color: var(--success);
  color: var(--success);
}

.toast.toast-error {
  border-color: var(--error);
  color: var(--error);
}

/* ============================================================
   Decorative separator
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ============================================================
   Responsive: Tablet (≥ 600px)
   ============================================================ */
@media (min-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }

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

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
  }

  .newsletter-form .btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

/* ============================================================
   Responsive: Desktop (≥ 900px)
   ============================================================ */
@media (min-width: 900px) {
  .container {
    padding: 0 2rem;
  }

  section {
    padding: 5rem 0;
  }

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

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

  .countdown-digit {
    font-size: 2rem;
    min-width: 3.5rem;
    padding: 0.75rem 1.1rem;
  }

  .thankyou-card {
    padding: 3rem 2.5rem;
  }
}

/* ============================================================
   Responsive: Large Desktop (≥ 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .hero {
    padding: 6rem 0 4rem;
  }
}

/* ============================================================
   Utility classes
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Main Navigation (desktop + mobile)
   ============================================================ */
.main-nav {
  display: none;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
}

/* Hamburger toggle button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

/* Mobile nav open state */
.nav-open .main-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 12, 15, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: 0.25rem;
  z-index: 99;
}

.nav-open .main-nav a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.site-header {
  position: sticky;
}

/* ============================================================
   Page Hero (slim hero for subpages)
   ============================================================ */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(75,158,255,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .page-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  background: linear-gradient(135deg, #fff 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   Comparison Table
   ============================================================ */
.comparison-table {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  width: 28%;
}

.comparison-table th {
  background: var(--card);
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th.highlight {
  background: rgba(75, 158, 255, 0.12);
  color: var(--accent);
}

.comparison-table td {
  color: var(--text-muted);
}

.comparison-table td.highlight {
  background: rgba(75, 158, 255, 0.05);
  color: var(--text);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: var(--success);
}

.comparison-table .cross {
  color: var(--text-dim);
}

/* ============================================================
   Specs Table
   ============================================================ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 0.75rem 1rem;
}

.specs-table td:first-child {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 35%;
}

.specs-table td:last-child {
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   Legal Content
   ============================================================ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-placeholder {
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed var(--warning);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.5rem;
  color: var(--warning);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(75, 158, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form select option {
  background: var(--card);
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.cookie-text > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cookie-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cookie-cat input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-cat-label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
}

.cookie-cat-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.cookie-cat-badge {
  font-size: 0.72rem;
  color: var(--success);
  background: rgba(34,197,94,0.12);
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-actions .btn {
  white-space: nowrap;
  min-width: 160px;
  text-align: center;
}

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

.btn-ghost:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--text-muted);
}

.cookie-legal {
  max-width: 1200px;
  margin: 0.75rem auto 0;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: right;
}

.cookie-legal a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    width: 100%;
    min-width: unset;
  }
  .cookie-legal {
    text-align: center;
  }
}

/* ============================================================
   Footer Grid (4-column)
   ============================================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============================================================
   Gallery Grid
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   About Team
   ============================================================ */
.about-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-team {
    grid-template-columns: 1fr 1fr;
  }
}

.about-team-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid var(--border);
}

.about-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-text h2 {
  margin-bottom: 1rem;
}

.about-team-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   Shipping Table
   ============================================================ */
.shipping-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.shipping-table th,
.shipping-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.shipping-table th {
  background: var(--card);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.shipping-table td {
  color: var(--text-muted);
}

.shipping-table tr:last-child td {
  border-bottom: none;
}

.shipping-table .free {
  color: var(--success);
  font-weight: 600;
}

/* ============================================================
   Info Cards
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   Product Detail Cards (Accessories on product page)
   ============================================================ */
.product-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.product-detail-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-detail-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-detail-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-detail-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   404 Page
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.error-page-inner {
  max-width: 500px;
}

.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 60px var(--accent-glow);
  margin-bottom: 0.5rem;
}

.error-page h1 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.error-page .btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Product Image Carousel
   ============================================================ */
.product-carousel-wrap {
  margin: 0 calc(-1 * var(--container-pad, 1rem));
}

@media (min-width: 1200px) {
  .product-carousel-wrap {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }
}

.carousel {
  position: relative;
  background: var(--card);
  user-select: none;
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  flex-shrink: 0;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn--left  { left: 0.75rem; }
.carousel-btn--right { right: 0.75rem; }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0;
  background: var(--card);
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ============================================================
   Accessories 2-column grid (desktop)
   ============================================================ */
.accessories-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .accessories-grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ============================================================
   4-Image Gallery Grid (product page)
   ============================================================ */
.gallery-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-span2 {
  grid-column: span 2;
}

@media (min-width: 640px) {
  .gallery-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-span2 {
    grid-column: span 2;
  }
}

/* Reversed lifestyle section (image right, text left) */
@media (min-width: 768px) {
  .lifestyle-section--reverse {
    direction: rtl;
  }
  .lifestyle-section--reverse > * {
    direction: ltr;
  }
}

/* Final CTA block */
.product-final-cta {
  text-align: center;
  padding: 3rem 1rem 4rem;
}
.product-final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.product-final-cta p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ============================================================
   Product Images
   ============================================================ */

/* Accessory card image (index page) */
.accessory-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg);
  padding: 1rem;
}

/* Product detail card image (product page) */
.product-detail-img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* Lifestyle section (gaming on the go) */
.lifestyle-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: center;
}

@media (min-width: 768px) {
  .lifestyle-section {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.lifestyle-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.lifestyle-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.lifestyle-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.lifestyle-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lifestyle-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lifestyle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lifestyle-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lifestyle-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Info card image (what's in the box) */
.info-card-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: var(--bg);
}

/* ============================================================
   PDP Hero
   ============================================================ */
.pdp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.pdp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pdp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,12,15,0.55) 0%, rgba(10,12,15,0.88) 100%);
  z-index: 1;
}

.pdp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1rem 5rem;
  width: 100%;
}

.pdp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(75, 158, 255, 0.12);
  border: 1px solid rgba(75, 158, 255, 0.35);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pdp-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.pdp-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PDP Highlights (3-col)
   ============================================================ */
.pdp-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pdp-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdp-highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

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

.pdp-highlight-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pdp-highlight-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.pdp-highlight-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PDP Lifestyle Gallery
   ============================================================ */
.pdp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pdp-gallery__grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
  }

  .pdp-gallery__item--tall {
    grid-row: span 2;
  }
}

.pdp-gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  line-height: 0;
}

.pdp-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 0.4s ease;
}

.pdp-gallery__item:hover .pdp-gallery__img {
  transform: scale(1.04);
}

/* ============================================================
   PDP Ecosystem
   ============================================================ */
.pdp-eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pdp-eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .pdp-eco-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pdp-eco-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: var(--transition);
}

.pdp-eco-card:hover {
  border-color: var(--accent);
}

.pdp-eco-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 28px var(--accent-glow);
}

.pdp-eco-card--included {
  opacity: 0.7;
}

.pdp-eco-card__img {
  height: 160px;
  width: 100%;
  object-fit: contain;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.pdp-eco-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(75,158,255,0.15);
  border: 1px solid rgba(75,158,255,0.4);
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pdp-eco-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.pdp-eco-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.pdp-eco-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.pdp-variant-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pdp-variant-tab {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.pdp-variant-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.pdp-variant-tab.active {
  border-color: var(--accent);
  background: rgba(75,158,255,0.1);
  color: var(--accent);
}

/* ============================================================
   PDP Bundle
   ============================================================ */
.pdp-bundle__inner {
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(75,158,255,0.1);
}

.pdp-bundle__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pdp-bundle__title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.pdp-bundle__desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.bundle-variant-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.bundle-variant-tab {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.bundle-variant-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.bundle-variant-tab.active {
  border-color: var(--accent);
  background: rgba(75,158,255,0.1);
  color: var(--accent);
}

.pdp-bundle__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pdp-bundle__item-tag {
  background: rgba(75,158,255,0.08);
  border: 1px solid rgba(75,158,255,0.25);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pdp-bundle__pricing {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.pdp-bundle__price-orig {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.pdp-bundle__price-sale {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.pdp-bundle__saving {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--success);
}

/* ============================================================
   PDP Specs (native details accordion)
   ============================================================ */
.pdp-specs__group {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.pdp-specs__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  user-select: none;
}

.pdp-specs__summary::-webkit-details-marker {
  display: none;
}

.pdp-specs__summary::after {
  content: '›';
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  line-height: 1;
}

.pdp-specs__group[open] .pdp-specs__summary::after {
  transform: rotate(90deg);
}

.pdp-specs__body {
  padding: 0 1.5rem 1.25rem;
}

/* ============================================================
   PDP Reviews
   ============================================================ */
.pdp-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pdp-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdp-review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdp-review-card__stars {
  color: var(--warning);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.pdp-review-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.pdp-review-card__author {
  font-weight: 700;
  font-size: 0.875rem;
}

.pdp-review-card__meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.pdp-reviews__aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pdp-reviews__stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.pdp-reviews__score {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pdp-guarantee {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
}

/* ============================================================
   PDP Sticky Bar
   ============================================================ */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.pdp-sticky-bar.visible {
  transform: translateY(0);
}

.pdp-sticky-bar__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.pdp-sticky-bar__model {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-sticky-bar__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

/* ============================================================
   PDP What's in the Box grid override
   ============================================================ */
.pdp-inbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 600px) {
  .pdp-inbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pdp-inbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   Mobile Critical Fixes
   ============================================================ */

/* Prevent horizontal scroll (hero image uses 100vw trick).
   Safari fix: html+body together prevents body overflow from propagating
   to the viewport, which would block all child horizontal scroll containers. */
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}

/* Hide header CTA button on mobile — hamburger nav covers it */
@media (max-width: 767px) {
  .header-actions .btn-sm {
    display: none;
  }
}

/* Toast: allow text to wrap, prevent overflow */
.toast {
  white-space: normal;
  max-width: min(90vw, 380px);
  text-align: center;
  line-height: 1.4;
}

/* Allow long button text to wrap on tiny phones (< 380px) */
@media (max-width: 380px) {
  .btn-lg,
  .btn-xl {
    white-space: normal;
    line-height: 1.3;
  }
}

/* Hero: reduce excessive top padding on small phones */
@media (max-width: 480px) {
  .hero {
    padding-top: 2.5rem;
  }
  .pdp-hero__content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

/* Preorder CTA: tighter padding on small phones */
@media (max-width: 480px) {
  .preorder-cta-inner {
    padding: 1.75rem 1.25rem;
  }
  .variant-card {
    padding: 1.25rem 1rem;
  }
  .page-hero {
    padding: 2.5rem 0 2rem;
  }
}

/* Safe area insets for bottom-fixed UI (iPhone home indicator) */
.pdp-sticky-bar {
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}
.cookie-banner {
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

/* Footer: single column on very small screens */
@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Payment method lists: single column on mobile (overrides inline columns:2) */
.payment-list {
  columns: 1;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
@media (min-width: 600px) {
  .payment-list {
    columns: 2;
    gap: 1rem;
  }
}

/* Larger FAQ touch targets (min 44px) */
.faq-question {
  min-height: 52px;
}

/* Carousel dots: larger hit area */
.carousel-dot {
  padding: 5px;
  width: 7px;
  height: 7px;
  box-sizing: content-box;
}

/* Reviews aggregate: wrap on narrow screens */
.pdp-reviews__aggregate {
  flex-wrap: wrap;
}

/* Guarantee text: better line height */
.pdp-guarantee {
  line-height: 1.7;
}

/* Specs table: allow cell text to wrap */
.specs-table td {
  white-space: normal;
}

/* ============================================================
   Variants Grid: 2-column intermediate breakpoint (540–899px)
   ============================================================ */
@media (min-width: 540px) and (max-width: 899px) {
  .variants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .variants-grid .variant-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   Comparison Table Wrapper (mobile scroll)
   ============================================================ */
.compare-section {
  padding: var(--section-pad) 0;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
}

/* ============================================================
   Viewing Signal ("X people viewing")
   ============================================================ */
.viewing-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.viewing-signal .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================================
   Bundle Section (on index pages)
   ============================================================ */
.bundle-section {
  padding: var(--section-pad) 0;
  background: var(--card);
}

/* ============================================================
   Exit-Intent Modal
   ============================================================ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.exit-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.exit-modal__box {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  z-index: 1;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.exit-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.exit-modal__close:hover {
  color: var(--text);
}

.exit-modal__badge {
  display: inline-block;
  background: rgba(75, 158, 255, 0.15);
  color: var(--accent);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.exit-modal__box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.exit-modal__box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.exit-countdown {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.75rem 0 1.5rem;
  letter-spacing: 0.05em;
}

.exit-modal .btn {
  width: 100%;
}

.exit-modal__dismiss {
  display: block;
  margin: 1rem auto 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.exit-modal__dismiss:hover {
  color: var(--text-muted);
}

/* ============================================================
   Post-Purchase Upsell (thank-you pages)
   ============================================================ */
.thankyou-upsell {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.thankyou-upsell h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.thankyou-upsell p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.thankyou-upsell .accessory-buy-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  white-space: normal;
  line-height: 1.3;
}

/* ============================================================
   Thank-You Page: Mobile Optimisations
   ============================================================ */
@media (max-width: 480px) {
  .thankyou-page {
    padding: 1rem 0.5rem;
    align-items: flex-start;
  }

  .thankyou-card {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .check-animation {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }

  .order-summary-row {
    flex-wrap: wrap;
    gap: 0.15rem 0.5rem;
  }

  .order-summary-row .value {
    word-break: break-all;
    max-width: 100%;
  }

  .share-buttons {
    flex-direction: column;
    gap: 0.625rem;
  }

  .share-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius);
  }

  #share-twitter {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  #share-twitter:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
  }

  #share-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
  }

  #share-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
  }

  .thankyou-upsell {
    padding: 1.25rem 1rem;
  }
}
