/*
Theme Name: Sapphire IPTV
Theme URI: https://sapphireiptv.com
Author: Sapphire IPTV
Description: Premium white-purple IPTV theme inspired by Smartiflix — full WooCommerce integration.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: sapphire_iptv
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:           #ffffff;
  --bg2:          #f8f5ff;
  --bg3:          #f2ecff;
  --surface:      #ffffff;
  --surface2:     #faf7ff;
  --border:       rgba(123,47,247,0.18);
  --border-soft:  rgba(31,22,51,0.08);

  --purple:       #7b2ff7;
  --purple-light: #8a3ff5;
  --purple-dim:   rgba(123,47,247,0.10);
  --purple-glow:  rgba(123,47,247,0.20);
  --violet:       #6c1de8;

  --text:         #1f1633;
  --text-muted:   #5f5575;
  --text-dim:     #817797;

  --grad-purple:  linear-gradient(135deg, #7b2ff7 0%, #9b59f5 100%);
  --grad-card:    linear-gradient(145deg, #ffffff 0%, #f8f5ff 100%);
  --grad-hero:    radial-gradient(ellipse at 60% 40%, rgba(123,47,247,0.14) 0%, transparent 65%);
  --grad-section: radial-gradient(ellipse at 50% 0%, rgba(123,47,247,0.08) 0%, transparent 60%);

  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --font-head: 'Inter', 'DM Sans', sans-serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;

  --shadow-purple: 0 0 32px rgba(123,47,247,0.20), 0 0 64px rgba(123,47,247,0.08);
  --shadow-card:   0 8px 32px rgba(31,22,51,0.10), 0 1px 0 rgba(255,255,255,0.85) inset;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--violet); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
em { font-style: normal; color: var(--purple-light); }

/* ============================================================
   LAYOUT
   ============================================================ */
.sh-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sh-section { padding: 90px 0; position: relative; }
.sh-section--alt { background: var(--bg2); }
.sh-section--dark { background: var(--bg3); }

.sh-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.sh-section-header { text-align: center; margin-bottom: 56px; }
.sh-section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.sh-btn--primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123,47,247,0.4);
}
.sh-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(123,47,247,0.55); color:#fff; }
.sh-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(123,47,247,0.22);
}
.sh-btn--outline:hover { border-color: var(--purple-light); color: var(--purple-light); }
.sh-btn--ghost {
  background: rgba(123,47,247,0.12);
  color: var(--purple-light);
  border: 1px solid var(--border);
}
.sh-btn--ghost:hover { background: rgba(123,47,247,0.16); color: var(--violet); }
.sh-btn--lg { padding: 16px 36px; font-size: 1rem; }
.sh-btn--sm { padding: 9px 20px; font-size: 0.83rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.sh-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
  font-size: 0.77rem;
  color: var(--text-muted);
  transition: transform .3s;
}
.sh-topbar__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sh-topbar__right { color: var(--text-dim); }
@media(max-width:768px){ .sh-topbar__right { display:none; } }

/* ============================================================
   HEADER
   ============================================================ */
.sh-header {
  position: fixed;
  top: 37px; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background .3s, top .3s, box-shadow .3s;
}
.sh-header.scrolled {
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.sh-header__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.sh-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.sh-logo__icon {
  width: 34px; height: 34px;
  background: var(--grad-purple);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 16px rgba(123,47,247,0.5);
}
.sh-logo__text {
  font-size: 1.35rem; font-weight: 800;
  color: var(--text); letter-spacing: 0.02em;
}
.sh-logo__text span { color: var(--purple-light); }
.sh-nav { display: flex; align-items: center; gap: 2px; }
.sh-nav a {
  padding: 8px 14px; font-size: 0.87rem; font-weight: 500;
  color: var(--text-muted); border-radius: 8px; transition: all .2s;
}
.sh-nav a:hover { color: var(--text); background: rgba(123,47,247,0.06); }
.sh-header__cta { display: flex; align-items: center; gap: 10px; }
.sh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.sh-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.sh-mobile-menu {
  display: none; position: fixed; top: 105px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 28px; z-index: 999;
  flex-direction: column; gap: 2px;
}
.sh-mobile-menu.open { display: flex; }
.sh-mobile-menu a {
  padding: 14px 16px; font-size: 0.95rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.sh-hero {
  min-height: 100vh;
  padding-top: 109px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.sh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(123,47,247,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(123,47,247,0.08) 0%, transparent 50%);
}
.sh-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,47,247,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,247,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.sh-hero__layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.sh-hero__left { }
.sh-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--purple-light);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.sh-hero__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--grad-purple);
  border-radius: 2px;
}
.sh-hero__left h1 { margin-bottom: 20px; font-weight: 800; }
.sh-hero__left p {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.sh-hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.sh-hero__trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.sh-hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
}
.sh-hero__trust-item img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }

