/* ==========================================================================
   /balcony-bonsai-plastic-mold/ — scoped embed.css
   Container class: .gc-bonsai-mold-page
   100% scoped. No global selectors outside the container except the modal.
   Brand tokens: --blue:#0052cc  --navy:#0f2747  --accent:#00a3c4
   ========================================================================== */

.gc-bonsai-mold-page {
  --blue: #0052cc;
  --navy: #0f2747;
  --accent: #00a3c4;
  --ink: #1c2b3a;
  --muted: #5a6b85;
  --line: #e3e9f2;
  --soft: #f5f8fc;
  --warn: #b26a00;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.gc-bonsai-mold-page *,
.gc-bonsai-mold-page *::before,
.gc-bonsai-mold-page *::after { box-sizing: border-box; }

.gc-bonsai-mold-page h2,
.gc-bonsai-mold-page h3 {
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 12px;
}

.gc-bonsai-mold-page h2 {
  font-size: 30px;
  letter-spacing: -0.2px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--blue);
  margin-bottom: 22px;
}

.gc-bonsai-mold-page h3 {
  font-size: 19px;
  margin-top: 28px;
}

.gc-bonsai-mold-page p { margin: 0 0 14px; }
.gc-bonsai-mold-page strong { color: var(--navy); font-weight: 600; }

/* ---------- hero ---------- */
.gc-bonsai-mold-page .gcbm-hero {
  background: linear-gradient(180deg, #f2f7fd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  padding: 52px 20px 44px;
}

.gc-bonsai-mold-page .gcbm-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gc-bonsai-mold-page .gcbm-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 12px;
}

.gc-bonsai-mold-page .gcbm-hero-title {
  font-size: 40px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 16px;
  border: 0;
  padding: 0;
}

.gc-bonsai-mold-page .gcbm-hero-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 820px;
  margin: 0 0 26px;
}

.gc-bonsai-mold-page .gcbm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 30px;
}

