.psps-widget {
    background: #081113;
    border: 1px solid rgba(102, 190, 63, .22);
    border-radius: 8px;
    color: #eef6f0;
    padding: 24px;
}

.psps-form {
    display: grid;
    gap: 14px;
}

.psps-grid-form {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
}

.psps-form label {
    color: #b9c4bd;
    display: grid;
    font-size: 13px;
    gap: 6px;
}

.psps-form input {
    background: #101b1e;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    color: #fff;
    min-height: 42px;
    padding: 9px 11px;
}

.psps-form button {
    background: #5ead35;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    min-height: 42px;
    padding: 10px 16px;
}

.psps-check {
    align-items: center;
    display: flex !important;
    flex-direction: row;
    gap: 8px;
    min-height: 42px;
}

.psps-check input {
    min-height: auto;
}

.psps-results {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.psps-product {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: 96px 1fr;
    padding: 14px;
}

.psps-product img {
    background: #fff;
    border-radius: 6px;
    height: 96px;
    object-fit: contain;
    width: 96px;
}

.psps-product h3 {
    font-size: 18px;
    margin: 0 0 6px;
}

.psps-product h3 a {
    color: #fff;
    text-decoration: none;
}

.psps-meta {
    color: #b9c4bd;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px 14px;
}

.psps-price {
    color: #67be3f;
    font-weight: 800;
}

.psps-empty,
.psps-loading,
.psps-error {
    color: #b9c4bd;
    padding: 10px 0;
}

@media (max-width: 900px) {
    .psps-grid-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .psps-grid-form,
    .psps-product {
        grid-template-columns: 1fr;
    }

    .psps-product img {
        height: 160px;
        width: 100%;
    }
}