/* Hero Right Card */
.sh-hero__right { position: relative; }
.sh-hero__card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(123,47,247,0.15);
}
.sh-hero__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,47,247,0.6), transparent);
}
.sh-hero__card-glow {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,247,0.25) 0%, transparent 70%);
  top: -60px; right: -60px; pointer-events: none;
}
.sh-hero__card-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin-bottom: 24px;
  overflow: hidden;
}
.sh-hero__card-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.sh-hero__card-stat {
  background: rgba(123,47,247,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.sh-hero__card-stat strong {
  display: block;
  font-size: 1.6rem; font-weight: 800;
  color: var(--purple-light); line-height: 1; margin-bottom: 4px;
}
.sh-hero__card-stat span { font-size: 0.78rem; color: var(--text-muted); }
.sh-hero__floating-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--grad-purple);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(123,47,247,0.5);
}

/* ============================================================
   DEVICE LOGOS BAR
   ============================================================ */
.sh-devices-bar {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 0;
}
.sh-devices-bar__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.sh-devices-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  opacity: 0.7; transition: opacity .2s;
}
.sh-devices-bar__item:hover { opacity: 1; }
.sh-devices-bar__item span { font-size: 1.4rem; }

/* ============================================================
   WHAT MAKES US DIFFERENT — SPLIT + CARDS
   ============================================================ */
.sh-diff-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 64px;
}
.sh-diff__left h2 { margin-bottom: 16px; }
.sh-diff__left p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.sh-diff__right {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.sh-diff__img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #faf7ff 0%, #f0e8ff 50%, #faf7ff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative; overflow: hidden;
}
.sh-diff__img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(123,47,247,0.35) 0%, transparent 65%);
}
.sh-diff-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.sh-diff-card {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.sh-diff-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-purple);
  opacity: 0; transition: opacity .3s;
}
.sh-diff-card:hover::before { opacity: 1; }
.sh-diff-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(31,22,51,0.10); }
.sh-diff-card__icon {
  width: 44px; height: 44px;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.sh-diff-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.sh-diff-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   HOW IT WORKS — 3 STEPS
   ============================================================ */
.sh-steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.sh-steps-row::before {
  content: '';
  position: absolute; top: 32px; left: calc(100%/6); right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--purple-light), var(--border), transparent);
}
.sh-step-card {
  text-align: center; padding: 40px 24px;
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position: relative;
}
.sh-step-card__num {
  width: 64px; height: 64px;
  background: var(--grad-purple);
  border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  box-shadow: 0 0 24px rgba(123,47,247,0.5);
  position: relative; z-index: 1;
}
.sh-step-card h3 { margin-bottom: 12px; }
.sh-step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   PRICING
   ============================================================ */
