/* ============================================================
   Cookie Consent Banner — Novoville Mobility
   ============================================================ */

#cookie-banner {
    display: none; /* εμφανίζεται μόνο από JS */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0D1B2A;
    border-top: 2px solid #2DC4B2;
    padding: 16px 32px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

#cookie-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 260px;
}

#cookie-banner a {
    color: #2DC4B2;
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #fff;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: #2DC4B2;
    color: #0D1B2A;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: #25a898;
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cookie-decline:hover {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.8);
}

@media (max-width: 600px) {
    #cookie-banner {
        padding: 16px 20px;
    }
    .cookie-actions {
        width: 100%;
    }
    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
        text-align: center;
    }
}