.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212121;
    padding: 16px;
    z-index: 9999;
    display: none;
    border-top: 2px solid #D48E00;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    font-family: var(--font-paragraph);
    font-size: 0.875rem;
    color: white;
    margin-bottom: 12px;
    line-height: 1.5;
}

.cookie-content a {
    color: #D48E00;
    text-decoration: underline;
    font-size: 0.875rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-paragraph);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
}

.cookie-accept {
    background-color: #D48E00;
    color: white;
}

.cookie-refuse {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}