.sh-pricing-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 40px; flex-wrap: wrap;
}
.sh-pricing-tab {
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.87rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  font-family: var(--font-body);
  position: relative;
}
.sh-pricing-tab.active {
  background: var(--grad-purple);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 16px rgba(123,47,247,0.4);
}
.sh-pricing-tab .sh-tab-badge {
  position: absolute; top: -8px; right: -8px;
  background: #ff6b35; color: #fff;
  font-size: 0.6rem; font-weight: 700;
  padding: 2px 6px; border-radius: 100px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.sh-pricing-grid {
  display: none; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.sh-pricing-grid.active { display: grid; }
.sh-pricing-card {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative;
  transition: all .3s;
}
.sh-pricing-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(31,22,51,0.10); }
.sh-pricing-card--featured {
  border-color: var(--purple);
  background: linear-gradient(145deg, #faf7ff 0%, #f2ecff 100%);
  box-shadow: 0 0 0 1px var(--purple), 0 0 40px rgba(123,47,247,0.2);
}
.sh-pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-purple); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.sh-pricing-card__label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.sh-pricing-card__price { margin-bottom: 4px; }
.sh-pricing-card__price strong {
  font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1;
}
.sh-pricing-card__price span { font-size: 1rem; color: var(--text-muted); }
.sh-pricing-card__sub { font-size: 0.8rem; color: var(--purple-light); margin-bottom: 24px; min-height: 18px; }
.sh-pricing-card__features {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 9px;
}
.sh-pricing-card__features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--text-muted);
}
.sh-pricing-card__features li::before {
  content: '✓'; color: var(--purple-light);
  font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}

/* ============================================================
   SPLIT SECTIONS (devices, VOD, world)
   ============================================================ */
.sh-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.sh-split--reverse { direction: rtl; }
.sh-split--reverse > * { direction: ltr; }
.sh-split__text h2 { margin-bottom: 16px; }
.sh-split__text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.sh-split__text ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sh-split__text ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
}
.sh-split__text ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%; flex-shrink: 0;
}
.sh-split__visual {
  border-radius: var(--radius-xl);
  overflow: hidden; position: relative;
}
.sh-visual-box {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #faf7ff 0%, #f0e8ff 60%, #faf7ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.sh-visual-box::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123,47,247,0.3) 0%, transparent 70%);
}

/* ============================================================
   WHY CHOOSE — 4 CARDS
   ============================================================ */
.sh-why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.sh-why-card {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all .3s;
}
.sh-why-card:hover { border-color: var(--border); transform: translateY(-3px); }
.sh-why-card__icon {
  width: 52px; height: 52px;
  background: var(--purple-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.sh-why-card h3 { margin-bottom: 10px; }
.sh-why-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   SINGLE PLAN SPOTLIGHT
   ============================================================ */
.sh-spotlight {
  background: linear-gradient(135deg, #faf7ff 0%, #f8f5ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.sh-spotlight__left h2 { margin-bottom: 14px; }
.sh-spotlight__left p { color: var(--text-muted); line-height: 1.75; }
.sh-spotlight__card {
  background: var(--bg);
  border: 1px solid var(--purple);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 0 40px rgba(123,47,247,0.2);
}
.sh-spotlight__card .stars { color: var(--purple-light); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.sh-spotlight__card .plan-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.sh-spotlight__card .plan-price { font-size: 3.5rem; font-weight: 800; color: var(--text); line-height: 1; margin: 8px 0 20px; }
.sh-spotlight__card .plan-price span { font-size: 1.1rem; color: var(--text-muted); }
.sh-spotlight__card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.sh-spotlight__card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-muted);
}
.sh-spotlight__card ul li::before { content: '✓'; color: var(--purple-light); font-weight: 700; }

/* ============================================================
   FAQ — 2 COLUMN
   ============================================================ */
.sh-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.sh-faq-item { border-bottom: 1px solid var(--border-soft); }
.sh-faq-item:first-child, .sh-faq-item:nth-child(2) { border-top: 1px solid var(--border-soft); }
.sh-faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; cursor: pointer;
  text-align: left; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; color: var(--text); transition: color .2s;
}
.sh-faq-question:hover { color: var(--purple-light); }
.sh-faq-question__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--purple-light); transition: transform .3s;
}
.sh-faq-item.open .sh-faq-question__icon { transform: rotate(45deg); }
.sh-faq-answer {
  display: none; padding-bottom: 20px;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
}
.sh-faq-item.open .sh-faq-answer { display: block; }

/* ============================================================
   SUPPORT SECTION
   ============================================================ */
.sh-support-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.sh-support-card {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all .3s;
}
.sh-support-card:hover { border-color: var(--border); transform: translateY(-2px); }
.sh-support-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.sh-support-card h4 { margin-bottom: 8px; font-size: 1rem; }
.sh-support-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   REVIEWS
   ============================================================ */
