@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-space: #07070A;
  /* Deep space black */
  --bg-primary: #0F0F16;
  /* Dark obsidian canvas */
  --bg-secondary: #171725;
  /* Indigo grey card background */
  --bg-card: rgba(23, 23, 37, 0.6);
  /* Frosted glass card */
  --bg-elevated: #1F1F33;
  /* Elevated obsidian */
  --accent: #8B5CF6;
  /* Electric violet primary */
  --accent-rgb: 139, 92, 246;
  --accent-light: #A78BFA;
  /* Light violet glow */
  --accent-dark: #6D28D9;
  /* Dark violet shadow */
  --accent-gradient: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
  /* Violet-pink glow */
  --btn-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  /* Button gradient */
  --btn-gradient-hover: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
  --pink: #EC4899;
  /* Secondary neon pink */
  --pink-light: #F472B6;
  --pink-glow: rgba(236, 72, 153, 0.15);
  --red: #EF4444;
  /* Scarcity neon red */
  --red-light: #F87171;
  --red-glow: rgba(239, 68, 68, 0.1);
  --gold: #F59E0B;
  /* Rating / Price gold */
  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --text-primary: #F9FAFB;
  /* High contrast white */
  --text-secondary: #D1D5DB;
  /* Muted grey */
  --text-muted: #9CA3AF;
  /* Dimmed grey */
  --border: rgba(255, 255, 255, 0.08);
  /* Frosted thin border */
  --border-accent: rgba(139, 92, 246, 0.25);
  /* Glowing purple border */
  --border-pink: rgba(236, 72, 153, 0.25);
  /* Glowing pink border */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

