/* Стили для блока cookies */
.cookies__wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookies__wrap.show {
    transform: translateY(0);
}

.cookies__wrap.d-none {
    display: block;
}

.cookies__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookies__text-box {
    flex: 1;
}

.cookies__text {
    font-size: 14px;
    line-height: 1.5;
}

.cookies__text a {
    color: #4a90e2;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookies__text a:hover {
    color: #67a3e8;
}

.cookies__close {
    flex-shrink: 0;
}

.btn.btn-primary {
    padding: 8px 20px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 80px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookies__container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookies__close {
        margin-top: 15px;
        width: 100%;
    }
    
    .btn.btn-primary {
        width: 100%;
        padding: 10px;
    }
}