.cookie-consent-banner {
    position: fixed;
    bottom: -150%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    z-index: 9999;
    display: flex;
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.cookie-consent-banner.show {
    bottom: 0;
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4A5568;
}

.cookie-text a {
    color: #27B43E;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    flex-shrink: 0;
}

.btn-accept-cookies {
    background: linear-gradient(90deg, #27B43E 0%, #5BD066 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(39, 180, 62, 0.3);
}

.btn-accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 180, 62, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-consent-banner {
        padding: 20px;
    }
    .btn-accept-cookies {
        width: 100%;
    }
}
