.wpat-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 520px;
    margin: 0 auto;
    background: #1f2937;
    color: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    padding: 16px 18px;
    font: 14px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 2147483600;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.wpat-consent__msg { flex: 1 1 240px; }
.wpat-consent__msg a { color: #93c5fd; text-decoration: underline; }
.wpat-consent__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.wpat-consent__btn {
    appearance: none;
    border: 0;
    border-radius: 6px;
    padding: 8px 14px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.wpat-consent__btn--decline { background: transparent; color: #d1d5db; border: 1px solid #4b5563; }
.wpat-consent__btn--accept  { background: #10b981; color: #062b22; }
.wpat-consent__btn:focus { outline: 2px solid #60a5fa; outline-offset: 2px; }
@media (max-width: 480px) {
    .wpat-consent { left: 8px; right: 8px; bottom: 8px; }
    .wpat-consent__actions { width: 100%; }
    .wpat-consent__btn { flex: 1; }
}
