*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FAFAF8;
  color: #1E1D1D;
  line-height: 1.65;
  font-size: 16px;
}

a { color: #A4744C; text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  background: #1E1D1D;
  color: #fff;
  padding: 20px 0;
}
header .inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
header .logo { font-size: 1.4rem; font-weight: 700; letter-spacing: .04em; color: #fff; }
header nav { display: flex; gap: 18px; flex-wrap: wrap; }
header nav a { color: #ccc; font-size: .85rem; }
header nav a:hover { color: #fff; text-decoration: none; }

.container { max-width: 860px; margin: 0 auto; padding: 40px 20px; }

h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
h2 { font-size: 1.35rem; font-weight: 700; margin: 40px 0 16px; }
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }

.intro { font-size: 1.05rem; color: #555; margin-bottom: 28px; max-width: 680px; }

.aggregate {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #E8E6E3;
  border-radius: 12px;
  padding: 16px 22px;
  margin-bottom: 36px;
}
.aggregate .score { font-size: 2.8rem; font-weight: 800; color: #1E1D1D; line-height: 1; }
.aggregate .details { display: flex; flex-direction: column; gap: 3px; }
.aggregate .stars { color: #F4A000; font-size: 1.3rem; letter-spacing: 2px; }
.aggregate .count { font-size: .85rem; color: #777; }

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review {
  background: #fff;
  border: 1px solid #E8E6E3;
  border-radius: 12px;
  padding: 20px 24px;
}
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.reviewer { font-weight: 600; font-size: .95rem; }
.reviewer-meta { font-size: .8rem; color: #888; margin-top: 2px; }
.review-stars { color: #F4A000; font-size: 1rem; letter-spacing: 1px; white-space: nowrap; }
.review-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.review-body { font-size: .93rem; color: #333; line-height: 1.6; }
.review-date { font-size: .78rem; color: #aaa; margin-top: 8px; }

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.product-card {
  background: #fff;
  border: 1px solid #E8E6E3;
  border-radius: 12px;
  padding: 20px;
}
.product-card h3 { font-size: 1rem; margin-bottom: 4px; }
.product-card .price { font-size: 1.2rem; font-weight: 700; color: #A4744C; margin-bottom: 6px; }
.product-card .rating { color: #F4A000; font-size: .9rem; }
.product-card a { display: inline-block; margin-top: 10px; font-size: .85rem; color: #A4744C; font-weight: 600; }

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.page-link {
  background: #fff;
  border: 1px solid #E8E6E3;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .85rem;
  color: #1E1D1D;
  transition: border-color .15s;
}
.page-link:hover { border-color: #A4744C; text-decoration: none; color: #A4744C; }

.faq { margin-top: 16px; }
.faq-item { border-bottom: 1px solid #E8E6E3; padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.faq-a { font-size: .93rem; color: #444; }

.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
.comparison-table th { background: #1E1D1D; color: #fff; padding: 12px 16px; text-align: left; }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid #E8E6E3; }
.comparison-table tr:nth-child(even) td { background: #F5F3F0; }
.comparison-table .check { color: #22a06b; font-weight: 700; }
.comparison-table .cross { color: #c23b22; }

.cta-box {
  background: #1E1D1D;
  color: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 48px;
  text-align: center;
}
.cta-box h2 { color: #fff; margin-top: 0; }
.cta-box p { color: #ccc; margin-bottom: 18px; }
.cta-btn {
  display: inline-block;
  background: #A4744C;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
}
.cta-btn:hover { background: #8f6340; text-decoration: none; }

footer {
  border-top: 1px solid #E8E6E3;
  padding: 28px 20px;
  text-align: center;
  font-size: .83rem;
  color: #888;
  margin-top: 60px;
}
footer a { color: #A4744C; }

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  .aggregate .score { font-size: 2.2rem; }
  .review { padding: 16px; }
}
