.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;

    max-width: 900px;
    margin: 0 auto;

    background: #ffffff;

    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 16px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18);

    font-family: "Inter", sans-serif;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 20px 22px;
}

.cookie-consent__text {
    color: #333;
    font-size: 14px;
    line-height: 1.55;
}

.cookie-consent__text strong {
    display: block;

    margin-bottom: 6px;

    color: #660000;

    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.cookie-consent__text p {
    margin: 4px 0;
}

.cookie-consent__text a {
    color: #8B0000;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.external-service-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 220px;

    padding: 24px;

    text-align: center;

    background: #f8f8f8;

    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.external-service-placeholder p {
    max-width: 520px;

    margin: 0 0 16px;

    color: #555;
    line-height: 1.5;
}

.external-service-link {
    display: inline-block;

    margin-top: 14px;

    color: #8B0000;

    text-decoration: underline;
}

@media (max-width: 700px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__actions .btn {
        flex: 1;
    }
}