/**
 * Module wp_productscms — WebPoint
 */
.wp-pcms-block { margin: 30px 0; }
.wp-pcms-block .wp-block-title { font-size: 22px; font-weight: 700; color: #2c3e50; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid #e54d26; }
.wp-products-grid { display: grid; grid-template-columns: repeat(var(--wp-cols, 4), 1fr); gap: 20px; }
.wp-product-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: transform .2s; }
.wp-product-item:hover { transform: translateY(-3px); }
.wp-product-image img { width: 100%; height: auto; display: block; }
.wp-product-info { padding: 12px; }
.wp-product-name { font-size: 14px; margin: 0 0 6px; }
.wp-product-name a { color: #2c3e50; text-decoration: none; }
.wp-product-name a:hover { color: #e54d26; }
.wp-price-current { color: #e54d26; font-weight: 700; }
@media (max-width: 768px) { .wp-products-grid { grid-template-columns: repeat(2, 1fr); } }
