* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #f5f7fa; color: #333; line-height: 1.6; }
.container { max-width: 1250px; margin: 0 auto; padding: 20px; }
.page-header { background: white; padding: 30px 40px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.page-header h1 { font-size: 28px; color: #2c3e50; margin-bottom: 8px; }
.subtitle { color: #7f8c8d; font-size: 16px; }
.search-container { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 30px; }
.search-form { display: flex; gap: 10px; max-width: 600px; }
.search-input { flex: 1; padding: 12px 16px; border: 2px solid #ddd; border-radius: 5px; font-size: 15px; }
.search-btn { padding: 12px 24px; background: #0066cc; color: white; border: none; border-radius: 5px; cursor: pointer; }
.products-list { background: white; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.product-item { padding: 18px 30px; border-bottom: 1px solid #ecf0f1; transition: background 0.2s; display: flex; align-items: center; gap: 20px; }
.product-item:last-child { border-bottom: none; }
.product-item.highlighted { background: #f8f9fa; }
.product-item:hover { background: #e8f4f8; }
.product-image { width: 80px; height: 80px; object-fit: contain; background: #f8fafc; border-radius: 8px; padding: 8px; flex-shrink: 0; }
.placeholder-img { width: 80px; height: 80px; background: linear-gradient(135deg, #f8fafc, #e2e8f0); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.product-info { flex: 1; min-width: 0; }
.product-link { color: #2c3e50; text-decoration: none; font-size: 16px; font-weight: 500; display: block; }
.product-link:hover { color: #3498db; }
.product-article { color: #95a5a6; font-size: 14px; margin-left: 12px; font-weight: normal; }
.product-docs { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.doc-badge { background: #e3f2fd; color: #1976d2; padding: 4px 10px; border-radius: 12px; font-size: 12px; }
.quick-pdf-link { padding: 6px 12px; background: #4caf50; color: white; text-decoration: none; border-radius: 4px; font-size: 13px; }
.view-product-link { padding: 6px 12px; background: #666; color: white; text-decoration: none; border-radius: 4px; font-size: 13px; }
.variant-badge { background: #ff9800; color: white; padding: 3px 8px; border-radius: 10px; font-size: 11px; margin-left: 8px; display: inline-block;}
.page-footer { text-align: center; margin-top: 40px; padding: 20px; color: #7f8c8d; font-size: 14px; }
/* display off mob */
@media (min-width: 320px) and (max-width: 768px) {
    .quick-pdf-link {
        display: none;
    }
	
	.doc-badge {
		 display: none;
    }
	
	.product-image {
		 display: none;
    }
	
	.variant-badge {
		display: none;
    }
	
}