/* Scoped to avoid theme conflicts */
#anbuta-quiz {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 14px;
  font-family: "Segoe UI", system-ui, Arial, sans-serif;
  color: #222;
  box-sizing: border-box;
}

#anbuta-quiz *, 
#anbuta-quiz *::before, 
#anbuta-quiz *::after { 
  box-sizing: inherit; 
}

#anbuta-quiz .screen { display: none; }
#anbuta-quiz .screen.active { display: block; }

#anbuta-quiz .hero { text-align: center; margin-bottom: 14px; }
#anbuta-quiz .hero img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

h2
{
    color:#ffffff !important;
}
p
{
    color:#ffffff !important;
}


#anbuta-quiz .card,
#anbuta-quiz .product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 18px;
}

#anbuta-quiz .field { margin-bottom: 12px; }
#anbuta-quiz label { font-weight: 600; margin-bottom: 6px; display: block; }
#anbuta-quiz input[type="text"],
#anbuta-quiz input[type="email"],
#anbuta-quiz input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#anbuta-quiz .actions { display: flex; gap: 10px; justify-content: center; margin-top: 10px; }
#anbuta-quiz .btn {
  background: #28a745;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  text-decoration: none;
}
#anbuta-quiz .btn:hover { background: #1f8a3a; }
#anbuta-quiz .btn.back { background: #eee; color: #222; }

#anbuta-quiz .quiz .q { padding: 14px; margin-bottom: 12px; background: #fafafa; border-radius: 8px; }
#anbuta-quiz .quiz .q p { font-weight: 600; margin: 0 0 6px; }
#anbuta-quiz .quiz label { display: block; margin: 5px 0; cursor: pointer; }

#anbuta-quiz .meter { height: 18px; background: #eee; border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
#anbuta-quiz .meter span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, #ff4d4d, #ffc107, #28a745);
  transition: width .6s ease;
}

#anbuta-quiz .solutions { margin-top: 14px; }
#anbuta-quiz .solutions h4 { margin: 0 0 6px; }
#anbuta-quiz .solutions ul { margin: 6px 0 0 18px; }
#anbuta-quiz .solutions li { margin: 5px 0; }

#anbuta-quiz .products { margin-top: 16px; }
#anbuta-quiz .products h4 { margin: 0 0 10px; }
#anbuta-quiz .cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
#anbuta-quiz .product-card {
  text-align: center;
  transition: transform .2s ease;
}
#anbuta-quiz .product-card:hover { transform: translateY(-3px); }
#anbuta-quiz .product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}
#anbuta-quiz .product-card .price { font-weight: 700; margin: 6px 0 10px; }
#anbuta-quiz .btn.buy { background: #28a745; }
#anbuta-quiz .btn.buy:hover { background: #1f8a3a; }
