/**
 * 🛍️ Tire Shop Modal Styles
 */

.tire-shop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
}

.tire-shop-overlay.show {
  display: flex;
}

.tire-shop-modal {
  background: #1a1a1a;
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

.shop-header {
  text-align: center;
  margin-bottom: 32px;
}

.shop-header h2 {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.shop-header p {
  color: #999;
  font-size: 16px;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.bundle-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.bundle-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bundle-card.popular {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 12px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
}

.bundle-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.bundle-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.bundle-tires {
  font-size: 32px;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.bundle-bonus {
  font-size: 12px;
  color: #00ff88;
  margin-bottom: 16px;
}

.bundle-price {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 16px;
}

.bundle-includes {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
  line-height: 1.6;
}

.buy-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 1px;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.shop-footer {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .tire-shop-modal {
    padding: 24px;
  }
  
  .bundles-grid {
    grid-template-columns: 1fr;
  }
}
