.of-wrap {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 620px;
  border: 1px solid #d0dce8;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

.of-header {
  background: #1a6fc4;
  padding: 1.1rem 1.5rem;
}

.of-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.of-sub {
  font-size: 13px;
  color: #b8d4f0;
}

.of-body {
  padding: 1.5rem;
  background: #fff;
}

/* Progress */
.of-progress-bar {
  height: 4px;
  background: #e8edf2;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.of-progress-fill {
  height: 4px;
  background: #1a6fc4;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.of-step-label {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.of-question {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.of-question-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 1rem;
}

/* Options */
.of-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.of-option {
  background: #f5f9ff;
  border: 1px solid #c8dff7;
  border-left: 3px solid #1a6fc4;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #1a2a3a;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}

.of-option:hover {
  background: #daeeff;
  border-color: #8ab8e8;
  border-left-color: #1a6fc4;
}

/* Result */
.of-result-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a6fc4;
  margin-bottom: 1rem;
}

.of-product {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.of-product-left { flex: 1; min-width: 160px; }

.of-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.badge-gold  { background: #fff8e1; color: #854F0B; border: 1px solid #EF9F27; }
.badge-green { background: #e8f5e9; color: #27500A; border: 1px solid #97C459; }
.badge-blue  { background: #e6f1fb; color: #0C447C; border: 1px solid #85B7EB; }
.badge-gray  { background: #f1efe8; color: #444441; border: 1px solid #B4B2A9; }

.of-product-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.of-product-desc {
  font-size: 13px;
  color: #666;
}

.of-product-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.of-price {
  font-size: 18px;
  font-weight: 700;
  color: #111;
	display: none !important;
}

.of-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn-orange { background: #e67e00; color: #fff !important; }
.btn-orange:hover { background: #cf7000; }
.btn-amazon { background: #FF9900; color: #111 !important; }
.btn-amazon:hover { background: #e68a00; }

.of-hint {
  font-size: 11px;
  color: #999;
  text-align: right;
}

.of-compare {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.25rem;
}

.of-compare a {
  font-size: 13px;
  color: #1a6fc4;
  text-decoration: none;
}

.of-compare a:hover { text-decoration: underline; }

.of-reset {
  background: transparent;
  border: none;
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
  padding: 0;
}

.of-reset:hover { color: #555; }

@media (max-width: 480px) {
  .of-product-right { align-items: flex-start; }
  .of-hint { text-align: left; }
}

