/* Brand layer — sits on top of design-system tokens.
   Loaded after assets/colors_and_type.css */

/* ---- heart icon helpers ---- */
.lb-heart-rule {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--lb-vintage-clay);
  font-family: var(--lb-font-display);
  font-size: 11px; letter-spacing: var(--lb-tracking-widest);
  text-transform: uppercase;
}
.lb-heart-rule::before,
.lb-heart-rule::after {
  content: ""; flex: 1; height: 1px;
  background: var(--lb-rule);
}

/* Tiny inline heart (mask-driven; inherits currentColor) */
.lb-h {
  display: inline-block;
  width: 0.72em; height: 0.72em;
  background-color: currentColor;
  -webkit-mask: url("../assets/icon-heart.svg") center / contain no-repeat;
          mask: url("../assets/icon-heart.svg") center / contain no-repeat;
  vertical-align: 0.04em;
  flex-shrink: 0;
}

/* ---- wordmark used in the hero ---- */
.lb-mark {
  font-family: var(--lb-font-display);
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  line-height: 0.92;
  font-weight: 500;
}
.lb-mark .row-1 {
  font-size: 38px;
  letter-spacing: 0.06em;
  display: block;
}
.lb-mark .row-2 {
  font-size: 13px;
  letter-spacing: 0.42em;
  color: var(--lb-vintage-clay);
  display: block;
  margin-top: 8px;
  font-weight: 500;
}
.lb-est {
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.lb-slogan-sm {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lb-vintage-clay);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ---- frame around photo ---- */
.lb-frame {
  position: relative;
  border-radius: 14px;
  background: var(--lb-paper);
  padding: 10px;
  box-shadow:
    0 30px 60px -28px rgba(64,37,23,0.35),
    0 8px 18px -10px rgba(97,24,41,0.20),
    0 0 0 0.5px rgba(64,37,23,0.10);
  outline: 1px solid rgba(178, 96, 96, 0.45);
  outline-offset: -1px;
  will-change: transform;
  transition: transform 320ms var(--lb-ease);
}
.lb-frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(178, 96, 96, 0.28);
  border-radius: 9px;
  pointer-events: none;
}
.lb-frame img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* ---- buttons ---- */
.lb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--lb-font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms var(--lb-ease),
              color 240ms var(--lb-ease),
              border-color 240ms var(--lb-ease),
              transform 160ms var(--lb-ease);
  -webkit-tap-highlight-color: transparent;
}
.lb-btn:active { transform: scale(0.97); }
.lb-btn--primary {
  background: var(--lb-mulberry-wine);
  color: var(--lb-cream);
  border-color: var(--lb-mulberry-wine);
}
/* Inverse on hover/active — cream fill, wine text & border (per DS spec) */
.lb-btn--primary:hover,
.lb-btn--primary:active,
.lb-btn--primary:focus-visible {
  background: var(--lb-cream);
  color: var(--lb-mulberry-wine);
  border-color: var(--lb-mulberry-wine);
}
.lb-btn--secondary {
  background: transparent;
  color: var(--lb-mulberry-wine);
  border-color: var(--lb-mulberry-wine);
}
.lb-btn--secondary:hover { background: rgba(255,216,204,0.6); }
.lb-btn--ghost {
  background: transparent;
  color: var(--lb-rust-petal);
  border-color: transparent;
  padding: 10px 14px;
  letter-spacing: 0.30em;
  font-size: 11px;
}
.lb-btn--ghost:hover { color: var(--lb-mulberry-wine); }

/* iconic round button (used in admin cards) */
.lb-iconbtn {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  color: var(--lb-mulberry-wine);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 160ms var(--lb-ease), border-color 160ms var(--lb-ease);
}
.lb-iconbtn:hover {
  background: var(--lb-blush);
  border-color: rgba(97,24,41,0.20);
}

/* ---- fields ---- */
.lb-field { display: flex; flex-direction: column; gap: 6px; }
.lb-field label {
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
}
.lb-field input,
.lb-field textarea {
  font-family: var(--lb-font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--lb-rule);
  border-radius: 12px;
  background: var(--lb-paper);
  color: var(--lb-midnight-espresso);
  outline: none;
  transition: border-color 160ms var(--lb-ease), box-shadow 160ms var(--lb-ease);
  width: 100%; box-sizing: border-box;
  -webkit-appearance: none;
}
.lb-field input::placeholder,
.lb-field textarea::placeholder {
  color: var(--lb-midnight-espresso); opacity: 0.32;
}
.lb-field input:focus,
.lb-field textarea:focus {
  border-color: var(--lb-mulberry-wine);
  box-shadow: 0 0 0 4px rgba(97,24,41,0.10);
}
.lb-field--error input,
.lb-field--error textarea { border-color: var(--lb-rust-petal); }
.lb-field-error {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--lb-rust-petal);
  margin-top: 2px;
}

