/* EE88 Homepage Enhancement Styles - loaded via mu-plugin */
/* Author: LEONSEO team | Updated: 2026-07-23 */

/* Stats grid (inserted right after H1) */
.ee88-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 6px 0;
}
.ee88-stats .stat {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.ee88-stats .stat .n {
  font-size: 24px;
  font-weight: 800;
  color: #ea2323;
  display: block;
  line-height: 1.1;
}
.ee88-stats .stat .l {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
  display: block;
}
@media (max-width: 768px) {
  .ee88-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Comparison table */
.ee88-tbl-wrap {
  overflow-x: auto;
  margin: 18px 0;
}
.ee88-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.ee88-tbl th {
  background: #ea2323;
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-weight: 700;
}
.ee88-tbl td {
  padding: 11px 10px;
  border-bottom: 1px solid #e6e8eb;
  color: #333;
  vertical-align: top;
}
.ee88-tbl tr:nth-child(even) td {
  background: #fafbfc;
}
.ee88-tbl .check { color: #22a06b; font-weight: 700; }
.ee88-tbl .warn { color: #d97706; font-weight: 700; }
.ee88-tbl .brand-col {
  background: #fff3f3;
  font-weight: 700;
  color: #ea2323;
}

/* FAQ accordion */
.ee88-faq details {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.ee88-faq details[open] {
  border-color: #ea2323;
  box-shadow: 0 2px 8px rgba(234,35,35,.08);
}
.ee88-faq summary {
  font-weight: 700;
  color: #222;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.ee88-faq summary::-webkit-details-marker { display: none; }
.ee88-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #ea2323;
  font-weight: 700;
  line-height: 1;
}
.ee88-faq details[open] summary::after { content: "−"; }
.ee88-faq .ans {
  padding-top: 10px;
  color: #444;
  font-size: 14px;
  line-height: 1.65;
}