.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent__content {
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent__text {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #1C1D1F;
}

.cookie-consent__text a {
    color: #ee3733;
}

.cookie-consent__text a:hover {
    text-decoration: underline;
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #444444;
    background: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    
}
.cookie-consent__btn:hover {
    background: #ee3733;
    border-color: #ee3733;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent__text {
        font-size: 12px;
    }
    .cookie-consent__btn {
        font-size: 12px;
    }
    .cookie-consent__content {
        gap: 15px;
    }
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent__buttons {
        width: 100%;
        justify-content: center;
    }
}