/* --- BAZA I RESET --- */
body .ew-plugin-wrapper {
    all: revert !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    color: #333 !important;
    line-height: 1.6 !important;
    max-width: 650px !important;
    margin: 20px auto !important;
    padding: 30px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* --- NAGŁÓWKI --- */
body .ew-plugin-wrapper h2, 
body .ew-plugin-wrapper h3 {
    margin-top: 0 !important;
    color: #111 !important;
}

/* --- PRZYCISKI --- */
body .ew-plugin-wrapper .button,
body .ew-plugin-wrapper .ew-widget-btn,
body .ew-plugin-wrapper form button {
    display: inline-block !important;
    padding: 14px 24px !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* --- FORMULARZ WERYFIKACJI --- */
body .ew-plugin-wrapper .ew-verify-form {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
}

body .ew-plugin-wrapper .ew-verify-form input {
    flex: 1 !important;
    min-width: 200px !important;
    padding: 12px 15px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    margin: 0 !important;
}

/* --- TABELE --- */
body .ew-plugin-wrapper .shop_table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    border: 1px solid #eee !important;
}
body .ew-plugin-wrapper .shop_table th { background: #f9fafb !important; padding: 15px !important; border-bottom: 2px solid #e5e7eb !important; text-align: left !important; }
body .ew-plugin-wrapper .shop_table td { padding: 15px !important; border-bottom: 1px solid #f0f0f0 !important; }

/* --- KOMUNIKATY I ADRES --- */
body .ew-plugin-wrapper .ew-msg.success {
    padding: 30px !important;
    background: #f0fdf4 !important;
    border: 2px solid #10b981 !important;
    border-radius: 12px !important;
    margin: 30px 0 !important;
}
body .ew-plugin-wrapper .ew-address-box {
    background: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    border: 1px dashed #059669 !important;
    margin: 15px 0 !important;
    font-weight: 600 !important;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 600px) {
    body .ew-plugin-wrapper .ew-verify-form { flex-direction: column !important; align-items: stretch !important; }
    body .ew-plugin-wrapper .shop_table thead { display: none !important; }
    body .ew-plugin-wrapper .shop_table, 
    body .ew-plugin-wrapper .shop_table tr, 
    body .ew-plugin-wrapper .shop_table td { display: block !important; width: 100% !important; }
    body .ew-plugin-wrapper .shop_table td { display: flex !important; justify-content: space-between !important; align-items: center !important; }
    body .ew-plugin-wrapper .shop_table td::before { content: attr(data-label); font-weight: bold !important; }
}

/* --- DRUKOWANIE (PDF) --- */
@media print {
    body * { visibility: hidden !important; }
    body .ew-plugin-wrapper, body .ew-plugin-wrapper * { visibility: visible !important; }
    body .ew-plugin-wrapper { position: absolute !important; left: 0 !important; top: 0 !important; width: 100% !important; }
    body .ew-actions { display: none !important; }
}