/* =========================
   COOKIE WIDGET (DARK UI)
   ========================= */

.cookie-widget-elegant {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    max-width: 360px;

    background: linear-gradient(1deg, #2b2528 30%, #2d2629 100%);
    border-radius: 16px;

    box-shadow: 0px 5px 15px #13151a4f;
    border: 1px solid #3f373a;

    z-index: 10000;
    overflow: hidden;

    animation: cookieSlideIn 0.5s ease;
    color: #fff;
}

/* АНИМАЦИЯ */
@keyframes cookieSlideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* КОНТЕНТ */
.cookie-widget-content {
    padding: 18px 18px 16px;
}

/* HEADER */
.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-icon {
    width: 42px;
    height: 42px;

    background: radial-gradient(100% 100% at 50% 0, #ff7591 0, #fe9544 250%);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #fff;

    flex-shrink: 0;
}

.cookie-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

/* TEXT */
.cookie-body p {
    margin: 0 0 8px 0;
    color: #ada6a9;
    font-size: 13px;
    line-height: 1.4;
}

.cookie-note {
    font-size: 11px;
    color: #8d8588;
    margin-top: 8px;
}

/* FOOTER */
.cookie-footer {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

/* BUTTON */
.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    background: radial-gradient(100% 100% at 50% 0, #ff7591 0, #fe9544 250%);
    color: #fff;

    border: none;
    padding: 10px 18px;
    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s;
    text-shadow: #00000078 1px 0 10px;
}

.cookie-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cookie-btn:active {
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 640px) {
    .cookie-widget-elegant {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
    }

    .cookie-footer {
        justify-content: center;
    }

    .cookie-btn {
        width: 100%;
    }
}
.cookie-footer {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ссылка "Подробнее" */
.cookie-link {
    font-size: 12px;
    color: #ada6a9;
    text-decoration: none;
    transition: 0.2s;
}

.cookie-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* кнопка */
.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}