* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  background: #f3f7fb;
  color: #1f2937;
}

.app {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 6px;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 24px;
}

.search-box {
  display: flex;
  flex:1;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px;
  display:flex;
  flex: 1;
}

.search-box button {
  background: #fe9a31;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 15px;
  cursor: pointer;
}

.search-box button:hover {
  background: #1e40af;
}

#status {
  margin-bottom: 20px;
  color: #6b7280;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 15px;
  margin: 6px 0;
}

.card .price {
  font-weight: 600;
  color: #fe9a31;
}

.badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 8px;
}

.disclaimer {
  margin-top: 40px;
  font-size: 13px;
  color: #6b7280;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #fe9a31;
}

.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #fe9a31;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.view-btn:hover {
  background: #1e40af;
}
.title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  font-size: 30px;
}

.try-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.try-label {
  font-size: 14px;
  color: #6b7280;
}

.try-item {
  font-size: 13px;
  color: #374151;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.try-item:hover {
  background: #f8fafc;
  border-color: #2563eb;
  color: #2563eb;
}


/* =====================================
   MOBILE ONLY – STACK ALL CONTROLS
   (INPUT → MIC → SEARCH)
===================================== */
@media (max-width: 600px) {

  .search-box {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .search-box input {
    width: 100%;
    box-sizing: border-box;
  }

  /* mic button full width */
  #micBtn {
    width: 100%;
    height: 44px;
  }

  /* search button full width */
  #searchBtn {
    width: 100%;
    height: 44px;
  }
}