:root {
  --bp-navy: #123964;
  --bp-navy-2: #0b2749;
  --bp-blue: #1d4f85;
  --bp-light-blue: #eff6ff;
  --bp-sky: #e8f2fb;
  --bp-green: #1f8b5b;
  --bp-gold: #f5a623;
  --bp-ink: #0f2037;
  --bp-muted: #5d6c7e;
  --bp-soft: #f6f9fc;
  --bp-line: #dbe5ef;
  --bp-line-2: #edf2f7;
  --bp-card: #ffffff;
  --bp-shadow: 0 14px 34px rgba(17, 41, 72, .08);
  --bp-shadow-soft: 0 10px 22px rgba(17, 41, 72, .06);
  --bp-radius: 12px;
  --bp-radius-lg: 16px;
  --bp-max: 1370px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--bp-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .bp-site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.bp-container {
  width: min(var(--bp-max), calc(100% - 64px));
  margin: 0 auto;
}
.bp-container-wide {
  width: min(1450px, calc(100% - 64px));
  margin: 0 auto;
}

/* Header */
.bp-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bp-line);
}
.bp-header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.bp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  font-weight: 800;
  color: var(--bp-ink);
  letter-spacing: -.03em;
  font-size: 25px;
}
.bp-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: linear-gradient(135deg, #254a76 0%, #0d2c52 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 6px 14px rgba(10,39,73,.18);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.07em;
  font-family: Arial, Helvetica, sans-serif;
}
.bp-brand-text span { font-weight: 500; }
.bp-main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-weight: 700;
  color: var(--bp-ink);
  font-size: 14px;
  flex: 1;
}
.bp-main-nav a { display: inline-flex; align-items: center; gap: 7px; }
.bp-main-nav a:hover,
.bp-header-actions a:hover { color: var(--bp-blue); }
.bp-caret { border: solid currentColor; border-width: 0 1.5px 1.5px 0; display: inline-block; padding: 3px; transform: rotate(45deg); margin-top: -4px; }
.bp-header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bp-ink);
  white-space: nowrap;
}
.bp-header-actions a,
.bp-cart-link { display: inline-flex; align-items: center; gap: 7px; }
.bp-header-icon { width: 18px; height: 18px; color: var(--bp-navy); }
.bp-mobile-menu-button { display:none; }

/* Buttons / forms */
.bp-btn,
.bp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 5px;
  border: 1px solid var(--bp-navy);
  background: var(--bp-navy);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 6px 12px rgba(18,57,100,.14);
  cursor: pointer;
}
.bp-btn:hover,
.bp-button:hover { background: var(--bp-navy-2); color: #fff; }
.bp-btn-outline {
  background: #fff;
  color: var(--bp-navy);
  box-shadow: none;
}
.bp-btn-outline:hover { background: var(--bp-light-blue); color: var(--bp-navy); }
.bp-btn-soft {
  background: var(--bp-light-blue);
  color: var(--bp-navy);
  border-color: #b7d3ee;
  box-shadow: none;
}
.bp-btn-wide { width: 100%; }
.bp-btn-xl { min-height: 52px; font-size: 17px; border-radius: 6px; }
.bp-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #b9c8d8;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 9px 20px rgba(17,41,72,.05);
}
.bp-search-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  min-height: 44px;
}
.bp-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  color: var(--bp-ink);
  background: transparent;
}
.bp-search input::placeholder { color: #8897a6; }
.bp-search .bp-btn { border-radius: 0; min-height: 44px; box-shadow: none; }

/* Homepage */
.bp-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--bp-line);
  background:
    linear-gradient(100deg, #fff 0%, #fff 39%, rgba(246,250,255,.75) 54%, rgba(246,250,255,0) 75%),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.bp-hero-inner {
  min-height: 345px;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
}
.bp-hero-copy {
  position: relative;
  padding: 46px 0 32px;
  z-index: 2;
}
.bp-eyebrow {
  color: var(--bp-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.bp-hero h1,
.bp-page-hero h1,
.bp-product-title,
.bp-section-title,
.bp-browse-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--bp-ink);
  letter-spacing: -.035em;
  line-height: .98;
}
.bp-hero h1 {
  font-size: clamp(36px, 4.2vw, 58px);
  margin: 0 0 18px;
  max-width: 590px;
}
.bp-hero p {
  font-size: 16px;
  margin: 0 0 20px;
  max-width: 600px;
  color: var(--bp-ink);
  line-height: 1.45;
}
.bp-hero-search { max-width: 530px; margin: 0 0 16px; }
.bp-hero-actions { display: flex; gap: 16px; }
.bp-hero-image {
  min-height: 345px;
  margin-right: calc((100vw - min(var(--bp-max), calc(100vw - 64px))) / -2);
  background-image: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.42) 22%, rgba(255,255,255,0) 42%), var(--bp-hero-image);
  background-size: cover;
  background-position: center;
  position: relative;
}
.bp-hero-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -200px;
  width: 430px;
  background:
    linear-gradient(35deg, transparent 0 31%, rgba(74,108,143,.08) 31% 32%, transparent 32% 100%),
    linear-gradient(110deg, transparent 0 54%, rgba(74,108,143,.06) 54% 55%, transparent 55% 100%),
    repeating-linear-gradient(0deg, rgba(74,108,143,.045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(74,108,143,.04) 0 1px, transparent 1px 42px);
  opacity: .85;
  pointer-events: none;
}

