/* Critical CSS for Batch Archive Pages */
.batch-archive-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.batch-archive-header { text-align: center; margin-bottom: 40px; }
.batch-archive-header .archive-title { font-size: 42px; font-weight: 700; color: #111827; margin: 0 0 12px 0; }
.batch-archive-header .archive-subtitle { font-size: 18px; color: #6B7280; margin: 0; }
.location-tabs-wrapper { background: white; border-radius: 12px; padding: 8px; margin-bottom: 32px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.location-tabs { display: flex; gap: 8px; overflow-x: auto; overflow-y: hidden; }
.location-tab { padding: 12px 24px; border-radius: 8px; cursor: pointer; transition: all 0.3s; white-space: nowrap; font-weight: 500; border: none; background: transparent; color: #666; }
.location-tab:hover { background: #f3f4f6; }
.location-tab.active { background: #FF6B6B; color: white; }
.batch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.batch-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.batch-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.batch-card-header { padding: 20px; border-bottom: 1px solid #f0f0f0; }
.batch-title { font-size: 18px; font-weight: 600; margin: 0 0 8px 0; color: #111827; }
.batch-meta { font-size: 14px; color: #666; }
.batch-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.badge { padding: 4px 8px; border-radius: 12px; font-size: 12px; font-weight: 500; }
.badge-active { background: #10b981; color: white; }
.badge-full { background: #ef4444; color: white; }
.batch-location { font-size: 14px; color: #666; margin-bottom: 4px; }
.batch-price { font-size: 20px; font-weight: 700; color: #111827; }
.batch-price .original { font-size: 14px; color: #999; text-decoration: line-through; margin-left: 8px; }
.loading-indicator { text-align: center; padding: 40px; color: #666; }
.loading-spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid #f3f3f3; border-top: 2px solid #FF6B6B; border-radius: 50%; animation: spin 1s linear infinite; margin-right: 8px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.no-results { text-align: center; padding: 60px 20px; color: #666; }
.no-results h3 { font-size: 24px; margin: 0 0 16px 0; }
.no-results p { font-size: 16px; margin: 0 0 24px 0; }
.btn-primary { background: #FF6B6B; color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; display: inline-block; font-weight: 500; transition: background 0.3s; }
.btn-primary:hover { background: #ff5252; }