/* ---- quantity radio cards ---- */
.lb-qty {
  display: flex; flex-direction: column; gap: 12px;
}
.lb-qty-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 200ms var(--lb-ease), background 200ms var(--lb-ease);
  position: relative;
}
.lb-qty-opt:hover { border-color: rgba(97,24,41,0.30); }
.lb-qty-opt[aria-checked="true"] {
  border-color: var(--lb-mulberry-wine);
  background: rgba(255,216,204,0.32);
  box-shadow: 0 0 0 3px rgba(97,24,41,0.06);
}
.lb-qty-radio {
  width: 18px; height: 18px; border-radius: 999px;
  border: 1.5px solid var(--lb-vintage-clay);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lb-qty-opt[aria-checked="true"] .lb-qty-radio {
  border-color: var(--lb-mulberry-wine);
}
.lb-qty-opt[aria-checked="true"] .lb-qty-radio::after {
  content: "";
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--lb-mulberry-wine);
}
.lb-qty-name {
  font-family: var(--lb-font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  flex: 1;
}
.lb-qty-price {
  font-family: var(--lb-font-serif);
  font-size: 18px;
  color: var(--lb-midnight-espresso);
  font-style: italic;
}

/* ---- size selector ---- */
.lb-size-opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 14px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  transition: border-color 200ms var(--lb-ease),
              background 200ms var(--lb-ease),
              box-shadow 200ms var(--lb-ease);
}
.lb-size-opt:hover { border-color: rgba(97,24,41,0.30); }
.lb-size-opt[aria-checked="true"] {
  border-color: var(--lb-mulberry-wine);
  background: rgba(255,216,204,0.32);
  box-shadow: 0 0 0 3px rgba(97,24,41,0.06);
}
.lb-size-opt__icon {
  width: 90px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lb-size-opt__copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lb-size-opt__name {
  font-family: var(--lb-font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  line-height: 1.05;
}
.lb-size-opt__blurb {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 12.5px;
  color: var(--lb-midnight-espresso);
  opacity: 0.72;
  line-height: 1.35;
  text-wrap: pretty;
}
.lb-size-opt__pricing {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--lb-font-display);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  margin-top: 4px;
}

/* Text-only underlined hyperlink button (used for "Request a custom order") */
.lb-textlink {
  display: inline-block;
  margin: 14px auto 0;
  background: transparent;
  border: 0;
  padding: 8px 4px;
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--lb-rust-petal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
  align-self: center;
  width: 100%;
  text-align: center;
  transition: color 160ms var(--lb-ease);
}
.lb-textlink:hover { color: var(--lb-mulberry-wine); }

/* ---- modal ---- */
.lb-modal-scrim {
  position: absolute; inset: 0;
  background: rgba(64, 37, 23, 0.32);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 30;
  animation: lb-fade-in 260ms var(--lb-ease);
}
@keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-rise {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes lb-step-slide-next {
  from { opacity: 0; transform: translateX(26px) scale(0.992); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes lb-step-slide-prev {
  from { opacity: 0; transform: translateX(-26px) scale(0.992); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.lb-modal {
  width: 100%;
  background: var(--lb-cream);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 6px 22px 32px;
  box-sizing: border-box;
  box-shadow: 0 -20px 60px -20px rgba(64,37,23,0.35);
  /* Initial entrance animation runs once on mount; close + drag handled
     via inline transform set by OrderModal. */
  animation: lb-rise 420ms var(--lb-ease);
  max-height: 92%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  touch-action: pan-y;
  will-change: transform, opacity;
}
.lb-modal-step {
  animation: lb-step-slide-next 230ms var(--lb-ease) both;
  will-change: transform, opacity;
}
.lb-modal-step[data-motion="prev"] {
  animation-name: lb-step-slide-prev;
}
/* The top strip the user can drag/swipe to dismiss the sheet. */
.lb-modal-swipe {
  padding: 18px 0 14px;
  margin: 0 -22px;
  cursor: grab;
  touch-action: none;
  display: flex; justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}
.lb-modal-swipe:active { cursor: grabbing; }
.lb-modal-handle {
  width: 44px; height: 5px;
  border-radius: 999px;
  background: rgba(64,37,23,0.22);
  transition: background 160ms var(--lb-ease), width 200ms var(--lb-ease);
}
.lb-modal-swipe:hover .lb-modal-handle,
.lb-modal-swipe:active .lb-modal-handle {
  background: var(--lb-mulberry-wine);
  width: 56px;
}

.lb-modal-eyebrow {
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  text-align: center;
  margin-bottom: 4px;
}
.lb-modal-title {
  font-family: var(--lb-font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  text-align: center;
  margin: 0;
  line-height: 1.05;
}
.lb-modal-sub {
  font-family: var(--lb-font-serif);
  font-style: italic;
  text-align: center;
  font-size: 12.5px;
  color: var(--lb-vintage-clay);
  margin: 4px 0 12px;
  text-wrap: balance;
  padding: 0 6px;
}
.lb-loaf-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(97,24,41,0.44);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,216,204,0.48), rgba(253,242,236,0.74));
  box-shadow:
    0 0 0 0 rgba(97,24,41,0),
    inset 0 0 0 1px rgba(255,255,255,0.36);
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  animation: lb-active-loaf-pulse 1.8s ease-in-out infinite;
}
.lb-loaf-step span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.lb-loaf-step__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lb-mulberry-wine);
  box-shadow: 0 0 0 3px rgba(97,24,41,0.10);
  flex-shrink: 0;
}
.lb-loaf-step span:last-child {
  color: var(--lb-vintage-clay);
  flex-shrink: 0;
  font-size: 9px;
  letter-spacing: 0.18em;
}
@keyframes lb-active-loaf-pulse {
  0%, 100% {
    border-color: rgba(178,96,96,0.36);
    box-shadow:
      0 0 0 0 rgba(97,24,41,0),
      inset 0 0 0 1px rgba(255,255,255,0.36);
  }
  50% {
    border-color: rgba(97,24,41,0.66);
    box-shadow:
      0 0 0 5px rgba(97,24,41,0.075),
      inset 0 0 0 1px rgba(255,255,255,0.56);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lb-modal-step,
  .lb-loaf-step {
    animation: none !important;
  }
}
.lb-step-dots {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 16px;
}
.lb-step-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(178,96,96,0.30);
}
.lb-step-dot.is-on { background: var(--lb-mulberry-wine); }

.lb-note {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--lb-rust-petal);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  padding: 0 8px;
  text-wrap: balance;
}

/* ---- admin ---- */
.lb-admin {
  background: var(--lb-cream);
  min-height: 100%;
  padding: 24px 18px 80px;
  box-sizing: border-box;
}
.lb-admin-h {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px;
  gap: 14px;
}
.lb-admin-h h1 {
  font-family: var(--lb-font-display);
  font-size: 22px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  margin: 0;
}
.lb-admin-h .meta {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--lb-vintage-clay);
}

