/* 🔒 Запрет прокрутки сайта */
body.cookie-lock {
    overflow: hidden;
}

/* 🔳 Серый overlay на весь сайт */
#cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: none;
}

/* 🍪 Cookie-модалка */
.cookie-consent {
    position: fixed;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #ffffff;
    color: #111;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    width: calc(100% - 40px);
    max-width: 760px;
    display: none;
}

.cookie-consent__inner {
    padding: 32px 36px;
}

.cookie-consent p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: #1f2937;
}

.cookie-consent a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #1d4ed8;
}

/* 🔵 Кнопка */
.cookie-consent__btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 16px rgba(37,99,235,0.45);
}

.cookie-consent__btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 8px 20px rgba(37,99,235,0.6);
}

/* 📱 Мобилка */
@media (max-width: 768px) {
    .cookie-consent__inner {
        padding: 24px;
    }

    .cookie-consent p {
        font-size: 15px;
    }
}
