.pdm-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: flex;
    justify-content: center;
    padding: 16px;
}

.pdm-cookie-consent[hidden] {
    display: none !important;
}

.pdm-cookie-consent__card {
    width: min(1100px, calc(100% - 24px));
    background: #0f1f45;
    color: #dbe5ff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    box-shadow: 0 18px 40px rgba(15, 31, 69, 0.35);
    border: 1px solid rgba(171, 191, 240, 0.25);
}

.pdm-cookie-consent__text {
    flex: 1 1 260px;
    font-size: 14px;
    line-height: 1.6;
}

.pdm-cookie-consent__text strong {
    color: #fff;
}

.pdm-cookie-consent__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pdm-cookie-consent__link {
    color: #dbe5ff;
    text-decoration: underline;
    font-weight: 600;
}

.pdm-cookie-consent__btn {
    border: 0;
    border-radius: 10px;
    background: #1a6de6;
    color: #fff;
    padding: 8px 18px;
    font-weight: 700;
    cursor: pointer;
}

.pdm-cookie-consent__btn:hover {
    background: #155fcc;
}

@media (max-width: 640px) {
    .pdm-cookie-consent {
        padding: 12px;
    }

    .pdm-cookie-consent__card {
        padding: 14px;
    }

    .pdm-cookie-consent__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .pdm-cookie-consent__btn {
        width: 100%;
        text-align: center;
    }

    .pdm-cookie-consent__link {
        width: 100%;
    }
}
