.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 20px 30px;
    transform: translateY(150%);
    transition: transform 0.4s ease;
    font-family: 'Montserrat', 'Arial', sans-serif;
    border: 1px solid rgba(137, 150, 71, 0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-notice__text {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-notice__buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-notice__btn {
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-weight: 500;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.cookie-notice__btn--accept {
    background: #899647;
    color: white;
}

.cookie-notice__btn--accept:hover {
    background: #6f7a3a;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(137, 150, 71, 0.3);
}

.cookie-notice__btn--link {
    background: transparent;
    color: #B54B5F;
    border: 1px solid #B54B5F;
}

.cookie-notice__btn--link:hover {
    background: #B54B5F;
    color: white;
    border-color: #B54B5F;
}

@media (max-width: 768px) {
    .cookie-notice {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px 20px;
    }
    
    .cookie-notice__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice__text {
        font-size: 12px;
    }
    
    .cookie-notice__btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}