/* Brand mark in the admin header — small wheat sprig + LAUREL'S BAKEHOUSE
   wordmark stacked, with an "Admin · date" eyebrow underneath. Mirrors the
   landing-page lockup so the dashboard reads as the same brand. */
.lb-admin-brand {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.lb-admin-brand__sprig {
  width: 38px; height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.lb-admin-brand__words {
  display: flex; flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.lb-admin-brand__row1 {
  font-family: var(--lb-font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  font-weight: 500;
}
.lb-admin-brand__row2 {
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  margin-top: 4px;
}
.lb-admin-brand__row3 {
  font-family: var(--lb-font-display);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.78;
}
.lb-tabs {
  display: flex; gap: 4px;
  background: var(--lb-paper);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--lb-rule);
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lb-tabs::-webkit-scrollbar { display: none; }
.lb-tab {
  flex: 1;
  font-family: var(--lb-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 12px;
  border: 0; background: transparent;
  color: var(--lb-vintage-clay);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 200ms var(--lb-ease), color 200ms var(--lb-ease);
}
.lb-tab.is-on {
  background: var(--lb-mulberry-wine);
  color: var(--lb-cream);
}
.lb-tab-count {
  font-size: 10px;
  background: rgba(255,255,255,0.18);
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.lb-tab:not(.is-on) .lb-tab-count {
  background: rgba(97,24,41,0.10);
  color: var(--lb-mulberry-wine);
}

.lb-order-card {
  background: var(--lb-paper);
  border: 1px solid var(--lb-rule);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--lb-shadow-sm);
  margin-bottom: 12px;
  position: relative;
}
.lb-order-card__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 10px;
}
.lb-order-card__name {
  font-family: var(--lb-font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  margin: 0;
}
.lb-order-card__phone {
  font-family: var(--lb-font-body);
  font-size: 13px;
  color: var(--lb-midnight-espresso);
  opacity: 0.7;
  margin-top: 2px;
  display: inline-flex; align-items: center; gap: 5px;
}
.lb-order-card__qty {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--lb-midnight-espresso);
}
.lb-order-card__qty strong {
  font-family: var(--lb-font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: var(--lb-mulberry-wine);
  margin-right: 4px;
}
.lb-order-card__price {
  font-family: var(--lb-font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--lb-mulberry-wine);
}
.lb-order-card__notes {
  background: var(--lb-shell);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lb-midnight-espresso);
  line-height: 1.45;
  margin: 10px 0;
}
.lb-order-card__meta {
  font-family: var(--lb-font-body);
  font-size: 11px;
  color: var(--lb-vintage-clay);
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.lb-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--lb-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.lb-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor;
}
.lb-status--pending   { color: #b26060; background: rgba(178,96,96,0.12); }
.lb-status--confirmed { color: #863f43; background: rgba(134,63,67,0.12); }
.lb-status--completed { color: #5a7a4b; background: rgba(90,122,75,0.12); }
.lb-status--canceled  { color: #7a7a7a; background: rgba(120,120,120,0.10); }

/* Two-zone card actions:
   left  → compact contact (Text · Call) as icon pills
   right → the meaningful status action (Confirm / Complete + Cancel)
   This keeps the wine "Confirm" button readable at its native font size
   instead of being squeezed into a 4-up flex row. */
.lb-card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 12px;
}
.lb-card-actions__contact {
  display: flex; gap: 8px; flex-shrink: 0;
}
.lb-card-actions__status {
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap; justify-content: flex-end;
}

/* Compact icon-with-label pill, used for Text/Call quick actions. */
.lb-iconaction {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  font-family: var(--lb-font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  background: var(--lb-paper);
  border: 1px solid var(--lb-rule);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms var(--lb-ease), border-color 160ms var(--lb-ease);
}
.lb-iconaction:hover {
  background: var(--lb-blush);
  border-color: rgba(97,24,41,0.20);
}
.lb-iconaction__label {
  letter-spacing: 0.18em;
}

/* Status-changing buttons (Confirm, Mark complete, Cancel) sit at full
   readable font; primary uses the same inverse-on-hover treatment as the
   landing CTA. */
.lb-statusbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 16px;
  font-family: var(--lb-font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms var(--lb-ease),
              color 200ms var(--lb-ease),
              border-color 200ms var(--lb-ease),
              transform 160ms var(--lb-ease);
  white-space: nowrap;
}
.lb-statusbtn:active { transform: scale(0.97); }
.lb-statusbtn--primary {
  background: var(--lb-mulberry-wine);
  color: var(--lb-cream);
  border-color: var(--lb-mulberry-wine);
}
.lb-statusbtn--primary:hover,
.lb-statusbtn--primary:focus-visible {
  background: var(--lb-cream);
  color: var(--lb-mulberry-wine);
  border-color: var(--lb-mulberry-wine);
}
.lb-statusbtn--ghost {
  background: transparent;
  color: var(--lb-vintage-clay);
  border-color: transparent;
  padding: 10px 10px;
  letter-spacing: 0.22em;
}
.lb-statusbtn--ghost:hover { color: var(--lb-mulberry-wine); }

/* Kebab "⋯" menu — small round button + popover with secondary actions */
.lb-kebab { position: relative; display: inline-flex; }
.lb-kebab__btn {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  color: var(--lb-midnight-espresso);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 160ms var(--lb-ease), border-color 160ms var(--lb-ease);
}
.lb-kebab__btn:hover {
  background: var(--lb-blush);
  border-color: rgba(97,24,41,0.20);
  color: var(--lb-mulberry-wine);
}
.lb-kebab__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  background: var(--lb-paper);
  border: 1px solid var(--lb-rule);
  border-radius: 14px;
  box-shadow: var(--lb-shadow);
  padding: 6px;
  min-width: 200px;
  z-index: 5;
  animation: lb-kebab-in 160ms var(--lb-ease);
}
@keyframes lb-kebab-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lb-kebab__item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  font-family: var(--lb-font-body);
  font-size: 13px;
  color: var(--lb-midnight-espresso);
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: background 120ms var(--lb-ease), color 120ms var(--lb-ease);
}
.lb-kebab__item:hover {
  background: var(--lb-shell);
  color: var(--lb-mulberry-wine);
}
.lb-kebab__item.is-danger { color: var(--lb-rust-petal); }
.lb-kebab__item.is-danger:hover {
  background: rgba(134,63,67,0.08);
  color: var(--lb-mulberry-wine);
}
.lb-kebab__item[disabled] { opacity: 0.4; cursor: default; }

/* Admin date subtitle — sits below the brand block on its own row so the
   widely-tracked date can never wrap into the wordmark */
.lb-admin-sub {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  padding: 0 4px 16px;
  margin-top: -6px;
}

/* ---- login screen ---- */
.lb-login {
  background: var(--lb-blush);
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 28px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
.lb-login__sub {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--lb-vintage-clay);
  margin: 6px 0 28px;
}
.lb-login__title {
  font-family: var(--lb-font-display);
  font-size: 22px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  margin: 14px 0 2px;
}
.lb-login__form {
  width: 100%;
  background: var(--lb-paper);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--lb-shadow);
  display: flex; flex-direction: column; gap: 14px;
  box-sizing: border-box;
}


/* ============================================================
   Landing page top bar — translucent cream chip, copied from the
   design system's `components-nav`. Floats over the hero with a
   soft hairline border and 16px corners.
   ============================================================ */
.lb-topbar {
  position: relative;
  z-index: 3;
  margin: 10px 12px 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(253, 242, 236, 0.88);
  border: 1px solid var(--lb-rule-soft);
  border-radius: 16px;
  box-shadow: var(--lb-shadow-sm);
}

/* Flippable logo — monogram (front) and round secondary mark (back).
   Monotonic rotation: every hover-in or hover-out adds another 180°, so a
   full mouse-through is one complete 360°. Tap on touch devices does +360
   in a single motion. The CSS just paints the two faces; the rotation
   value is managed imperatively by the FlippingLogo component. */
.lb-fliplogo {
  perspective: 720px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.lb-fliplogo__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 520ms var(--lb-ease);
  will-change: transform;
}
.lb-fliplogo__face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lb-fliplogo__face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.lb-fliplogo__face--back { transform: rotateY(180deg); }

/* Wine ORDER pill (matches `.cta` in DS components-nav). */
.lb-topbar__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--lb-font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--lb-mulberry-wine);
  color: var(--lb-cream);
  border: 1.5px solid var(--lb-mulberry-wine);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 220ms var(--lb-ease),
              color 220ms var(--lb-ease);
}
.lb-topbar__cta:hover,
.lb-topbar__cta:active {
  background: var(--lb-cream);
  color: var(--lb-mulberry-wine);
}
.lb-topbar__cta .lb-h {
  transition: transform 400ms var(--lb-ease);
}
.lb-topbar__cta:hover .lb-h,
.lb-topbar__cta:active .lb-h {
  transform: scale(1.25);
}

/* ============================================================
   Quantity stepper used per-size in step 1.
   ============================================================ */
.lb-sizerow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  border-radius: 16px;
  transition: border-color 200ms var(--lb-ease),
              background 200ms var(--lb-ease);
}
.lb-sizerow[data-active="true"] {
  border-color: var(--lb-mulberry-wine);
  background: rgba(255,216,204,0.32);
  box-shadow: 0 0 0 3px rgba(97,24,41,0.06);
}
.lb-sizerow__icon {
  width: 78px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lb-sizerow__copy {
  display: flex; flex-direction: column;
  min-width: 0; gap: 2px;
}
.lb-sizerow__name {
  font-family: var(--lb-font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
}
.lb-sizerow__price {
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  display: inline-flex; align-items: center; gap: 7px;
}

.lb-stepper {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--lb-cream);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--lb-rule);
  flex-shrink: 0;
}
.lb-stepper__btn {
  width: 28px; height: 28px; border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--lb-mulberry-wine);
  font-family: var(--lb-font-display);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 160ms var(--lb-ease), color 160ms var(--lb-ease);
}
.lb-stepper__btn:hover:not(:disabled) {
  background: var(--lb-mulberry-wine);
  color: var(--lb-cream);
}
.lb-stepper__btn:disabled {
  opacity: 0.35; cursor: default;
  color: var(--lb-vintage-clay);
}
.lb-stepper__value {
  min-width: 22px;
  text-align: center;
  font-family: var(--lb-font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--lb-mulberry-wine);
  letter-spacing: 0.04em;
}

/* ============================================================
   Order summary — running total with crossed-out gross + savings
   ============================================================ */
.lb-summary {
  background: var(--lb-shell);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.lb-summary__row {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--lb-font-body);
  font-size: 13px;
  color: var(--lb-midnight-espresso);
}
.lb-summary__row--label {
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
}
.lb-summary__total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--lb-rule);
}
.lb-summary__total-label {
  font-family: var(--lb-font-display);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--lb-midnight-espresso);
}
.lb-summary__total-value {
  display: inline-flex; align-items: baseline; gap: 10px;
}
.lb-summary__gross {
  font-family: var(--lb-font-serif);
  font-size: 14px;
  color: var(--lb-vintage-clay);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.lb-summary__net {
  font-family: var(--lb-font-display);
  font-size: 22px;
  color: var(--lb-mulberry-wine);
  letter-spacing: 0.03em;
}
.lb-summary__saved {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 12.5px;
  color: var(--lb-rust-petal);
  text-align: right;
  display: inline-flex; align-items: center; gap: 5px;
  justify-content: flex-end;
}

/* ============================================================
   Flavor cards (5 options).
   ============================================================ */
.lb-flavor-list {
  display: grid; gap: 5px;
}
.lb-flavor {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 7px 11px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 180ms var(--lb-ease),
              background 180ms var(--lb-ease);
}
.lb-flavor:hover { border-color: rgba(97,24,41,0.30); }
.lb-flavor[aria-checked="true"] {
  border-color: var(--lb-mulberry-wine);
  background: rgba(255,216,204,0.32);
  box-shadow: 0 0 0 3px rgba(97,24,41,0.06);
}
/* Flavor swatch — small square image of the actual loaf cross-section. */
.lb-flavor__swatch {
  width: 32px; height: 32px; border-radius: 9px;
  position: relative;
  overflow: hidden;
  background: var(--lb-shell);
  box-shadow: inset 0 0 0 1px rgba(64,37,23,0.10);
  flex-shrink: 0;
}
.lb-flavor__swatch img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lb-flavor__name {
  font-family: var(--lb-font-display);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  line-height: 1.05;
}
.lb-flavor__sub {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--lb-midnight-espresso);
  opacity: 0.7;
  text-wrap: pretty;
  line-height: 1.25;
}
.lb-flavor__radio {
  width: 16px; height: 16px; border-radius: 999px;
  border: 1.5px solid var(--lb-vintage-clay);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lb-flavor[aria-checked="true"] .lb-flavor__radio {
  border-color: var(--lb-mulberry-wine);
}
.lb-flavor[aria-checked="true"] .lb-flavor__radio::after {
  content: "";
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--lb-mulberry-wine);
}

