.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.cookie-banner__text p {
    margin: 0 0 8px 0;
}

.cookie-banner__text p:last-child {
    margin-bottom: 0;
}

.cookie-banner__text a {
    color: #1f9bbe;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #0056b3;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__button {
    background: #1f9bbe;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__button:hover {
    background: #30b3d8;
}

.cookie-banner__close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.cookie-banner__close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cookie-banner__close svg {
    width: 20px;
    height: 20px;
    stroke: #666;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-banner__text {
        font-size: 13px;
        padding-right: 30px;
    }
    
    .cookie-banner__actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-banner__button {
        flex: 1;
        padding: 10px 15px;
    }
    
    .cookie-banner__close {
        position: absolute;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-banner__text {
        font-size: 12px;
    }
    
    .cookie-banner__button {
        font-size: 13px;
        padding: 8px 12px;
    }
}
