:root {
  --bb-cream: #f5f0e8;
  --bb-pine: #2f4a3a;
  --bb-mauve: #a07c84;
  --bb-charcoal: #333333;
  --bb-brown: #8a5a3b;
  --bb-sky: #c8d7df;
  --bb-white: #ffffff;
  --bb-font-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --bb-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --bb-font-accent: 'Sacramento', 'Georgia', serif;
  --bb-radius-pill: 24px;
  --bb-radius-card: 12px;
  --bb-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  --bb-grid-max: 1200px;
  --bb-gutter-desktop: 24px;
  --bb-gutter-tablet: 20px;
  --bb-gutter-mobile: 16px;
  --bb-section-desktop: 64px;
  --bb-section-tablet: 48px;
  --bb-section-mobile: 32px;
  --bb-card-desktop: 32px;
  --bb-card-tablet: 24px;
  --bb-card-mobile: 16px;
}

body {
  background-color: var(--bb-white);
  color: var(--bb-charcoal);
  font-family: var(--bb-font-body);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.path-frontpage .region-content {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3 {
  color: var(--bb-pine);
  font-family: var(--bb-font-heading);
  font-weight: 600;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
}

h2 {
  font-size: 36px;
  line-height: 1.1;
}

h3 {
  font-size: 28px;
  line-height: 1.15;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}

a {
  color: var(--bb-pine);
  text-decoration: none;
}

a:hover {
  color: var(--bb-brown);
}

.bb-container {
  max-width: var(--bb-grid-max);
  padding-left: var(--bb-gutter-desktop);
  padding-right: var(--bb-gutter-desktop);
}

@media (max-width: 1199px) {
  .bb-container {
    max-width: 92%;
    padding-left: var(--bb-gutter-tablet);
    padding-right: var(--bb-gutter-tablet);
  }
}

@media (max-width: 767px) {
  .bb-container {
    max-width: 100%;
    padding-left: var(--bb-gutter-mobile);
    padding-right: var(--bb-gutter-mobile);
  }
}

.bb-section {
  padding: var(--bb-section-desktop) 0;
}

.bb-section-sm {
  padding: 24px 0;
}

.bb-section-alt {
  background-color: var(--bb-cream);
}

.bb-section-sky {
  background-color: rgba(200, 215, 223, 0.1);
}

@media (max-width: 1199px) {
  .bb-section {
    padding: var(--bb-section-tablet) 0;
  }
}

@media (max-width: 767px) {
  .bb-section {
    padding: var(--bb-section-mobile) 0;
  }
}

.bb-header-inner {
  min-height: 72px;
}

@media (max-width: 767px) {
  .bb-header-inner {
    min-height: 64px;
  }
}

.bb-nav-links .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-nav-links ul.menu li {
  margin: 0;
}

.bb-nav-links a {
  margin-right: 24px;
  position: relative;
}

.bb-nav-links a:last-child {
  margin-right: 0;
}

.bb-nav-links a::after {
  background-color: var(--bb-mauve);
  bottom: -6px;
  content: '';
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease;
  width: 100%;
}

.bb-nav-links a:hover::after {
  opacity: 1;
}

@media (max-width: 1199px) {
  .bb-nav-links a {
    margin-right: 16px;
  }
}

.bb-btn-primary {
  background-color: var(--bb-mauve);
  border: none;
  border-radius: var(--bb-radius-pill);
  color: var(--bb-white);
  padding: 12px 20px;
}

.bb-btn-primary:hover {
  background-color: var(--bb-brown);
  color: var(--bb-white);
}

.bb-btn-secondary {
  border: 1px solid var(--bb-pine);
  border-radius: var(--bb-radius-pill);
  color: var(--bb-pine);
  padding: 12px 20px;
}

.bb-btn-secondary:hover {
  border-color: var(--bb-brown);
  color: var(--bb-brown);
}

.bb-hero {
  min-height: 70vh;
  position: relative;
}

.bb-hero-media {
  background-position: center;
  background-size: cover;
  height: 100%;
  left: 0;
  min-height: 70vh;
  position: absolute;
  top: 0;
  width: 100%;
}

.bb-hero-overlay {
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.bb-hero-content {
  max-width: 600px;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.bb-hero-content h1 {
  margin-bottom: 16px;
}

.bb-hero-subhead {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .bb-hero-content {
    padding: 96px 0 72px;
  }
}

.bb-eyebrow {
  color: var(--bb-mauve);
  font-family: var(--bb-font-accent);
  font-size: 24px;
  margin-bottom: 8px;
}

.bb-card {
  background-color: var(--bb-white);
  border-radius: var(--bb-radius-card);
  box-shadow: var(--bb-shadow-card);
  height: 100%;
  padding: var(--bb-card-desktop);
}

.bb-card-icon {
  height: 56px;
  margin-bottom: 16px;
  width: 56px;
}

.bb-card h3 {
  margin-bottom: 8px;
}

@media (max-width: 1199px) {
  .bb-card {
    padding: var(--bb-card-tablet);
  }
}

@media (max-width: 767px) {
  .bb-card {
    padding: var(--bb-card-mobile);
  }
}

.bb-product-card {
  background-color: var(--bb-white);
  border-radius: var(--bb-radius-card);
  box-shadow: var(--bb-shadow-card);
  overflow: hidden;
}

.bb-product-media {
  background-position: center;
  background-size: cover;
  height: 0;
  padding-top: 100%;
}

.bb-product-body {
  padding: 24px;
}

.bb-tag {
  background-color: rgba(160, 124, 132, 0.15);
  border-radius: 12px;
  color: var(--bb-charcoal);
  display: inline-block;
  font-size: 12px;
  margin-bottom: 12px;
  padding: 4px 12px;
}

.bb-process {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

.bb-process-step {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  position: relative;
}

.bb-process-step::after {
  background-color: var(--bb-brown);
  content: '';
  height: 2px;
  left: 36px;
  position: absolute;
  top: 36px;
  width: calc(100% - 72px);
}

.bb-process-step:last-child::after {
  display: none;
}

.bb-process-icon {
  align-items: center;
  background-color: var(--bb-white);
  border: 2px solid var(--bb-brown);
  border-radius: 50%;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

@media (max-width: 991px) {
  .bb-process {
    grid-template-columns: 1fr;
  }

  .bb-process-step::after {
    display: none;
  }
}

.bb-photo-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 120px);
  margin-top: 24px;
}

.bb-photo-strip img {
  border-radius: 12px;
  height: 80px;
  object-fit: cover;
  width: 120px;
}

.bb-photo-strip img:nth-child(2) {
  margin-top: 12px;
}

.bb-map-card {
  background-color: rgba(47, 74, 58, 0.05);
  border-radius: 16px;
  padding: 24px;
}

.bb-newsletter {
  background-color: var(--bb-pine);
}

.bb-newsletter-form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  max-width: 480px;
  margin-top: 24px;
}

.bb-newsletter .form-control {
  border-radius: var(--bb-radius-pill);
}

.bb-footer {
  background-color: #78350f;
  color: #fffbeb;
  padding: 48px 0;
}

.bb-footer a {
  color: #fef3c7;
}

.bb-footer h3 {
  color: #fffbeb;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.bb-footer p {
  color: #fde68a;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.bb-footer-copyright {
  border-top: 1px solid #92400e;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #fcd34d;
  font-size: 0.9rem;
}

.bb-footer-border {
  display: none;
}

@media (max-width: 767px) {
  .bb-newsletter-form {
    grid-template-columns: 1fr;
  }
}

.bb-header-collection {
  display: flex;
  align-items: center;
}

.bb-sticky-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background-color: var(--bb-white, #fff);
}

.bb-section-highlighted {
  background-color: #d97706;
  color: #ffffff;
  position: relative;
}

.bb-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.bb-banner-spacer {
  flex: 0 0 auto;
  min-width: 80px;
}

.bb-banner-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bb-banner-login-btn {
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--bb-radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-family: var(--bb-font-heading);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.bb-banner-login-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.bb-section-highlighted .bb-header-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 16px;
}

.bb-header-collection .region-highlighted {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* Ensure region is full width for children */
  justify-content: center;
  gap: 16px;
}

/* Ensure messages appear above buttons and are full width */
/* Target the block wrapper that contains .messages */
.bb-header-collection .region-highlighted>div:has(.messages),
.bb-header-collection .region-highlighted>.block-system-messages-block {
  order: -1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Ensure padding doesn't overflow */
}

/* Also ensure the messages element itself is full width if needed */
.bb-header-collection .region-highlighted .messages {
  width: 100%;
  text-align: left;
  /* Standard alignment */
  box-sizing: border-box;
}

.bb-collection-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.bb-collection-buttons>div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-collection-buttons--prompt {
  padding: 0;
}

.bb-collection-banner-link {
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--bb-font-heading);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: wrap;
  justify-content: center;
}

.bb-collection-banner-link:hover {
  color: #ffffff;
  opacity: 0.9;
}

.bb-collection-banner-cta {
  text-decoration: underline;
}

.bb-collection-banner-total {
  font-weight: 700;
}

/* On the store page the checkout bar already shows total/items — hide them from the banner. */
.path-store .bb-collection-banner-total,
.path-store .bb-collection-banner-cta {
  display: none !important;
}

.path-store .bb-sticky-chrome {
  background-color: #d97706;
}

/* Below Bootstrap's md breakpoint (768px), the container drops to max-width: 540px
   which is too narrow for a single-row banner. Put the date on its own full-width
   second row; Login button stays on the right via space-between on row 1. */
@media (max-width: 767px) {
  .bb-banner-inner {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .bb-banner-spacer {
    min-width: auto;
  }
  /* Must match base specificity (.bb-section-highlighted .bb-header-collection)
     to override flex: 1 and force the date onto its own full-width row. */
  .bb-section-highlighted .bb-header-collection {
    flex: 0 0 100%;
    order: 3;
  }
  /* Tighter vertical padding so the bar stays compact.
     Use path-store + chrome selector (specificity 0,3,0) to beat Bootstrap's
     .py-3 { !important } which is only 0,1,0. */
  .path-store .bb-sticky-chrome .bb-section-highlighted {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  /* Smaller text so the date fits on fewer lines. */
  .bb-banner-confirmation {
    font-size: 0.85rem;
  }
}

/* Back-to-home link inside the amber bar spacer slot. */
.bb-banner-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.bb-banner-back-link:hover {
  opacity: 1;
  color: #ffffff;
}

/* ── Banner confirmation layout ───────────────────────────────────────── */

.bb-banner-confirmation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.bb-banner-icon {
  flex-shrink: 0;
}

.bb-banner-change-trigger {
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--bb-font-heading);
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.bb-banner-change-trigger:hover {
  opacity: 1;
}

.bb-banner-change-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.bb-banner-change-trigger[aria-expanded="true"] .bb-banner-change-arrow {
  transform: rotate(180deg);
}

.bb-banner-date-picker {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #92400e;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  z-index: 1021;
}

.bb-banner-date-picker[hidden] {
  display: none;
}

.bb-banner-date-option {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-family: var(--bb-font-heading);
  text-decoration: none;
  transition: background 0.15s;
}

.bb-banner-date-option:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.bb-collection-btn {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--bb-radius-card);
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--bb-font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.bb-collection-btn--summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.bb-collection-summary-title {
  font-family: var(--bb-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
  text-transform: none;
  text-align: left;
  width: 100%;
  color: #ffffff;
}

.bb-collection-summary-date {
  display: block;
  font-family: var(--bb-font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: none;
  color: #ffffff;
}

.bb-collection-summary-total {
  display: block;
  font-family: var(--bb-font-body);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  color: #ffffff;
}

.bb-collection-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.bb-collection-btn--active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #92400e;
}

.bb-collection-btn--active:hover {
  background-color: rgba(255, 255, 255, 0.85);
  color: #92400e;
}

@media (max-width: 767px) {
  .bb-section-highlighted {
    top: 64px;
  }

  .path-frontpage .bb-section-highlighted,
  .path-store .bb-section-highlighted {
    top: 0;
  }

  .bb-header-collection {
    display: flex;
  }

  .bb-collection-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .bb-collection-summary-date {
    font-size: 13px;
  }

  .bb-collection-summary-total {
    font-size: 11px;
  }

}

.checkout-pane-payment-information .form-radios {
  display: grid;
  gap: 12px;
}

.bb-paypal-divider {
  color: #6b7280;
  font-size: 12px;
  margin: 10px 0;
  text-align: center;
}

.bb-paypal-divider span {
  background: #fff;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.bb-paypal-divider::before {
  border-top: 1px solid #e5e7eb;
  content: '';
  display: block;
  margin-top: 9px;
}

.paypal-buttons-container,
#commerce-paypal-checkout-custom-card-fields {
  margin: 0 auto;
  max-width: 420px;
}

#commerce-paypal-checkout-custom-card-fields {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}

#commerce-paypal-checkout-custom-card-fields .commerce-paypal-card-fields-wrapper {
  gap: 10px;
}

#commerce-paypal-checkout-custom-card-fields .commerce-paypal-card-fields-wrapper[style] {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
}

#commerce-paypal-checkout-custom-card-fields label[for='commerce-paypal-card-number'],
#commerce-paypal-checkout-custom-card-fields #commerce-paypal-card-number {
  grid-column: 1 / -1;
}

#commerce-paypal-checkout-custom-card-fields label {
  color: #4b5563;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
}