.gc-bonsai-mold-page .gcbm-cta {
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2px;
  min-height: 52px;
  padding: 1rem 2.6rem;
  border-radius: 8px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.gc-bonsai-mold-page .gcbm-cta--primary { background: var(--blue); color: #fff; box-shadow: 0 3px 10px rgba(0,82,204,.28); }
.gc-bonsai-mold-page .gcbm-cta--primary:hover { background: #003d99; border-color: #003d99; }
.gc-bonsai-mold-page .gcbm-cta--ghost { background: #fff; color: var(--blue); box-shadow: 0 2px 8px rgba(15,39,71,.10); }
.gc-bonsai-mold-page .gcbm-cta--ghost:hover { background: #eef4fd; }
.gc-bonsai-mold-page .gcbm-cta:active { transform: translateY(1px); }

.gc-bonsai-mold-page .gcbm-hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gc-bonsai-mold-page .gcbm-hero-facts li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}

.gc-bonsai-mold-page .gcbm-hero-facts strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.gc-bonsai-mold-page .gcbm-hero-facts span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- sections ---------- */
.gc-bonsai-mold-page .gcbm-sec {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 20px;
}

/* ---------- grids & cards ---------- */
.gc-bonsai-mold-page .gcbm-grid {
  display: grid;
  gap: 16px;
  margin: 22px 0 8px;
}

.gc-bonsai-mold-page .gcbm-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gc-bonsai-mold-page .gcbm-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gc-bonsai-mold-page .gcbm-grid-4 { grid-template-columns: repeat(4, 1fr); }

.gc-bonsai-mold-page .gcbm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.gc-bonsai-mold-page .gcbm-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--navy);
}

.gc-bonsai-mold-page .gcbm-card p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- note ---------- */
.gc-bonsai-mold-page .gcbm-note {
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 24px 0 0;
}

.gc-bonsai-mold-page .gcbm-note p { margin: 0; font-size: 15px; }

.gc-bonsai-mold-page .gcbm-note-tbc {
  background: #fff8ec;
  border-left-color: var(--warn);
}

/* ---------- table ---------- */
.gc-bonsai-mold-page .gcbm-table-wrap {
  margin: 18px 0 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.gc-bonsai-mold-page .gcbm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 620px;
}

.gc-bonsai-mold-page .gcbm-table thead th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-weight: 600;
  padding: 12px 14px;
  font-size: 14px;
}

.gc-bonsai-mold-page .gcbm-table th,
.gc-bonsai-mold-page .gcbm-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.gc-bonsai-mold-page .gcbm-table tbody th {
  width: 200px;
  color: var(--navy);
  background: #fafbfe;
  font-weight: 600;
}

.gc-bonsai-mold-page .gcbm-table tbody tr:nth-child(even) td { background: #fcfdff; }
.gc-bonsai-mold-page .gcbm-table tbody tr:last-child th,
.gc-bonsai-mold-page .gcbm-table tbody tr:last-child td { border-bottom: 0; }

/* pending-data chip */
.gc-bonsai-mold-page .gcbm-tbc {
  display: inline-block;
  background: #fff4e0;
  border: 1px dashed var(--warn);
  color: #7a4a00;
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ---------- figure & svg ---------- */
.gc-bonsai-mold-page .gcbm-figure {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #f7f9fc;
}

.gc-bonsai-mold-page .gcbm-svg {
  display: block;
  width: 100%;
  height: auto;
}

.gc-bonsai-mold-page .gcbm-figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- evidence images ---------- */
.gc-bonsai-mold-page .gcbm-evidence .gcbm-ev { padding: 12px; }

.gc-bonsai-mold-page .gcbm-ev img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #eef2f8;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gc-bonsai-mold-page .gcbm-ev figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.gc-bonsai-mold-page .gcbm-ev figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

/* ---------- steps ---------- */
.gc-bonsai-mold-page .gcbm-steps {
  counter-reset: step;
  list-style: none;
  margin: 20px 0 8px;
  padding: 0;
}

.gc-bonsai-mold-page .gcbm-steps li {
  position: relative;
  counter-increment: step;
  padding: 12px 0 12px 46px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}

.gc-bonsai-mold-page .gcbm-steps li:last-child { border-bottom: 0; }

.gc-bonsai-mold-page .gcbm-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-bonsai-mold-page .gcbm-steps-alt li::before { background: var(--accent); }

/* ---------- faq ---------- */
.gc-bonsai-mold-page .gcbm-faq {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  margin: 0 0 12px;
  background: #fff;
}

.gc-bonsai-mold-page .gcbm-faq summary {
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
  list-style: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.gc-bonsai-mold-page .gcbm-faq summary::-webkit-details-marker { display: none; }

.gc-bonsai-mold-page .gcbm-faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.gc-bonsai-mold-page .gcbm-faq[open] summary::after { content: "\2212"; }

.gc-bonsai-mold-page .gcbm-faq p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 15px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ---------- rfq ---------- */
.gc-bonsai-mold-page .gcbm-rfq {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%);
  border-top: 1px solid var(--line);
}

.gc-bonsai-mold-page .gcbm-rfq-foot {
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .gc-bonsai-mold-page .gcbm-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gc-bonsai-mold-page .gcbm-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .gc-bonsai-mold-page { font-size: 16px; }
  .gc-bonsai-mold-page h2 { font-size: 25px; }
  .gc-bonsai-mold-page h3 { font-size: 18px; }
  .gc-bonsai-mold-page .gcbm-hero { padding: 36px 16px 32px; }
  .gc-bonsai-mold-page .gcbm-hero-title { font-size: 29px; }
  .gc-bonsai-mold-page .gcbm-hero-lead { font-size: 16px; }
  .gc-bonsai-mold-page .gcbm-sec { padding: 36px 16px; }
  .gc-bonsai-mold-page .gcbm-grid-2,
  .gc-bonsai-mold-page .gcbm-grid-3,
  .gc-bonsai-mold-page .gcbm-grid-4 { grid-template-columns: 1fr; }
  .gc-bonsai-mold-page .gcbm-hero-facts { grid-template-columns: 1fr; }
  .gc-bonsai-mold-page .gcbm-cta { width: 100%; }
  .gc-bonsai-mold-page .gcbm-table tbody th { width: 140px; }
  .gc-bonsai-mold-page { padding-bottom: env(safe-area-inset-bottom); }
}
