.cookie-banner *{
box-sizing: border-box;
}
.cookie-banner { box-sizing: border-box;
    position: fixed;
    left: 0;
    padding: 1rem 1.5rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    max-width: 100%;
}

.cookie-banner a {
    color: #a90845;
    text-decoration: underline;
    margin-right: 10px;
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* На десктопе - баннер внизу */
@media (min-width: 769px) {
    .cookie-banner {
        bottom: 0;
    }
}

/* На мобильных - сверху */
@media (max-width: 768px) {
    .cookie-banner {
        top: 0;
    }
}