﻿.cookie-popup {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: min(380px, calc(100vw - 32px));
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 18px 16px 16px;
    z-index: 9999;
    display: none;
    box-sizing: border-box;
}

    .cookie-popup h6 {
        margin: 0 24px 10px 0;
        font-size: 18px;
        line-height: 1.3;
    }

    .cookie-popup p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        word-wrap: break-word;
    }

    .cookie-popup a {
        color: #692031;
        font-weight: 500;
        text-decoration: none;
    }

.cookie-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    line-height: 1;
}

.pop-up-link {
    color: #692031;
    font-weight: 500;
}

.policy-hdr {
    text-align: left;
    font-weight: bold;
    color: #692031;
}

.cookie-popup img {
    width: 120px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    .cookie-popup {
        width: min(340px, calc(100vw - 24px));
        right: 12px;
        bottom: 12px;
        padding: 16px 14px 14px;
    }

        .cookie-popup h6 {
            font-size: 17px;
        }

        .cookie-popup p {
            font-size: 13px;
        }
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
        border-radius: 10px;
        padding: 14px 12px 12px;
    }

        .cookie-popup img {
            width: 100px;
        }

        .cookie-popup h6 {
            font-size: 16px;
            margin-right: 24px;
        }

        .cookie-popup p {
            font-size: 13px;
            line-height: 1.45;
        }

    .cookie-close {
        top: 8px;
        right: 10px;
        font-size: 15px;
    }
}
