:root {
    --bgcookie-banner: #4f09a3;
}
.dark-theme {
    --bgcookie-banner: #4f09a3;
}

.cookie-banner {
	max-width: 1320px;
    position: fixed;
    bottom: 0;
    margin: auto;
    width: 100%;
    background: var(--bgcookie-banner);
    color: #fff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.cookie-container a {color: #2ecc71;}
.cookie-container a:hover {color: #ffffff;}

.btn-cookie-full {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie-tech {
    background: #3d5afe;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie:hover {
    background: #0056b3;
}

/* Responsivitate pentru mobil */
@media (max-width: 992px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