/* Toggle row for extra mix-ins. */
.lb-toggle-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
  border: 1px solid var(--lb-rule);
  border-radius: 12px;
  background: var(--lb-paper);
  margin-top: 7px;
  cursor: pointer;
  transition: border-color 160ms var(--lb-ease), background 160ms var(--lb-ease);
}
.lb-toggle-row:hover { border-color: rgba(97,24,41,0.25); }
.lb-toggle-row[aria-checked="true"] {
  background: rgba(255,216,204,0.32);
  border-color: var(--lb-mulberry-wine);
}
.lb-toggle-row__copy {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px;
}
.lb-toggle-row__name {
  font-family: var(--lb-font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
}
.lb-toggle-row__sub {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 11.5px;
  color: var(--lb-midnight-espresso);
  opacity: 0.7;
  text-wrap: pretty;
  white-space: nowrap;
}
.lb-toggle-row__price {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lb-rust-petal);
  flex-shrink: 0;
}
.lb-toggle-switch {
  width: 36px; height: 22px;
  border-radius: 999px;
  background: var(--lb-rule);
  position: relative;
  transition: background 200ms var(--lb-ease);
  flex-shrink: 0;
}
.lb-toggle-switch::after {
  content: "";
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--lb-paper);
  box-shadow: 0 1px 2px rgba(64,37,23,0.20);
  transition: transform 200ms var(--lb-ease);
}
.lb-toggle-row[aria-checked="true"] .lb-toggle-switch {
  background: var(--lb-mulberry-wine);
}
.lb-toggle-row[aria-checked="true"] .lb-toggle-switch::after {
  transform: translateX(14px);
}
.lb-flavor-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--lb-shell);
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
}
.lb-flavor-total strong {
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--lb-mulberry-wine);
  font-weight: 500;
}

