.product-grid-802a0982 {
    display: grid;
    gap: 20px;
}
.pg-item {
    border: 1px solid #eaeaea;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    background: #fff;
}
.pg-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.pg-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.pg-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.pg-title {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}
.pg-price {
    font-weight: bold;
    color: #666;
    display: block;
    margin-top: 5px;
}