/* Panolabo Sales System Multi Styles - Enhanced */
.ptogo-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin: 30px 0; }
.ptogo-product-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.ptogo-product-card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
.ptogo-product-image { width: 100%; height: 200px; object-fit: cover; background: #f0f0f0; }
.ptogo-product-content { padding: 20px; }
.ptogo-product-title { margin: 0 0 10px 0; font-size: 20px; color: #333; }
.ptogo-product-description { color: #666; margin-bottom: 15px; line-height: 1.6; }
.ptogo-product-price { font-size: 24px; color: #667eea; font-weight: bold; margin-bottom: 15px; }
.ptogo-product-button { display: inline-block; background: #667eea; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; transition: background 0.3s; }
.ptogo-product-button:hover { background: #5a67d8; color: white; }
.ptogo-purchase-form-wrapper { max-width: 600px; margin: 0 auto; }
.ptogo-form { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.form-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #f0f0f0; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #667eea; }
.required { color: #e74c3c; }
.payment-methods { display: grid; gap: 15px; margin-top: 10px; }
.payment-option { cursor: pointer; }
.payment-card { display: flex; align-items: center; padding: 15px; border: 2px solid #e0e0e0; border-radius: 6px; transition: all 0.3s; }
.payment-option input[type="radio"]:checked + .payment-card { border-color: #667eea; background: #f8f9ff; }
.submit-button { background: #667eea; color: white; border: none; padding: 15px 40px; font-size: 18px; border-radius: 6px; cursor: pointer; width: 100%; transition: background 0.3s; }
.submit-button:hover { background: #5a67d8; }
.submit-button:disabled { background: #ccc; cursor: not-allowed; }
.form-message { margin-top: 20px; padding: 15px; border-radius: 4px; text-align: center; }
.form-message.success { background: #d4edda; color: #155724; }
.form-message.error { background: #f8d7da; color: #721c24; }
.log-level { padding: 4px 8px; border-radius: 3px; font-size: 12px; font-weight: bold; }
.log-error { background: #f8d7da; color: #721c24; }
.log-warning { background: #fff3cd; color: #856404; }
.log-info { background: #d1ecf1; color: #0c5460; }
.tab-content { background: white; padding: 20px; border: 1px solid #ccd0d4; border-top: none; }