/* ============================================================
   Payment preference picker.
   ============================================================ */
.lb-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.lb-pay-opt {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  padding: 8px 4px 7px;
  border: 1px solid var(--lb-rule);
  border-radius: 12px;
  background: var(--lb-paper);
  cursor: pointer;
  transition: border-color 180ms var(--lb-ease),
              background 180ms var(--lb-ease);
}
.lb-pay-opt:hover { border-color: rgba(97,24,41,0.25); }
.lb-pay-opt[aria-checked="true"] {
  border-color: var(--lb-mulberry-wine);
  background: rgba(255,216,204,0.32);
  box-shadow: 0 0 0 3px rgba(97,24,41,0.06);
}
.lb-pay-opt__glyph {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--lb-font-body);
  font-weight: 700;
  font-size: 16px;
}
.lb-pay-opt__name {
  font-family: var(--lb-font-display);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lb-midnight-espresso);
  text-align: center;
}

.lb-paynote {
  display: flex; align-items: flex-start; gap: 7px;
  margin-top: 8px;
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--lb-rust-petal);
  text-wrap: pretty;
  padding: 0 4px;
}
.lb-paynote__heart {
  color: var(--lb-vintage-clay);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   Custom order — peachy tint + decorative sprig so it doesn't
   read as a duplicate of the regular details step.
   ============================================================ */
.lb-modal--custom {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(229,167,132,0.32) 0%, var(--lb-cream) 60%);
}
.lb-modal--custom::before {
  content: "";
  position: absolute;
  top: 26px; right: 18px;
  width: 70px; height: 84px;
  background: url('../assets/wheat-flower.png') center / contain no-repeat;
  opacity: 0.18;
  transform: rotate(14deg);
  pointer-events: none;
}
.lb-modal--custom .lb-modal-eyebrow {
  color: var(--lb-rust-petal);
}


