/* ============================================================
   COOMZO FOR FUN — MAIN STYLESHEET
   ============================================================ */

/* --- TOKENS --- */
:root {
  --red: #c70000;
  --red-dark: #8a0000;
  --red-glow: rgba(199, 0, 0, 0.35);
  --gold: #f0b429;
  --gold-light: #ffe066;
  --bg: #0a0a0f;
  --bg-2: #12121a;
  --bg-3: #1a1a28;
  --surface: #16161f;
  --surface-2: #1e1e2e;
  --border: rgba(255,255,255,0.07);
  --text: #f0eff5;
  --text-muted: #8885a0;
  --text-dim: #504e65;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-red: 0 0 40px rgba(199,0,0,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Cairo', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
select, input, textarea { font-family: var(--font); }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.92);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1) brightness(2);
}
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}
.logo-fun {
  color: var(--red);
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px;
  background: var(--red);
  color: white !important;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 20px var(--red-glow);
}
.nav-cta:hover {
  background: #e50000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

/* BG Animation */
.hero-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(199,0,0,0.4), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,0,180,0.25), transparent 70%);
  bottom: -50px; left: -80px;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,180,40,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(199,0,0,0.12);
  border: 1px solid rgba(199,0,0,0.3);
  border-radius: 50px;
  font-size: 12px;
  color: #ff6b6b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}
.title-line-1 {
  display: block;
  color: var(--text);
  letter-spacing: 2px;
}
.title-line-2 {
  display: block;
  background: linear-gradient(135deg, var(--red), #ff4444, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  font-size: 1.2em;
}
.title-arabic {
  display: block;
  font-size: 0.5em;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text); }

.hero-warning {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(240,180,40,0.08);
  border: 1px solid rgba(240,180,40,0.2);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 8px 30px var(--red-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--red-glow);
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--surface-2);
  color: var(--text);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--text);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-icon { font-size: 16px; }

/* Product */
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.product-float {
  position: relative;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
.product-img {
  max-width: 340px;
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 30px 60px rgba(199,0,0,0.4));
}
.product-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(199,0,0,0.4), transparent 70%);
  filter: blur(10px);
  animation: shadowAnim 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes shadowAnim {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.3; transform: translateX(-50%) scaleX(0.8); }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
.hero-scroll span {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(199,0,0,0.1);
  border: 1px solid rgba(199,0,0,0.25);
  border-radius: 50px;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-section {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.product-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199,0,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   HOW TO PLAY
   ============================================================ */
.howto-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}
.howto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(199,0,0,0.05) 0%, transparent 70%);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.step-card {
  flex: 1;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: rgba(199,0,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(199,0,0,0.15);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}
.step-icon { font-size: 28px; margin-bottom: 10px; }
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 24px;
  color: var(--red);
  flex-shrink: 0;
  opacity: 0.6;
}

.howto-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}
.howto-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.howto-cta .btn-outline + .btn-outline { margin-right: 12px; }

/* ============================================================
   CARDS SCROLL
   ============================================================ */
.cards-section {
  padding: 60px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.cards-scroll {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.cards-track {
  display: flex;
  gap: 16px;
  animation: scrollCards 20s linear infinite;
  width: max-content;
}
@keyframes scrollCards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cards-track:hover { animation-play-state: paused; }

.card-preview {
  width: 110px;
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--c, var(--red));
  border-radius: var(--radius);
  text-align: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.card-preview:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(var(--c), 0.2);
}
.cp-emoji { font-size: 28px; margin-bottom: 6px; }
.cp-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.cp-sub {
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.order-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.order-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.order-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(199,0,0,0.12), transparent 70%);
  top: -100px; right: -150px;
}
.order-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,0,180,0.08), transparent 70%);
  bottom: -100px; left: -150px;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 10;
}

/* Order Product Side */
.order-product {
  position: sticky;
  top: 100px;
}
.order-product-img-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.order-product-img {
  max-width: 280px;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(199,0,0,0.35));
  transition: transform var(--transition);
}
.order-product-img:hover { transform: scale(1.03) rotate(1deg); }
.order-product-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.order-product-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.order-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.order-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
}
.order-price-note {
  font-size: 13px;
  color: var(--text-muted);
}
.order-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.oi-item {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Order Form */
.order-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.order-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.order-form-header {
  margin-bottom: 28px;
  text-align: center;
}
.order-form-header h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}
.order-form-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.order-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  transition: all var(--transition);
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(199,0,0,0.12);
  background: rgba(199,0,0,0.03);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 70px; }

