/* ─── Cookie Consent Banner ─────────────────────────────────────── */
#arp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    transform: translateY(100%);
    transition: transform .4s ease;
}
#arp-cookie-banner.arp-cookie-visible { transform: translateY(0); }
.arp-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.arp-cookie-icon { font-size: 28px; flex-shrink: 0; }
.arp-cookie-content { flex: 1; }
.arp-cookie-content p { margin: 0; font-size: 14px; line-height: 1.5; }
.arp-cookie-policy-link { color: #90caf9; text-decoration: underline; }
.arp-cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.arp-btn-accept, .arp-btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s;
}
.arp-btn-accept  { background: #28a745; color: #fff; }
.arp-btn-accept:hover  { background: #218838; }
.arp-btn-decline { background: transparent; color: #ccc; border: 1px solid #ccc; }
.arp-btn-decline:hover { background: rgba(255,255,255,.1); }

@media (max-width: 600px) {
    .arp-cookie-inner { flex-direction: column; text-align: center; }
    .arp-cookie-buttons { width: 100%; justify-content: center; }
}