/* BMB Features — shared component styles */
.bmb-feature-section { padding: 4rem 0; }
@media (min-width: 1024px) { .bmb-feature-section { padding: 5.5rem 0; } }

.bmb-feature-card {
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.25);
  background: rgba(20, 18, 17, 0.6);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.bmb-feature-card:hover { border-color: rgba(180, 60, 70, 0.45); }

.bmb-form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .bmb-form-grid { grid-template-columns: 1fr 1fr; } }
.bmb-form-grid .bmb-full { grid-column: 1 / -1; }

.bmb-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c45c5c;
  margin-bottom: 0.4rem;
}
.bmb-field select,
.bmb-field input,
.bmb-field textarea {
  width: 100%;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.35);
  background: rgba(15, 14, 13, 0.8);
  color: #f0ebe3;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
}
.bmb-field select:focus,
.bmb-field input:focus,
.bmb-field textarea:focus {
  outline: none;
  border-color: rgba(200, 80, 80, 0.6);
}

.bmb-result-box {
  border-radius: 2px;
  border: 1px solid rgba(212, 175, 95, 0.25);
  background: linear-gradient(135deg, rgba(30, 22, 18, 0.9), rgba(20, 18, 17, 0.95));
  padding: 1.5rem;
}
.bmb-result-box .bmb-estimate {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: #e8d5a8;
}
.bmb-result-box .bmb-note {
  font-size: 0.75rem;
  color: #9a9590;
  margin-top: 0.5rem;
}

.bmb-catalog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .bmb-catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bmb-catalog-grid { grid-template-columns: repeat(3, 1fr); } }

.bmb-catalog-card {
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.25);
  background: rgba(20, 18, 17, 0.6);
  transition: transform 0.2s, border-color 0.2s;
}
.bmb-catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 60, 70, 0.45);
}
.bmb-catalog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.bmb-catalog-card .bmb-catalog-body { padding: 1.25rem; }

.bmb-spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.bmb-spec-tag {
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.3);
  color: #c4bdb4;
}

.bmb-tracker-steps {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 2rem 0;
  position: relative;
}
.bmb-tracker-steps::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(139, 30, 45, 0.3);
  z-index: 0;
}
.bmb-track-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bmb-track-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(139, 30, 45, 0.4);
  background: #141210;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #7a7570;
}
.bmb-track-step.is-done .bmb-track-dot,
.bmb-track-step.is-active .bmb-track-dot {
  border-color: #c45c5c;
  background: rgba(139, 30, 45, 0.25);
  color: #e8d5a8;
}
.bmb-track-step.is-active .bmb-track-dot { box-shadow: 0 0 12px rgba(196, 92, 92, 0.4); }
.bmb-track-label { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9a9590; }
.bmb-track-step.is-active .bmb-track-label,
.bmb-track-step.is-done .bmb-track-label { color: #e0d8cc; }

.bmb-cert-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .bmb-cert-grid { grid-template-columns: repeat(2, 1fr); } }

.bmb-cert-card {
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.25);
  overflow: hidden;
  background: rgba(20, 18, 17, 0.6);
}
.bmb-cert-card img { width: 100%; height: 140px; object-fit: cover; filter: blur(4px); transition: filter 0.3s; }
.bmb-cert-card.is-unlocked img { filter: none; }
.bmb-cert-card .bmb-cert-body { padding: 1rem 1.25rem; }

.bmb-case-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .bmb-case-grid { grid-template-columns: repeat(2, 1fr); } }

.bmb-case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}
.bmb-case-images img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
}
.bmb-case-images span {
  font-size: 0.6rem;
  text-align: center;
  color: #9a9590;
  display: block;
  margin-top: 0.25rem;
}

.bmb-blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
}
.bmb-blog-search {
  flex: 1;
  min-width: 200px;
}
.bmb-blog-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bmb-filter-btn {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.35);
  background: transparent;
  color: #c4bdb4;
  cursor: pointer;
  transition: all 0.2s;
}
.bmb-filter-btn.is-active,
.bmb-filter-btn:hover {
  border-color: #c45c5c;
  color: #e8d5a8;
  background: rgba(139, 30, 45, 0.15);
}
.bmb-blog-card.is-hidden { display: none; }

.bmb-export-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.bmb-export-table th,
.bmb-export-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(139, 30, 45, 0.2);
  text-align: left;
}
.bmb-export-table th {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c45c5c;
}