#commerce-paypal-checkout-custom-card-fields .commerce-paypal-checkout-custom-card-field {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  height: 42px;
  margin-top: 0;
  padding: 10px 12px;
  width: 100%;
}

#commerce-paypal-card-number,
#commerce-paypal-expiration-date,
#commerce-paypal-cvv {
  margin-right: 0;
  width: 100%;
}

.checkout-pane-payment-information .button--primary {
  background: #0b1f4d;
  border-radius: 8px;
  margin-top: 8px;
  width: 100%;
}

.checkout-pane-payment-information .form-radios .js-form-type-radio,
.checkout-pane-payment-information .form-radios .form-type-radio {
  margin: 0;
  position: relative;
}

.checkout-pane-payment-information .payment-method--stored,
.checkout-pane-payment-information .payment-method--new {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.checkout-pane-payment-information .payment-method--stored+label,
.checkout-pane-payment-information .payment-method--new+label {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d9cec2;
  border-radius: var(--bb-radius-card);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.checkout-pane-payment-information .bb-payment-option-text {
  display: inline-block;
  margin-right: 12px;
}

.checkout-pane-payment-information .bb-saved-card-remove {
  color: var(--bb-charcoal);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.checkout-pane-payment-information .bb-saved-card-remove:hover {
  color: var(--bb-brown);
  text-decoration: none;
}

.checkout-pane-payment-information .payment-method--stored:checked+label,
.checkout-pane-payment-information .payment-method--new:checked+label {
  background-color: #f8f4ef;
  border-color: var(--bb-pine);
  box-shadow: 0 0 0 2px rgba(47, 74, 58, 0.12);
  transform: translateY(-1px);
}

.checkout-pane-payment-information .payment-method--stored:focus-visible+label,
.checkout-pane-payment-information .payment-method--new:focus-visible+label {
  box-shadow: 0 0 0 3px rgba(47, 74, 58, 0.2);
}

.checkout-pane-payment-information .bb-checkout-address-box {
  background-color: #fffdfb;
  border: 1px solid #d9cec2;
  border-radius: var(--bb-radius-card);
  margin-top: 14px;
  padding: 14px;
}

.checkout-pane-payment-information .bb-checkout-address-box>.form-item,
.checkout-pane-payment-information .bb-checkout-address-box .form-item {
  margin-bottom: 10px;
}

.checkout-pane-payment-information .bb-checkout-address-box>.form-item:last-child,
.checkout-pane-payment-information .bb-checkout-address-box .form-item:last-child {
  margin-bottom: 0;
}

.checkout-pane-payment-information .address-container-inline {
  background-color: #fffdfb;
  border: 1px solid #d9cec2;
  border-radius: var(--bb-radius-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item,
.checkout-pane-payment-information .address-container-inline>.form-item {
  margin: 0;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-given-name'] {
  order: 10;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-family-name'] {
  order: 20;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-organization'] {
  order: 30;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-address-line1'] {
  order: 40;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-address-line2'] {
  order: 50;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-locality'] {
  order: 60;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-administrative-area'] {
  order: 70;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-postal-code'] {
  order: 80;
}

.checkout-pane-payment-information .address-container-inline>.js-form-item[class*='address-country-code'] {
  order: 90;
}

article .field--name-field-image.field__items {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0 auto 20px;
  max-width: 760px;
}

article .field--name-field-image .field__item {
  display: flex;
  justify-content: center;
}

article .field--name-field-image .field__item img {
  border-radius: var(--bb-radius-card);
  box-shadow: var(--bb-shadow-card);
  cursor: zoom-in;
  max-width: min(320px, 90vw);
  width: 100%;
}

.bb-image-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 2000;
}

.bb-image-lightbox.is-open {
  display: flex;
}

.bb-image-lightbox img {
  border-radius: var(--bb-radius-card);
  max-height: 92vh;
  max-width: 92vw;
  object-fit: contain;
}

/* ── Store page amber header ──────────────────────────────────────────── */

.bb-store-header {
  background-color: #fffbeb;
  border-bottom: 1px solid #fde68a;
  padding: 2rem 0;
}

.bb-store-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #78350f;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}

.bb-store-header__back:hover {
  color: #b45309;
}

.bb-store-header__title {
  color: #78350f;
  font-size: 2.5rem;
  font-family: var(--bb-font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.bb-store-header__date {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bb-store-header__date strong {
  color: #78350f;
}

.bb-store-header__desc {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 767px) {
  .bb-store-header__title {
    font-size: 1.75rem;
  }
}
