body {
  font-family: 'Tajawal', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f6fc;
  direction: rtl;
  color: #1a237e;
}

.image-section {
  width: 100vw;
  overflow-x: hidden;
}

.full-width-img {
  width: 100vw;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.lead-form {
  font-family: 'Tajawal', Arial, sans-serif;
  background: #fff;
  margin: 16px 8px 80px 8px;
  padding: 20px 16px 16px 16px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #e3eafc;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-banner {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 6px;
  animation: pulse 2s infinite;
}

.fire-icon {
  margin-left: 6px;
  font-size: 1.1em;
}

.lead-form h2 {
  margin: 0 0 6px 0;
  font-size: 1.6rem;
  color: #2c3e50;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.subtitle {
  text-align: center;
  color: #27ae60;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 12px 0;
}

.testimonial-carousel {
  margin-bottom: 12px;
  position: relative;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  transition: transform 0.5s ease;
}

.testimonial-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 12px;
  text-align: center;
}

.rating {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-overlay p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #27ae60;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2c3e50;
  border-right: 3px solid #27ae60;
}

.value-icon {
  font-size: 1.1em;
}

.countdown-timer {
  background: #2c3e50;
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 12px;
}

.countdown-timer span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timer-display {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ff6b35;
  font-family: monospace;
}

.compact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.trust-item {
  background: #e8f5e8;
  color: #27ae60;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #27ae60;
}

.guarantee-compact {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.shield-icon {
  font-size: 1.1em;
}

.guarantee-compact span {
  color: #856404;
  font-weight: 700;
  font-size: 0.85rem;
}

.stock-warning-compact {
  background: #f8d7da;
  border: 1px solid #dc3545;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  animation: pulse 1.5s infinite;
}

.warning-icon {
  font-size: 1.1em;
}

.stock-warning-compact span {
  color: #721c24;
  font-weight: 900;
  font-size: 0.9rem;
}

.cta-button {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  box-shadow: 0 6px 24px rgba(39, 174, 96, 0.4);
  transform: translateY(-2px);
}

.cta-text {
  font-size: 1.2rem;
  font-weight: 900;
}

.cta-subtext {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.final-urgency {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  margin-top: 10px;
  animation: pulse 1.5s infinite;
}

.lead-form label {
  font-size: 1rem;
  color: #1a237e;
  margin-bottom: 3px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  font-size: 1rem;
  padding: 10px;
  border: 1.5px solid #b3c6f7;
  border-radius: 6px;
  background: #f7faff;
  resize: none;
  transition: border 0.2s;
  font-family: 'Tajawal', Arial, sans-serif;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border: 1.5px solid #1565c0;
  outline: none;
}

.color-choice {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  gap: 32px;
}

.color-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  margin: 0 8px;
}

.color-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-sample.big {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  border: 3px solid #b3c6f7;
  margin: 0 8px;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}

.color-sample.big.white {
  background: #fff;
  border: 3px solid #b3c6f7;
  box-shadow: 0 0 4px #aaa;
}

.color-sample.big.black {
  background: #222;
}

.color-radio input[type="radio"]:checked + .color-sample.big {
  box-shadow: 0 0 0 4px #1976d2, 0 2px 8px rgba(33,150,243,0.10);
  border-color: #1976d2;
}

.floating-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  padding: 16px 0 12px 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 -8px 32px rgba(255, 107, 53, 0.25);
  border-radius: 20px 20px 0 0;
  animation: floatIn 0.7s cubic-bezier(.68,-0.55,.27,1.55), pulse 2s infinite;
}

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

.floating-bar button {
  background: #fff;
  color: #ff6b35;
  border: none;
  border-radius: 32px;
  padding: 18px 48px;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.floating-bar button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.floating-bar button:hover::before {
  left: 100%;
}

.floating-bar button:hover {
  background: #ff6b35;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.cart-icon {
  font-size: 1.4em;
  margin-left: 4px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-1px); }
}

.thank-you-section {
  background: #fff;
  margin: 40px 8px 100px 8px;
  padding: 36px 18px 32px 18px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 1.5px solid #e3eafc;
}
.thank-you-section h2 {
  color: #1565c0;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.thank-you-section p {
  color: #1a237e;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 600px) {
  .lead-form {
    max-width: 420px;
    margin: 40px auto 100px auto;
  }
} 

.wait-screen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 64, 175, 0.18);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Tajawal', Arial, sans-serif;
}
.wait-spinner {
  width: 54px;
  height: 54px;
  border: 6px solid #e3eafc;
  border-top: 6px solid #1976d2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.wait-screen p {
  color: #1565c0;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
} 

.color-radio.out-of-stock {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
}

.color-sample.big.white.out-of-stock {
  background: #fff;
  border: 3px solid #ccc;
  box-shadow: 0 0 4px #aaa;
  position: relative;
  opacity: 0.5;
}

.color-sample.big.white.out-of-stock::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 2px;
  background: #ff4757;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}

.color-sample.big.white.out-of-stock::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 2px;
  background: #ff4757;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.stock-status {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  background: #ff4757;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
}

.color-radio.out-of-stock input[type="radio"] {
  display: none;
} 

.color-caption {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 6px;
}

.color-radio.out-of-stock .color-caption {
  color: #999;
  opacity: 0.7;
} 

.footer {
  background: linear-gradient(135deg, #ff3742 0%, #520005 100%);
  color: white;
  padding: 40px 20px 20px 20px;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ecf0f1;
  letter-spacing: 0.5px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section {
  text-align: center;
}

.footer-section h4 {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3498db;
  letter-spacing: 0.5px;
}

.footer-section p {
  margin: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #bdc3c7;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #95a5a6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 16px 16px 16px;
    margin-top: 40px;
  }
  
  .footer-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .footer-logo h3 {
    font-size: 1.2rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
  }
  
  .footer-section p {
    font-size: 0.9rem;
  }
} 