.sh-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.sh-review-card {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .3s;
}
.sh-review-card:hover { border-color: var(--border); }
.sh-review-card__stars { color: var(--purple-light); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.sh-review-card__text { font-size: 0.9rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.sh-review-card__author { display: flex; align-items: center; gap: 12px; }
.sh-review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.sh-review-card__name { font-size: 0.88rem; font-weight: 600; }
.sh-review-card__loc { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.sh-cta-strip {
  text-align: center; padding: 90px 24px;
  position: relative; overflow: hidden;
}
.sh-cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(123,47,247,0.12) 0%, transparent 65%);
}
.sh-cta-strip > * { position: relative; z-index: 1; }
.sh-cta-strip h2 { margin-bottom: 16px; }
.sh-cta-strip p { color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }
.sh-cta-strip__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.sh-page-hero {
  padding: 180px 0 80px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,47,247,0.12) 0%, transparent 60%);
}
.sh-page-hero h1 { margin-bottom: 14px; }
.sh-page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

.sh-prose { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.sh-prose h2 { margin: 36px 0 14px; color: var(--purple-light); font-size: 1.3rem; }
.sh-prose h3 { margin: 24px 0 10px; font-size: 1.05rem; }
.sh-prose p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.sh-prose ul { margin: 12px 0 14px; display: flex; flex-direction: column; gap: 8px; }
.sh-prose ul li { color: var(--text-muted); font-size: 0.92rem; padding-left: 16px; position: relative; }
.sh-prose ul li::before { content: '›'; color: var(--purple-light); position: absolute; left: 0; }

.sh-form-group { margin-bottom: 18px; }
.sh-form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.sh-form-group input,
.sh-form-group textarea,
.sh-form-group select {
  width: 100%; background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 13px 15px;
  color: var(--text); font-family: var(--font-body); font-size: 0.92rem;
  outline: none; transition: border-color .2s;
}
.sh-form-group input:focus,
.sh-form-group textarea:focus,
.sh-form-group select:focus { border-color: var(--purple); }
.sh-form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.sh-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 28px;
}
.sh-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.sh-footer__brand p {
  color: var(--text-muted); font-size: 0.88rem;
  margin-top: 14px; line-height: 1.7; max-width: 260px;
}
.sh-footer__col h5 {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 18px; font-weight: 600;
}
.sh-footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.sh-footer__col ul li a { font-size: 0.87rem; color: var(--text-muted); transition: color .2s; }
.sh-footer__col ul li a:hover { color: var(--text); }
.sh-footer__bottom {
  border-top: 1px solid var(--border-soft); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.sh-footer__bottom p { font-size: 0.8rem; color: var(--text-dim); }
.sh-footer__bottom-links { display: flex; gap: 18px; }
.sh-footer__bottom-links a { font-size: 0.8rem; color: var(--text-dim); }
.sh-footer__bottom-links a:hover { color: var(--text-muted); }

/* ============================================================
   WHATSAPP
   ============================================================ */
.sh-whatsapp { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.sh-whatsapp a {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: #25d366; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 1.5rem; transition: all .3s;
}
.sh-whatsapp a:hover { transform: scale(1.1); }

/* ============================================================
   WOOCOMMERCE
   ============================================================ */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce #payment #place_order {
  background: var(--grad-purple) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(123,47,247,0.35) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px){
  .sh-footer__grid { grid-template-columns: 1fr 1fr; }
  .sh-nav, .sh-header__cta .sh-btn--outline { display: none; }
  .sh-hamburger { display: flex; }
  .sh-hero__layout { grid-template-columns: 1fr; }
  .sh-hero__right { display: none; }
  .sh-diff-layout { grid-template-columns: 1fr; }
  .sh-diff__right { display: none; }
  .sh-split { grid-template-columns: 1fr; }
  .sh-split--reverse { direction: ltr; }
  .sh-split__visual { display: none; }
  .sh-spotlight { grid-template-columns: 1fr; padding: 32px; }
  .sh-faq-grid { grid-template-columns: 1fr; }
  .sh-faq-item:nth-child(2) { border-top: none; }
  .sh-steps-row { grid-template-columns: 1fr; }
  .sh-steps-row::before { display: none; }
}
@media(max-width:640px){
  .sh-section { padding: 60px 0; }
  .sh-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .sh-footer__bottom { flex-direction: column; text-align: center; }
  .sh-hero { padding-top: 120px; }
  .sh-hero__card-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PRODUCT PAGE — sh-product-*
   ============================================================ */
.sh-product-hero {
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 70% 30%, rgba(123,47,247,0.14) 0%, transparent 60%);
}
.sh-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 32px;
}
.sh-breadcrumb a { color: var(--text-muted); }
.sh-breadcrumb a:hover { color: var(--purple-light); }
.sh-breadcrumb span { color: var(--text-dim); }

