/**
 * bububu.sk — spoločný systém produktových popisov
 * Načítať raz v Shoptete. Jednotlivé produkty obsahujú iba HTML.
 */

.bb-product-story {
  --bb-product-charcoal: #211f1d;
  --bb-product-paper: #f6f2ec;
  --bb-product-line: #deded9;
  --bb-product-ink: #171717;
  --bb-product-muted: #686864;
  --bb-product-red: #c63c36;
  width: 100%;
  max-width: 1120px;
  margin: clamp(48px, 6vw, 80px) auto;
  color: var(--bb-product-ink);
  font-family: inherit;
}

.bb-product-story,
.bb-product-story * {
  box-sizing: border-box;
}

.bb-product-story h2,
.bb-product-story h3,
.bb-product-story h4,
.bb-product-story p {
  font-family: inherit;
}

.bb-product-story__intro {
  max-width: 820px;
  padding-bottom: clamp(40px, 5vw, 64px);
}

.bb-product-story__eyebrow {
  margin: 0 0 14px;
  color: var(--bb-product-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bb-product-story__intro h2 {
  margin: 0;
  color: var(--bb-product-ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.bb-product-story__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--bb-product-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.bb-product-story__section {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(38px, 4.5vw, 56px) 0;
  border-top: 1px solid var(--bb-product-line);
}

.bb-product-story__heading {
  position: relative;
}

.bb-product-story__number {
  margin: 0 0 10px;
  color: var(--bb-product-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.bb-product-story__heading h3,
.bb-product-story__panel h3,
.bb-product-story__help h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.bb-product-story__content > p {
  max-width: 760px;
  margin: 0;
  color: var(--bb-product-muted);
  font-size: 16px;
  line-height: 1.7;
}

.bb-product-story__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bb-product-story__facts li {
  position: relative;
  margin: 0;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--bb-product-line);
  color: var(--bb-product-ink);
  font-size: 16px;
  line-height: 1.55;
}

.bb-product-story__facts li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bb-product-red);
  content: "";
}

.bb-product-story__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.bb-product-story__benefits article {
  padding-top: 20px;
  border-top: 2px solid var(--bb-product-charcoal);
}

.bb-product-story__benefits h4 {
  margin: 0;
  color: var(--bb-product-ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.bb-product-story__benefits p {
  margin: 12px 0 0;
  color: var(--bb-product-muted);
  font-size: 15px;
  line-height: 1.65;
}

.bb-product-story__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(24px, 3vw, 40px) 0;
}

.bb-product-story__panel {
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 42px);
  border-radius: 8px;
  background: var(--bb-product-paper);
}

.bb-product-story__panel--dark {
  background: var(--bb-product-charcoal);
  color: #fff;
}

.bb-product-story__panel--dark .bb-product-story__eyebrow {
  color: #e45a52;
}

.bb-product-story__panel > p:not(.bb-product-story__eyebrow) {
  margin: 22px 0 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
}

.bb-product-story__specs {
  margin: 24px 0 0;
}

.bb-product-story__specs > div {
  display: grid;
  grid-template-columns: minmax(100px, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bb-product-line);
}

.bb-product-story__specs dt,
.bb-product-story__specs dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.bb-product-story__specs dt {
  color: var(--bb-product-muted);
}

.bb-product-story__specs dd {
  color: var(--bb-product-ink);
  font-weight: 600;
}

.bb-product-story__table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--bb-product-charcoal);
  -webkit-overflow-scrolling: touch;
}

.bb-product-story__table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: transparent;
  color: var(--bb-product-ink);
  font-size: 15px;
}

.bb-product-story__table th,
.bb-product-story__table td {
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid var(--bb-product-line);
  background: transparent;
  text-align: left;
}

