  :root {
    --bg-page: #f5f3ee;
    --bg-card: #ffffff;
    --bg-secondary: #f0ede5;
    --bg-info: #e6f1fb;
    --text-primary: #1a1814;
    --text-secondary: #6b6256;
    --text-tertiary: #9a9389;
    --text-info: #185fa5;
    --border-tertiary: rgba(26, 24, 20, 0.12);
    --border-secondary: rgba(26, 24, 20, 0.25);
    --radius-md: 8px;
    --radius-lg: 12px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.5;
    padding: 32px 20px;
    -webkit-font-smoothing: antialiased;
  }
  .page-frame {
    max-width: 1140px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--border-tertiary);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  }

.has-global-padding {
	padding-right: 0px !important;
	padding-left: 0px !important;
}

	.topbar {
    padding: 14px 20px;
    border-bottom: 0.5px solid var(--border-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-row { display: flex; align-items: center; gap: 10px; }
  .logo-mark {
    width: 26px; height: 26px;
    border-radius: var(--radius-md);
    background: var(--bg-info);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-info);
    font-weight: 500; font-size: 13px;
  }
  .logo-text { font-size: 14px; font-weight: 500; }
  .logo-text span { color: var(--text-secondary); font-weight: 400; }
  .search-bar {
    display: flex; align-items: center; gap: 6px;
    background: var(--bg-secondary);
    padding: 6px 10px;
    border-radius: var(--radius-md);
    font-size: 12px;
    color: var(--text-secondary);
    width: 280px;
  }
  .search-bar .glyph { color: var(--text-tertiary); }
  .search-bar .query { font-family: 'JetBrains Mono', monospace; color: var(--text-primary); }
  .breadcrumb {
    padding: 8px 20px;
    background: var(--bg-secondary);
    font-size: 11px;
    color: var(--text-secondary);
    display: flex; gap: 6px;
  }
  .breadcrumb .here { color: var(--text-primary); }

  .layout {
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
    align-items: start;
  }

  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    margin-bottom: 24px;
    align-items: start;
  }
 .product-image {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

/* image behavior */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
  h1 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }
  .hero-deck {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 12px;
    line-height: 1.55;
  }
  .badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
  .badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--radius-md);
  }
  .badge.green { background: #E1F5EE; color: #04342C; }
  .badge.blue { background: #E6F1FB; color: #042C53; }
  .badge.purple { background: #EEEDFE; color: #26215C; }
  .badge.gray { background: var(--bg-secondary); color: var(--text-secondary); }

  .actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .btn {
    padding: 7px 12px;
    border-radius: var(--radius-md);
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    border: 0.5px solid transparent;
    display: inline-flex; align-items: center; gap: 5px;
  }
  .btn.primary {
    background: var(--text-primary);
    color: var(--bg-card);
  }
  .btn.outline {
    border-color: var(--border-secondary);
    color: var(--text-primary);
    background: transparent;
  }
  .btn.buy {
    background: var(--bg-info);
    color: var(--text-info);
    border-color: var(--border-secondary);
  }

  /* SECTION */
  .section { margin-bottom: 24px; }
  .section-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* SPECS GRID */
  .specs-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 0.5px solid var(--border-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .spec-cell {
    padding: 11px 14px;
    border-right: 0.5px solid var(--border-tertiary);
    border-bottom: 0.5px solid var(--border-tertiary);
  }
  .spec-cell:nth-child(2n) { border-right: 0; }
  .spec-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .spec-key {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 3px;
  }
  .spec-val {
    font-size: 13px;
    font-weight: 500;
  }

  /* SIMILAR MODELS */
  .similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .similar-card {
    padding: 12px;
    border: 0.5px solid var(--border-tertiary);
    border-radius: var(--radius-md);
  }
  .sim-img {
    height: 60px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .sim-img svg { width: 35%; }
  .sim-model {
    font-size: 10px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 2px;
  }
  .sim-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .sim-meta {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .sim-buy {
    display: block;
    text-align: center;
    padding: 6px;
    font-size: 11px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-info);
    background: var(--bg-info);
    border: 0.5px solid var(--border-secondary);
    font-weight: 500;
  }

  /* COMPARISON TABLE */
  .compare-wrap {
    border: 0.5px solid var(--border-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    table-layout: fixed;
  }
  .compare-table th {
    text-align: left;
    padding: 9px 8px;
    font-weight: 500;
    background: var(--bg-secondary);
  }
  .compare-table th.spec-header {
    color: var(--text-secondary);
    width: 32%;
    padding-left: 12px;
  }
  .compare-table th.featured {
    background: var(--bg-info);
    color: var(--text-info);
  }
  .compare-table tbody tr {
    border-top: 0.5px solid var(--border-tertiary);
  }
  .compare-table td {
    padding: 8px 8px;
  }
  .compare-table td:first-child {
    color: var(--text-secondary);
    padding-left: 12px;
  }
  .compare-table td.featured {
    background: rgba(23, 95, 165, 0.05);
  }

  /* INSTALL */
  .install-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .install-card {
    padding: 11px 14px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
  }
  .install-step {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 4px;
  }
  .install-text {
    font-size: 13px;
    line-height: 1.6;
  }

  /* AD RAIL */
  .ad-rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .rail-label {
    font-size: 10px;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 2px;
  }
  .ad-card {
    border: 0.5px solid var(--border-tertiary);
    border-radius: var(--radius-md);
    padding: 12px;
    background: var(--bg-card);
  }
  .ad-tag {
    font-size: 9px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
  }
  .ad-image {
    height: 80px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .ad-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .ad-desc {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .ad-cta {
    display: block;
    text-align: center;
    padding: 6px;
    font-size: 11px;
    border: 0.5px solid var(--border-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
  }
  .partner-card {
    border: 0.5px dashed var(--border-tertiary);
    border-radius: var(--radius-md);
    padding: 12px;
    background: var(--bg-secondary);
  }

  /* FOOTER */
  .footer-bar {
    padding: 12px 20px;
    border-top: 0.5px solid var(--border-tertiary);
    background: var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
  }
  .footer-bar .url { font-family: 'JetBrains Mono', monospace; }