#cookie-banner {

    position: fixed;

    left: 20px;
    right: 20px;
    bottom: 20px;

    background: white;

    border-radius: 20px;

    padding: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    z-index: 10000;

    display: none;

}

#cookie-banner p {

    margin: 0;

    text-align: center;

    font-size: .95rem;

    line-height: 1.5;

}

.cookie-buttons {

    display: flex;

    gap: 12px;

    margin-top: 16px;

}

.cookie-accept {

    flex: 1;

    border: none;

    background: var(--accent);

    color: white;

    padding: 14px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

}

.cookie-reject {

    flex: 1;

    background: white;

    border: 2px solid var(--accent);

    color: var(--text-dark);

    padding: 14px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

}

@media (min-width: 769px) {

    #cookie-banner {

        max-width: 520px;

        margin: auto;

    }

}