.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-notice-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice-hidden {
    opacity: 0;
    transform: translateY(100%);
}

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

.cookie-notice-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    min-width: 250px;
}

.cookie-notice-button {
    background-color: #00a99d;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cookie-notice-button:hover {
    background-color: #008c82;
}

.cookie-notice-button:active {
    background-color: #007369;
}

.cookie-notice-button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cookie-notice-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-notice-text {
        min-width: 100%;
    }

    .cookie-notice-button {
        width: 100%;
        max-width: 300px;
    }
}
