/* TERMS BOX */ .checkout-terms-box{ background:#fff8e1; border:2px solid #ffcc00; border-radius:12px; padding:16px; margin-top:15px; transition:all .3s ease; box-shadow:0 4px 10px rgba(0,0,0,0.05); } /* Warning animation if unchecked */ .terms-warning{ animation:termsPulse 1.5s infinite; } /* Pulse animation */ @keyframes termsPulse{ 0%{box-shadow:0 0 0 0 rgba(255,193,7,0.6)} 70%{box-shadow:0 0 0 8px rgba(255,193,7,0)} 100%{box-shadow:0 0 0 0 rgba(255,193,7,0)} } /* Layout */ .terms-container{ display:flex; align-items:flex-start; gap:10px; } /* Checkbox */ .terms-checkbox{ width:22px; height:22px; cursor:pointer; margin-top:3px; } /* Label */ .terms-label{ font-size:15px; font-weight:500; color:#333; line-height:1.5; } /* Icon */ .terms-icon{ color:#ff9800; font-size:18px; margin-right:5px; } /* Terms link */ .terms-link{ color:#0d6efd; font-weight:600; text-decoration:underline; } .terms-link:hover{ color:#084298; } /* Error */ .terms-error{ margin-top:8px; font-size:14px; color:#dc3545; font-weight:500; }