.sh-product-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 48px; align-items: start;
}

.sh-product-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-dim); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--purple-light);
  margin-bottom: 16px;
}
.sh-product-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple-light);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.sh-product-title { font-size: clamp(1.5rem,3vw,2.4rem); margin-bottom: 14px; font-weight: 800; }

.sh-product-stars {
  display: flex; align-items: center; gap: 10px;
  color: #f5c518; font-size: 1rem;
  margin-bottom: 24px;
}
.sh-product-stars span { color: var(--text-muted); font-size: 0.82rem; }

.sh-product-price-block { margin-bottom: 24px; }
.sh-product-price { display: flex; align-items: baseline; gap: 8px; }
.sh-product-price strong { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.sh-product-price span { font-size: 1rem; color: var(--text-muted); }
.sh-product-saving {
  display: inline-block; margin-top: 8px;
  background: rgba(123,47,247,0.12); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px;
  font-size: 0.82rem; color: var(--purple-light); font-weight: 600;
}

.sh-product-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.sh-pill {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.8rem; color: var(--text-muted);
}

.sh-product-features h3 { font-size: 1rem; margin-bottom: 16px; color: var(--text-muted); font-weight: 600; }
.sh-product-features ul { display: flex; flex-direction: column; gap: 10px; }
.sh-product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
}
.sh-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--purple-dim); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple-light); font-size: 0.7rem; font-weight: 700;
  flex-shrink: 0;
}

/* Order Card */
.sh-order-card {
  background: linear-gradient(145deg, #faf7ff, #f8f5ff);
  border: 1px solid var(--purple);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: 0 0 40px rgba(123,47,247,0.2), var(--shadow-card);
  position: sticky; top: 120px;
}
.sh-order-card__top { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--border-soft); margin-bottom: 24px; }
.sh-order-card__label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.sh-order-card__price { font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 6px; }
.sh-order-card__price span { font-size: 0.95rem; color: var(--text-muted); }
.sh-order-card__saving { font-size: 0.82rem; color: var(--purple-light); }

.sh-order-btn {
  width: 100%; justify-content: center; font-size: 1rem;
  padding: 16px; margin-bottom: 20px;
  border-radius: var(--radius);
}

