.ag-event-container { max-width: 1000px; margin: 40px auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; color: #333; }
.ag-event-header { text-align: center; margin-bottom: 50px; }
.ag-event-header h1 { font-size: 2.5rem; color: #1a1a1a; margin-bottom: 10px; }
.ag-event-meta { color: #666; font-size: 1.1rem; }
.ag-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.ag-product-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.2s, box-shadow 0.2s; }
.ag-product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.ag-product-card.ag-sold-out { opacity: 0.6; filter: grayscale(1); }
.ag-product-info h3 { margin: 0 0 10px; font-size: 1.4rem; }
.ag-product-price { font-size: 1.8rem; font-weight: bold; color: #2271b1; margin-bottom: 15px; }
.ag-product-desc { color: #555; line-height: 1.5; margin-bottom: 20px; }
.ag-product-benefits { margin: 0 0 20px; padding-left: 20px; color: #666; font-size: 0.95rem; }
.ag-product-benefits li { margin-bottom: 5px; }
.ag-product-action { border-top: 1px solid #eee; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.ag-availability { font-size: 0.9rem; color: #888; }
.ag-button { background: #2271b1; color: #fff; border: none; padding: 12px 24px; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 1rem; transition: background 0.2s; }
.ag-button:hover { background: #135e96; }
.ag-button.primary { background: #d63638; width: 100%; padding: 18px; font-size: 1.2rem; }
.ag-button.primary:hover { background: #b32d2e; }
.ag-badge.sold-out { background: #eee; color: #888; padding: 5px 15px; border-radius: 20px; font-weight: bold; }
.ag-form-section { background: #f9f9f9; padding: 30px; border-radius: 12px; margin-bottom: 30px; }
.ag-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.ag-form-group { margin-bottom: 15px; }
.ag-form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.ag-form-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; }
.ag-form-footer { margin-top: 40px; text-align: center; }
.ag-order-summary { font-size: 1.5rem; font-weight: bold; margin-bottom: 20px; }
.ag-back-button { background: none; border: none; color: #2271b1; cursor: pointer; padding: 0; margin-bottom: 20px; font-size: 1rem; }
.ag-back-button:hover { text-decoration: underline; }
#ag-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.9); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1000; }
.ag-spinner { border: 4px solid #f3f3f3; border-top: 4px solid #2271b1; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin-bottom: 15px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
