/* checkout.php - Checkout page specific styles */
body { background: var(--bg); color: #f8fafc; font-family: 'Outfit', sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; }
.checkout-container { background: var(--card); border: 1px solid var(--card-border); border-radius: 24px; padding: 3rem; max-width: 550px; width: 100%; box-shadow: 0 30px 60px rgba(0,0,0,0.6); backdrop-filter: var(--glass); }
h1 { margin-top: 0; font-size: 2.2rem; text-align: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-dim); }
.input { width: 100%; padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); color: #fff; outline: none; transition: 0.2s; box-sizing: border-box; }
.input:focus { border-color: var(--ac); box-shadow: 0 0 15px var(--ac-soft); }

.summary { background: rgba(0,0,0,0.2); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.5rem; margin-bottom: 2.5rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 0.8rem; color: var(--text-dim); }
.summary-total { display: flex; justify-content: space-between; font-size: 1.4rem; font-weight: 800; padding-top: 1.5rem; margin-top: 1rem; border-top: 1px solid var(--card-border); font-family: 'Plus Jakarta Sans', sans-serif; }

.toast { position: fixed; top: 20px; right: 20px; padding: 20px 32px; border-radius: 16px; font-weight: 600; font-size: 15px; color: white; display: flex; align-items: center; gap: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 10000; backdrop-filter: var(--glass); }
.toast.show { transform: translateX(0); }
.toast.success { background: linear-gradient(135deg, #10b981 0%, #059669 100%); border: 1px solid rgba(16, 185, 129, 0.2); }
.toast.error { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); border: 1px solid rgba(239, 68, 68, 0.2); }
