.pip-consent {
    position: fixed;
    z-index: 10000;
    right: 24px;
    bottom: 24px;
    width: min(440px, calc(100vw - 32px));
    padding: 20px;
    border: 1px solid rgba(40, 34, 30, 0.14);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: 0 20px 60px rgba(40, 34, 30, 0.18);
    color: #26211e;
    font-family: Arial, Helvetica, sans-serif;
}

.pip-consent[hidden] {
    display: none;
}

.pip-consent strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.pip-consent p {
    margin: 0;
    color: #6c655f;
    font-size: 14px;
    line-height: 1.55;
}

.pip-consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pip-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.pip-consent button {
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid rgba(40, 34, 30, 0.16);
    border-radius: 999px;
    background: #f2efeb;
    color: #26211e;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.pip-consent button[data-pip-consent-accept] {
    border-color: #f85c43;
    background: linear-gradient(135deg, #f54d39, #ff9142);
    color: #fff;
}

.pip-consent button:focus-visible,
.pip-consent a:focus-visible {
    outline: 3px solid rgba(248, 92, 67, 0.3);
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .pip-consent {
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }

    .pip-consent-actions {
        justify-content: stretch;
    }

    .pip-consent button {
        flex: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .pip-consent:not([hidden]) {
        animation: pip-consent-in 220ms ease-out both;
    }

    @keyframes pip-consent-in {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
