/* Product Grid Widget */
.pg-widget {
    width: 100%;
    box-sizing: border-box;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pg-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pg-card-img {
    display: block;
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.pg-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.pg-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #222222;
    background: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
