:root {
  --ink: #1c1a17;
  --ink-soft: #57524a;
  --paper: #faf6f0;
  --paper-raised: #ffffff;
  --line: #e6ddd0;
  --accent: #b45309;
  --accent-deep: #7c3a09;
  --accent-soft: #fdecd8;
  --good: #3f6b3f;
  --good-bg: #e9f2e6;
  --warn: #8a5a12;
  --warn-bg: #fdf1d9;
  --neutral: #6b6459;
  --neutral-bg: #eee8dd;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

img { max-width: 100%; display: block; }

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-wa { background: #1f7a4d; color: #fff; }
.btn-wa:hover { background: #185f3c; color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

/* Announcement bar */
.announce {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  text-align: center;
}
.announce .mono { color: #e8d9c4; }

/* Header */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 64px;
}
@media (max-width: 900px) {
  .header-top { padding: 14px 24px; flex-wrap: wrap; gap: 12px; }
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand span { color: var(--accent); }

.search-bar {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  max-width: 480px;
  background: var(--paper-raised);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.search-bar button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 0 16px;
  align-self: stretch;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar button:hover { background: var(--accent-deep); }
@media (max-width: 900px) {
  .search-bar { order: 3; max-width: 100%; flex: 1 1 100%; }
}

.header-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 64px;
  border-top: 1px solid var(--line);
  overflow-x: auto;
}
.header-nav a { color: var(--ink-soft); white-space: nowrap; }
.header-nav a.active { color: var(--ink); }
@media (max-width: 900px) {
  .header-nav { padding: 10px 24px; gap: 22px; }
}

.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.phone-chip {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
@media (max-width: 700px) { .phone-chip { display: none; } }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; color: var(--ink-soft); padding: 20px 0 0;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div {
  display: flex; flex-direction: column; gap: 6px;
  padding: 26px 40px; border-right: 1px solid var(--line);
}
.trust-strip > div:last-child { border-right: none; }
.trust-strip .t-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; }
.trust-strip .t-sub { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 900px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(2) { border-right: none; }
}

/* Product card */
.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media {
  position: relative; background: #efe8dc; height: 170px;
  display: flex; align-items: center; justify-content: center;
}
.grade-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 2px;
}
.grade-a { background: var(--good-bg); color: var(--good); }
.grade-b { background: var(--warn-bg); color: var(--warn); }
.grade-c { background: var(--neutral-bg); color: var(--neutral); }
.grade-pending { background: #efe8dc; color: var(--ink-soft); }
.price-request { font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.card-specs { font-size: 12px; color: var(--ink-soft); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.price-old { font-size: 12.5px; color: var(--ink-soft); text-decoration: line-through; }
.price-new { font-size: 19px; font-weight: 700; color: var(--accent-deep); }
.card-link { color: inherit; display: flex; flex-direction: column; flex: 1; }
.card-link:hover .card-title { color: var(--accent-deep); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* Generic responsive layout grids used across pages */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 76px 0; gap: 56px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 44px 0; gap: 32px; }
}

.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: flex-start; }
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-layout aside { position: static !important; }
}

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-layout > div:first-child { position: static !important; }
}

.about-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.about-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-steps { grid-template-columns: 1fr 1fr; }
}

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.budget-tile { color: inherit; border-radius: 4px; padding: 26px; display: flex; flex-direction: column; gap: 6px; }

html, body { max-width: 100%; overflow-x: hidden; }

/* Placeholder laptop icon */
.laptop-icon svg { display: block; }

/* Footer */
footer.site {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 64px;
  background: var(--ink);
  color: #cfc7ba;
}
footer.site a { color: #cfc7ba; }
footer.site a:hover { color: #fff; }
footer .f-brand { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: #fff; }
footer .f-col { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
footer .f-label { font-size: 11px; color: #8a8377; margin-bottom: 4px; }
@media (max-width: 900px) {
  footer.site { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
}

/* WhatsApp floating bubble */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1f7a4d; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.wa-float:hover { background: #185f3c; }

/* Section spacing helpers */
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }

/* Filter sidebar */
.filter-label { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.filter-check {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 14px; cursor: pointer;
}
.filter-check span.count { color: var(--ink-soft); font-size: 12.5px; }
.filter-check input { accent-color: var(--accent); }
.filter-check.is-disabled { color: var(--ink-soft); cursor: default; opacity: 0.7; }

.price-readout {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 14px;
}
.range-slider { position: relative; height: 28px; }
.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  top: 10px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
}
.range-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: var(--line);
}
.range-slider input[type="range"]::-moz-range-track {
  height: 3px;
  background: var(--line);
}
.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  margin-top: -6.5px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--accent);
  cursor: pointer;
}
.range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--accent);
  cursor: pointer;
}