.sh-order-card__trust { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sh-order-trust-item { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

.sh-order-card__paypal {
  text-align: center; padding: 16px;
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.sh-order-card__paypal span { font-size: 0.75rem; color: var(--text-muted); }
.sh-order-card__paypal strong { font-size: 1.1rem; color: #009cde; display: block; margin: 4px 0; }

.sh-order-steps { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.sh-order-step { display: flex; align-items: center; gap: 14px; }
.sh-order-step__n {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-purple); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff;
}
.sh-order-step strong { display: block; font-size: 0.88rem; }
.sh-order-step p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* WooCommerce form fields override */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 { display: none; }
.woocommerce-input-wrapper { width: 100%; }
.woocommerce form .form-row { margin-bottom: 16px; }
.woocommerce form .form-row label {
  display: block; font-size: 0.83rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 7px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%; background: var(--surface) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important; color: var(--text) !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important; outline: none !important;
  transition: border-color .2s !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus { border-color: var(--purple) !important; }
.woocommerce form .form-row.validate-required.woocommerce-invalid .input-text { border-color: #e53935 !important; }

/* ============================================================
   CHECKOUT PAGE — sh-checkout-*
   ============================================================ */
.sh-checkout-wrap { padding: 120px 0 80px; min-height: 100vh; }

.sh-checkout-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 56px;
}
.sh-checkout-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 100px;
}
.sh-checkout-step__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all .3s;
}
.sh-checkout-step span { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; }
.sh-checkout-step--done .sh-checkout-step__icon { background: var(--purple-dim); border-color: var(--purple); }
.sh-checkout-step--done span { color: var(--purple-light); }
.sh-checkout-step--active .sh-checkout-step__icon { background: var(--grad-purple); border-color: transparent; box-shadow: 0 0 16px rgba(123,47,247,0.4); }
.sh-checkout-step--active span { color: var(--text); }
.sh-checkout-progress__line { flex: 1; height: 2px; background: var(--border-soft); max-width: 80px; }
.sh-checkout-progress__line--done { background: var(--purple); }

.sh-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.sh-checkout-heading { font-size: 1.6rem; margin-bottom: 8px; }

.sh-checkout-section {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.sh-checkout-section-title { font-size: 1rem; margin-bottom: 20px; color: var(--text-muted); font-weight: 600; }

/* WooCommerce payment box override */
.woocommerce-checkout #payment {
  background: transparent !important;
  border-radius: var(--radius-lg) !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-soft) !important;
  border-radius: var(--radius) !important;
  padding: 16px !important;
}
.woocommerce-checkout #payment ul.payment_methods li label { color: var(--text) !important; }
.woocommerce-checkout #payment div.payment_box {
  background: var(--surface) !important;
  color: var(--text-muted) !important;
}
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--surface) !important; }
.woocommerce-checkout #payment .place-order { padding: 16px !important; }
.woocommerce-checkout #payment #place_order {
  width: 100% !important; font-size: 1.05rem !important;
  padding: 16px !important; border-radius: var(--radius) !important;
  background: var(--grad-purple) !important; color: #fff !important;
  font-family: var(--font-body) !important; font-weight: 700 !important;
  border: none !important; cursor: pointer !important;
  box-shadow: 0 4px 20px rgba(123,47,247,0.4) !important;
  transition: all .25s !important;
}
.woocommerce-checkout #payment #place_order:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 32px rgba(123,47,247,0.55) !important; }

/* Order Summary Panel */
.sh-checkout-summary {
  background: linear-gradient(145deg, #faf7ff, #f8f5ff);
  border: 1px solid var(--purple); border-radius: var(--radius-xl);
  padding: 28px; position: sticky; top: 120px;
  box-shadow: 0 0 40px rgba(123,47,247,0.15);
}
.sh-checkout-summary-title { font-size: 1.05rem; margin-bottom: 20px; }
.sh-checkout-product {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); margin-bottom: 20px;
}
.sh-checkout-product__icon {
  width: 48px; height: 48px; background: var(--purple-dim);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.sh-checkout-product__info { flex: 1; }
.sh-checkout-product__info strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.sh-checkout-product__info span { font-size: 0.78rem; color: var(--text-muted); }
.sh-checkout-product__price { font-size: 1.2rem; font-weight: 700; color: var(--purple-light); }

.sh-checkout-summary-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sh-checkout-feature { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-muted); }

.sh-checkout-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-top: 1px solid var(--border-soft);
  margin-bottom: 16px; font-size: 0.9rem; color: var(--text-muted);
}
.sh-checkout-total strong { font-size: 1.4rem; color: var(--text); }

.sh-checkout-trust {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.75rem; color: var(--text-dim); margin-bottom: 16px;
}

/* ============================================================
   THANK YOU PAGE — sh-thankyou-*
   ============================================================ */
.sh-thankyou {
  padding: 120px 0 80px; min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,47,247,0.12) 0%, transparent 55%);
  text-align: center;
}
.sh-thankyou__icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--purple-dim); border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 24px; position: relative;
  box-shadow: 0 0 40px rgba(123,47,247,0.3);
}
.sh-thankyou__icon-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(123,47,247,0.3);
  animation: ring-pulse 2s ease infinite;
}
@keyframes ring-pulse { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.1);opacity:1} }

