/* ============================
   🔥 QUICK BUY - RED LIGHT BEAUTY
   ============================ */

.quick-order-wrapper {
  position: relative;
  background: linear-gradient(145deg, #ffe5e5, #fff0f0);
  border-radius: 20px;
  padding: 32px 28px;
  margin: 40px 0;
  box-shadow: 0 10px 25px rgba(255, 50, 50, 0.3), 0 0 20px rgba(255, 0, 0, 0.2) inset;
  overflow: hidden;
  animation: glowPulse 2.5s infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-order-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 50, 50, 0.5), 0 0 30px rgba(255, 0, 0, 0.3) inset;
}

.quick-order-wrapper::before {
  content: "";
  position: absolute;
  inset: -5%;
  background: linear-gradient(135deg, #ff4d4d, #ff9999, #ff1a1a);
  filter: blur(25px);
  opacity: 0.4;
  border-radius: 25px;
  z-index: 0;
}

@keyframes glowPulse {
  0% { box-shadow: 0 10px 25px rgba(255, 50, 50, 0.3), 0 0 20px rgba(255, 0, 0, 0.2) inset; }
  50% { box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 80, 80, 0.3) inset; }
  100% { box-shadow: 0 10px 25px rgba(255, 50, 50, 0.3), 0 0 20px rgba(255, 0, 0, 0.2) inset; }
}

/* Form Title */
#formulaire-achat-rapide h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff1a1a;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(255, 0, 0, 0.5);
}

/* Labels */
#formulaire-achat-rapide label {
  font-weight: 600;
  color: #333;
  margin-top: 14px;
  display: block;
}

/* Inputs, selects, textarea */
#formulaire-achat-rapide input,
#formulaire-achat-rapide select,
#formulaire-achat-rapide textarea {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  border: 2px solid #ff4d4d;
  border-radius: 12px;
  background: #fff5f5;
  box-shadow: inset 0 2px 5px rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#formulaire-achat-rapide input:focus,
#formulaire-achat-rapide select:focus,
#formulaire-achat-rapide textarea:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
  background: #fff0f0;
}

/* Submit Button */
#quick-buy-submit {
  width: 100%;
  background: linear-gradient(270deg, #ff1a1a, #ff6666, #ff1a1a);
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease;
}

#quick-buy-submit:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.8);
}

#quick-buy-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

/* Message area */
#qb-message {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
}

#qb-message .quick-buy-success {
  color: #ff1a1a;
}

#qb-message .quick-buy-error {
  color: #e60000;
}

/* Selected product box */
.produit-selectionne {
  margin-top: 24px;
  padding: 14px;
  border: 2px dashed #ff4d4d;
  border-radius: 12px;
  background: #fff0f0;
  box-shadow: inset 0 2px 5px rgba(255, 0, 0, 0.1);
}
