.product-switcher-wrapper {
  background-color: #f7f9fc;
  font-family: "Segoe UI", sans-serif;
}

.product-switcher-wrapper .switcher-card {
  max-width: 420px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.product-switcher-wrapper .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.product-switcher-wrapper .product-tile {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.product-switcher-wrapper .product-tile:hover {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px #e3f2fd;
}

.product-switcher-wrapper .product-tile.selected {
  background-color: #e9eff7;
  border-color: #0d6efd;
}

.product-switcher-wrapper .product-tile.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #198754;
  font-size: 1rem;
}

.product-switcher-wrapper .product-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.product-switcher-wrapper .continue-btn {
  width: 100%;
  padding: 10px;
}

.product-switcher-wrapper .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.product-switcher-wrapper .logo-icon {
  width: 28px;
  height: 28px;
  background-color: #0d6efd;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 8px;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  box-sizing: border-box;
}
