.top-page {
  --tp-accent:   #14A128;
  --tp-accent-h: #388E3C;
  --tp-heading:  #3C3C3C;
  --tp-text:     #595959;
  --tp-muted:    #888;
  --tp-faint:    #C6C6C6;
  --tp-red:      #FF0000;
  --tp-yellow:   #FFD400;
  --tp-star:     #FFC500;
  --tp-link:     #0074FF;

  --tp-card:     #FFFFFF;
  --tp-line:     #E4E4E4;
  --tp-soft:     #F2F2F2;

  --tp-r-card: 10px;
  --tp-r:      5px;
  --tp-r-sm:   4px;

  --tp-h1:   36px;
  --tp-h2:   30px;
  --tp-h3:   24px;
  --tp-h4:   20px;
  --tp-sect: 28px;
  --tp-body: 16px;
  --tp-lh:   1.625;

  --tp-sticky: 118px;

  --tp-pad:  22px;
  --tp-gap:  26px;

  font-family: "Roboto", Arial, sans-serif;
  font-size: var(--tp-body);
  line-height: var(--tp-lh);
  color: var(--tp-text);
}

@media (min-width: 992px) and (max-width: 1193px) {
  .top-page { --tp-sticky: 123px; }
}
@media (max-width: 991px) {
  .top-page { --tp-sticky: var(--hp-header-h, 61px); }
}
@media (max-width: 767px) {
  .top-page {
    --tp-h1:   28px;
    --tp-h2:   24px;
    --tp-h3:   20px;
    --tp-h4:   18px;
    --tp-sect: 24px;
    --tp-body: 15px;
    --tp-lh:   1.7;
    --tp-pad:  16px;
    --tp-gap:  16px;
  }
}
@media (max-width: 575px) {
  .top-page { --tp-h1: 26px; }
}

.top-page *,
.top-page *::before,
.top-page *::after { box-sizing: border-box; }

.top-page img { max-width: 100%; height: auto; }

.top-page a { color: var(--tp-accent); text-decoration: none; }
.top-page a:hover { color: var(--tp-accent); text-decoration: underline; }

.top-page :focus-visible { outline: 2px solid var(--tp-accent); outline-offset: 2px; }