.input-with-prefix {
  display: flex;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.input-with-prefix:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(199,0,0,0.12);
}
.input-prefix {
  padding: 12px 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-left: 1px solid var(--border);
  white-space: nowrap;
  background: rgba(255,255,255,0.03);
}
.input-with-prefix input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
}

.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 36px;
}
.select-arrow {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text-dim);
  pointer-events: none;
}

/* Quantity control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 20px;
  font-weight: 300;
  transition: background var(--transition);
  border: none;
}
.qty-btn:hover { background: rgba(199,0,0,0.2); }
.qty-control input {
  width: 60px;
  text-align: center;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  height: 44px;
}
.qty-control input:focus { box-shadow: none; border-color: var(--border); }

/* Submit Button */
.btn-order {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--red), #e00000);
  color: white;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 8px 30px var(--red-glow);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.btn-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
}
.btn-order:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(199,0,0,0.5);
}
.btn-order:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Success state */
.order-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 60px; margin-bottom: 16px; }
.order-success h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.order-success p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.success-ref {
  padding: 12px 20px;
  background: rgba(0,200,80,0.1);
  border: 1px solid rgba(0,200,80,0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #00e676;
  margin-bottom: 24px;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 36px;
  filter: invert(1) brightness(0.8);
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}
.footer-brand-name span { color: var(--red); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-product { order: -1; }
  .product-img { max-width: 240px; }
  .hero-badge, .hero-actions, .hero-trust { justify-content: center; }
  .hero-trust { gap: 12px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .order-layout { grid-template-columns: 1fr; }
  .order-product { position: static; }
  .steps-row { flex-wrap: wrap; }
  .step-arrow { display: none; }
  .step-card { flex: 1 1 40%; }
}

@media (max-width: 600px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 24px 18px; }
  .step-card { flex: 1 1 100%; }
  .howto-cta .btn-outline + .btn-outline { margin-top: 10px; margin-right: 0; }
}

/* ============================================================
   DELIVERY CHECKOUT UI
   ============================================================ */

/* Delivery Type Cards */
.delivery-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.delivery-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.delivery-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(199,0,0,0.06);
  opacity: 0;
  transition: opacity var(--transition);
}
.delivery-type-card:hover {
  border-color: rgba(199,0,0,0.4);
}
.delivery-type-card:hover::before { opacity: 1; }
.delivery-type-card.active {
  border-color: var(--red);
  background: rgba(199,0,0,0.08);
}
.delivery-type-card.active::before { opacity: 1; }
.dtc-icon { font-size: 22px; flex-shrink: 0; }
.dtc-info { flex: 1; }
.dtc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.dtc-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}
.dtc-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Delivery Extras (home/stopdesk conditional sections) */
.delivery-extras {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-right: 3px solid var(--red);
}

/* Center Info Box */
.center-info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(240,180,40,0.06);
  border: 1px solid rgba(240,180,40,0.2);
  border-radius: var(--radius-sm);
  margin-top: 6px;
}
.ci-pin { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.ci-details { flex: 1; }
.ci-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}
.ci-address {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Delivery Price Summary */
.delivery-summary {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.ds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}
.ds-row span:last-child {
  font-weight: 700;
  color: var(--text);
}
.ds-free {
  color: #00c853 !important;
  font-weight: 700 !important;
}
.ds-divider {
  height: 1px;
  background: var(--border);
}
.ds-total {
  font-size: 16px;
  font-weight: 900;
}
.ds-total span { color: var(--text) !important; }
.ds-total span:last-child {
  color: var(--gold) !important;
  font-size: 18px;
}

/* Success Tracking ref */
#successTracking {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

/* Responsive Delivery */
@media (max-width: 500px) {
  .delivery-types { grid-template-columns: 1fr; }
  .dtc-price { display: none; }
}

