/* ============================================================
   e-Asfalistro Cookie Consent Banner — subtle style
   ============================================================ */

#ea-cookie-banner {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #565656;
    padding: 12px 16px 12px 18px;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
    font-family: 'Advent Pro', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    max-width: 680px;
    width: calc(100% - 32px);
}

.ea-cookie-text {
    flex: 1;
    min-width: 0;
    color: #565656;
}

.ea-cookie-text a {
    color: #1164b5;
    text-decoration: underline;
}

.ea-cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.ea-btn-accept {
    background: #1164b5;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 8px 16px;
    font-family: 'Advent Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s;
}
.ea-btn-accept:hover { opacity: .88; }

.ea-btn-reject {
    background: transparent;
    color: #b9b9b9;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    padding: 8px 16px;
    font-family: 'Advent Pro', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}
.ea-btn-reject:hover { border-color: #aaa; color: #565656; }

/* Mobile */
@media (max-width: 600px) {
    #ea-cookie-banner {
        bottom: 12px;
        flex-wrap: wrap;
        padding: 14px 16px;
    }
    .ea-cookie-actions {
        width: 100%;
    }
    .ea-btn-accept,
    .ea-btn-reject {
        flex: 1;
        text-align: center;
    }
}