.bmb-tools-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.bmb-tool-link {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  border: 1px solid rgba(212, 175, 95, 0.25);
  color: #e8d5a8;
  text-decoration: none;
  transition: all 0.2s;
}
.bmb-tool-link:hover { background: rgba(212, 175, 95, 0.1); border-color: rgba(212, 175, 95, 0.45); }

/* Export page */
.bmb-export-root {
  color: #c4bdb4;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
}

.bmb-export-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c45c5c;
  margin: 0;
}

.bmb-export-heading {
  margin: 0.75rem 0 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #f5f0ea;
  line-height: 1.25;
}

.bmb-export-heading--lg { font-size: 1.875rem; }
.bmb-export-heading--md { font-size: 1.5rem; }
.bmb-export-heading--sm { font-size: 1.125rem; }

.bmb-export-lead {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #9a9590;
}

.bmb-export-section-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.bmb-export-section-head .bmb-export-lead { margin-top: 1rem; }

.bmb-export-two-col {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .bmb-export-two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.bmb-export-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px) { .bmb-export-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.bmb-export-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 7.5rem;
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.2);
  background: rgba(20, 18, 17, 0.5);
}
.bmb-export-stat-value {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: #e8d5a8;
  line-height: 1.15;
}
.bmb-export-stat-unit {
  display: block;
  margin-top: 0.2rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9590;
}
.bmb-export-stat-label {
  margin: 0.6rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: #c4bdb4;
  line-height: 1.4;
}
.bmb-export-stat-detail {
  margin: 0.35rem 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: #9a9590;
  line-height: 1.4;
}

.bmb-export-inco-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) { .bmb-export-inco-grid { grid-template-columns: repeat(3, 1fr); } }

.bmb-export-inco {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  text-align: left;
}
.bmb-export-inco-code {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  border: 1px solid rgba(212, 175, 95, 0.35);
  color: #e8d5a8;
  background: rgba(212, 175, 95, 0.08);
}
.bmb-export-inco-title {
  margin: 1rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #f5f0ea;
  line-height: 1.35;
}
.bmb-export-inco-desc {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #9a9590;
  flex: 1;
}
.bmb-export-inco-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 30, 45, 0.15);
}
.bmb-export-tag {
  display: block;
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #d4a0a0;
}
.bmb-export-tag strong {
  color: #c45c5c;
  font-weight: 600;
}
.bmb-export-inco-port {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(196, 92, 92, 0.85);
}

.bmb-export-currency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.bmb-export-currency {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.25rem;
  padding: 1rem 1.15rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.2);
  background: rgba(15, 14, 13, 0.5);
}
.bmb-export-currency-symbol {
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #e8d5a8;
  width: 2rem;
  text-align: center;
  line-height: 1;
}
.bmb-export-currency-code {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f5f0ea;
  line-height: 1.3;
}
.bmb-export-currency-label {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #9a9590;
}

.bmb-export-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bmb-export-market {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.3);
  color: #c4bdb4;
  line-height: 1;
}

.bmb-export-payment-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.bmb-export-payment-list li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #9a9590;
  border-bottom: 1px solid rgba(139, 30, 45, 0.12);
}
.bmb-export-payment-list li:last-child { border-bottom: none; }
.bmb-export-payment-check {
  color: #c45c5c;
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: center;
}
.bmb-export-leadtime {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #9a9590;
  border-top: 1px solid rgba(139, 30, 45, 0.3);
}
.bmb-export-leadtime strong { color: #f5f0ea; font-weight: 600; }

.bmb-export-steps {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) { .bmb-export-steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .bmb-export-steps { grid-template-columns: repeat(5, 1fr); } }

.bmb-export-step {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.2);
  background: rgba(20, 18, 17, 0.45);
  text-align: left;
}
.bmb-export-step-num {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #c45c5c;
  line-height: 1;
}
.bmb-export-step-title {
  margin: 0.75rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f5f0ea;
  line-height: 1.35;
}
.bmb-export-step-desc {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #9a9590;
  flex: 1;
}

.bmb-export-doc-grid {
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 480px) { .bmb-export-doc-grid { grid-template-columns: repeat(2, 1fr); } }

.bmb-export-doc {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.65rem;
  align-items: start;
  height: 100%;
  padding: 1rem 1.15rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.15);
  background: rgba(15, 14, 13, 0.4);
}
.bmb-export-doc-check {
  color: #c45c5c;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}
.bmb-export-doc-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f5f0ea;
  line-height: 1.4;
}
.bmb-export-doc-desc {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #9a9590;
}