.bb-product-story__table thead th {
  color: var(--bb-product-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bb-product-story__table tbody th {
  font-weight: 700;
}

.bb-product-story__note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 8px;
  background: var(--bb-product-paper);
}

.bb-product-story__note h4 {
  margin: 0;
  color: var(--bb-product-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.bb-product-story__note p {
  margin: 8px 0 0;
  color: var(--bb-product-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bb-product-story__note a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--bb-product-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.bb-product-story__note a::after {
  margin-left: 7px;
  content: "→";
}

.bb-product-story__note a:hover,
.bb-product-story__note a:focus-visible {
  color: var(--bb-product-red);
}

.bb-product-story__help {
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(32px, 4vw, 48px);
  border-radius: 8px;
  background: var(--bb-product-charcoal);
  color: #fff;
}

.bb-product-story__help .bb-product-story__eyebrow {
  color: #e45a52;
}

.bb-product-story__help p:not(.bb-product-story__eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.7;
}

/*
 * Shoptet product hero / buying area
 * Scoped to the product template so no listing, homepage or article styles
 * are affected.
 */
body.type-product .p-detail-inner,
body.type-product .p-detail-inner input,
body.type-product .p-detail-inner select,
body.type-product .p-detail-inner button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body.type-product .p-detail-inner-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(26px, 4vw, 48px);
  padding-bottom: 22px;
  border-bottom: 1px solid #deded9;
}

body.type-product .p-detail-inner-header h1 {
  max-width: 1050px;
  margin: 0;
  color: #171717;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.05;
}

body.type-product .p-detail-inner-header .p-code {
  flex: 0 0 auto;
  margin: 0 0 5px;
  color: #77736e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

body.type-product .product-top {
  align-items: flex-start;
}

body.type-product .product-top .p-image-wrapper,
body.type-product .product-top .p-info-wrapper {
  box-sizing: border-box;
}

body.type-product .product-top .p-info-wrapper {
  padding: clamp(26px, 3vw, 38px) !important;
  border-radius: 12px;
  background: #f6f2ec;
}

body.type-product .p-final-price-wrapper {
  margin-bottom: 18px;
}

body.type-product .p-final-price-wrapper .price-final {
  color: #171717;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1;
}

body.type-product .p-final-price-wrapper .price-additional {
  margin-top: 7px;
  color: #77736e;
  font-size: 13px;
}

body.type-product .availability-value {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
}

body.type-product .availability-value .availability-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e7f3e4;
  line-height: 1.2;
}

body.type-product .availability-value .availability-label::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

body.type-product .p-info-wrapper .detail-parameters {
  width: 100%;
  margin-bottom: 22px;
}

body.type-product .p-info-wrapper .detail-parameters th,
body.type-product .p-info-wrapper .detail-parameters td,
body.type-product .p-info-wrapper .detail-parameters span,
body.type-product .p-info-wrapper .detail-parameters a,
body.type-product .p-info-wrapper .detail-parameters select,
body.type-product .p-info-wrapper .detail-parameters option {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

body.type-product .p-info-wrapper .detail-parameters .variant-list {
  display: grid;
  grid-template-columns: minmax(86px, 120px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
}

body.type-product .p-info-wrapper .detail-parameters .variant-list > th,
body.type-product .p-info-wrapper .detail-parameters .variant-list > td {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
}

body.type-product .p-info-wrapper .detail-parameters .variant-list > th {
  color: #68645f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

body.type-product .p-info-wrapper .detail-parameters select.form-control {
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 52px 0 17px !important;
  border: 1px solid #aaa59f !important;
  border-radius: 9px !important;
  outline: 0;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2345413d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 17px center !important;
  background-size: 18px 18px !important;
  box-shadow: none !important;
  color: #211f1d !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 50px !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body.type-product .p-info-wrapper .detail-parameters select.form-control:hover {
  border-color: #68645f !important;
}

body.type-product .p-info-wrapper .detail-parameters select.form-control:focus {
  border-color: #211f1d !important;
  box-shadow: 0 0 0 3px rgba(33, 31, 29, .1) !important;
}

body.type-product .p-info-wrapper .delivery-time-label,
body.type-product .p-info-wrapper .delivery-time,
body.type-product .p-info-wrapper .shipping-options {
  color: #68645f;
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.5;
}

body.type-product .p-info-wrapper .delivery-time {
  display: inline;
}

body.type-product .p-info-wrapper .shipping-options {
  float: right;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: #211f1d;
  font-weight: 650;
  text-decoration: none;
}

body.type-product .p-info-wrapper .shipping-options:hover,
body.type-product .p-info-wrapper .shipping-options:focus-visible {
  color: #c63c36;
}

body.type-product .add-to-cart {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 8px;
}

body.type-product .add-to-cart .add-to-cart-button {
  flex: 1 1 auto;
  min-height: 54px;
  padding: 0 26px !important;
  overflow: hidden;
  border: 1px solid #c63c36 !important;
  border-radius: 10px !important;
  background: #c63c36 !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  letter-spacing: -.015em;
  line-height: 1.2 !important;
  text-align: center;
  text-transform: none !important;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

body.type-product .add-to-cart .add-to-cart-button::before,
body.type-product .add-to-cart .add-to-cart-button::after {
  display: none !important;
  content: none !important;
}

body.type-product .add-to-cart .add-to-cart-button:hover {
  border-color: #a92f2a !important;
  background: #a92f2a !important;
  transform: translateY(-1px);
}

body.type-product .add-to-cart .add-to-cart-button:focus-visible {
  outline: 3px solid rgba(198, 60, 54, .22) !important;
  outline-offset: 3px;
}

body.type-product .add-to-cart .quantity {
  min-height: 54px;
  overflow: hidden;
  border: 1px solid #aaa59f !important;
  border-radius: 10px !important;
  background: #fff;
  box-shadow: none !important;
}

body.type-product .add-to-cart .quantity input,
body.type-product .add-to-cart .quantity button {
  border: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body.type-product .social-buttons-wrapper {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #deded9;
}

body.type-product .social-buttons-wrapper .link-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

body.type-product .social-buttons-wrapper .link-icon.print {
  display: none !important;
}

body.type-product .social-buttons-wrapper .link-icon.chat,
body.type-product .social-buttons-wrapper .link-icon.share {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  height: 38px !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 15px !important;
  border: 1px solid #cbc8c2;
  border-radius: 999px;
  background: transparent;
  color: #45413d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

body.type-product .social-buttons-wrapper .link-icon.chat::before,
body.type-product .social-buttons-wrapper .link-icon.share::before {
  display: none !important;
  content: none !important;
}

body.type-product .social-buttons-wrapper .link-icon.chat span,
body.type-product .social-buttons-wrapper .link-icon.share span {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.type-product .social-buttons-wrapper .link-icon.chat:hover,
body.type-product .social-buttons-wrapper .link-icon.chat:focus-visible,
body.type-product .social-buttons-wrapper .link-icon.share:hover,
body.type-product .social-buttons-wrapper .link-icon.share:focus-visible {
  border-color: #211f1d;
  background: #211f1d;
  color: #fff;
}

body.type-product .p-detail a[href="#description"]:not(.shp-tab-link),
body.type-product .p-detail .show-all-description,
body.type-product .p-detail .detail-information,
body.type-product .p-detail .p-detail-info-link,
body.type-product .p-detail .scroll-to-description,
body.type-product .p-detail [data-testid="buttonProductDescription"] {
  color: #45413d !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  letter-spacing: -.01em;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

body.type-product .p-detail a[href="#description"]:not(.shp-tab-link):hover,
body.type-product .p-detail a[href="#description"]:not(.shp-tab-link):focus-visible,
body.type-product .p-detail .show-all-description:hover,
body.type-product .p-detail .show-all-description:focus-visible {
  color: #c63c36 !important;
}

/*
 * Shoptet product detail layout
 * The template normally floats the detailed description and additional
 * parameters next to each other. Keep the description full-width and place
 * the parameters beneath it in their original semantic order.
 */
body.type-product .description-inner {
  --bb-product-line: #deded9;
  --bb-product-ink: #171717;
  display: block !important;
  width: 100%;
}

/* The custom product story already has its own heading hierarchy. */
body.type-product .toggle-tabs > .shp-tab[data-testid="tabDescription"],
body.type-product .description-inner > .basic-description > h3 {
  display: none !important;
}

body.type-product .toggle-tabs > #description {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

body.type-product .description-inner::after {
  display: table;
  clear: both;
  content: "";
}

body.type-product .description-inner > .basic-description,
body.type-product .description-inner > .extended-description {
  float: none !important;
  flex: 0 0 100% !important;
  min-width: 0;
  width: 100% !important;
  max-width: none !important;
}

body.type-product .description-inner > .basic-description {
  order: 1;
}

body.type-product .description-inner > .extended-description {
  order: 2;
  clear: both;
  margin-top: clamp(48px, 7vw, 88px);
  padding: clamp(28px, 4vw, 44px) !important;
  border: 0;
  border-radius: 12px;
  background: #f6f2ec;
}

body.type-product .description-inner > .extended-description > h3,
body.type-product .description-inner > .extended-description > .detail-parameters {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

body.type-product .description-inner > .extended-description > h3 {
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--bb-product-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.15;
}

body.type-product .extended-description .detail-parameters {
  float: none !important;
  max-width: none;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: transparent;
}

body.type-product .extended-description .detail-parameters td,
body.type-product .extended-description .detail-parameters th {
  width: 50%;
  padding: 16px 18px;
  border-bottom: 1px solid var(--bb-product-line);
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

body.type-product .extended-description .detail-parameters th {
  color: #68645f;
  font-weight: 600;
}

body.type-product .extended-description .detail-parameters td {
  color: #211f1d;
  font-weight: 600;
}

body.type-product .extended-description .detail-parameters a {
  color: inherit;
  font-family: inherit;
  text-decoration-color: #b9b5af;
  text-underline-offset: 3px;
}

body.type-product .extended-description .detail-parameters a:hover,
body.type-product .extended-description .detail-parameters a:focus-visible {
  color: #c63c36;
}

body.type-product .extended-description .detail-parameters tr:last-child td,
body.type-product .extended-description .detail-parameters tr:last-child th {
  border-bottom: 0;
}

@media (max-width: 767px) {
  body.type-product .description-inner,
  body.type-product .description-inner > .basic-description,
  body.type-product .bb-product-story,
  body.type-product .bb-product-story__section,
  body.type-product .bb-product-story__content,
  body.type-product .bb-product-story__table-wrap {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.type-product .description-inner,
  body.type-product .description-inner > .basic-description,
  body.type-product .bb-product-story {
    overflow-x: hidden;
  }

  body.type-product .p-detail-inner-header {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  body.type-product .p-detail-inner-header h1 {
    font-size: clamp(29px, 9vw, 38px);
  }

  body.type-product .p-detail-inner-header .p-code {
    display: block;
    margin-top: 10px;
  }

  body.type-product .product-top .p-info-wrapper {
    margin-top: 24px;
    padding: 24px 20px !important;
    border-radius: 10px;
  }

  body.type-product .p-info-wrapper .detail-parameters .variant-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.type-product .p-info-wrapper .shipping-options {
    display: inline-block;
    float: none;
    margin-top: 7px;
  }

  body.type-product .social-buttons-wrapper .link-icons {
    flex-wrap: wrap;
  }

  .bb-product-story {
    margin: 40px auto 56px;
  }

  .bb-product-story__intro {
    padding-bottom: 36px;
  }

  .bb-product-story__intro h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .bb-product-story__section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  .bb-product-story__facts,
  .bb-product-story__benefits,
  .bb-product-story__split {
    grid-template-columns: 1fr;
  }

  .bb-product-story__facts li {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .bb-product-story__facts li::before {
    top: 22px;
  }

  .bb-product-story__split {
    gap: 10px;
    margin: 20px 0;
  }

  .bb-product-story__panel,
  .bb-product-story__help {
    padding: 28px 22px;
    border-radius: 7px;
  }

  .bb-product-story__note {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .bb-product-story__table {
    width: 100% !important;
    min-width: 0;
    table-layout: fixed;
    font-size: 13px;
  }

  .bb-product-story__table th,
  .bb-product-story__table td {
    padding: 11px 7px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .bb-product-story__table-wrap {
    width: 100%;
    overflow-x: hidden;
  }

  .bb-product-story__content,
  .bb-product-story__content > p,
  .bb-product-story__panel,
  .bb-product-story__note,
  .bb-product-story__help {
    width: 100%;
    max-width: 100%;
  }

  .bb-product-story__content p,
  .bb-product-story__panel p,
  .bb-product-story__note p,
  .bb-product-story__help p,
  .bb-product-story__note a {
    overflow-wrap: anywhere;
  }

  body.type-product .description-inner > .extended-description {
    margin-top: 42px;
    padding: 26px 20px !important;
    border-radius: 10px;
  }

  body.type-product .description-inner > .extended-description > h3 {
    margin-bottom: 18px;
  }

  body.type-product .extended-description .detail-parameters tr {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--bb-product-line);
  }

  body.type-product .extended-description .detail-parameters td,
  body.type-product .extended-description .detail-parameters th {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }

  body.type-product .extended-description .detail-parameters td {
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-product-story a {
    scroll-behavior: auto;
  }
}