/* ============================================================
   Mix-in chips — multi-select flavor pills revealed when the
   "Extra mix-ins" toggle is on. Disabled until any other flavor
   has been picked as the base. Shown beneath the toggle row.
   ============================================================ */
.lb-mixins {
  margin-top: 8px;
  padding-left: 4px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lb-mixin-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px 6px 6px;
  border: 1px solid var(--lb-rule);
  background: var(--lb-paper);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--lb-font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-mulberry-wine);
  transition: background 160ms var(--lb-ease), border-color 160ms var(--lb-ease);
  -webkit-tap-highlight-color: transparent;
}
.lb-mixin-chip:hover { border-color: rgba(97,24,41,0.30); }
.lb-mixin-chip[aria-checked="true"] {
  background: var(--lb-mulberry-wine);
  border-color: var(--lb-mulberry-wine);
  color: var(--lb-cream);
}
.lb-mixin-chip[disabled] {
  opacity: 0.4; cursor: default;
}
.lb-mixin-chip__swatch {
  width: 16px; height: 16px; border-radius: 999px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--lb-shell);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10);
}
.lb-mixin-chip__swatch img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Compact step-3 details form — slightly tighter fields so name/phone/
   pickup/notes + payment grid + paynote + submit row all fit a single
   modal viewport without scrolling. */
