/* numero5.com shared stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #faf9f6;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
}

.site-header {
  background: #1a1a1a;
  padding: 0;
}

.site-header .inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.site-header .logo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  color: #f5f0e8;
  text-decoration: none;
  letter-spacing: .04em;
}

.site-header .logo span {
  color: #c9a96e;
}

.site-header nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header nav a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  letter-spacing: .03em;
}

.site-header nav a:hover { color: #c9a96e; }

.hero {
  background: #1a1a1a;
  border-bottom: 1px solid #2e2e2e;
  padding: 36px 24px 32px;
  text-align: center;
}

.hero h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  color: #f5f0e8;
  font-weight: normal;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.hero h1 em {
  color: #c9a96e;
  font-style: normal;
}

.hero p {
  font-size: 14px;
  color: #888;
  letter-spacing: .03em;
}

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

h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #1a1a1a;
  letter-spacing: .04em;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

h2:first-child { margin-top: 0; }

h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #555;
  letter-spacing: .03em;
  margin: 28px 0 10px;
}

p { margin-bottom: 16px; color: #333; font-size: 15px; }

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

/* Price tables */
.table-wrap { overflow-x: auto; margin: 16px 0 28px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

thead tr {
  background: #1a1a1a;
  color: #f5f0e8;
}

thead th {
  padding: 10px 14px;
  text-align: left;
  font-weight: normal;
  letter-spacing: .04em;
  font-size: 13px;
  white-space: nowrap;
}

thead th:not(:first-child) { text-align: right; }

tbody tr:nth-child(even) { background: #f2ede4; }
tbody tr:nth-child(odd) { background: #faf9f6; }

tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid #e8e0d0;
  color: #222;
  vertical-align: middle;
}

tbody td:not(:first-child) { text-align: right; }

tbody td strong { color: #1a1a1a; font-weight: bold; }

tbody td a {
  color: #8b6914;
  font-size: 13px;
}

/* Best price highlight */
.best { font-weight: bold; }

/* Nav tabs for country sections */
.country-nav {
  display: flex;
  gap: 8px;
  margin: 24px 0 8px;
  flex-wrap: wrap;
}

.country-nav a {
  display: inline-block;
  padding: 6px 16px;
  background: #f0ebe0;
  border: 1px solid #d4c9ae;
  border-radius: 2px;
  font-size: 13px;
  color: #555;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: .03em;
}

.country-nav a:hover {
  background: #1a1a1a;
  color: #f5f0e8;
  text-decoration: none;
  border-color: #1a1a1a;
}

/* Comparison boxes */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0 28px;
}

.compare-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 20px;
}

.compare-box h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9a96e;
}

.compare-box ul {
  list-style: none;
  padding: 0;
}

.compare-box ul li {
  font-size: 13px;
  color: #444;
  padding: 4px 0;
  border-bottom: 1px solid #f0ebe0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.compare-box ul li:last-child { border-bottom: none; }

.compare-box ul li span { color: #888; font-size: 12px; }

/* Verdict box */
.verdict {
  background: #1a1a1a;
  color: #f5f0e8;
  border-radius: 3px;
  padding: 20px 24px;
  margin: 28px 0;
}

.verdict h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #c9a96e;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.verdict p { color: #ccc; font-size: 14px; margin: 0; }

/* Links page index */
.page-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.page-index a {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-left: 3px solid #c9a96e;
  padding: 14px 16px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background .15s;
}

.page-index a:hover {
  background: #f5f0e8;
  text-decoration: none;
}

.page-index a span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

/* Update notice */
.update {
  font-size: 12px;
  color: #aaa;
  text-align: right;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #e0d8c8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: .03em;
}

/* Footer */
footer {
  background: #111;
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: #666;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: .03em;
}

footer a { color: #888; }

@media (max-width: 600px) {
  .compare-grid { grid-template-columns: 1fr; }
  .page-index { grid-template-columns: 1fr; }
  thead th, tbody td { padding: 7px 8px; font-size: 12px; }
}
