.ppeanut-global .pg-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.ppeanut-global .pg-product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.ppeanut-global .pg-product-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: var(--pg-color-surface-strong);
    aspect-ratio: 4 / 5;
}

.ppeanut-global .pg-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ppeanut-global .pg-product-card:hover .pg-product-card__image img {
    transform: scale(1.03);
}

.ppeanut-global .pg-product-card__body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.ppeanut-global .pg-product-card__name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ppeanut-global .pg-product-card__price {
    font-size: 0.96rem;
    font-weight: 600;
}

.ppeanut-global .pg-product-grid__empty {
    grid-column: 1 / -1;
    padding: 28px 24px;
    border: 1px solid rgba(221, 210, 196, 0.9);
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.78);
    text-align: center;
    color: var(--pg-color-text-muted);
}

@media (max-width: 1100px) {
    .ppeanut-global .pg-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ppeanut-global .pg-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
