.gpppc-card {
    display: flex;
    gap: 16px;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 14px;
    margin: 18px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 720px;
}

.gpppc-image-link {
    flex: 0 0 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.gpppc-image {
    max-width: 130px;
    max-height: 130px;
    width: auto;
    height: auto;
    display: block;
}

.gpppc-no-image {
    font-size: 13px;
    color: #777;
    text-align: center;
    padding: 10px;
}

.gpppc-content {
    flex: 1;
    min-width: 0;
}

.gpppc-title {
    display: block;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    margin-bottom: 8px;
}

.gpppc-title:hover {
    text-decoration: underline;
}

.gpppc-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gpppc-button {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 6px;
    background: #222;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.gpppc-button:hover {
    opacity: 0.88;
}

.gpppc-error {
    border-left: 4px solid #d63638;
    background: #fff5f5;
    padding: 10px 12px;
    margin: 12px 0;
    color: #8a2424;
}

@media (max-width: 560px) {
    .gpppc-card {
        align-items: flex-start;
        gap: 12px;
    }

    .gpppc-image-link {
        flex-basis: 96px;
        min-height: 96px;
    }

    .gpppc-image {
        max-width: 96px;
        max-height: 96px;
    }

    .gpppc-title {
        font-size: 15px;
    }

    .gpppc-price {
        font-size: 18px;
    }
}
