@charset "utf-8";/* BISTRO BUDDY contextual cross-sell v6 — scoped to News Flash/event/deal stacks only. */

.bbx-crosssell,
.bbx-crosssell * {
  box-sizing: border-box;
}

.bbx-crosssell {
  --bbx-orange: #e75d12;
  --bbx-orange-dark: #b84305;
  --bbx-ink: #20252b;
  --bbx-muted: #626a73;
  --bbx-line: #dde4eb;
  position: relative;
  clear: both;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: clamp(2.5rem, 6vw, 5.5rem) 0 0;
  color: var(--bbx-ink);
  background: linear-gradient(180deg, #f7faff 0, #fff 15%, #fffaf4 100%);
  overflow: hidden;
  isolation: isolate;
}

.bbx-crosssell a {
  text-decoration: none;
}

.bbx-crosssell__intro,
.bbx-crosssell__heading,
.bbx-crosssell__stats-heading {
  width: min(1320px, calc(100% - 36px));
  margin-inline: auto;
}

.bbx-crosssell__intro {
  padding: clamp(3.5rem, 7vw, 6.25rem) 0 clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.bbx-crosssell__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--bbx-orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bbx-crosssell__intro h2,
.bbx-crosssell__heading h2,
.bbx-crosssell__stats-heading h2 {
  margin: 0;
  color: var(--bbx-ink);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.bbx-crosssell__intro > p:not(.bbx-crosssell__eyebrow),
.bbx-crosssell__heading p:not(.bbx-crosssell__eyebrow),
.bbx-crosssell__stats-heading p:not(.bbx-crosssell__eyebrow) {
  max-width: 930px;
  margin: 1rem auto 0;
  color: var(--bbx-muted);
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

.bbx-crosssell__quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.bbx-crosssell__quicklinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 0.95rem;
  border: 1px solid #d7e0e8;
  border-radius: 999px;
  color: #28343f !important;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 5px 16px rgb(0 0 0 / 6%);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bbx-crosssell__quicklinks a:hover,
.bbx-crosssell__quicklinks a:focus-visible {
  border-color: var(--bbx-orange);
  color: var(--bbx-orange-dark) !important;
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgb(0 0 0 / 10%);
}

.bbx-crosssell__quicklinks a.is-primary {
  border-color: var(--bbx-orange);
  color: #fff !important;
  background: var(--bbx-orange);
}

.bbx-crosssell__news {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-top: 1px solid var(--bbx-line);
  border-bottom: 1px solid var(--bbx-line);
  background: #fff;
  overflow: hidden;
}

/* Guarantee readable, wrapped category controls immediately above the News Flash rail. */
.bbx-crosssell .bbnfs-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.55rem !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
  scrollbar-width: none !important;
}

.bbx-crosssell .bbnfs-filters::-webkit-scrollbar {
  display: none !important;
}

.bbx-crosssell .bbnfs-filters a {
  flex: 0 1 auto !important;
  min-height: 42px !important;
  border-color: #d7dee5 !important;
  color: #28323c !important;
  background: #fff !important;
  white-space: normal !important;
  text-align: center;
  line-height: 1.2;
}

.bbx-crosssell .bbnfs-filters a:hover,
.bbx-crosssell .bbnfs-filters a:focus-visible,
.bbx-crosssell .bbnfs-filters a.is-active,
.bbx-crosssell .bbnfs-filters a[aria-pressed="true"] {
  border-color: var(--bbx-orange) !important;
  color: #fff !important;
  background: var(--bbx-orange) !important;
  outline: 0;
}

.bbx-crosssell .bbnfs-filters a b {
  color: #56616b !important;
  background: #eef2f5 !important;
}

.bbx-crosssell .bbnfs-filters a.is-active b,
.bbx-crosssell .bbnfs-filters a[aria-pressed="true"] b {
  color: var(--bbx-orange-dark) !important;
  background: #fff !important;
}

.bbx-crosssell__modules {
  display: grid;
  width: 100%;
  min-width: 0;
}

.bbx-crosssell__module {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(3rem, 6vw, 5.25rem) clamp(1rem, 3vw, 3.7rem);
  border-top: 1px solid var(--bbx-line);
  background: #fff;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 850px;
}

.bbx-crosssell__module:nth-child(odd) {
  background: #fffaf5;
}

.bbx-crosssell__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.bbx-crosssell__heading > div {
  max-width: 950px;
}

.bbx-crosssell__heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.bbx-crosssell__heading p:not(.bbx-crosssell__eyebrow) {
  margin-inline: 0;
}

.bbx-crosssell__heading > a {
  flex: 0 0 auto;
  color: var(--bbx-orange-dark) !important;
  font-size: 0.8rem;
  font-weight: 900;
}

.bbx-crosssell__module-content,
.bbx-crosssell__stats-content {
  position: relative;
  width: min(1480px, 100%);
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  overflow: hidden;
}

.bbx-crosssell__module-content > *,
.bbx-crosssell__stats-content > * {
  max-width: 100%;
  min-width: 0;
}

.bbx-crosssell__module-content img,
.bbx-crosssell__stats-content img {
  max-width: 100%;
  height: auto;
}

/* Hide browser scrollbars only inside this explicitly scoped stack. Native drag/swipe/arrows remain. */
.bbx-crosssell :is(
  [data-bbnf-viewport],
  [data-bbns-viewport],
  [class*="carousel" i],
  [class*="scroller" i],
  [class*="slider" i],
  [class*="track" i],
  [class*="rail" i]
) {
  scrollbar-width: none !important;
}

.bbx-crosssell :is(
  [data-bbnf-viewport],
  [data-bbns-viewport],
  [class*="carousel" i],
  [class*="scroller" i],
  [class*="slider" i],
  [class*="track" i],
  [class*="rail" i]
)::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.bbx-crosssell [data-bbx-card-ready="true"] {
  cursor: pointer;
}

.bbx-crosssell__stats {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 3.7rem) clamp(4.5rem, 9vw, 7.75rem);
  border-top: 1px solid #d8e2ec;
  background:
    radial-gradient(circle at 50% 0, rgb(127 167 216 / 18%), transparent 34%),
    linear-gradient(180deg, #f4f8fd, #fff);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1100px;
}

.bbx-crosssell__stats-heading {
  margin-bottom: 1.8rem;
  text-align: center;
}

.bbx-crosssell__stats-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.bbx-crosssell__stats-content {
  width: min(1320px, 100%);
}

.bbx-crosssell__stats-content :is(.bbns, [class^="bbns"], [class*=" bbns"]) {
  max-width: 100%;
  margin-inline: auto;
}

@media (max-width: 767.98px) {
  .bbx-crosssell {
    margin-top: 2.75rem;
  }

  .bbx-crosssell__intro,
  .bbx-crosssell__heading,
  .bbx-crosssell__stats-heading {
    width: min(100% - 28px, 1320px);
  }

  .bbx-crosssell__quicklinks {
    justify-content: flex-start;
  }

  .bbx-crosssell__quicklinks a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    text-align: left;
  }

  .bbx-crosssell__heading {
    display: block;
  }

  .bbx-crosssell__heading > a {
    display: inline-flex;
    margin-top: 0.9rem;
  }

  .bbx-crosssell__module,
  .bbx-crosssell__stats {
    padding-inline: 0.9rem;
  }

  .bbx-crosssell .bbnfs-filters a {
    flex: 1 1 calc(50% - 0.55rem) !important;
    min-width: 0 !important;
  }
}

@media (max-width: 430px) {
  .bbx-crosssell .bbnfs-filters a {
    flex-basis: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbx-crosssell *,
  .bbx-crosssell *::before,
  .bbx-crosssell *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