.top-crumbs {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.top-crumbs a { color: #333; }
.top-crumbs a:hover { color: #333; text-decoration: underline; }
.top-crumbs li:not(:last-child)::after { content: ">"; margin-left: 8px; color: #333; }
.top-crumbs li:last-child a { pointer-events: none; cursor: default; }

.top-h1 {
  font-size: var(--tp-h1);
  line-height: 1.15;
  font-weight: 700;
  color: var(--tp-heading);
  margin: 0 0 20px;
}

.top-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  padding-bottom: 16px;
  margin-bottom: var(--tp-gap);
  border-bottom: 1px solid var(--tp-line);
}
.tm-author { display: flex; align-items: center; gap: 10px; }
.tm-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.tm-author small {
  display: block;
  font-size: 12px;
  color: var(--tp-muted);
  line-height: 1.3;
}
.tm-author a { font-size: 14px; font-weight: 700; color: #000; }
.tm-author a:hover { color: #000; }

.tm-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--tp-muted);
}
.tm-facts b { color: var(--tp-heading); font-weight: 700; }
.tm-rating { white-space: nowrap; color: var(--tp-star); }
.tm-rating b { color: var(--tp-heading); }

.top-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tp-gap);
  align-items: start;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .top-cols { grid-template-columns: minmax(0, 4fr) minmax(0, 1fr); }
  .top-cols.no-side { grid-template-columns: minmax(0, 1fr); }
  .top-side {
    position: sticky;
    top: calc(var(--tp-sticky) + 16px);
    z-index: 50;
    max-height: calc(100vh - var(--tp-sticky) - 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
.top-main { min-width: 0; }

.top-text .table-of-contents,
.tp,
.top-sect,
.ts-box {
  background: var(--tp-card);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  padding: var(--tp-pad);
}

.top-text { font-size: var(--tp-body); line-height: var(--tp-lh); color: var(--tp-text); }
.top-text p { margin: 0 0 14px; }
.top-text h2 {
  font-size: var(--tp-h2);
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.2;
  margin: 32px 0 14px;
  scroll-margin-top: calc(var(--tp-sticky) + 16px);
}
.top-text h3 {
  font-size: var(--tp-h3);
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.25;
  margin: 26px 0 12px;
  scroll-margin-top: calc(var(--tp-sticky) + 16px);
}
.top-text h4 {
  font-size: var(--tp-h4);
  font-weight: 700;
  color: var(--tp-heading);
  margin: 22px 0 10px;
  scroll-margin-top: calc(var(--tp-sticky) + 16px);
}
.top-text > *:first-child { margin-top: 0; }
.top-text img { border-radius: var(--tp-r-card); margin: 16px 0; }
.top-text ul,
.top-text ol { margin: 0 0 14px; padding-left: 22px; }
.top-text ul { list-style: disc outside; }
.top-text ol { list-style: decimal outside; }
.top-text li { list-style: inherit; margin-bottom: 6px; }
.top-text strong, .top-text b { color: var(--tp-heading); font-weight: 700; }
.top-text a { text-decoration: underline; }

.top-tablewrap {
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  background: var(--tp-card);
}
.top-text table {
  display: table;
  border-collapse: collapse;
  width: 100%;
  min-width: 460px;
  font-size: 14px;
  margin: 0;
}
.top-tablewrap > table { min-width: 460px; }
.top-text table,
.top-text thead,
.top-text tbody,
.top-text tr,
.top-text th,
.top-text td { border: 0; }
.top-text th,
.top-text td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--tp-line);
  text-align: left;
  vertical-align: middle;
  line-height: 1.45;
}
.top-text th {
  background: var(--tp-soft);
  color: var(--tp-heading);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.top-text tbody tr:last-child td,
.top-text tr:last-child td { border-bottom: 0; }
.top-text tbody tr:nth-child(even) td { background: #FBFBFB; }

.top-text .table-of-contents { margin: 0 0 var(--tp-gap); }
.top-text .table-of-contents h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-heading);
  scroll-margin-top: 0;
}
.top-text .table-of-contents ol { list-style: none; margin: 0; padding-left: 0; }
.top-text .table-of-contents ol ol { padding-left: 20px; margin: 6px 0 0; }
.top-text .table-of-contents li { margin: 0 0 8px; padding: 0; font-size: 14px; line-height: 1.4; }
.top-text .table-of-contents li:last-child { margin-bottom: 0; }
.top-text .table-of-contents a { display: inline; margin: 0; padding: 0; color: var(--tp-link); text-decoration: none; }
.top-text .table-of-contents a:hover { color: var(--tp-link); text-decoration: underline; }
.top-text .table-of-contents span {
  color: #000;
  font-weight: 700;
  margin-right: 4px;
}

.top-products { margin: var(--tp-gap) 0 0; }
.top-products-h {
  font-size: var(--tp-sect);
  font-weight: 700;
  color: var(--tp-heading);
  margin: 0 0 16px;
  line-height: 1.2;
}

.top-quick {
  margin: 0 0 var(--tp-gap);
  background: var(--tp-card);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  overflow: hidden;
}
.top-page .top-quick-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: var(--tp-pad) var(--tp-pad) 14px;
}
.top-quick-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: var(--tp-r-sm);
  background: var(--tp-yellow);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.top-page .top-quick-h {
  margin: 0 !important;
  font-size: var(--tp-h4);
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.25;
}
/* картку малює .top-quick — внутрішня обгортка дає лише горизонтальний скрол */
.top-page .top-quick .top-tablewrap {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tq {
  display: table;
  width: 100%;
  min-width: 720px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.35;
}
/* тема малює таблицям повну сітку — лишаємо тільки горизонтальні роздільники */
.tq th,
.tq td {
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--tp-line);
  text-align: left;
  vertical-align: middle;
}
.tq thead th {
  background: var(--tp-soft);
  color: var(--tp-heading);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.tq tbody tr:last-child td { border-bottom: 0; }
/* крайні клітинки вирівнюємо з падінгом шапки картки */
.tq th:first-child, .tq td:first-child { padding-left: var(--tp-pad); }
.tq th:last-child,  .tq td:last-child  { padding-right: var(--tp-pad); }
.tq tbody tr:hover td { background: #FAFAFA; }

.tq-c-num { width: 1%; white-space: nowrap; }
.tq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--tp-r-sm);
  background: var(--tp-yellow);
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.tq-c-name { min-width: 200px; }
.tq-c-name a { color: var(--tp-link); font-weight: 700; text-decoration: none; }
.tq-c-name a:hover { color: var(--tp-link); text-decoration: underline; }
.tq-c-best { color: var(--tp-text); }
.tq-c-price { width: 1%; white-space: nowrap; text-align: right; }

.top-page .tq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--tp-r);
  background: #14A128;
  background: var(--tp-accent, #14A128);
  border: 1px solid #14A128;
  border-color: var(--tp-accent, #14A128);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s;
}
.top-page .tq-btn:hover {
  background: #388E3C;
  background: var(--tp-accent-h, #388E3C);
  border-color: var(--tp-accent-h, #388E3C);
  color: #fff;
  text-decoration: none;
}
.tq-no { color: var(--tp-muted); font-size: 12px; white-space: nowrap; }
.tq-oos td { background: #FFFDF8; }
.tq-oos:hover td { background: #FFFBF0; }

.tp {
  margin-bottom: var(--tp-gap);
  scroll-margin-top: calc(var(--tp-sticky) + 16px);
}
.tp-oos { border-color: #F0D3A0; background: #FFFDF8; }

.tp-h {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--tp-h4);
  font-weight: 700;
  color: var(--tp-heading);
  margin: 0 0 16px;
  line-height: 1.3;
}
.tp-h i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  border-radius: var(--tp-r);
  background: var(--tp-yellow);
  color: #000;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.tp-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--tp-soft);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  padding: 14px;
}
.tp-oos .tp-top { background: #fff; }
@media (min-width: 640px) {
  .tp-top { grid-template-columns: 200px minmax(0, 1fr); align-items: start; }
}
.tp-img {
  background: #fff;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r);
  overflow: hidden;
}
.tp-img img { display: block; width: 100%; }

.tp-body { min-width: 0; }
.tp-name { font-size: 14px; font-weight: 700; color: #000; margin-bottom: 6px; line-height: 1.35; }
.tp-name a { color: #000; }
.tp-stock {
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-accent);
  margin-bottom: 10px;
}
.tp-stock.no { color: #D9822B; }
.tp-desc { font-size: 14px; line-height: 1.5; margin-bottom: 14px; }

.tp-acts { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }

.top-page .tp-btn-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: var(--tp-r);
  background: #14A128;
  background: var(--tp-accent, #14A128);
  border: 1px solid #14A128;
  border-color: var(--tp-accent, #14A128);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s, opacity .2s;
}
.top-page .tp-btn-price:hover {
  background: #388E3C;
  background: var(--tp-accent-h, #388E3C);
  border-color: var(--tp-accent-h, #388E3C);
  color: #fff;
  text-decoration: none;
}

.tp-specs {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin-top: 18px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  overflow: hidden;
}
.tp-specs tr,
.tp-specs td { border: 0; }
.tp-specs td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--tp-line);
  line-height: 1.4;
}
.tp-specs tr:last-child td { border-bottom: 0; }
.tp-specs td:first-child { color: var(--tp-muted); width: 52%; }
.tp-specs td:last-child { color: var(--tp-heading); font-weight: 500; }
.tp-specs tr:nth-child(odd) td { background: #F9FAFB; }
.tp-oos .tp-specs tr:nth-child(odd) td { background: #fff; }

.tp-pc {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  overflow: hidden;
  margin-top: 18px;
}
@media (min-width: 640px) {
  .tp-pc { grid-template-columns: 1fr 1fr; }
  .tp-pc-col + .tp-pc-col { border-left: 1px solid var(--tp-line); }
}
.tp-pc-col + .tp-pc-col { border-top: 1px solid var(--tp-line); }
@media (min-width: 640px) {
  .tp-pc-col + .tp-pc-col { border-top: 0; }
}
.tp-pc-h {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--tp-heading);
  background: var(--tp-soft);
  border-bottom: 1px solid var(--tp-line);
}

.tp-pc-h::before {
  content: "✓";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--tp-r-sm);
  background: var(--tp-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.tp-pc-col.no .tp-pc-h::before { content: "✕"; background: var(--tp-red); }
.tp-oos .tp-pc-h { background: #fff; }

.tp-pc ul { list-style: none; margin: 0; padding: 14px 16px 16px; }
.tp-pc li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.5;
}
.tp-pc li:last-child { margin-bottom: 0; }
.tp-pc .ok li::before,
.tp-pc-col.ok li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tp-accent);
  font-weight: 700;
}
.tp-pc .no li::before,
.tp-pc-col.no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--tp-red);
  font-weight: 700;
}

.top-sect { margin-top: var(--tp-gap); }
.top-sect > h2 {
  font-size: var(--tp-sect);
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.2;
  margin: 0 0 16px;
}

.top-faq details {
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  background: #fff;
  margin-bottom: 10px;
}
.top-faq details:last-child { margin-bottom: 0; }
.top-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 46px 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.4;
  position: relative;
}
.top-faq summary::-webkit-details-marker { display: none; }
.top-faq summary:hover { color: var(--tp-accent); }
.top-faq summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--tp-muted);
  border-bottom: 2px solid var(--tp-muted);
  transform: rotate(45deg);
  transition: transform .2s;
}
.top-faq details[open] summary { color: var(--tp-accent); }
.top-faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 23px;
  border-color: var(--tp-accent);
}
.tf-ans {
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--tp-text);
}
.tf-ans a { text-decoration: underline; }

.top-why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 768px) { .top-why { grid-template-columns: repeat(4, 1fr); } }
.top-why > div {
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  padding: 16px;
  background: #fff;
}
.top-why b {
  display: block;
  font-size: var(--tp-h4);
  font-weight: 700;
  color: var(--tp-accent);
  margin-bottom: 6px;
  line-height: 1.2;
}
.top-why span { font-size: 13px; color: var(--tp-text); line-height: 1.45; }

.top-certs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 600px) { .top-certs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .top-certs { grid-template-columns: repeat(5, 1fr); } }
.top-certs a {
  display: block;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  padding: 10px;
  background: #fff;
  color: inherit;
  transition: border-color .2s;
}
.top-certs a:hover { text-decoration: none; border-color: var(--tp-accent); }
.top-certs img { display: block; width: 100%; border-radius: var(--tp-r); margin-bottom: 8px; }
.top-certs small {
  display: block;
  font-size: 12px;
  color: var(--tp-muted);
  line-height: 1.35;
}

