.vqt-pl-grid {
    display: grid;
    grid-template-columns: repeat(var(--vqt-pl-columns, 3), minmax(0, 1fr));
    gap: 20px;
}
.vqt-pl-card {
    background: #fff;
    border: 1px solid #d7d7d7;
    overflow: hidden;
    position: relative;
}
.vqt-pl-image-wrap {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background: #f3f3f3;
}
.vqt-pl-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vqt-pl-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #efefef, #d9d9d9);
}
.vqt-pl-ref {
    position: absolute;
    top: 15px;
    left: 18px;
    background: #ffe933;
    color: #000;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    z-index: 2;
}
.vqt-pl-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #f00;
    color: #fff;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
}
.vqt-pl-content {
    padding: 20px 26px 26px;
}
.vqt-pl-title {
    margin: 0 0 4px;
    color: #001928;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}
.vqt-pl-price {
    color: #008ce8;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.vqt-pl-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 13px;
    line-height: 1.4;
}
.vqt-pl-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #111;
    white-space: nowrap;
}
.vqt-pl-icon {
    color: #008ce8;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    min-width: 16px;
    text-align: center;
}
.vqt-pl-icon:before {
    display: inline-block;
}
.vqt-pl-description {
    margin-top: 16px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}
.vqt-pl-description p:last-child {
    margin-bottom: 0;
}
.vqt-pl-button {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 20px;
    background: #008ce8;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}
.vqt-pl-button:hover,
.vqt-pl-button:focus {
    background: #006fb8;
    color: #fff;
    text-decoration: none;
}
.vqt-pl-empty {
    margin: 0;
}
@media (max-width: 1024px) {
    .vqt-pl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .vqt-pl-grid { grid-template-columns: 1fr; }
    .vqt-pl-image-wrap { height: 240px; }
    .vqt-pl-content { padding: 18px; }
}
