.pp-results__error {
    padding: 12px 16px;
    background: #fff4e5;
    color: #92560e;
    border: 1px solid #f0d9b5;
    border-radius: 6px;
    margin: 0 0 16px;
    font-size: 14px;
}

.pp-results__incomplete {
    padding: 32px 16px;
    text-align: center;
    color: #7a5028;
    font-size: 15px;
    margin: 0;
}

.pp-results__hero {
    position: relative;
    overflow: hidden;

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

    min-height: 188px;
    padding: 34px 210px 30px;

    text-align: center;
    background: #fff7ee;
    border: 1px solid #ffd8ad;
    border-radius: 14px;
    margin-bottom: 20px;
}

/* puppy circle */
.pp-results__hero::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    width: 175px;
    height: 185px;
    transform: translateY(-50%);

    background-image: url("../img/hero_puppy.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    pointer-events: none;
}

/* paws */
.pp-results__hero::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 51%;
    width: 181px;
    height: 200px;
    transform: translateY(-50%);

    background-image: url("../img/hero_paws.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.9;
    pointer-events: none;
}

.pp-results__hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.pp-results__hero-value {
    font-size: clamp(64px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.045em;
    color: #f27405;
}

.pp-results__hero-label {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    color: #3b2a1f;
    margin-top: 8px;
}

.pp-results__hero-trust {
    font-size: 14px;
    font-weight: 500;
    color: #7a5028;
    margin-top: 12px;
    line-height: 1.35;
}

.pp-results__hero-trust-small {
    font-size: 13px;
    color: #9a7a5e;
    margin-top: 4px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .pp-results__hero {
        padding: 30px 150px 28px;
    }

    .pp-results__hero::before {
        left: 28px;
        width: 108px;
        height: 108px;
    }

    .pp-results__hero::after {
        right: 28px;
        width: 150px;
        height: 100px;
    }
}

@media (max-width: 680px) {
    .pp-results__hero {
        display: block;
        padding: 26px 18px 28px;
    }

    .pp-results__hero::before,
    .pp-results__hero::after {
        display: none;
    }

    .pp-results__hero-value {
        font-size: clamp(56px, 18vw, 82px);
    }

    .pp-results__hero-label {
        font-size: 19px;
    }
}

.pp-results__disclaimer {
    font-size: 13px;
    color: #7a5028;
    text-align: center;
    margin: 12px 0 20px;
    line-height: 1.4;
}

.pp-results__profile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 16px;
    list-style: none;
}

.pp-results__profile-item {
    padding: 4px 10px;
    border-radius: 999px;
    background: #f6ede0;
    color: #3d2a0f;
    font-size: 13px;
    line-height: 1.3;
}

.pp-results__profile-item--flag {
    background: #fdebd0;
    color: #92560e;
}

.pp-results__caveats {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: #fff7e6;
    border: 1px solid #f0d9b5;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pp-results__caveats-icon {
    font-size: 18px;
    color: #c96308;
    flex: 0 0 auto;
    line-height: 1.4;
}

.pp-results__caveats-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pp-results__caveats-list li + li {
    margin-top: 6px;
}

.pp-results__brand-note {
    margin: 0 0 16px;
}

.pp-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 100%;
}

.pp-results-grid__card {
    display: flex;
    min-width: 0;
    overflow: hidden;
}

.pp-results-grid__card .pp-product-card {
    width: 100%;
}

.pp-results-grid__banner {
    grid-column: 1 / -1;
}

@media (max-width: 991px) {
    .pp-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pp-results-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
}

.js-pp-results {
    position: relative;
    min-height: 60px;
}

.pp-results--loading {
    pointer-events: none;
}

.pp-results--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10;
}

.pp-results--loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #e8760a;
    border-top-color: transparent;
    border-radius: 50%;
    animation: pp-results-spin 0.8s linear infinite;
    z-index: 11;
}

@keyframes pp-results-spin {
    to {
        transform: rotate(360deg);
    }
}
