:root{ --primary:#FF6B00; }
body{ font-family: 'Poppins', sans-serif; background: #F8FAFC; padding-top: 80px; }
h1,h2{ font-family: 'Montserrat', sans-serif; font-weight: 800; }
.order-card{ background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.cart-item{ border-bottom: 1px solid #E2E8F0; padding: 15px 0; }
.qty-control{ display: flex; align-items: center; gap: 8px; }
.qty-btn{ width: 32px; height: 32px; border: 1px solid #CBD5E1; background: #fff; border-radius: 8px; font-weight: 700; }
.qty-input{ width: 50px; text-align: center; border: 1px solid #CBD5E1; border-radius: 8px; }
.btn-primary{ background: var(--primary); border: none; border-radius: 12px; padding: 14px; font-weight: 700; }
.remove-btn{ color: #EF4444; cursor: pointer; font-size: 0.9rem; }
.bank-badge{ background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); border: 2px dashed #FF6B00; border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.bank-badge h5{ color: #FF6B00; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.bank-detail{ display: flex; justify-content: space-between; align-items: center; background: white; padding: 10px 14px; border-radius: 10px; margin-bottom: 8px; font-size: 14px; }
.bank-detail strong{ color: #0F172A; }
.copy-btn{ border: none; background: #FF6B00; color: white; padding: 4px 10px; border-radius: 6px; font-size: 12px; cursor: pointer; }
.copy-btn:hover{ background: #E55A00; }
.note-text{ font-size: 12px; color: #64748B; margin-top: 8px; text-align: center; }

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float{ 
  position: fixed; bottom: 20px; right: 20px; 
  background: #25D366; color: #fff; 
  width: 60px; height: 60px; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 2rem; z-index: 999; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
  text-decoration: none;
  transition: 0.3s;
}
.whatsapp-float:hover{ 
  transform: scale(1.1); 
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}