body {
  background-color: var(--bg-space);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text-primary);
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.app-container {
  width: 100%;
  max-width: 480px;
  background: var(--bg-primary);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

/* Announcement Bar - Achievements */
.ann-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(15, 15, 22, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.ann-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ann-pill:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--accent-light);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 32px;
  background: linear-gradient(to bottom, rgba(15, 15, 22, 0.5) 0%, var(--bg-primary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 20px 0;
  text-align: center;
}

.hero-title-top {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  display: block;
  color: var(--text-primary);
}

.hero-title-main em {
  font-style: normal;
  background: linear-gradient(135deg, #C084FC, #F472B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 8px 18px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero-rating .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1.5px;
}

.hero-rating .rating-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-rating .text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  margin: 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Form Block */
.form-section {
  padding: 24px 20px;
}

.form-card {
  background: linear-gradient(135deg, rgba(23, 23, 37, 0.7) 0%, rgba(15, 15, 22, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  position: relative;
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.price-display {
  text-align: center;
  margin-bottom: 20px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.price-new {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(to right, #ffffff, #E2B659);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-new small {
  font-size: 16px;
  font-weight: 700;
}

.price-old {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.65;
}

.price-saving {
  display: inline-block;
  background: linear-gradient(135deg, #EC4899, #8B5CF6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Urgency Block */
.urgency-card {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.urgency-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  animation: scanline 2s linear infinite;
}

@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.urgency-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.urgency-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--red-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.timer-seg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--red-light);
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.timer-sep {
  font-size: 14px;
  font-weight: 800;
  color: var(--red-light);
  animation: pulse 1s infinite;
}

.urgency-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.urgency-stock-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.urgency-stock-count {
  font-size: 14px;
  font-weight: 900;
  color: var(--red-light);
}

.stock-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, #EC4899 100%);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.urgency-hint {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-light);
  text-align: right;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.stock-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--red), #991B1B);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 4px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Form Inputs */
.form-input,
.popup-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  outline: none;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.popup-input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-light);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.form-input.input-error,
.popup-input.input-error {
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.form-input::placeholder,
.popup-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.btn-primary {
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 16px;
  background: var(--btn-gradient);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: pulse-btn 3s infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.6);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
}

@keyframes pulse-btn {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.7), 0 0 15px rgba(236, 72, 153, 0.3);
  }
}

/* Form Note */
.form-note {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.form-note-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.form-note-ico {
  font-size: 18px;
  background: rgba(255, 255, 255, 0.03);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-note-txt {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
}

/* Section Styles */
.section {
  padding: 48px 20px;
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
}

.section-card {
  background: linear-gradient(180deg, rgba(23, 23, 37, 0.4) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding: 48px 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Image Grid / Compare */
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.image-card .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 15, 22, 0.75);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(139, 92, 246, 0.04);
  border-color: rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(139, 92, 246, 0.04);
  border-color: rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.benefit-ico {
  font-size: 28px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}

.benefit-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.step-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(139, 92, 246, 0.03);
  border-color: rgba(139, 92, 246, 0.1);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-light);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Reviews */
.rating-summary {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.rating-big {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
  margin-top: 4px;
}

.rating-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.rating-bars {
  flex: 1;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.rating-bar-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 12px;
  text-align: right;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-stars {
  font-size: 11px;
  color: var(--gold);
}

.review-date,
.review-city {
  font-size: 11px;
  color: var(--text-muted);
}

.review-verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.1);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.review-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-light);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: inline-block;
}

/* Order Steps */
.order-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.order-step-btn {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.2s ease;
}

.order-step-btn:active {
  transform: scale(0.98);
}

.order-step-btn .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-step {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.order-step:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.order-step::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 38px;
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.3), transparent);
}

.order-step:last-child::after {
  display: none;
}

.order-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.order-step .title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.order-step .desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Guarantee */
.guarantee-banner {
  background: linear-gradient(135deg, rgba(23, 23, 37, 0.6) 0%, rgba(15, 15, 22, 0.8) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.guarantee-ico {
  font-size: 40px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 10px rgba(139, 92, 246, 0.2));
}

.guarantee-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.guarantee-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  background: rgba(139, 92, 246, 0.04);
  border-color: rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.guarantee-card-ico {
  font-size: 24px;
  margin-bottom: 10px;
}

.guarantee-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.guarantee-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta-image {
  margin: 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-banner {
  background: var(--btn-gradient);
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.final-inner {
  padding: 28px 20px 48px;
  text-align: center;
}

/* Footer */
footer {
  background: rgba(10, 10, 15, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 20px 100px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.footer-logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 24px;
  opacity: 0.7;
}

/* Popup */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.overlay.open {
  display: flex;
}

.popup {
  background: var(--bg-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlay.open .popup {
  transform: translateY(0);
}

.popup-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: 12px auto 4px;
}

.popup-body {
  padding: 20px 24px 36px;
}

.popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.popup-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.popup-price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
  opacity: 0.65;
}

.popup-price-new {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--text-primary);
  background: linear-gradient(135deg, #ffffff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popup-badge {
  background: var(--btn-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.2);
}

.popup-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
}

/* Success States */
.form-success,
.popup-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-ico {
  font-size: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.3));
}

.success-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.success-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Online Indicator */
.online-indicator {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 448px;
  background: rgba(15, 15, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 800;
  gap: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.online-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.online-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-light);
  animation: pulse 2s infinite;
}

.online-center {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.online-center strong {
  color: var(--accent-light);
  font-weight: 900;
}

.online-btn {
  background: var(--btn-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
  transition: all 0.2s ease;
}

.online-btn:active {
  transform: scale(0.95);
}

/* Fake Toast */
.fake-toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate(-50%, -120px);
  width: calc(100% - 32px);
  max-width: 416px;
  background: rgba(15, 15, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  border-left: 4px solid var(--accent);
}

.fake-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.fake-toast-ico {
  font-size: 22px;
  background: rgba(255, 255, 255, 0.04);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fake-toast-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.fake-toast-text {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Mid CTA */
.mid-cta {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mid-cta-text {
  font-size: 15px;
  font-weight: 700;
  flex: 1;
  color: var(--text-primary);
  line-height: 1.4;
}

.mid-cta-text span {
  color: var(--accent-light);
}

.mid-cta-btn {
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
  transition: all 0.2s ease;
}

.mid-cta-btn:active {
  transform: scale(0.95);
}

/* Nozzles Carousel */
.nozzles-carousel {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(23, 23, 37, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nozzles-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.nozzles-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.nozzle-slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

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

.nozzles-controls {
  padding: 16px 0;
  background: rgba(15, 15, 22, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.nozzles-arrows {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 12px;
}

.nozzle-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.nozzle-arrow:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--accent-light);
}

.nozzle-arrow:active {
  transform: scale(0.92);
}

.nozzles-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.nozzle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nozzle-dot.active {
  background: var(--accent);
  transform: scale(1.5);
  box-shadow: 0 0 8px var(--accent);
}

.section-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-image img {
  border-radius: var(--radius-lg);
}

/* Divider */
.section-divider {
  text-align: center;
  margin: 28px 0;
}

.section-divider-inner {
  display: inline-block;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 12px;
  color: var(--pink-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Smooth scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SVG Icon styles */
.icon-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.icon-svg.fill {
  fill: currentColor;
}

.icon-svg.pink-glow {
  color: var(--pink-light);
  filter: drop-shadow(0 0 4px rgba(236, 72, 153, 0.4));
}

.icon-svg.purple-glow {
  color: var(--accent-light);
  filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.4));
}

.icon-svg.gold-glow {
  color: var(--gold);
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.4));
}

.icon-svg.red-glow {
  color: var(--red-light);
  filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.4));
}

.icon-svg.green-glow {
  color: #10B981;
  filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}