/* Elite Aircraft — Controller.com-inspired catalog */
:root {
  --brand: #0057a8;
  --brand-dark: #003d75;
  --brand-red: #c8102e;
  --ink: #15202b;
  --muted: #5b6b79;
  --border: #dfe4e8;
  --bg: #ffffff;
  --panel: #f5f7f9;
  --hover: #eef3f8;
  --accent: #ffb703;
  --radius: 2px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 14px rgba(0, 0, 0, 0.12);
  --font: "Helvetica Neue", Arial, Helvetica, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.45;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Top bar ---------- */
.topbar {
  background: #0b2340;
  color: #fff;
  font-size: 12px;
  padding: 6px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #cfd8e3; }
.topbar a:hover { color: #fff; text-decoration: none; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.92) 100%),
    url("/images/header-bg.jpg") center 30% / cover no-repeat;
  border-bottom: 1px solid var(--border);
  padding: 0;
  backdrop-filter: saturate(1.2);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  gap: 10px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.logo .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font);
}
.logo .wordmark .brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.logo .wordmark .brand-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav { display: flex; gap: 28px; align-items: center; }
.primary-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 8px 0;
  position: relative;
}
.primary-nav a:hover { color: var(--brand); text-decoration: none; }
.primary-nav a.active { color: var(--brand-dark); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand-red);
}

/* ---------- Marketing Hero ---------- */
.marketing-hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(0, 87, 168, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0, 61, 117, 0.4) 0%, transparent 60%),
    linear-gradient(160deg, #0b2340 0%, #0f2b4f 50%, #0b2340 100%);
  color: #fff;
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
}
.marketing-hero .wrap { display: flex; flex-direction: column; gap: 28px; }
.marketing-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.marketing-hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  max-width: 780px;
}
.marketing-hero h1 em { font-style: normal; color: var(--accent); }
.marketing-hero .lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #d7e2ee;
  max-width: 640px;
}
.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 35, 64, 0.1) 0%, rgba(11, 35, 64, 0.82) 100%);
  transition: background 0.25s ease;
}
.cat-tile:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3); }
.cat-tile:hover::after { background: linear-gradient(180deg, rgba(11, 35, 64, 0.15) 0%, rgba(11, 35, 64, 0.6) 100%); }
.cat-tile:hover { text-decoration: none; color: #fff; }
.cat-tile > * { position: relative; z-index: 1; }
.cat-tile .cat-body { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; gap: 12px; }
.cat-tile .cat-name { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.cat-tile .cat-count { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Trust row ---------- */
.trust-row {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-row .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink);
}
.trust-item .ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--panel);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.trust-item strong { display: block; font-weight: 700; font-size: 14px; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: 12px; }

/* ---------- Featured listings ---------- */
.featured-section {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 20px;
}
.section-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.2px;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 4px;
  display: block;
}
.section-head .all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feat-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--ink);
}
.feat-card .feat-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f5;
  position: relative;
}
.feat-card .feat-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.feat-card:hover .feat-photo img { transform: scale(1.05); }
.feat-card .feat-ribbon {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}
.feat-card .feat-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.feat-card .feat-title { font-size: 17px; font-weight: 800; color: var(--brand-dark); text-transform: uppercase; letter-spacing: 0.3px; }
.feat-card .feat-loc { font-size: 12px; color: var(--muted); }
.feat-card .feat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.feat-card .feat-price { font-size: 18px; font-weight: 800; color: var(--brand-dark); }
.feat-card .feat-cta { font-size: 12px; font-weight: 700; color: var(--brand-red); text-transform: uppercase; letter-spacing: 0.6px; }

/* ---------- Sub-hero (breadcrumb) ---------- */
.sub-hero {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb { font-size: 12px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }

.page-title {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 0;
  color: var(--ink);
}
.page-subtitle { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ---------- Layout ---------- */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 20px 0 48px;
}

/* ---------- Sidebar / Filter ---------- */
.filter-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-panel .filter-head {
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-panel .filter-head button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 2px;
}
.filter-panel .filter-head button:hover { background: rgba(255,255,255,0.15); }
.filter-group { border-bottom: 1px solid var(--border); padding: 12px 14px; }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 8px;
  color: var(--brand-dark);
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
}
.filter-group label:hover { color: var(--brand); }
.filter-group label input { margin: 0; }
.filter-group .count { color: var(--muted); font-size: 12px; margin-left: auto; }

