/*
Theme Name: product-review-child
Template: product-review
*/
body {
  color: #000;
  font-size: 17px;
}
p {
  font-size: 17px;
}
.wp-block-table thead tr th {
  background: #473df2;
  text-align: center;
  color: #fff;
}
.wp-block-table td.has-text-align-center {
  text-align: center;
}
.bg-block {
  padding: 20px;
  background: #473df2;
  border: 2px solid #000;
  color: #fff;
}
.bg-block h2,
.bg-block h3 {
  color: #fff;
}
.nav.sidenav {
  display: flex;
  justify-content: flex-end;
}
.check-list {
  list-style-image: url(/wp-content/uploads/2025/09/mark-check.png);
}
.check-list li:not(:last-child) {
  margin-bottom: 10px;
}
.num-list {
  counter-reset: item;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  background: #fff;
}
.num-list li {
  counter-increment: item;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  margin: 10px 0;
  border-left: 6px solid #473df2;
  /* purple accent */
  border-radius: 10px;
  background: #fff;
}
/* circular number badge */
.num-list li::before {
  content: counter(item);
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  background: #473df2;
  /* badge background */
  color: #fff;
  /* badge number color */
  flex: none;
  box-shadow: 0 2px 6px rgba(71, 61, 242, 0.08);
}
/* make <strong> stand out but inherit the palette */
.num-list li strong {
  display: inline-block;
  font-weight: 700;
  color: #473df2;
}
.tip-list {
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}
.tip-list li {
  position: relative;
  padding: 14px 16px 14px 52px;
  /* extra left padding for icon */
  margin: 10px 0;
  background: #473df2;
  /* purple card */
  color: #fff;
  border-radius: 10px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(71, 61, 242, 0.15);
}
/* Decorative checkmark icon */
.tip-list li::before {
  content: "✔";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
}
/* Emphasize "Tip X:" */
.tip-list li strong {
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .toggle-nav {
    display: block;
    text-align: right;
  }
}
