/**
 * 🛍️ 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: 999999;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
}

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

.tire-shop-modal {
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  position: relative;
  z-index: 999999;
}

.tire-shop-modal * {
  position: relative;
  z-index: 1;
}

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

.shop-header h2 {
  font-size: 36px;
  color: #fff;
  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: #000;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.bundle-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.bundle-card.popular {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 12px;
  background: #fff;
  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: #fff;
  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: #000;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  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 {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 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;
  }
}
