.aquos-bcc-app {
  --navy: #153f77;
  --navy-deep: #0a294f;
  --green: #2fc875;
  --green-dark: #159b55;
  --ink: #1c2c3d;
  --body: #607184;
  --line: #dbe4ea;
  --blue-soft: #eef6fb;
  --green-soft: #e9f8f1;
  --surface: #ffffff;
  --danger: #a3261d;
  width: min(726px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: normal;
}

.aquos-bcc-app *,
.aquos-bcc-app *::before,
.aquos-bcc-app *::after { box-sizing: border-box; }

.aquos-bcc-app button,
.aquos-bcc-app input { font: inherit; }
.aquos-bcc-app button { cursor: pointer; }
.aquos-bcc-app [hidden] { display: none !important; }

.aquos-bcc-app button:focus-visible,
.aquos-bcc-app input:focus-visible {
  outline: 3px solid #e4a11b;
  outline-offset: 3px;
}

.aquos-bcc-app .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.aquos-bcc-app .app-shell {
  width: 100%;
  margin: 0;
}

.aquos-bcc-app .selector-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 134px 100px;
  align-items: center;
  column-gap: 12px;
  min-height: 116px;
  padding: 18px 22px 15px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: 0 11px 28px rgb(14 41 67 / 8%);
}

.aquos-bcc-app .selector-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--navy);
}

.aquos-bcc-app .selector-card::after {
  content: "";
  position: absolute;
  inset: 8px auto 0 0;
  width: 7px;
  background: var(--green);
}

.aquos-bcc-app .selector-copy { min-width: 0; }

.aquos-bcc-app .eyebrow {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.25px;
}

.aquos-bcc-app .selector-card h2 {
  max-width: none;
  margin: 0;
  color: #183353;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.26;
}

.aquos-bcc-app .selector-form { display: contents; }

.aquos-bcc-app .selector-form input {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 2px solid #bdcad5;
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.aquos-bcc-app .selector-form input:hover { border-color: #93a9ba; }
.aquos-bcc-app .selector-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgb(21 63 119 / 10%);
  outline: 0;
}
.aquos-bcc-app .selector-form input[aria-invalid="true"] { border-color: var(--danger); }

.aquos-bcc-app .button {
  min-height: 48px;
  padding: 11px 14px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-transform: none;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}
.aquos-bcc-app .button:hover { transform: translateY(-1px); }
.aquos-bcc-app .button:active { transform: translateY(0); }
.aquos-bcc-app .button-primary {
  height: 50px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 7px 17px rgb(47 200 117 / 20%);
}
.aquos-bcc-app .button-primary:hover { background: #26bb6b; }

.aquos-bcc-app .input-error {
  grid-column: 1 / -1;
  margin-top: 13px;
  padding: 11px 14px;
  border-left: 4px solid var(--danger);
  border-radius: 5px;
  background: #fff1f0;
  color: #7f211b;
  font-size: 14px;
  line-height: 1.45;
}
.aquos-bcc-app .input-error button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aquos-bcc-app .result {
  margin-top: 16px;
  animation: aquos-bcc-reveal 260ms ease-out;
}

@keyframes aquos-bcc-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.aquos-bcc-app .result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgb(16 45 73 / 10%);
}

.aquos-bcc-app .result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
}

.aquos-bcc-app .result-head-copy { min-width: 0; }
.aquos-bcc-app .recommended {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: #7aefad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
}
.aquos-bcc-app .recommended::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
}
.aquos-bcc-app .result-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.17;
}
.aquos-bcc-app .result-for {
  margin: 6px 0 0;
  color: #cfdeed;
  font-size: 14px;
}

.aquos-bcc-app .back-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 7px;
  background: rgb(255 255 255 / 9%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}
.aquos-bcc-app .back-button:hover { background: rgb(255 255 255 / 16%); }

.aquos-bcc-app .result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.aquos-bcc-app .drawing-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 30px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.aquos-bcc-app .drawing-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}
.aquos-bcc-app .drawing-button img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.aquos-bcc-app .drawing-caption {
  margin: 10px 0 0;
  color: #728292;
  font-size: 13px;
  text-align: center;
}

