/* Version: 1.2.2 */
.pm-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    visibility: visible !important;
    opacity: 1 !important;
}
.pm-product-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 18px;
    background: #fff;
    min-height: 100px; /* Ensure card is visible even if empty */
}
.pm-product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 3px;
}
.pm-product-title {
    margin: 0 0 10px 0;
    font-weight: 700;
}
.pm-product-mrp {
    color: #888;
    margin: 0 7px 0 0;
    font-size: 1em;
}
.pm-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 7px;
}
.pm-product-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.18em;
    margin-left: 6px;
}
.pm-product-description {
    margin-top: 7px;
}
.pm-product-description img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 3px;
}
.pm-product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.pm-product-gallery img {
    max-width: 75px;
    max-height: 75px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid #eee;
}
.pm-product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
}
.pm-product-table th,
.pm-product-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.pm-product-table th {
    font-weight: bold;
}
.pm-product-table .pm-price-cell {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .pm-product-card {
        flex: 1 1 100%;
    }
    .pm-product-table th,
    .pm-product-table td {
        font-size: 14px;
        padding: 8px;
    }
}