/* Pre-order popup */
.preorder-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 100000; display: none; align-items: center; justify-content: center; }
.close-preorder-popup { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; color: #ffffff; line-height: 0; background: #005959; padding: 11px 5px 16px 5px; border-radius: 21px; }
.close-preorder-popup:hover { color: #ffffff; }
.preorder-popup h3 { color: #cc0000; margin-top: 0; margin-bottom: 15px; font-size: 2.4em; }
.preorder-popup p { margin-bottom: 25px; color: #555; font-size: 1.1em; }
.preorder-popup-actions { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.preorder-yes-btn, .preorder-no-btn { border: none; padding: 10px 25px; border-radius: 5px; cursor: pointer; font-weight: bold; white-space: normal; }
.preorder-yes-btn { background: #005959; color: white; }
.preorder-yes-btn:hover { background: #004040!important; color: white !important; }
.preorder-yes-btn:disabled { background: #999; cursor: not-allowed; }
.preorder-no-btn { background: #eee; color: #333; }
.preorder-no-btn:hover { background: #ddd; }
.preorder-popup-content { background: white; padding: 30px; border-radius: 8px; max-width: 90%; width: 450px; text-align: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }

@media (max-width: 768px) {
  .preorder-yes-btn, .preorder-no-btn { font-size: 15px; }
  .preorder-popup p { font-size: 14px; }
  .preorder-popup h3 { font-size: 25px; }
  .preorder-popup-actions { display: flex; justify-content: center; gap: 15px; margin-top: 20px; flex-direction: column; }
}


