.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: 90%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #1e293b;
    line-height: 1.5;
}

.cookie-banner a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

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

.cookie-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #1d4ed8;
    transform: scale(1.02);
}

.cookie-btn:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 15px;
        padding: 20px;
        gap: 15px;
    }
    .cookie-btn {
        width: 100%;
    }
    .cookie-banner p {
        font-size: 12px;
    }
}