.sh-thankyou__title { font-size: clamp(2rem,5vw,3rem); font-weight: 800; margin-bottom: 14px; }
.sh-thankyou__sub { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }

.sh-thankyou__box {
  display: inline-grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border-soft);
  border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 56px; max-width: 700px; width: 100%;
}
.sh-thankyou__detail {
  background: var(--surface); padding: 20px 16px; text-align: center;
}
.sh-thankyou__detail span { display: block; font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.sh-thankyou__detail strong { font-size: 0.95rem; color: var(--text); }

.sh-thankyou__steps { margin-bottom: 48px; text-align: center; }
.sh-thankyou__steps h2 { font-size: 1.6rem; margin-bottom: 32px; }
.sh-thankyou__steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto; text-align: left;
}
.sh-thankyou__step {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 24px 20px; position: relative;
}
.sh-thankyou__step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; margin-bottom: 14px;
  box-shadow: 0 0 12px rgba(123,47,247,0.4);
}
.sh-thankyou__step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.sh-thankyou__step p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin: 0; }

.sh-thankyou__cta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 640px; margin: 0 auto 40px;
}
.sh-thankyou__cta-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 28px 20px;
}
.sh-thankyou__cta-card--highlight {
  border-color: var(--purple);
  background: linear-gradient(145deg, #faf7ff, #f8f5ff);
  box-shadow: 0 0 30px rgba(123,47,247,0.15);
}
.sh-thankyou__cta-card h3 { margin-bottom: 8px; font-size: 1rem; }
.sh-thankyou__cta-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   RESPONSIVE — Product / Checkout / Thankyou
   ============================================================ */
@media(max-width:900px){
  .sh-product-layout { grid-template-columns: 1fr; }
  .sh-order-card { position: static; }
  .sh-checkout-layout { grid-template-columns: 1fr; }
  .sh-checkout-summary { position: static; order: -1; }
  .sh-thankyou__cta { grid-template-columns: 1fr; }
  .sh-thankyou__box { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .sh-checkout-progress { gap: 0; }
  .sh-checkout-step span { display: none; }
  .sh-thankyou__box { grid-template-columns: 1fr; }
}

/* ============================================================
   ORDER PAGE — Custom Form
   ============================================================ */
.sh-order-page { padding: 120px 0 80px; min-height: 100vh; }

.sh-order-form { }

.sh-form-section {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 20px;
}
.sh-form-section-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px; color: var(--text);
}
.sh-form-section-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-purple); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.sh-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.sh-field { margin-bottom: 16px; }
.sh-field:last-child { margin-bottom: 0; }
.sh-field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px;
}
.sh-required { color: var(--purple-light); }
.sh-field input,
.sh-field select,
.sh-field textarea {
  width: 100%; background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 13px 15px;
  color: var(--text); font-family: var(--font-body);
  font-size: 0.92rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.sh-field input:focus,
.sh-field select:focus,
.sh-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,47,247,0.15);
}
.sh-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b59f5' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.sh-field select option { background: var(--bg2); color: var(--text); }
.sh-field select optgroup { color: var(--purple-light); font-weight: 700; }
.sh-field textarea { resize: vertical; min-height: 90px; }
.sh-field-hint {
  font-size: 0.78rem; color: var(--text-dim); margin-top: 6px;
}
.sh-field-error {
  font-size: 0.78rem; color: #e53935; margin-top: 6px;
  display: none;
}
.sh-field--error input,
.sh-field--error select,
.sh-field--error textarea {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1) !important;
}
.sh-field--error .sh-field-error { display: block; }

/* Checkbox */
.sh-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.5;
}
.sh-checkbox-label input[type=checkbox] { display: none; }
.sh-checkbox-custom {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; margin-top: 1px;
}
.sh-checkbox-label input:checked + .sh-checkbox-custom {
  background: var(--grad-purple); border-color: transparent;
}
.sh-checkbox-label input:checked + .sh-checkbox-custom::after {
  content: '✓'; color: #fff; font-size: 0.75rem; font-weight: 700;
}

/* Submit button */
.sh-submit-btn {
  width: 100%; justify-content: center;
  font-size: 1.05rem; padding: 17px 24px;
  margin-top: 8px;
}
.sh-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }

