.wpsa-grid {
    display: grid;
    gap: 20px;
}

.wpsa-cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.wpsa-product {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.wpsa-product:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wpsa-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wpsa-content {
    padding: 15px;
}

.wpsa-title {
    font-size: 1.1em;
    margin: 0 0 10px 0;
}

.wpsa-price {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.wpsa-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #f97316;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.wpsa-button:hover {
    background: #ea580c;
    color: #fff;
}

.wpsa-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.wpsa-source {
    display: inline-block;
    background: #f3f4f6;
    color: #4b5563;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75em;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}