.cookie-consent-tab {
    position: fixed;
    bottom: 0;
    left: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #1a1a1a;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.cookie-consent-tab:hover {
    transform: translateY(-5px);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Cookie Modal */
.cookie-modal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cookie-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.cookie-modal h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.cookie-modal p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.cookie-modal-links {
    margin-bottom: 25px;
}

.cookie-modal-links a {
    color: #f58220;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-right: 15px;
}

.cookie-modal-links a:hover {
    text-decoration: underline;
}

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

.cookie-modal-btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-accept {
    background: #f58220;
    color: #fff;
}

.btn-accept:hover {
    background: #e67616;
}

.btn-refuse, .btn-preferences {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #eee;
}

.btn-refuse:hover, .btn-preferences:hover {
    background: #f0f0f0;
}

.cookie-modal-footer-link {
    text-align: center;
    margin-top: 20px;
}

.cookie-modal-footer-link a {
    color: #f58220;
    text-decoration: none;
    font-size: 14px;
}
