/* ============================================
   TMO Product Description System
   ============================================ */
.tmo-product-desc {
  background: #eef6fa;
  padding: 24px;
  border-radius: 14px;
  margin: 20px 0;
  color: #222;
  font-family: inherit;
}
.tmo-product-desc,
.tmo-product-desc * { box-sizing: border-box; }

.tmo-product-desc p { font-size: 16px; line-height: 1.9; margin: 0 0 16px; }

.tmo-intro {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 18px;
}

.tmo-section-title {
  display: inline-block;
  background: #165c80;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin: 24px 0 14px;
}

.tmo-section-box {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.tmo-list { list-style: none; margin: 0; padding: 0; }
.tmo-list li {
  position: relative;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
  padding-inline-start: 30px;
}
.tmo-list li:last-child { margin-bottom: 0; }
.tmo-list li::before {
  content: "✅";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
}
.tmo-list.tmo-box-list li::before { content: "📦"; }

.tmo-table-wrap { width: 100%; overflow-x: auto; }
.tmo-spec-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.tmo-spec-table th,
.tmo-spec-table td {
  border: 1px solid #dce8ee;
  padding: 12px;
  font-size: 15px;
  line-height: 1.7;
  vertical-align: top;
  text-align: start;
}
.tmo-spec-table th {
  width: 32%;
  background: #e7f1f6;
  color: #165c80;
  font-weight: 700;
}

.tmo-note {
  background: #fff7df;
  border-inline-start: 5px solid #f2c94c;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #5f4b00;
  margin-top: 18px;
}

.tmo-faq-item {
  background: #fff;
  border: 1px solid #dce8ee;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.tmo-faq-item strong { display: block; color: #165c80; margin-bottom: 6px; }
.tmo-faq-item p { margin: 0; }

.tmo-related { background: #fff; padding: 18px; border-radius: 12px; margin-bottom: 18px; }
.tmo-related ul { list-style: none; margin: 0; padding: 0; }
.tmo-related li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
  padding-inline-start: 30px;
  position: relative;
}
.tmo-related li:last-child { margin-bottom: 0; }
.tmo-related li::before {
  content: "🔗";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
}
.tmo-related a { color: #165c80; font-weight: 600; text-decoration: none; }
.tmo-related a:hover { text-decoration: underline; }

.tmo-short { list-style: none; margin: 0 0 12px; padding: 0; }
.tmo-short li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: 7px;
  line-height: 1.7;
}
.tmo-short li::before {
  content: "✔";
  position: absolute;
  inset-inline-start: 0;
  color: #165c80;
  font-weight: 700;
}

@media (max-width: 768px) {
  .tmo-product-desc { padding: 14px; margin: 14px 0; border-radius: 12px; }
  .tmo-intro {
    font-size: 15.5px;
    line-height: 1.8;
    padding: 14px;
  }
  .tmo-section-title {
    font-size: 16px;
    padding: 7px 13px;
    margin: 20px 0 12px;
  }
  .tmo-section-box { padding: 14px; margin-bottom: 16px; }
  .tmo-list li {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 8px;
  }
  .tmo-spec-table th,
  .tmo-spec-table td {
    font-size: 14.5px;
    padding: 10px;
    line-height: 1.7;
  }
  .tmo-spec-table th { width: 38%; }
  .tmo-note { font-size: 14.5px; line-height: 1.8; }
}