.lb-details {
  display: flex; flex-direction: column; gap: 9px;
}
.lb-details .lb-field input,
.lb-details .lb-field textarea {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 10px;
}
.lb-details .lb-field label {
  font-size: 9px;
  letter-spacing: 0.22em;
}
.lb-details-paylabel {
  font-family: var(--lb-font-display);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lb-vintage-clay);
  margin: 10px 0 6px;
}


/* Subtle continuous bob for the hero loaf composition. */
@keyframes lb-hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}


/* ============================================================
   Submit-request multi-line summary button (step 3 of 3).
   The primary "submit" CTA carries a 3-line recap of the order
   so the user gets one final confirmation before tapping:
     line 1: "Submit request"
     line 2: sizes × qty · flavor (+N mixins)
     line 3: total · payment method
   ============================================================ */
.lb-btn--summary {
  flex-direction: column;
  gap: 2px;
  padding: 11px 18px 12px;
  line-height: 1.15;
}
.lb-btn-summary__line1 {
  font-family: var(--lb-font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.lb-btn-summary__line2,
.lb-btn-summary__line3 {
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 11.5px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.85;
  font-weight: 400;
  display: inline-flex; align-items: baseline; gap: 0;
  text-wrap: balance;
  text-align: center;
  white-space: normal;
}
.lb-btn-summary__line3 {
  font-family: var(--lb-font-display);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10.5px;
  opacity: 0.92;
  margin-top: 1px;
}
.lb-btn-summary__dot {
  opacity: 0.55;
  padding: 0 2px;
}

.lb-hero-logo-wrap {
  padding: 8px 14px 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.lb-hero-logo {
  width: 46%;
  max-width: 198px;
  display: block;
  height: auto;
}
.lb-hero-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px 14px;
  position: relative;
  z-index: 2;
}
.lb-hero-cta-wrap {
  padding: 0 24px 22px;
  position: relative;
  z-index: 2;
}
.lb-cta-dock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.lb-cta-ig {
  margin-top: 6px;
  font-family: var(--lb-font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lb-vintage-clay);
  text-decoration: none;
  align-self: center;
}
.lb-hero-photo-wrap {
  transform: translateY(-5px);
}
.lb-hero-photo {
  width: 90% !important;
  max-width: 360px !important;
}
.lb-topbar {
  margin-top: 8px;
}
.lb-modal-scrim {
  background: rgba(64, 37, 23, 0.40);
  -webkit-backdrop-filter: blur(8px) saturate(0.92);
  backdrop-filter: blur(8px) saturate(0.92);
}
.lb-modal {
  max-height: 96%;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(178,96,96,0.58) rgba(255,216,204,0.32);
}
.lb-modal-swipe {
  padding: 14px 0 10px;
}
.lb-modal::-webkit-scrollbar {
  width: 9px;
}
.lb-modal::-webkit-scrollbar-track {
  background: rgba(255,216,204,0.32);
  border-radius: 999px;
}
.lb-modal::-webkit-scrollbar-thumb {
  background: rgba(178,96,96,0.56);
  border: 2px solid rgba(253,242,236,0.9);
  border-radius: 999px;
}
.lb-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(97,24,41,0.58);
}

@media (min-width: 760px) {
  .lb-topbar {
    max-width: 1180px;
    width: calc(100% - 48px);
    margin: 14px auto 0;
    padding: 12px 18px;
  }

  .lb-hero-logo-wrap {
    padding-top: 14px;
  }

  .lb-hero-logo {
    width: min(28vw, 260px);
    max-width: 260px;
  }

  .lb-hero-stage {
    padding: 4px 32px 18px;
    align-items: center;
  }

  .lb-hero-photo {
    width: min(32vw, 360px, 41vh) !important;
    max-width: 360px !important;
  }

  .lb-hero-cta-wrap {
    width: min(560px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 20px;
  }

  .lb-cta-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
  }

  .lb-cta-dock .lb-btn {
    min-height: 44px;
    padding: 13px 22px;
    font-size: 11px;
  }

  .lb-cta-ig {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 4px;
  }

  .lb-modal-scrim {
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
  }

  .lb-modal {
    width: min(640px, 100%);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    border-radius: 24px;
    padding: 4px 22px 22px;
    box-shadow:
      0 34px 90px -36px rgba(64,37,23,0.48),
      0 16px 34px -24px rgba(97,24,41,0.38);
  }

  .lb-modal-swipe {
    margin: 0 -22px;
    padding: 10px 0 8px;
  }

  .lb-modal-sub {
    margin: 3px 0 9px;
  }

  .lb-sizerow {
    padding: 10px 13px;
  }

  .lb-summary {
    margin-top: 8px;
    padding: 9px 11px;
  }

  .lb-textlink {
    margin-top: 9px;
    padding: 6px 4px;
  }

  .lb-note {
    margin-top: 8px;
  }

  .lb-step-dots {
    margin-top: 10px;
  }

  .lb-details {
    gap: 7px;
  }

  .lb-details .lb-field input,
  .lb-details .lb-field textarea {
    padding: 8px 11px;
    min-height: 42px !important;
  }

  .lb-details .lb-field textarea {
    min-height: 44px !important;
  }

  .lb-details-paylabel {
    margin: 8px 0 5px;
  }

  .lb-pay-opt {
    padding: 7px 4px 6px;
  }

  .lb-paynote {
    margin-top: 6px;
    line-height: 1.32;
  }

  .lb-btn--summary {
    padding: 8px 16px 9px;
    gap: 1px;
  }

  .lb-btn-summary__line1 {
    font-size: 11.5px;
  }

  .lb-btn-summary__line2 {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
  }
}

@media (min-width: 1080px) and (min-height: 860px) {
  .lb-hero-logo {
    width: min(30vw, 300px);
    max-width: 300px;
  }

  .lb-hero-photo {
    width: min(32vw, 410px) !important;
    max-width: 410px !important;
  }
}