.top-side { display: grid; gap: 18px; align-content: start; }
@media (min-width: 600px) and (max-width: 991px) {
  .top-side { grid-template-columns: 1fr 1fr; }
}
.ts-box { padding: 16px; }
.ts-box h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.3;
}

.ts-offer,
.ts-rel {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--tp-line);
  color: inherit;
}
.ts-offer:last-of-type,
.ts-rel:last-of-type { border-bottom: 0; }
.ts-offer:hover,
.ts-rel:hover { text-decoration: none; }
.ts-offer:hover b,
.ts-rel:hover b { color: var(--tp-accent); }

.ts-offer img { width: 46px; height: 46px; object-fit: contain; flex: 0 0 auto; }
.ts-rel img {
  width: 56px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--tp-r);
  flex: 0 0 auto;
}

.ts-offer span { min-width: 0; }
.ts-offer b,
.ts-rel b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.35;
  margin-bottom: 4px;
}
.ts-offer em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--tp-red);
}
.ts-offer s {
  font-size: 11px;
  font-weight: 400;
  color: var(--tp-muted);
  margin-left: 4px;
}

.ts-all {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-accent);
}

.top-comments { scroll-margin-top: calc(var(--tp-sticky) + 16px); }
.top-comments h2 {
  font-size: var(--tp-sect);
  font-weight: 700;
  color: var(--tp-heading);
  line-height: 1.2;
  margin: 0 0 16px;
}
.top-comments h3 {
  font-size: var(--tp-h4);
  font-weight: 700;
  color: var(--tp-heading);
  margin: 0 0 16px;
}
.top-comments h3 a { font-size: 13px; font-weight: 400; margin-left: 8px; }

