/* ==========================================================================
   SCORPION OINTMENT TARGET LANDING STYLES (LANDINGS 1, 2, 3)
   Belarusian E-commerce Setup (BYN, Belpost/Europost, Phone mask)
   ========================================================================== */

:root {
  --lp-primary: #dc2626;
  --lp-primary-dark: #991b1b;
  --lp-accent: #f59e0b;
  --lp-dark: #0f172a;
  --lp-bg: #f8fafc;
  --lp-card: #ffffff;
  --lp-radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--lp-bg);
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 75px;
}

.lp-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--lp-card);
  min-height: 100vh;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.lp-hero-banner {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  color: #ffffff;
  padding: 18px 20px;
  text-align: center;
}

.lp-badge-strip {
  display: inline-flex;
  gap: 8px;
  background: rgba(0,0,0,0.25);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fef08a;
  margin-bottom: 8px;
}

.lp-hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 6px;
}

.lp-hero-sub {
  font-size: 0.95rem;
  color: #fee2e2;
}

.lp-img-gallery {
  padding: 16px;
  text-align: center;
}

.lp-main-img {
  max-height: 380px;
  margin: 0 auto 12px;
  border-radius: var(--lp-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.lp-price-box {
  background: #fff5f5;
  border: 2px dashed var(--lp-primary);
  border-radius: var(--lp-radius);
  padding: 16px 20px;
  margin: 16px;
  text-align: center;
}

.lp-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lp-price-old {
  font-size: 1.3rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.lp-price-new {
  font-size: 2.2rem;
  color: var(--lp-primary);
  font-weight: 900;
}

/* Package bundles */
.bundle-selector {
  padding: 16px;
}

.bundle-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}

.bundle-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #e2e8f0;
  border-radius: var(--lp-radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}

.bundle-option.active {
  border-color: var(--lp-primary);
  background: #fff5f5;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.12);
}

.bundle-radio {
  margin-right: 12px;
}

.bundle-info {
  flex-grow: 1;
}

.bundle-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0f172a;
}

.bundle-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  background: #fef08a;
  color: #854d0e;
  margin-left: 6px;
}

.bundle-price-tag {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--lp-primary);
}

/* Form */
.order-form-container {
  padding: 20px 16px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: #334155;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.1rem;
  border: 2px solid #cbd5e1;
  border-radius: var(--lp-radius);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.btn-submit-order {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.5);
}

.order-success-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.order-success-modal.active {
  display: flex;
}

.success-card {
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: 28px 20px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
