/* Popup order modal */
.polkoff-overlay{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.6);z-index:99998;}
.polkoff-overlay.is-open{display:flex;}
.polkoff-modal{background:#fff;max-width:560px;width:92%;border-radius:16px;box-shadow:0 10px 40px rgba(0,0,0,.25);position:relative;padding:24px;}
.polkoff-modal__close{position:absolute;top:8px;right:10px;background:transparent;border:0;font-size:28px;line-height:1;cursor:pointer;color:#666;padding:6px;z-index:99999;}
.polkoff-modal__title{font-size:22px;font-weight:700;margin:0 0 16px; text-align: center; color: #cc0029;}
.polkoff-field{margin-bottom:10px;}
.polkoff-field label{display:block;font-weight:500;margin-bottom:4px;font-size: 16px;}
.polkoff-field input[type="text"],
.polkoff-field input[type="email"],
.polkoff-field input[type="tel"],
.polkoff-field textarea{width:100%;border:1px solid #ddd;border-radius:10px;padding:10px 12px;font-size:15px;outline:0;}
.polkoff-field textarea{min-height:80px;resize:vertical;}
.polkoff-modal__actions{margin-top:14px;display:flex;gap:12px;align-items:center;}
.polkoff-btn{background: #cc0029;color:#fff;border:0;border-radius:10px;padding:10px 16px;font-weight:600;cursor:pointer; transition: 0.5s;}
.polkoff-btn:hover{background: #9e0322; transition: 0.5s;}
.polkoff-btn[disabled]{opacity:.6;cursor:not-allowed;}
.polkoff-hint{font-size:14px;color:#0a7c2f;display:none;}
.polkoff-hint.is-visible{display:block;}
.polkoff-error{font-size:14px;color:#b00020;display:none;}
.polkoff-error.is-visible{display:block;}


@media (max-width: 620px) {
 .polkoff-modal{max-width:300px;}
}