.top-comments .button-comment-reply {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--tp-r);
  background: var(--tp-heading);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity .2s;
}
.top-comments .button-comment-reply:hover { opacity: .8; }

.top-comments .costumer-form {
  display: none;
  gap: 16px;
  margin: 24px 0 0;
}
.top-comments .costumer-form label {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--tp-text);
}
.top-comments .costumer-form input[type="text"],
.top-comments .costumer-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r);
  font-family: inherit;
  font-size: 14px;
  color: var(--tp-text);
  background: #fff;
}
.top-comments .costumer-form input[type="text"]:focus,
.top-comments .costumer-form textarea:focus {
  border-color: var(--tp-accent);
  outline: none;
}
.top-comments .costumer-form textarea { min-height: 110px; resize: vertical; }
.top-comments .costumer-form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-comments .star-rating { color: var(--tp-star); font-size: 18px; letter-spacing: 3px; }
.top-comments #button-comment {
  padding: 13px 26px;
  border: 0;
  border-radius: var(--tp-r);
  background: var(--tp-accent);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.top-comments #button-comment:hover { background: var(--tp-accent-h); }

.top-comments #comments { margin-top: 24px; }
.top-comments #comments h5 {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r-card);
  background: var(--tp-soft);
  font-size: 14px;
  font-weight: 400;
  color: var(--tp-text);
}
.top-comments #comments > .comment { padding: 20px 0; }
.top-comments #comments > .comment:first-child { padding-top: 0; }
.top-comments #comments > .comment:not(:last-of-type) {
  border-bottom: 1px solid var(--tp-line);
}
.top-comments .comment-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.top-comments .comment-author { color: var(--tp-text); font-weight: 700; }
.top-comments .comment-date { color: var(--tp-faint); }
.top-comments .comment-rating { display: flex; gap: 6px; margin-top: 8px; color: var(--tp-star); }
.top-comments .comment-middle {
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--tp-text);
}
.top-comments .comment-bottom { margin: 12px 0 0; }
.top-comments .comment-bottom a {
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-r);
  font-size: 14px;
  color: var(--tp-text);
}
.top-comments .comment-bottom a:hover {
  border-color: var(--tp-accent);
  color: var(--tp-accent);
  text-decoration: none;
}
.top-comments .comment-children {
  margin: 20px 0 0;
  padding: 16px;
  border-radius: var(--tp-r-card);
  background: var(--tp-soft);
}
.top-comments .comment-right { margin: 12px 0; }

@media (max-width: 640px) {
  .tp-acts { width: 100%; }
  .top-page .tp-btn-price { flex: 1; text-align: center; }
  .top-page .top-quick-h { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .top-page * { animation: none !important; transition: none !important; }
}