.range-row { display: flex; gap: 8px; align-items: center; }
.range-row input[type="number"] {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 13px;
  font-family: inherit;
}
.range-row span { color: var(--muted); font-size: 12px; }

/* ---------- Results toolbar ---------- */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 13px;
}
.toolbar .count-label strong { color: var(--brand-dark); }
.toolbar select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: inherit;
  font-size: 13px;
}

/* ---------- Listing card ---------- */
.results { display: flex; flex-direction: column; gap: 12px; }
.card {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-hover); border-color: #c8d2dc; }
.card .photo {
  aspect-ratio: 4 / 3;
  background: #eef2f5;
  overflow: hidden;
  position: relative;
}
.card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover .photo img { transform: scale(1.03); }
.card .photo .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 2px;
}
.card .info { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.card .info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
}
.card .info h3 a { color: inherit; }
.card .info .location { font-size: 12px; color: var(--muted); }
.card .info .specs {
  margin-top: 6px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.card .info .specs span strong { color: var(--ink); font-weight: 600; }
.card .info .seller {
  margin-top: auto;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.card .price-box {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-end;
  border-left: 1px solid var(--border);
  background: #fafcfd;
  min-width: 160px;
}
.card .price-box .price { font-size: 20px; font-weight: 800; color: var(--brand-dark); }
.card .price-box .price.call {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.card .price-box .cta {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
}
.card .price-box .cta:hover { background: #a70b26; text-decoration: none; }

/* ---------- Load more ---------- */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 4px;
}
.load-more-btn {
  background: #fff;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.load-more-btn:hover { background: var(--brand-dark); color: #fff; }
.load-more-btn:disabled,
.load-more-btn.hidden { display: none; }

/* ---------- Bottom content (Why / FAQ / Newsletter) ---------- */
.bottom-content {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.bottom-content .grid-3 {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 36px;
}
.bottom-content h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink); line-height: 1.5; }
.why-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}
.why-list li strong { display: block; font-weight: 700; color: var(--brand-dark); margin-bottom: 2px; font-size: 14px; }

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 8px;
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--brand); font-weight: 700; font-size: 18px; line-height: 1; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details[open] summary { border-bottom: 1px solid var(--border); }
.faq-list .faq-body { padding: 12px 14px; font-size: 13px; color: var(--muted); line-height: 1.6; }

.newsletter-card {
  background: var(--brand-dark);
  color: #fff;
  padding: 22px 22px 24px;
  border-radius: 3px;
}
.newsletter-card h3 { color: #fff; margin-bottom: 8px; }
.newsletter-card p { font-size: 13px; color: #c4d1e0; margin: 0 0 14px; line-height: 1.5; }
.newsletter-card form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-card input {
  padding: 11px 13px;
  border: 0;
  border-radius: 2px;
  font-family: inherit;
  font-size: 13px;
  background: #fff;
  color: var(--ink);
}
.newsletter-card button {
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
}
.newsletter-card button:hover { background: #a70b26; }
.newsletter-card .fine { font-size: 11px; color: #8aa0bd; margin-top: 6px; line-height: 1.5; }

.contact-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card .contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-card .contact-list li:last-child { border-bottom: 0; }
.contact-card .contact-list .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8aa0bd;
}
.contact-card .contact-list a,
.contact-card .contact-list span:not(.lbl) {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.contact-card .contact-list a:hover { color: var(--accent); text-decoration: none; }
.contact-card .contact-btn {
  display: block;
  text-align: center;
  background: var(--brand-red);
  color: #fff;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.contact-card .contact-btn:hover { background: #a70b26; color: #fff; text-decoration: none; }

/* ---------- Footer ---------- */
.footer {
  background: #0b2340;
  color: #cfd8e3;
  padding: 30px 0 20px;
  margin-top: 40px;
  font-size: 13px;
}
.footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer h4 { color: #fff; text-transform: uppercase; letter-spacing: 0.6px; font-size: 12px; margin: 0 0 10px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 6px; }
.footer a { color: #cfd8e3; }
.footer a:hover { color: #fff; }
.footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  color: #90a0b0;
}

/* ---------- Detail page ---------- */
.detail-hero {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.detail-hero h1 { margin: 6px 0 4px; font-size: 26px; color: var(--ink); }
.detail-hero .loc { color: var(--muted); font-size: 13px; }
.detail-hero .price-tag {
  display: inline-block;
  margin-top: 6px;
  background: var(--brand-red);
  color: #fff;
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 2px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 24px 0 48px;
}

.gallery { display: grid; grid-template-columns: 1fr; gap: 10px; }
.gallery .main-photo {
  aspect-ratio: 16 / 10;
  background: #eef2f5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery .main-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery .thumbs .thumb { aspect-ratio: 4 / 3; background: #eef2f5; overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: border-color 0.15s, transform 0.15s; }
.gallery .thumbs .thumb:hover { border-color: var(--brand-red); }
.gallery .thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.gallery .thumbs .thumb:hover img { transform: scale(1.04); }

.spec-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-top: 20px;
  overflow: hidden;
}
.spec-card h2 {
  background: var(--brand-dark);
  color: #fff;
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
}
.spec-card dl > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-card dl > div:nth-last-child(-n+2) { border-bottom: none; }
.spec-card dt { color: var(--muted); margin: 0; }
.spec-card dd { color: var(--ink); margin: 0; font-weight: 600; text-align: right; }

.description {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.description h2 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.side-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  position: sticky;
  top: 20px;
}
.side-card .price-large {
  background: var(--brand-dark);
  color: #fff;
  padding: 18px;
  text-align: center;
}
.side-card .price-large .amt { font-size: 28px; font-weight: 800; }
.side-card .price-large .label { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.6px; }
.side-card form { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.side-card form input, .side-card form textarea {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: inherit;
  font-size: 13px;
  resize: vertical;
}
.side-card form button {
  background: var(--brand-red);
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
}
.side-card form button:hover { background: #a70b26; }
.side-card .contact-block { padding: 20px 18px; display: flex; flex-direction: column; gap: 14px; }
.side-card .contact-block h3 { margin: 0; font-size: 15px; color: var(--brand-dark); text-transform: uppercase; letter-spacing: 0.8px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.side-card .contact-block .row { display: flex; flex-direction: column; gap: 2px; }
.side-card .contact-block .row .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: #6b7a85; font-weight: 600; }
.side-card .contact-block .row a { font-size: 16px; font-weight: 700; color: var(--brand-dark); }
.side-card .contact-block .row a:hover { color: var(--brand-red); text-decoration: none; }
.side-card .contact-block .hours { font-size: 12px; color: #55626b; line-height: 1.5; border-top: 1px solid var(--border); padding-top: 12px; }
.side-card .contact-block .cta-btn { display: block; text-align: center; background: var(--brand-red); color: #fff; padding: 11px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 2px; text-decoration: none; }
.side-card .contact-block .cta-btn:hover { background: #a70b26; text-decoration: none; color: #fff; }

.related { margin-top: 32px; }
.related h2 { font-size: 18px; color: var(--brand-dark); margin: 0 0 14px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.related-grid a { border: 1px solid var(--border); background: #fff; border-radius: 2px; overflow: hidden; transition: box-shadow 0.15s; color: var(--ink); }
.related-grid a:hover { box-shadow: var(--shadow-hover); text-decoration: none; }
.related-grid .ph { aspect-ratio: 4 / 3; background: #eef2f5; overflow: hidden; }
.related-grid .ph img { width: 100%; height: 100%; object-fit: cover; }
.related-grid .meta { padding: 8px 10px; }
.related-grid .meta .t { font-weight: 600; font-size: 13px; color: var(--brand-dark); }
.related-grid .meta .p { font-size: 13px; color: var(--brand-red); font-weight: 700; margin-top: 2px; }

/* Responsive */
@media (max-width: 1000px) {
  .layout { grid-template-columns: 1fr; }
  .card { grid-template-columns: 1fr; }
  .card .price-box { border-left: none; border-top: 1px solid var(--border); align-items: stretch; }
  .detail-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
  .marketing-hero { padding: 40px 0 32px; }
  .marketing-hero h1 { font-size: 30px; }
  .header .wrap { flex-wrap: wrap; min-height: 0; gap: 12px; }
  .header-actions { gap: 14px; margin-left: auto; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 12px; letter-spacing: 1px; }
  .logo .wordmark .brand-name { font-size: 16px; }
  .category-tiles { grid-template-columns: 1fr; }
  .trust-row .wrap { grid-template-columns: 1fr 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .bottom-content .grid-3 { grid-template-columns: 1fr; gap: 28px; }
}

.empty {
  padding: 40px;
  text-align: center;
  color: var(--muted);
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: 2px;
}

.hidden { display: none !important; }