.sh-form-error-msg {
  margin-top: 14px; padding: 14px 16px;
  background: rgba(229,57,53,0.1); border: 1px solid rgba(229,57,53,0.3);
  border-radius: var(--radius); color: #ff6b6b; font-size: 0.88rem;
}

@media(max-width:600px){
  .sh-form-row--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   SETUP GUIDE UPGRADE
   ============================================================ */
.sh-setup-nav,
.sh-home-setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.sh-setup-nav__item,
.sh-home-setup-card {
  display: block;
  text-decoration: none;
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .25s ease;
  color: var(--text);
}
.sh-setup-nav__item:hover,
.sh-home-setup-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(123,47,247,0.22);
}
.sh-setup-nav__item span,
.sh-home-setup-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,47,247,0.14);
  border: 1px solid var(--border);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.sh-setup-nav__item strong,
.sh-home-setup-card h3 {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.sh-home-setup-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.sh-home-setup-card span {
  color: var(--purple-light);
  font-size: 0.85rem;
  font-weight: 700;
}
.sh-setup-device {
  scroll-margin-top: 110px;
  margin-bottom: 64px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.96));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 70px rgba(31,22,51,0.08);
}
.sh-setup-device__header {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}
.sh-setup-device__icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--grad-purple);
  box-shadow: 0 0 32px rgba(123,47,247,0.45);
}
.sh-setup-device__header h2 { margin: 8px 0 10px; }
.sh-setup-device__header p { color: var(--text-muted); line-height: 1.65; }
.sh-setup-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}
.sh-setup-option {
  padding: 24px;
  background: rgba(123,47,247,0.05);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.sh-setup-option--paid {
  border-color: rgba(168,85,247,0.45);
  background: rgba(123,47,247,0.09);
}
.sh-setup-option__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(123,47,247,0.14);
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sh-setup-option h3 { margin-bottom: 10px; }
.sh-setup-option p { color: var(--text-muted); line-height: 1.65; font-size: 0.92rem; }
.sh-setup-steps {
  display: grid;
  gap: 14px;
}
.sh-setup-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(123,47,247,0.04);
  border: 1px solid var(--border-soft);
}
.sh-setup-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-purple);
  color: #fff;
  font-weight: 900;
}
.sh-setup-step h3 { font-size: 1rem; margin-bottom: 6px; }
.sh-setup-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.sh-setup-tip {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(168,85,247,0.35);
  background: rgba(123,47,247,0.1);
  color: var(--text-muted);
  line-height: 1.65;
}
.sh-setup-tip strong { color: var(--text); }
.sh-setup-back { margin-top: 20px; }
.sh-setup-help {
  text-align: center;
  margin-top: 48px;
  padding: 42px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.sh-setup-help h3 { margin-bottom: 12px; }
.sh-setup-help p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .sh-setup-device { padding: 24px 18px; }
  .sh-setup-device__header { grid-template-columns: 1fr; }
  .sh-setup-options { grid-template-columns: 1fr; }
  .sh-setup-step { grid-template-columns: 42px 1fr; padding: 16px; }
  .sh-setup-step__num { width: 42px; height: 42px; }
}

/* Setup guide official download cards */
.sh-setup-alert {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: rgba(168, 85, 247, 0.10);
  border-radius: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}
.sh-setup-alert strong { color: var(--text); }
.sh-setup-downloads {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid rgba(31,22,51,0.10);
  background: rgba(123,47,247,0.05);
  border-radius: 22px;
}
.sh-setup-downloads__head h3 { margin: 8px 0 8px; }
.sh-setup-downloads__head p { color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.sh-setup-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sh-setup-download-card {
  padding: 16px;
  border: 1px solid rgba(168, 85, 247, 0.20);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(168,85,247,0.10), rgba(123,47,247,0.05));
}
.sh-setup-download-card strong { display: block; margin-bottom: 8px; color: var(--text); }
.sh-setup-download-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 720px) {
  .sh-setup-download-grid { grid-template-columns: 1fr; }
  .sh-setup-downloads { padding: 18px; }
}