.bp-trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--bp-line);
}
.bp-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.bp-trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 26px;
  border-right: 1px solid var(--bp-line);
  align-items: center;
}
.bp-trust-item:last-child { border-right: 0; }
.bp-trust-icon { color: var(--bp-navy); }
.bp-trust-icon svg { width: 42px; height: 42px; stroke-width: 1.8; }
.bp-trust-item strong { display:block; font-size: 14px; margin-bottom: 2px; }
.bp-trust-item span { display:block; color: var(--bp-muted); font-size: 12px; line-height: 1.2; }

.bp-section {
  padding: 25px 0 0;
}
.bp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}
.bp-section-title {
  font-size: 26px;
  margin: 0;
}
.bp-view-link {
  color: var(--bp-navy);
  font-weight: 800;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}
.bp-card-grid-home {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.bp-plan-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-radius);
  overflow: hidden;
  box-shadow: var(--bp-shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.bp-plan-card:hover { transform: translateY(-2px); box-shadow: var(--bp-shadow); border-color: #c6d6e5; }
.bp-plan-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #eef3f8; }
.bp-plan-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bp-plan-card:hover .bp-plan-media img { transform: scale(1.025); }
.bp-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 5px;
  background: var(--bp-navy);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.bp-badge-green { background: var(--bp-green); }
.bp-plan-media .bp-badge { position: absolute; top: 10px; left: 10px; }
.bp-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  color: var(--bp-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 5px 14px rgba(14,42,75,.12);
}
.bp-plan-body { padding: 13px 14px 10px; }
.bp-plan-title { font-size: 16px; font-weight: 800; margin: 0 0 3px; letter-spacing: -.015em; }
.bp-plan-designer { font-size: 12px; color: var(--bp-muted); margin: 0 0 10px; }
.bp-plan-specs {
  color: #24364d;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  font-size: 13px;
  margin-bottom: 12px;
}
.bp-plan-specs span:not(:last-child)::after { content: "|"; margin: 0 7px; color: #9aabba; }
.bp-plan-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--bp-line-2);
  padding-top: 10px;
}
.bp-designer-mini { display:flex; align-items:center; gap: 7px; font-size: 11px; font-weight: 800; color: #293d54; }
.bp-mini-mark { width: 19px; height: 19px; border-radius: 4px; background: var(--bp-navy); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:10px; font-weight:900; }
.bp-price { font-size: 15px; font-weight: 900; color: var(--bp-ink); }
.bp-card-icons { display:flex; align-items:center; gap: 16px; padding: 9px 14px 12px; color: #324a64; font-size: 11px; border-top: 1px solid var(--bp-line-2); }
.bp-card-icons span { display:inline-flex; align-items:center; gap: 5px; white-space:nowrap; }
.bp-card-icons svg { width: 14px; height: 14px; color: var(--bp-navy); }

.bp-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 14px;
}
.bp-category-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: 8px;
  box-shadow: var(--bp-shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.bp-category-card:hover { transform: translateY(-2px); box-shadow: var(--bp-shadow); }
.bp-category-illustration { color: var(--bp-navy); height: 45px; }
.bp-category-illustration svg { width: 52px; height: 52px; }
.bp-category-card strong { font-size: 14px; }
.bp-category-card span { font-size: 12px; color: var(--bp-muted); }
.bp-for-strip {
  margin-top: 14px;
  border-top: 1px solid var(--bp-line);
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}
.bp-for-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 22px;
  padding: 18px 0 22px;
  align-items: center;
}
.bp-for-lead { display:grid; grid-template-columns:82px 1fr; gap:16px; align-items:center; }
.bp-for-lead svg { width: 80px; height: 70px; color: var(--bp-navy); opacity:.8; }
.bp-for-lead strong { display:block; font-size: 19px; margin-bottom: 3px; }
.bp-for-lead p, .bp-for-item p { margin:0; color:var(--bp-muted); font-size: 13px; }
.bp-for-item { display:grid; grid-template-columns:26px 1fr; gap:10px; align-items:start; border-left:1px solid var(--bp-line); padding-left: 20px; }
.bp-check { width:24px; height:24px; border-radius:50%; background:var(--bp-navy); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:14px; }
.bp-for-item strong { display:block; margin-bottom:3px; }

/* Browse */
.bp-page-hero {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  border-bottom: 1px solid var(--bp-line);
  padding: 32px 0;
}
.bp-page-hero-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(440px, 650px);
  gap: 38px;
  align-items: center;
}
.bp-browse-title,
.bp-page-hero h1 { font-size: clamp(34px, 3.2vw, 50px); margin: 0 0 11px; }
.bp-page-hero p { margin:0; color: var(--bp-muted); font-size: 16px; }
.bp-browse-layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 30px;
  padding: 18px 0 44px;
}
.bp-filter-panel {
  background: #fff;
  border: 1px solid var(--bp-line);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--bp-shadow-soft);
  padding: 14px 14px 20px;
  align-self: start;
  position: sticky;
  top: 78px;
}
.bp-filter-top { display:flex; justify-content:space-between; align-items:center; margin-bottom: 14px; }
.bp-filter-top strong { font-size: 13px; }
.bp-filter-top a { color: var(--bp-blue); font-size: 12px; font-weight: 800; }
.bp-filter-group { border-top: 1px solid var(--bp-line-2); padding: 12px 0; }
.bp-filter-group:first-of-type { border-top: 0; padding-top: 0; }
.bp-filter-title { margin:0 0 8px; font-size: 13px; font-weight: 900; }
.bp-check-row { display:flex; align-items:center; gap: 8px; margin: 6px 0; font-size: 12px; color: #24364d; }
.bp-check-row input { width: 14px; height: 14px; }
.bp-filter-count { margin-left:auto; color: #647589; font-size: 11px; }
.bp-more-link { color: var(--bp-blue); font-size: 12px; font-weight: 800; display:inline-block; margin-top: 2px; }
.bp-pill-row { display:flex; flex-wrap:wrap; gap: 8px; }
.bp-pill { min-width: 36px; min-height: 28px; padding: 0 11px; display:inline-flex; align-items:center; justify-content:center; border: 1px solid var(--bp-line); border-radius: 999px; color: #516276; background:#fff; font-size:12px; font-weight:700; }
.bp-pill-active { background: var(--bp-navy); color: #fff; border-color: var(--bp-navy); }
.bp-range { margin: 4px 0 0; }
.bp-range-labels { display:flex; justify-content:space-between; color:#52677d; font-size:11px; margin-bottom: 7px; }
.bp-range-track { position:relative; height: 4px; background: #dbe7f2; border-radius: 999px; margin: 0 13px; }
.bp-range-track span { position:absolute; inset: 0 20% 0 0; background: var(--bp-navy); border-radius:999px; }
.bp-range-track::before,
.bp-range-track::after { content:""; position:absolute; top:50%; transform:translateY(-50%); width:14px; height:14px; border-radius:50%; background:#fff; border:2px solid var(--bp-navy); box-shadow:0 1px 3px rgba(0,0,0,.12); }
.bp-range-track::before { left:0; }
.bp-range-track::after { right:20%; }
.bp-filter-submit { margin-top: 12px; }
.bp-found-text { text-align:center; color:var(--bp-muted); font-size:12px; margin-top:10px; }

.bp-results-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin: 12px 0 22px;
}
.bp-results-count { font-size: 14px; font-weight: 900; }
.bp-sort { display:flex; align-items:center; gap:10px; color:#223851; font-weight:700; font-size: 13px; }
.bp-select {
  min-width: 168px;
  height: 42px;
  border:1px solid var(--bp-line);
  border-radius: 5px;
  padding: 0 14px;
  background:#fff;
  color: var(--bp-ink);
}
.bp-card-grid-browse { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px 20px; }
.bp-plan-card-large .bp-plan-body { padding: 14px 14px 12px; }
.bp-plan-card-large .bp-plan-title { font-size: 17px; }
.bp-plan-card-large .bp-plan-specs { font-size: 14px; }
.bp-plan-card-large .bp-card-icons { justify-content:space-between; }
.bp-card-icons .verified { margin-left:auto; }
.bp-pagination { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top: 32px; }
.bp-page-numbers { display:flex; align-items:center; gap:8px; }
.bp-page-numbers a,
.bp-page-numbers span { min-width:32px; height:32px; border:1px solid var(--bp-line); border-radius:5px; display:inline-flex; align-items:center; justify-content:center; font-size:13px; color:var(--bp-ink); background:#fff; }
.bp-page-numbers .current { background:var(--bp-navy); color:#fff; border-color:var(--bp-navy); }
.bp-showing { color:var(--bp-muted); font-size:13px; }

/* Product */
.bp-product-page { padding: 18px 0 54px; background:#fff; }
.bp-breadcrumbs { display:flex; align-items:center; flex-wrap:wrap; gap:10px; color:#728196; font-size:13px; margin: 5px 0 14px; }
.bp-breadcrumbs span:not(:last-child)::after { content:"›"; margin-left:10px; color:#b2bfcd; }
.bp-product-grid {
  display:grid;
  grid-template-columns: minmax(560px, 2.1fr) minmax(300px, .86fr) 330px;
  gap: 28px;
  align-items:start;
}
.bp-gallery-main { position:relative; aspect-ratio: 16 / 9; overflow:hidden; border-radius: 6px; border:1px solid var(--bp-line); background:#eef3f8; }
.bp-gallery-main img { width:100%; height:100%; object-fit:cover; }
.bp-gallery-arrow { position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.93); box-shadow:0 5px 14px rgba(0,0,0,.14); color:var(--bp-navy); display:flex; align-items:center; justify-content:center; font-weight:900; font-size:24px; }
.bp-gallery-arrow.prev { left:12px; }
.bp-gallery-arrow.next { right:12px; }
.bp-gallery-heart { position:absolute; top:14px; right:14px; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.85); display:flex; align-items:center; justify-content:center; color:var(--bp-navy); }
.bp-thumb-row { display:grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap:9px; margin-top: 10px; }
.bp-thumb { border:1px solid var(--bp-line); border-radius:6px; overflow:hidden; height:76px; background:#fff; cursor:pointer; }
.bp-thumb.active { border-color: var(--bp-blue); box-shadow: inset 0 -3px 0 var(--bp-blue); }
.bp-thumb img { width:100%; height:100%; object-fit:cover; }
.bp-gallery-tabs { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:0; margin-top: 12px; border-top:1px solid var(--bp-line); border-bottom:1px solid var(--bp-line); }
.bp-gallery-tabs a { min-height: 38px; display:flex; align-items:center; justify-content:center; gap:7px; color:var(--bp-navy); font-weight:800; font-size: 12px; border-right:1px solid var(--bp-line); }
.bp-gallery-tabs a:last-child { border-right:0; }
.bp-product-info { padding: 20px 0 0; }
.bp-new-badge { display:inline-flex; align-items:center; height:22px; padding:0 8px; border-radius:4px; background:#e4f6e9; color:#197b44; font-weight:900; font-size:11px; margin-bottom: 12px; }
.bp-product-title { font-size: clamp(32px, 2.8vw, 42px); margin:0 0 12px; }
.bp-product-number { font-weight:900; margin-bottom: 8px; }
.bp-rating { display:flex; align-items:center; gap:8px; color:#526278; font-weight:800; margin-bottom:12px; }
.bp-stars { color: var(--bp-gold); letter-spacing:1px; }
.bp-product-info p { color:#344b63; line-height:1.5; margin:0 0 18px; }
.bp-quick-icons { display:flex; flex-wrap:wrap; gap:15px 22px; margin-bottom: 22px; color:#243f5d; font-weight:800; }
.bp-quick-icons span { display:inline-flex; align-items:center; gap:7px; }
.bp-product-actions { display:flex; gap:10px; }
.bp-product-actions .bp-btn { min-height:40px; font-size:13px; padding: 0 17px; }
.bp-purchase-card {
  background:#fff;
  border:1px solid var(--bp-line);
  border-radius: var(--bp-radius);
  box-shadow: var(--bp-shadow);
  padding: 18px;
  position: sticky;
  top: 78px;
}
.bp-purchase-card h3 { margin:0 0 6px; font-size: 14px; }
.bp-purchase-price { font-size: 31px; font-weight:900; margin-bottom: 20px; letter-spacing:-.03em; }
.bp-purchase-label { display:flex; align-items:center; gap:6px; color:#253c55; font-size:13px; font-weight:900; margin-bottom: 10px; }
.bp-package-option { display:grid; grid-template-columns:22px 1fr auto; gap:10px; align-items:start; padding: 12px; border:1px solid var(--bp-line); border-radius:6px; margin-bottom:10px; }
.bp-package-option.selected { border-color:#a7c6e5; background:#f7fbff; }
.bp-radio { width:17px; height:17px; border-radius:50%; border:2px solid #b8c7d6; display:inline-flex; align-items:center; justify-content:center; margin-top: 2px; }
.bp-radio::after { content:""; width:7px; height:7px; border-radius:50%; background:transparent; }
.bp-package-option.selected .bp-radio { border-color:var(--bp-navy); }
.bp-package-option.selected .bp-radio::after { background:var(--bp-navy); }
.bp-package-title { font-weight:900; display:block; }
.bp-package-sub { color:var(--bp-muted); display:block; font-size:12px; margin-top:1px; }
.bp-package-price { font-weight:800; color:#293e55; }
.bp-purchase-card .bp-select { width:100%; margin: 0 0 14px; }
.bp-purchase-card .bp-btn { margin-bottom:10px; }
.bp-purchase-benefits { margin-top: 22px; display:grid; gap:18px; }
.bp-benefit-row { display:grid; grid-template-columns:34px 1fr; gap:12px; align-items:start; }
.bp-benefit-row svg { width:31px; height:31px; color:var(--bp-navy); }
.bp-benefit-row strong { display:block; font-size:13px; }
.bp-benefit-row span { display:block; font-size:12px; color:var(--bp-muted); }
.bp-spec-card {
  grid-column: 1 / span 2;
  border:1px solid var(--bp-line);
  border-radius:8px;
  background:#fff;
  margin-top: 2px;
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  overflow:hidden;
}
.bp-spec-item { display:grid; grid-template-columns:35px 1fr; gap:8px; align-items:center; padding: 14px 15px; border-right:1px solid var(--bp-line-2); border-bottom:1px solid var(--bp-line-2); min-height:66px; }
.bp-spec-item:nth-child(6n) { border-right:0; }
.bp-spec-item svg { width:28px; height:28px; color:var(--bp-navy); }
.bp-spec-item strong { display:block; font-size:12px; color:#40556c; line-height:1.15; }
.bp-spec-item span { display:block; font-size:12px; font-weight:900; color:var(--bp-ink); line-height:1.15; }
.bp-product-lower { grid-column: 1 / span 2; display:grid; grid-template-columns: 1.4fr .8fr; gap:20px; margin-top: 12px; }
.bp-accordion { border:1px solid var(--bp-line); border-radius: 8px; overflow:hidden; background:#fff; }
.bp-accordion details { border-bottom:1px solid var(--bp-line-2); }
.bp-accordion details:last-child { border-bottom:0; }
.bp-accordion summary { list-style:none; min-height:44px; display:flex; align-items:center; justify-content:space-between; padding: 0 16px; font-weight:900; cursor:pointer; }
.bp-accordion summary::-webkit-details-marker { display:none; }
.bp-accordion summary::after { content:"⌄"; color:var(--bp-navy); font-size:20px; }
.bp-accordion details[open] summary::after { transform:rotate(180deg); }
.bp-accordion-content { padding: 0 16px 14px; color:var(--bp-muted); font-size: 14px; }
.bp-designer-card { border:1px solid var(--bp-line); border-radius:8px; background:#fff; padding: 16px; }
.bp-designer-card h3 { margin:0 0 12px; font-size:15px; }
.bp-designer-card-inner { display:grid; grid-template-columns:100px 1fr; gap:18px; align-items:center; }
.bp-designer-logo { width:90px; height:90px; border:1px solid var(--bp-line); border-radius: 8px; display:flex; align-items:center; justify-content:center; text-align:center; color:#253c55; font-family:Georgia,serif; font-size:20px; line-height:1.05; }
.bp-designer-card strong { display:inline-flex; align-items:center; gap:8px; font-size:15px; }
.bp-top-rated { background:#e8f2ff; color:var(--bp-blue); border-radius:999px; padding:3px 7px; font-size:10px; font-weight:900; }
.bp-designer-card p { margin: 8px 0; color:var(--bp-muted); font-size:13px; }
.bp-related { grid-column: 1 / span 2; margin-top: 18px; }
.bp-related-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:16px; }
.bp-related .bp-plan-title { font-size:14px; }
.bp-related .bp-plan-specs { font-size:11px; margin-bottom: 0; }
.bp-related .bp-plan-bottom { padding-top: 7px; }

/* Simple pages */
.bp-basic-page { padding: 55px 0; min-height: 60vh; }
.bp-basic-page h1 { font-family: Georgia, serif; font-size: 44px; line-height:1; }
.bp-basic-card { max-width: 850px; border:1px solid var(--bp-line); box-shadow:var(--bp-shadow-soft); border-radius:12px; padding:28px; }

.bp-site-footer { border-top:1px solid var(--bp-line); background:#f8fbfe; color:#516276; padding: 28px 0; font-size:13px; }
.bp-footer-grid { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.bp-footer-links { display:flex; gap:18px; font-weight:700; color:#344b63; }

/* Responsive */
@media (max-width: 1180px) {
  .bp-container, .bp-container-wide { width: min(100% - 36px, var(--bp-max)); }
  .bp-header-inner { gap: 18px; }
  .bp-brand { min-width: auto; font-size: 22px; }
  .bp-main-nav { gap: 18px; }
  .bp-header-actions { gap: 14px; }
  .bp-card-grid-home { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .bp-category-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .bp-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bp-trust-item { border-bottom:1px solid var(--bp-line); }
  .bp-browse-layout { grid-template-columns: 250px 1fr; gap:20px; }
  .bp-card-grid-browse { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bp-product-grid { grid-template-columns: minmax(0, 1fr) 330px; }
  .bp-product-info { grid-column:1; padding-top: 0; }
  .bp-spec-card, .bp-product-lower, .bp-related { grid-column: 1; }
  .bp-spec-card { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .bp-spec-item:nth-child(6n) { border-right:1px solid var(--bp-line-2); }
  .bp-spec-item:nth-child(3n) { border-right:0; }
}
@media (max-width: 900px) {
  body.admin-bar .bp-site-header { top: 46px; }
  .bp-main-nav, .bp-header-actions { display:none; }
  .bp-header-inner { justify-content:space-between; }
  .bp-mobile-menu-button { display:inline-flex; border:0; background:#fff; color:var(--bp-navy); font-weight:900; }
  .bp-hero-inner { grid-template-columns:1fr; }
  .bp-hero-copy { padding: 36px 0 26px; }
  .bp-hero-image { margin:0 -18px; min-height: 260px; }
  .bp-page-hero-row { grid-template-columns:1fr; gap:20px; }
  .bp-browse-layout { grid-template-columns:1fr; }
  .bp-filter-panel { position:static; }
  .bp-product-grid { grid-template-columns: 1fr; }
  .bp-purchase-card { position:static; }
  .bp-product-lower { grid-template-columns:1fr; }
  .bp-spec-card { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bp-spec-item:nth-child(3n) { border-right:1px solid var(--bp-line-2); }
  .bp-spec-item:nth-child(2n) { border-right:0; }
  .bp-related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .bp-container, .bp-container-wide { width: calc(100% - 28px); }
  .bp-brand { font-size: 19px; }
  .bp-brand-mark { width:36px; height:36px; font-size:20px; }
  .bp-hero h1 { font-size: 37px; }
  .bp-search { grid-template-columns:1fr; }
  .bp-hero-actions { flex-direction:column; align-items:stretch; }
  .bp-trust-grid, .bp-card-grid-home, .bp-card-grid-browse, .bp-category-grid, .bp-for-grid { grid-template-columns:1fr; }
  .bp-trust-item { border-right:0; }
  .bp-for-lead { grid-template-columns:1fr; }
  .bp-for-item { border-left:0; padding-left:0; }
  .bp-results-head, .bp-pagination { flex-direction:column; align-items:flex-start; }
  .bp-thumb-row { grid-template-columns: repeat(3,1fr); }
  .bp-gallery-tabs { grid-template-columns: repeat(2,1fr); }
  .bp-spec-card, .bp-related-grid { grid-template-columns:1fr; }
  .bp-spec-item { border-right:0 !important; }
  .bp-footer-grid { align-items:flex-start; flex-direction:column; }
  .bp-footer-links { flex-wrap:wrap; }
}
