.plm-product-list {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

/* Column configurations */
.plm-product-list.columns-1 { grid-template-columns: repeat(1, 1fr); }
.plm-product-list.columns-2 { grid-template-columns: repeat(2, 1fr); }
.plm-product-list.columns-3 { grid-template-columns: repeat(3, 1fr); }
.plm-product-list.columns-4 { grid-template-columns: repeat(4, 1fr); }

.plm-product-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.plm-product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.plm-product-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f8f9fa;
}

.plm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.plm-product-item:hover .plm-product-image img {
    transform: scale(1.05);
}

.plm-product-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plm-product-placeholder::after {
    content: '📷';
    font-size: 24px;
    color: #ccc;
}

.plm-product-content {
    padding: 20px;
}

.plm-product-title {
    margin: 0 0 15px 0;
    font-size: 1.25em;
    line-height: 1.3;
}

.plm-product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.plm-product-title a:hover {
    color: #0073aa;
}

.plm-product-description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.plm-product-price {
    margin: 20px 0;
    font-size: 1.1em;
    font-weight: 500;
}

.plm-regular-price {
    color: #999;
    margin-right: 10px;
}

.plm-sale-price {
    color: #28a745;
}

.plm-price {
    color: #333;
}

.plm-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
}

.plm-product-button:hover {
    background: #005177;
    color: #fff;
    transform: translateY(-1px);
}

.plm-no-products {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1em;
}

.plm-coming-soon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-style: italic;
}

.plm-coming-soon-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .plm-product-list.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .plm-product-list.columns-3,
    .plm-product-list.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plm-product-content {
        padding: 15px;
    }
    
    .plm-product-title {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .plm-product-list {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

.plm-license-count {
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.85em;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
}

.plm-license-count:before {
    content: "🔑";
    margin-right: 5px;
}

.plm-bundle-info {
    margin-bottom: 10px;
}

.plm-bundle-product-count {
    background-color: #e1f5fe;
    color: #0288d1;
    font-size: 0.85em;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 500;
}

.plm-bundle-product-count:before {
    content: "📦";
    margin-right: 5px;
}

.plm-discount-badge {
    background-color: #ffebee;
    color: #f44336;
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 600;
} 