.bmb-export-faq {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
}
.bmb-export-faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #f5f0ea;
}
.bmb-export-faq summary::-webkit-details-marker { display: none; }
.bmb-export-faq summary::after {
  content: "+";
  color: #c45c5c;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}
.bmb-export-faq[open] summary::after { content: "−"; }
.bmb-export-faq p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #9a9590;
}

.bmb-export-cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(30, 22, 18, 0.6) 0%, rgba(20, 18, 17, 0.9) 100%);
}
.bmb-export-cta .bmb-export-heading { margin-top: 0; }
.bmb-export-cta .bmb-export-lead { max-width: 36rem; margin-left: auto; margin-right: auto; }
.bmb-export-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.bmb-export-block { margin-top: 2.5rem; }
.bmb-export-block--sm { margin-top: 2rem; }
.bmb-export-markets-wrap { margin-top: 1rem; }
.bmb-export-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* RFQ multi-step form */
.bmb-rfq-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.bmb-rfq-step-pill {
  flex: 1;
  min-width: 5rem;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.4rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.25);
  color: #9a9590;
}
.bmb-rfq-step-pill.is-active {
  border-color: rgba(212, 175, 95, 0.45);
  color: #e8d5a8;
  background: rgba(212, 175, 95, 0.08);
}
.bmb-rfq-step-pill.is-done { color: #c4bdb4; }
.bmb-rfq-panel { display: none; }
.bmb-rfq-panel.is-active { display: block; }
.bmb-rfq-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.bmb-rfq-review {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #c4bdb4;
}
.bmb-rfq-review dt {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c45c5c;
  margin-top: 0.85rem;
}
.bmb-rfq-review dt:first-child { margin-top: 0; }
.bmb-rfq-review dd { margin: 0.2rem 0 0; color: #f0ebe3; }

/* Leather compare */
.bmb-compare-picks {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .bmb-compare-picks { grid-template-columns: repeat(3, 1fr); } }
.bmb-compare-table-wrap { overflow-x: auto; margin-top: 2rem; }
.bmb-compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.bmb-compare-table th,
.bmb-compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(139, 30, 45, 0.2);
  text-align: left;
  vertical-align: top;
}
.bmb-compare-table th {
  width: 11rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c45c5c;
  background: rgba(15, 14, 13, 0.5);
}
.bmb-compare-table td { color: #c4bdb4; }
.bmb-compare-thumb {
  width: 4.5rem;
  height: 3.25rem;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 0.35rem;
}
.bmb-compare-name {
  font-family: "Playfair Display", serif;
  color: #f0ebe3;
  font-size: 1rem;
}
.bmb-compare-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.bmb-compare-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #9a9590;
  font-size: 0.875rem;
}

/* Download center */
.bmb-dl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.bmb-dl-filter {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.3);
  background: transparent;
  color: #c4bdb4;
  cursor: pointer;
}
.bmb-dl-filter.is-active {
  border-color: rgba(212, 175, 95, 0.45);
  color: #e8d5a8;
  background: rgba(212, 175, 95, 0.08);
}
.bmb-dl-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .bmb-dl-grid { grid-template-columns: repeat(2, 1fr); } }
.bmb-dl-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(139, 30, 45, 0.25);
  background: rgba(20, 18, 17, 0.55);
  transition: border-color 0.2s;
}
.bmb-dl-card:hover { border-color: rgba(180, 60, 70, 0.45); }
.bmb-dl-format {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c45c5c;
}
.bmb-dl-title {
  margin: 0.5rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #f0ebe3;
}
.bmb-dl-desc {
  margin: 0.5rem 0 0;
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #9a9590;
}
.bmb-dl-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Printable download sheets */
.bmb-print-sheet {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: #1a1816;
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}
.bmb-print-sheet h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}
.bmb-print-sheet .bmb-print-meta {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.bmb-print-sheet h2 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b1e2d;
  margin: 1.5rem 0 0.5rem;
}
.bmb-print-sheet ul { margin: 0.25rem 0 0; padding-left: 1.2rem; }
.bmb-print-sheet img.bmb-print-hero {
  width: 100%;
  max-height: 14rem;
  object-fit: cover;
  margin: 1rem 0;
  border-radius: 2px;
}
.bmb-print-toolbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: rgba(20, 18, 17, 0.95);
  border-bottom: 1px solid rgba(139, 30, 45, 0.3);
}
@media print {
  .bmb-print-toolbar, .bmb-loader, header, footer, .maps-section, astro-island { display: none !important; }
  .bmb-print-sheet { padding: 0; max-width: none; }
  body { background: #fff !important; color: #000 !important; }
}