.aquos-bcc-app .details-panel { padding: 20px 30px 22px; }
.aquos-bcc-app .capacity-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--green-soft);
}
.aquos-bcc-app .capacity-line span { color: #476356; font-size: 14px; }
.aquos-bcc-app .capacity-line strong { color: #157547; font-size: 20px; }

.aquos-bcc-app .spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.aquos-bcc-app .spec {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 78px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.aquos-bcc-app .spec:nth-child(odd) { border-right: 1px solid var(--line); }
.aquos-bcc-app .spec:nth-last-child(-n + 2) { border-bottom: 0; }
.aquos-bcc-app .spec-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy);
}
.aquos-bcc-app .spec-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aquos-bcc-app .spec dt {
  margin: 0 0 4px;
  color: var(--body);
  font-size: 12px;
  font-weight: 700;
}
.aquos-bcc-app .spec dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.aquos-bcc-app .spec dd small {
  display: block;
  margin-top: 3px;
  color: var(--body);
  font-size: 11px;
  font-weight: 400;
}

.aquos-bcc-app .atest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 0;
  padding: 10px 15px;
  border: 1px solid #c8dced;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.aquos-bcc-app .atest svg { width: 25px; height: 25px; flex: 0 0 25px; }
.aquos-bcc-app .included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.aquos-bcc-app .included li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f5fbf7;
  color: #305e43;
  font-size: 13px;
  line-height: 1.35;
}
.aquos-bcc-app .check {
  display: grid;
  place-items: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.aquos-bcc-app .warranty {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  margin: 0 0 12px;
  padding: 10px 14px;
  border: 1px solid #bfe5ce;
  border-radius: 9px;
  background: var(--green-soft);
}
.aquos-bcc-app .warranty-title {
  color: #177548;
  font-size: 13px;
  font-weight: 800;
}
.aquos-bcc-app .warranty p {
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid #b7d8c3;
  color: #496257;
  font-size: 13px;
  line-height: 1.45;
}
.aquos-bcc-app .warranty b { color: #1f4430; }

.aquos-bcc-app .inquiry { width: 100%; }
.aquos-bcc-app .details-panel .button-primary {
  min-height: 50px;
  height: 54px;
  padding: 11px 22px;
}
.aquos-bcc-app .more-note {
  margin: 0;
  color: #69798a;
  font-size: 12px;
  line-height: 1.45;
}
.aquos-bcc-app .result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
}
.aquos-bcc-app .close-result {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #b8c7d4;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}
.aquos-bcc-app .close-result:hover {
  border-color: var(--navy);
  background: var(--blue-soft);
}

.aquos-bcc-app .dialog {
  width: min(1120px, calc(100% - 28px));
  max-height: 90vh;
  padding: 28px;
  overflow: auto;
  border: 1px solid #cbd7df;
  border-radius: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 25px 80px rgb(0 20 45 / 26%);
}
.aquos-bcc-app .dialog::backdrop { background: rgb(8 28 52 / 70%); }
.aquos-bcc-app .dialog-close {
  float: right;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
  text-transform: none;
}
.aquos-bcc-app .image-dialog img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 18px;
}

@media (max-width: 760px) {
  .aquos-bcc-app .selector-card {
    grid-template-columns: 1fr 116px;
    row-gap: 14px;
    min-height: 0;
    padding: 26px 20px 20px 24px;
  }
  .aquos-bcc-app .selector-copy { grid-column: 1 / -1; }
  .aquos-bcc-app .selector-card h2 { font-size: 17px; }
  .aquos-bcc-app .selector-form input { height: 56px; }
  .aquos-bcc-app .button-primary { height: 56px; padding-inline: 15px; }
  .aquos-bcc-app .result-head { align-items: flex-start; padding: 20px; }
  .aquos-bcc-app .back-button { white-space: nowrap; }
  .aquos-bcc-app .drawing-panel,
  .aquos-bcc-app .details-panel { padding: 20px; }
}

@media (max-width: 520px) {
  .aquos-bcc-app .result-head { display: block; }
  .aquos-bcc-app .back-button { margin-top: 16px; }
  .aquos-bcc-app .spec-grid,
  .aquos-bcc-app .included { grid-template-columns: 1fr; }
  .aquos-bcc-app .spec:nth-child(odd) { border-right: 0; }
  .aquos-bcc-app .spec:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .aquos-bcc-app .warranty { grid-template-columns: 1fr; gap: 8px; }
  .aquos-bcc-app .warranty p {
    padding: 8px 0 0;
    border-top: 1px solid #b7d8c3;
    border-left: 0;
  }
  .aquos-bcc-app .result-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .aquos-bcc-app .more-note { text-align: center; }
  .aquos-bcc-app .close-result { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .aquos-bcc-app *,
  .aquos-bcc-app *::before,
  .aquos-bcc-app *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
  }
}

