.bildeveSingleProduct {
  background: #fff;
  color: #101828;
  padding: 56px 0 0;
}

.bildeveSingleProduct__container {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bildeveSingleProduct__breadcrumbs {
  max-width: 1340px;
  width: 90%;
  margin: auto;
  margin-bottom: 22px;
}

.bildeveSingleProduct__breadcrumbList {
  align-items: center;
  color: rgba(74, 85, 101, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bildeveSingleProduct__breadcrumbItem {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.bildeveSingleProduct__breadcrumbItem:not(:last-child)::after {
  color: rgba(74, 85, 101, 0.5);
  content: "/";
}

.bildeveSingleProduct__breadcrumbLink,
.bildeveSingleProduct__breadcrumbCurrent {
  color: inherit;
  text-decoration: none;
}

.bildeveSingleProduct__backRow {
  width: 90%;
  max-width: 1340px;
  margin: auto;
  margin-bottom: 24px;
  display: inline-flex;
  justify-content: flex-end;
}

.bildeveSingleProduct__backLink {
  align-items: center;
  justify-content: center;
  color: #082044;
  display: inline-flex;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
}

.bildeveSingleProduct__backLink .bildeveSingleProduct__backIcon svg {
  display: block;
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
}

.bildeveSingleProduct__backIcon,
.bildeveSingleProduct__factIcon,
.bildeveSingleProduct__specIcon,
.bildeveSingleProduct__equipmentIcon,
.bildeveSingleProduct__documentIcon,
.bildeveSingleProduct__summaryActionIcon,
.bildeveSingleProduct__summaryLocationIcon,
.bildeveSingleProduct__addressIcon,
.bildeveSingleProduct__summaryFinanceBadgeIcon {
  color: #6a7282;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.bildeveSingleProduct__backIcon svg,
.bildeveSingleProduct__factIcon svg,
.bildeveSingleProduct__specIcon svg,
.bildeveSingleProduct__equipmentIcon svg,
.bildeveSingleProduct__documentIcon svg,
.bildeveSingleProduct__summaryActionIcon svg,
.bildeveSingleProduct__summaryLocationIcon svg,
.bildeveSingleProduct__addressIcon svg,
.bildeveSingleProduct__summaryFinanceBadgeIcon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.bildeveSingleProduct__hero {
  align-items: flex-start;
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr minmax(0, 532px);
  grid-template-rows: auto auto;
  width: 90%;
  margin: auto;
  max-width: 1340px;
}

.bildeveSingleProduct__galleryColumn {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.bildeveSingleProduct__detailsColumn {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.bildeveSingleProduct__sidebar {
  align-self: start;
  background: #f9fafb;
  border-radius: 10px;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  position: sticky;
  top: 112px;
}

.bildeveSingleProduct__gallery {
  position: relative;
}

.bildeveSingleProduct__galleryStage {
  background: #f9fafb;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.bildeveSingleProduct__gallerySlide {
  display: none;
  margin: 0;
}

.bildeveSingleProduct__gallerySlide.is-active {
  display: block;
}

.bildeveSingleProduct__galleryImage {
  aspect-ratio: 722 / 480;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.bildeveSingleProduct__galleryArrow {
  align-items: center;
  backdrop-filter: blur(5px);
  background: rgba(74, 85, 101, 0.1);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: calc(50% - 21px);
  width: 42px;
  z-index: 3;
}

.bildeveSingleProduct__galleryArrow--prev {
  left: 10px;
}

.bildeveSingleProduct__galleryArrow--next {
  right: 10px;
}

.bildeveSingleProduct__galleryArrow span {
  color: #fff;
}

.bildeveSingleProduct__galleryArrow svg {
  display: block;
  width: 7px;
  height: 12px;
  aspect-ratio: 7/12;
}

.bildeveSingleProduct__galleryProgress {
  display: grid;
  gap: 9px;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin: 16px 0 0;
  position: absolute;
  top: 460px;
  left: 0;
  width: 100%;
  padding: 0 52px;
  box-sizing: border-box;
}

.bildeveSingleProduct__galleryProgressTab {
  border: 0;
  border-bottom: 2px solid rgba(16, 24, 40, 0.38);
  cursor: pointer;
  height: 3px;
  padding: 0;
  position: relative;
  transform-origin: center;
  transition:
    background-color 0.2s ease,
    border-bottom-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    height 0.2s ease;
}

.bildeveSingleProduct__galleryProgress.is-on-light
  .bildeveSingleProduct__galleryProgressTab {
  background: rgba(16, 24, 40, 0.38);
  border-bottom-color: rgba(16, 24, 40, 0.38);
  opacity: 0.65;
}

.bildeveSingleProduct__galleryProgress.is-on-light
  .bildeveSingleProduct__galleryProgressTab.is-active {
  background: #101828;
  border-bottom-color: #101828;
  height: 5px;
  opacity: 1;
  transform: scaleX(1.02);
}

.bildeveSingleProduct__galleryProgress.is-on-dark
  .bildeveSingleProduct__galleryProgressTab {
  background: rgba(255, 255, 255, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.62);
  opacity: 0.72;
}

.bildeveSingleProduct__galleryProgressTab::before {
  content: "";
  display: block;
  background: transparent;
  top: -10px;
  left: 0;
  right: 0;
  position: absolute;
  height: 22px;
  width: 100%;
}

.bildeveSingleProduct__galleryProgress.is-on-dark
  .bildeveSingleProduct__galleryProgressTab.is-active {
  background: #fff;
  border-bottom-color: #fff;
  height: 5px;
  opacity: 1;
  transform: scaleX(1.02);
}

.bildeveSingleProduct__galleryThumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  margin-top: 16px;
}

.bildeveSingleProduct__galleryThumb {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.bildeveSingleProduct__galleryThumb.is-active {
  border-color: #101828;
}

.bildeveSingleProduct__galleryThumbImage {
  aspect-ratio: 94.5 / 75.98;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.bildeveSingleProduct__galleryExpand {
  align-items: center;
  background: transparent;
  border: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  justify-content: center;
  align-self: flex-start;
  left: auto;
  margin: 0;
  padding: 0;
  position: absolute;
  right: max(12px, env(safe-area-inset-right));
  top: 12px;
  z-index: 2;
}

.bildeveSingleProduct__galleryExpand:focus-visible {
  border-radius: 999px;
  outline: 2px solid #101828;
  outline-offset: 3px;
}

.bildeveSingleProduct__galleryExpandInner {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(16, 24, 40, 0.48);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  padding: 10px 16px;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .bildeveSingleProduct__galleryExpand:hover
    .bildeveSingleProduct__galleryExpandInner {
    background: rgba(16, 24, 40, 0.62);
  }
}

.bildeveSingleProduct__galleryExpand:active
  .bildeveSingleProduct__galleryExpandInner {
  transform: scale(0.98);
}

.bildeveSingleProduct__galleryExpandIcon {
  display: inline-flex;
  height: 22px;
  width: 22px;
}

.bildeveSingleProduct__galleryExpandIcon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.bildeveSingleProduct__galleryExpandLabel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.bildeveSingleProduct__galleryLightbox {
  align-items: center;
  box-sizing: border-box;
  inset: 0;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  position: fixed;
  z-index: 100000;
}

.bildeveSingleProduct__galleryLightbox[hidden] {
  display: none !important;
}

.bildeveSingleProduct__galleryLightbox.is-open {
  display: flex;
}

body.bildeve-gallery-lightbox-open {
  overflow: hidden;
}

.bildeveSingleProduct__galleryLightboxBackdrop {
  background: rgba(16, 24, 40, 0.94);
  cursor: pointer;
  inset: 0;
  position: absolute;
}

@media (prefers-reduced-motion: no-preference) {
  .bildeveSingleProduct__galleryLightboxBackdrop {
    animation: bildeveGalleryLightboxBackdropIn 0.22s ease-out;
  }
}

@keyframes bildeveGalleryLightboxBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bildeveSingleProduct__galleryLightboxPanel {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  width: min(100%, calc((100vh - 140px) * 1.75));
  z-index: 1;
}

.bildeveSingleProduct__galleryLightboxClose {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: max(0px, env(safe-area-inset-right));
  top: 0;
  width: 44px;
  z-index: 3;
}

.bildeveSingleProduct__galleryLightboxClose svg {
  height: 22px;
  width: 22px;
}

.bildeveSingleProduct__galleryLightboxClose:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .bildeveSingleProduct__galleryLightboxClose:hover {
    background: rgba(255, 255, 255, 0.24);
  }
}

.bildeveSingleProduct__galleryLightboxArrow {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  z-index: 3;
}

.bildeveSingleProduct__galleryLightboxArrow--prev {
  left: max(4px, env(safe-area-inset-left));
}

.bildeveSingleProduct__galleryLightboxArrow--next {
  right: max(4px, env(safe-area-inset-right));
}

.bildeveSingleProduct__galleryLightboxArrow svg {
  display: block;
  height: 14px;
  width: 18px;
}

.bildeveSingleProduct__galleryLightboxArrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .bildeveSingleProduct__galleryLightboxArrow:hover {
    background: rgba(255, 255, 255, 0.22);
  }
}

.bildeveSingleProduct__galleryLightboxFigure {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  margin: 52px 56px 12px;
  min-height: 0;
  overflow: hidden;
}

.bildeveSingleProduct__galleryLightboxZoom {
  display: inline-block;
  line-height: 0;
  transform-origin: center center;
  vertical-align: middle;
}

@media (pointer: coarse), (max-width: 767px) {
  .bildeveSingleProduct__galleryLightboxFigure {
    touch-action: none;
  }

  .bildeveSingleProduct__galleryLightboxZoom {
    transition: transform 0.2s ease;
  }

  .bildeveSingleProduct__galleryLightboxZoom.is-dragging {
    transition: none;
  }
}

.bildeveSingleProduct__galleryLightboxImage {
  border-radius: 4px;
  display: block;
  height: auto;
  max-height: min(82vh, calc(100dvh - 160px));
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.bildeveSingleProduct__galleryLightboxCounter {
  color: rgba(255, 255, 255, 0.82);
  flex-shrink: 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  margin: 0;
  padding-bottom: 4px;
  text-align: center;
}

@media (max-width: 767px) {
  .bildeveSingleProduct__galleryExpandInner {
    gap: 6px;
    padding: 9px 14px;
  }

  .bildeveSingleProduct__galleryExpandLabel {
    font-size: 13px;
  }

  .bildeveSingleProduct__galleryLightboxFigure {
    margin: 48px 12px 10px;
  }

  .bildeveSingleProduct__galleryLightboxArrow {
    height: 44px;
    top: calc(50% + 10px);
    width: 44px;
  }

  .bildeveSingleProduct__galleryLightboxArrow--prev {
    left: max(2px, env(safe-area-inset-left));
  }

  .bildeveSingleProduct__galleryLightboxArrow--next {
    right: max(2px, env(safe-area-inset-right));
  }

  .bildeveSingleProduct__galleryLightboxImage {
    max-height: min(78vh, calc(100dvh - 140px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .bildeveSingleProduct__galleryExpandInner {
    transition: none;
  }

  .bildeveSingleProduct__galleryLightboxBackdrop {
    animation: none;
  }

  .bildeveSingleProduct__galleryLightboxZoom {
    transition: none;
  }
}

.bildeveSingleProduct__facts {
  background: #f9fafb;
  border-radius: 10px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  padding: 24px;
}

.bildeveSingleProduct__factCard,
.bildeveSingleProduct__specCard {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.bildeveSingleProduct__factContent,
.bildeveSingleProduct__specContent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bildeveSingleProduct__factLabel,
.bildeveSingleProduct__specLabel,
.bildeveSingleProduct__equipmentLabel,
.bildeveSingleProduct__priceLabel,
.bildeveSingleProduct__summaryFinanceMeta,
.bildeveSingleProduct__expertTitle,
.bildeveSingleProduct__expertMeta,
.bildeveSingleProduct__sectionText,
.bildeveSingleProduct__summaryLocationText {
  color: #4a5565;
  font-size: 16px;
  line-height: 1.625;
}

.bildeveSingleProduct__priceLabel {
  margin: 0;
}

.bildeveSingleProduct__factLabel,
.bildeveSingleProduct__specLabel {
  color: #6a7282;
  font-size: 14px;
  line-height: 20px;
}

.bildeveSingleProduct__factValue,
.bildeveSingleProduct__specValue,
.bildeveSingleProduct__equipmentValue {
  color: #101828;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.bildeveSingleProduct__expertName,
.bildeveSingleProduct__contactMetaTitle {
  color: #101828;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 16px;
}

.bildeveSingleProduct__expertName {
  margin: 0;
}

.bildeveSingleProduct__expertTitle {
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 4px 0 16px;
}

.bildeveSingleProduct__section {
  margin-top: 40px;
}

.bildeveSingleProduct__sectionTitle {
  color: #101828;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 16px;
}

.bildeveSingleProduct__sectionText p,
.bildeveSingleProduct__summaryLocationText p,
.bildeveSingleProduct__introText p,
.bildeveSingleProduct__insuranceText p,
.bildeveSingleProduct__textStripText p {
  margin: 0 0 1em;
}

.bildeveSingleProduct__textStripText > :first-child {
  margin-top: 0;
}

.bildeveSingleProduct__textStripText > :last-child {
  margin-bottom: 0;
}

.bildeveSingleProduct__textStripText h2,
.bildeveSingleProduct__textStripText h3,
.bildeveSingleProduct__textStripText h4,
.bildeveSingleProduct__textStripText h5,
.bildeveSingleProduct__textStripText h6 {
  color: #101828;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 1.2em 0 0.5em;
}

.bildeveSingleProduct__textStripText h2 {
  font-size: 24px;
}

.bildeveSingleProduct__textStripText h3 {
  font-size: 20px;
}

.bildeveSingleProduct__textStripText h4,
.bildeveSingleProduct__textStripText h5,
.bildeveSingleProduct__textStripText h6 {
  font-size: 18px;
}

.bildeveSingleProduct__textStripText a {
  color: #101828;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bildeveSingleProduct__textStripText a:hover,
.bildeveSingleProduct__textStripText a:focus-visible {
  opacity: 0.75;
}

.bildeveSingleProduct__textStripText ul,
.bildeveSingleProduct__textStripText ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.bildeveSingleProduct__textStripText li {
  margin-bottom: 0.35em;
}

.bildeveSingleProduct__specGrid {
  display: grid;
  gap: 24px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bildeveSingleProduct__specCard,
.bildeveSingleProduct__equipmentCard {
  background: #f9fafb;
  border-radius: 10px;
  padding: 16px;
  box-sizing: border-box;
}

.bildeveSingleProduct__equipmentTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.bildeveSingleProduct__equipmentTab {
  background: #f9fafb;
  border: 0;
  border-radius: 5px;
  color: #101828;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 20px;
  text-transform: capitalize;
}

.bildeveSingleProduct__equipmentTab.is-active {
  background: #3f5472;
  color: #fff;
}

.bildeveSingleProduct__equipmentGrid {
  display: grid;
  gap: 8px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bildeveSingleProduct__equipmentCard[hidden] {
  display: none !important;
}

.bildeveSingleProduct__equipmentCardInner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.bildeveSingleProduct__equipmentToggleWrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.bildeveSingleProduct__equipmentToggleWrap[hidden],
.bildeveSingleProduct__equipmentToggle[hidden] {
  display: none !important;
}

.bildeveSingleProduct__equipmentToggle {
  align-items: center;
  background: transparent;
  border: none;
  color: #101828;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  justify-content: center;
  line-height: 1.5;
  text-decoration: underline;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.bildeveSingleProduct__equipmentToggle:hover,
.bildeveSingleProduct__equipmentToggle:focus-visible {
  text-decoration: none;
  color: #000;
}

.bildeveSingleProduct__equipmentLabelWrap {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.bildeveSingleProduct__documentLink {
  align-items: center;
  background: #101828;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
  min-height: 42px;
  padding: 8px 20px;
  text-decoration: none;
}

.bildeveSingleProduct__documentIcon {
  color: #fff;
  height: 24px;
  width: 24px;
}

.bildeveSingleProduct__summary {
  padding: 20px;
  position: sticky;
  top: 24px;
}

.bildeveSingleProduct__brandLogo {
  margin-bottom: 20px;
  max-width: 99px;
}

.bildeveSingleProduct__brandLogoImage {
  display: block;
  height: auto;
  width: 100%;
  object-fit: contain;
  max-height: 50px;
  object-position: left;
}

.bildeveSingleProduct__summaryHeading {
  margin-bottom: 40px;
}

.bildeveSingleProduct__title {
  color: #0b0203;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.17px;
  line-height: 1.2;
  margin: 0;
}

.bildeveSingleProduct__subtitle {
  color: #4a5565;
  font-size: 20px;
  line-height: 28px;
  margin: 20px 0 0;
}

.bildeveSingleProduct__priceBlock {
  margin-bottom: 32px;
}

.bildeveSingleProduct__priceEyebrow,
.bildeveSingleProduct__summaryEyebrow {
  color: rgba(74, 85, 101, 0.7);
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 16px;
  text-transform: uppercase;
}

.bildeveSingleProduct__eyebrow {
  color: rgba(74, 85, 101, 0.7);
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.bildeveSingleProduct__insuranceEyebrow {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.bildeveSingleProduct__priceValue {
  color: #101828;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.9px;
  line-height: 45px;
}

.bildeveSingleProduct__summaryDivider {
  background: #e5e5e5;
  height: 1px;
  margin-bottom: 32px;
}

.bildeveSingleProduct__summaryFinancing {
  margin-bottom: 32px;
}

.bildeveSingleProduct__summaryFinanceCard {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-top: 10px;
  padding: 16px;
}

a.bildeveSingleProduct__summaryFinanceCard--link {
  color: inherit;
  display: block;
  text-decoration: none;
}

a.bildeveSingleProduct__summaryFinanceCard--link:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 2px;
}

button.bildeveSingleProduct__summaryFinanceChoice {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  margin: 0;
  text-align: left;
  width: 100%;
}

button.bildeveSingleProduct__summaryFinanceChoice:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 2px;
}

.bildeveSingleProduct__summaryFinanceCard--active {
  border-color: #171717;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.bildeveSingleProduct__summaryFinanceTitle {
  color: #171717;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin: 0 0 4px;
}

.bildeveSingleProduct__summaryFinanceAmount {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 8px;
}

.bildeveSingleProduct__summaryFinanceAmountPrefix {
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 20px;
}

.bildeveSingleProduct__summaryFinanceAmountValue {
  color: #171717;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.53px;
  line-height: 32px;
}

.bildeveSingleProduct__summaryFinanceAmountSuffix {
  color: #737373;
  font-size: 14px;
  line-height: 20px;
}

.bildeveSingleProduct__summaryFinanceMeta {
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.bildeveSingleProduct__summaryFinanceCard--notice
  .bildeveSingleProduct__summaryFinanceMeta {
  line-height: 19.5px;
}

.bildeveSingleProduct__summaryFinanceNoticeHead {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.bildeveSingleProduct__summaryFinanceBadge,
.bildeveSingleProduct__financeInfoBadge {
  align-items: center;
  background: #f0fdf4;
  border-radius: 5px;
  color: #008236;
  display: inline-flex;
  font-size: 10px;
  gap: 4px;
  line-height: 15px;
  padding: 2px 6px;
}

.bildeveSingleProduct__summaryFinanceLinkWrap {
  margin-top: 16px;
  text-align: right;
}

.bildeveSingleProduct__summaryFinanceLink {
  align-items: center;
  color: #101828;
  display: inline-flex;
  gap: 13px;
  text-decoration: none;
}

.bildeveSingleProduct__summaryFinanceLink span:last-child {
  display: inline-flex;
  height: 24px;
  width: 24px;
  align-items: center;
}

.bildeveSingleProduct__summaryActions {
  display: grid;
  gap: 10px;
}

.bildeveSingleProduct__summaryAction {
  align-items: center;
  border-radius: 3px;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 8px 20px;
  text-decoration: none;
  box-sizing: border-box;
}

.bildeveSingleProduct__summaryAction--primary {
  background: #000;
  color: #fff;
}

.bildeveSingleProduct__summaryAction--secondary {
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #101828;
}

.bildeveSingleProduct__summaryActionIcon {
  height: 24px;
  width: 24px;
}

.bildeveSingleProduct__summaryLocation {
  display: grid;
  gap: 20px;
  grid-template-columns: 24px minmax(0, 1fr);
  margin-top: 32px;
}

.bildeveSingleProduct__summaryLocationIcon {
  color: #101828;
  height: 24px;
  width: 24px;
}

.bildeveSingleProduct__summaryLocationTitle {
  color: #101828;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 16px;
}

.bildeveSingleProduct__summaryLocationLink {
  color: #101828;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
}

.bildeveSingleProduct__sectionIntro {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  max-width: 100%;
}

.bildeveSingleProduct__sectionIntro--center {
  margin: 0 auto 48px;
  max-width: 800px;
  text-align: center;
}

.bildeveSingleProduct__largeTitle,
.bildeveSingleProduct__largeTitle--section {
  color: #101828;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.168px;
  line-height: 1.2;
  margin: 0;
}

.bildeveSingleProduct__sectionIntro
  .bildeveSingleProduct__eyebrow
  + .bildeveSingleProduct__largeTitle,
.bildeveSingleProduct__sectionIntro
  .bildeveSingleProduct__eyebrow
  + .bildeveSingleProduct__largeTitle--section {
  margin-top: 24px;
}

.bildeveSingleProduct__sectionInner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1340px;
  width: 90%;
}

.bildeveSingleProduct__sectionInner--textStrip {
  padding-inline: 0;
}

.bildeveSingleProduct__sectionInner--contact {
  align-items: flex-start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 680px);
  width: 90%;
  max-width: 1340px;
  margin: 0 auto;
}

.bildeveSingleProduct__sectionInner--insurance {
  position: relative;
  z-index: 1;
}

.bildeveSingleProduct__expertsSection {
  background: #f6f8fb;
  box-sizing: border-box;
  padding: 112px 0;
  width: 100%;
}

.bildeveSingleProduct__financingSection--wayke {
  background: #f9fafb;
  box-sizing: border-box;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 112px;
  padding: 64px clamp(16px, 5vw, 64px);
  scroll-margin-top: 0px;
  width: 100%;
}

#financing {
  scroll-margin-top: 100px;
}

/* Figma Gallery / 19 — financing card & meta row */
.bildeveSingleProduct__financingWaykeGrid--gallery19 {
  align-items: center;
}

.bildeveSingleProduct__financingWaykeCol--card {
  min-width: 0;
}

.bildeveSingleProduct__financingCard {
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 24px 32px;
  width: 100%;
}

.bildeveSingleProduct__financingIntroBlock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.bildeveSingleProduct__financingMeta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: space-between;
  margin-bottom: 24px;
  min-height: 32px;
}

.bildeveSingleProduct__financingMeta--rateOnly {
  justify-content: flex-end;
}

.bildeveSingleProduct__financingMetaBank {
  flex: 1;
  min-width: 0;
}

.bildeveSingleProduct__financingMetaLink {
  align-items: center;
  color: #999;
  display: inline-flex;
  font-size: 12px;
  gap: 6px;
  line-height: 18px;
  text-decoration: none;
}

.bildeveSingleProduct__financingMetaLink:hover,
.bildeveSingleProduct__financingMetaLink:focus-visible {
  color: #333;
}

.bildeveSingleProduct__financingMetaLink--plain {
  color: #999;
}

.bildeveSingleProduct__financingMetaChevron {
  display: inline-flex;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.bildeveSingleProduct__financingMetaChevron > svg {
  height: 16px;
}

.bildeveSingleProduct__financingMetaRate {
  background: #f5f5f5;
  border-radius: 999px;
  color: #666;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 7px 12px;
}

.bildeveSingleProduct__financingCalc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
}

.bildeveSingleProduct__financingSliders {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bildeveSingleProduct__financingSliderBlock {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bildeveSingleProduct__financingSliderHead {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 21px;
}

.bildeveSingleProduct__financingSliderLabel {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 21px;
}

.bildeveSingleProduct__financingSliderValue {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 21px;
}

.bildeveSingleProduct__financingSliderTrackWrap {
  height: 20px;
  position: relative;
  width: 100%;
}

.bildeveSingleProduct__financingSliderTrack {
  background: #e5e5e5;
  border-radius: 999px;
  height: 4px;
  left: 0;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 8px;
}

.bildeveSingleProduct__financingSliderFill {
  background: #101828;
  border-radius: 999px;
  display: block;
  height: 4px;
  max-width: 100%;
}

.bildeveSingleProduct__financingSliderThumb {
  background: #fff;
  border: 2px solid #101828;
  border-radius: 50%;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1);
  height: 20px;
  margin-left: -10px;
  position: absolute;
  top: -10px;
  width: 20px;
}

.bildeveSingleProduct__financingSliderTrackWrap.is-interactive
  .bildeveSingleProduct__financingRange {
  cursor: pointer;
  height: 20px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.bildeveSingleProduct__financingDivider {
  background: #e5e5e5;
  display: block;
  flex-shrink: 0;
  height: 1px;
  width: 100%;
}

.bildeveSingleProduct__financingSummaryRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bildeveSingleProduct__financingSummaryCard {
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-width: min(100%, 200px);
  padding: 16px;
}

.bildeveSingleProduct__financingSummaryCard--down {
  background: #f8f8f8;
}

.bildeveSingleProduct__financingSummaryCard--monthly {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 17px;
  position: relative;
}

.bildeveSingleProduct__financingSummaryCardHead {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.bildeveSingleProduct__financingSummaryCardLabel {
  color: #999;
  font-size: 11px;
  letter-spacing: 0.0645px;
  line-height: 16.5px;
}

.bildeveSingleProduct__financingSummaryCardValue {
  color: #333;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4395px;
  line-height: 27px;
}

.bildeveSingleProduct__financingSummaryCardValue--emphasis {
  margin-top: 0;
}

.bildeveSingleProduct__financingSummaryInfoBtn {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #6a7282;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 22px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 22px;
}

.bildeveSingleProduct__financingSummaryInfoBtn:hover,
.bildeveSingleProduct__financingSummaryInfoBtn:focus-visible {
  color: #171717;
}

.bildeveSingleProduct__financingSummaryInfoBtn:focus-visible {
  outline: 2px solid #445773;
  outline-offset: 2px;
}

.bildeveSingleProduct__financingSummaryInfoBtn svg {
  height: 20px;
  width: 20px;
}

.bildeveSingleProduct__financingEstimate {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  margin: 0;
}

.bildeveSingleProduct__financingEstimateIcon {
  display: inline-flex;
  flex-shrink: 0;
  height: 14px;
  width: 14px;
}

.bildeveSingleProduct__financingEstimateIcon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.bildeveSingleProduct__financingEstimateText {
  color: #999;
  font-size: 11px;
  letter-spacing: 0.0645px;
  line-height: 17.875px;
}

.bildeveSingleProduct__financingVisualWrap {
  max-width: 616px;
  position: relative;
  width: 100%;
  height: 100%;
}

.bildeveSingleProduct__financingVisualDisclaimer {
  align-items: center;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  bottom: 16px;
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  left: 16px;
  padding: 20px 16px;
  position: absolute;
  right: 16px;
}

.bildeveSingleProduct__financingVisualDisclaimerIcon {
  flex-shrink: 0;
  height: 71px;
  width: 71px;
}

.bildeveSingleProduct__financingVisualDisclaimerIcon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.bildeveSingleProduct__financingVisualDisclaimerText {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.bildeveSingleProduct__financingVisualDisclaimerTitle {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 21px;
  margin: 0;
}

.bildeveSingleProduct__financingVisualDisclaimerBody {
  color: #595959;
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

.bildeveSingleProduct__financingVisualDisclaimerBody p {
  margin: 0 0 0.5em;
}

.bildeveSingleProduct__financingVisualDisclaimerBody p:last-child {
  margin-bottom: 0;
}

.bildeveSingleProduct__financingVisualDisclaimerLegal {
  color: #595959;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.bildeveSingleProduct__financingVisualDisclaimerLegal
  .bildeveSingleProduct__financingDisclaimerLink {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.bildeveSingleProduct__financingWaykeInner {
  margin: 0 auto;
  max-width: 1340px;
  width: 90%;
}

.bildeveSingleProduct__financingWaykeGrid {
  align-items: flex-start;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.bildeveSingleProduct__financingWaykeCol--visual {
  justify-self: end;
  position: relative;
  width: 100%;
  height: 100%;
}

.bildeveSingleProduct__financingWaykeIntro {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bildeveSingleProduct__financingWaykeEyebrow {
  color: #797979;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.bildeveSingleProduct__financingWaykeIntroMain {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bildeveSingleProduct__financingWaykeTitle {
  color: #101828;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.17px;
  line-height: 1.2;
  margin: 0;
}

.bildeveSingleProduct__financingWaykeLead {
  color: #595959;
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

.bildeveSingleProduct__financingWaykeLead p {
  margin: 0 0 1em;
}

.bildeveSingleProduct__financingWaykeLead p:last-child {
  margin-bottom: 0;
}

.bildeveSingleProduct__financingWaykeBank,
.bildeveSingleProduct__financingWaykeInterest {
  color: #595959;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.bildeveSingleProduct__financingWaykeInterest {
  color: #4a5565;
  font-weight: 600;
}

.bildeveSingleProduct__financingWaykeCtaWrap {
  margin: 24px 0 0;
}

.bildeveSingleProduct__financingWaykeCta {
  align-items: center;
  color: #101828;
  display: inline-flex;
  gap: 8px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.bildeveSingleProduct__financingWaykeCta:hover,
.bildeveSingleProduct__financingWaykeCta:focus-visible {
  text-decoration: underline;
}

.bildeveSingleProduct__financingWaykeCtaIcon {
  display: inline-flex;
  height: 24px;
  width: 24px;
}

.bildeveSingleProduct__financingWaykeControls {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  max-width: 615px;
  overflow: visible;
}

.bildeveSingleProduct__financingWaykeFilter {
  background: #f9fafb;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 127px;
  overflow: visible;
  padding: 0 20px;
}

.bildeveSingleProduct__financingWaykeFilter--noSlider {
  min-height: 0;
}

.bildeveSingleProduct__financingWaykeFilterHead {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
}

.bildeveSingleProduct__financingWaykeFilterLabelRow {
  align-items: center;
  display: inline-flex;
  flex: 1;
  gap: 16px;
  min-width: 0;
}

.bildeveSingleProduct__financingWaykeFilterTitle {
  color: #171717;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.bildeveSingleProduct__financingWaykeFilterInfo {
  color: #171717;
  display: inline-flex;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.bildeveSingleProduct__financingWaykeFilterValue {
  color: #4a5565;
  flex-shrink: 0;
  font-family: "DM Sans", Inter, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.bildeveSingleProduct__financingWaykeSliderWrap {
  box-sizing: border-box;
  padding: 16px 12px 20px;
  position: relative;
}

.bildeveSingleProduct__financingWaykeSliderWrap.is-interactive
  .bildeveSingleProduct__financingWaykeSliderTrack {
  pointer-events: none;
}

.bildeveSingleProduct__financingWaykeSlider {
  padding: 16px 12px 20px;
}

.bildeveSingleProduct__financingWaykeSliderTrack {
  background: #fff;
  border-radius: 4px;
  height: 5px;
  overflow: visible;
  position: relative;
  width: 100%;
}

.bildeveSingleProduct__financingWaykeSliderFill {
  background: #445773;
  border-radius: 4px;
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
}

.bildeveSingleProduct__financingWaykeSliderThumb {
  background: #445773;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 20px;
  position: absolute;
  top: -8px;
  transform: translateX(-50%);
  width: 20px;
}

.bildeveSingleProduct__financingWaykeRange {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  bottom: 11px;
  cursor: pointer;
  display: none;
  height: 28px;
  left: 12px;
  margin: 0;
  padding: 0;
  position: absolute;
  width: calc(100% - 24px);
  z-index: 2;
}

.bildeveSingleProduct__financingWaykeSliderWrap.is-interactive
  .bildeveSingleProduct__financingWaykeRange {
  display: block;
}

.bildeveSingleProduct__financingWaykeRange:focus {
  outline: none;
}

.bildeveSingleProduct__financingWaykeRange:focus-visible {
  outline: 2px solid #445773;
  outline-offset: 4px;
}

.bildeveSingleProduct__financingWaykeRange::-webkit-slider-runnable-track {
  background: transparent;
  height: 5px;
}

.bildeveSingleProduct__financingWaykeRange::-moz-range-track {
  background: transparent;
  height: 5px;
}

.bildeveSingleProduct__financingWaykeRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  height: 28px;
  margin-top: -11px;
  width: 28px;
}

.bildeveSingleProduct__financingWaykeRange::-moz-range-thumb {
  background: transparent;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  height: 28px;
  width: 28px;
}

.bildeveSingleProduct__financingWaykeRule {
  background: #e5e5e5;
  height: 1px;
  margin: 0;
  width: 100%;
}

.bildeveSingleProduct__financingWaykeSummary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  overflow: visible;
  padding: 28px 0px 24px;
}

.bildeveSingleProduct__financingWaykeSummaryCol {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  line-height: 1.5;
  min-width: 140px;
  overflow: visible;
}

.bildeveSingleProduct__financingWaykeSummaryLabel {
  color: #6a7282;
  font-size: 18px;
  font-weight: 700;
}

.bildeveSingleProduct__financingWaykeSummaryValue {
  color: #101828;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.112px;
}

.bildeveSingleProduct__financingWaykeMonthlyHead {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.bildeveSingleProduct__financingWaykeSummaryValue--withInfo {
  flex: 1;
  min-width: 0;
}

.bildeveSingleProduct__financingWaykeMonthlyWrap {
  align-items: flex-start;
  overflow: visible;
}

.bildeveSingleProduct__financingWaykeSummaryLabelRow {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.bildeveSingleProduct__financingWaykeSummaryCol--monthly
  .bildeveSingleProduct__financingWaykeSummaryLabelRow
  .bildeveSingleProduct__financingWaykeSummaryLabel {
  flex: 1;
  min-width: 0;
}

.bildeveSingleProduct__financingBreakdownToggle {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #6a7282;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 36px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 36px;
}

.bildeveSingleProduct__financingBreakdownToggle:hover,
.bildeveSingleProduct__financingBreakdownToggle:focus-visible {
  color: #171717;
}

.bildeveSingleProduct__financingBreakdownToggle:focus-visible {
  outline: 2px solid #445773;
  outline-offset: 2px;
}

.bildeveSingleProduct__financingBreakdownToggle svg {
  height: 22px;
  width: 22px;
}

.bildeveSingleProduct__financingBreakdownPanel {
  box-sizing: border-box;
}

.bildeveSingleProduct__financingBreakdownPanel--tooltip {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.06);
  margin-top: 10px;
  max-width: min(320px, calc(100vw - 48px));
  min-width: 300px;
  padding: 16px 18px 18px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 40;
}

.bildeveSingleProduct__financingBreakdownPanel--tooltip::before {
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  filter: drop-shadow(0 -1px 0 rgba(15, 23, 42, 0.06));
  height: 0;
  position: absolute;
  right: 14px;
  bottom: 100%;
  width: 0;
}

.bildeveSingleProduct__financingBreakdownPanel[hidden] {
  display: none !important;
}

.bildeveSingleProduct__financingBreakdownList--tooltip {
  align-items: baseline;
  display: grid;
  gap: 10px 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  margin: 0;
}

.bildeveSingleProduct__financingBreakdownList--tooltip dt {
  color: #6a7282;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}

.bildeveSingleProduct__financingBreakdownList--tooltip dd {
  color: #101828;
  font-size: 14px;
  font-weight: 500;
  justify-self: start;
  margin: 0;
  text-align: left;
}

.bildeveSingleProduct__financingBreakdownHeading {
  color: #171717;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}

.bildeveSingleProduct__financingBreakdownList:not(
  .bildeveSingleProduct__financingBreakdownList--tooltip
) {
  display: grid;
  gap: 8px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0;
}

.bildeveSingleProduct__financingBreakdownList:not(
    .bildeveSingleProduct__financingBreakdownList--tooltip
  )
  dt {
  color: #6a7282;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.bildeveSingleProduct__financingBreakdownList:not(
    .bildeveSingleProduct__financingBreakdownList--tooltip
  )
  dd {
  color: #101828;
  font-size: 14px;
  font-weight: 400;
  justify-self: end;
  margin: 0;
  text-align: right;
}

.bildeveSingleProduct__financingBreakdownList dd.is-emphasis {
  font-weight: 700;
}

.bildeveSingleProduct__financingBreakdownFooter {
  color: #6a7282;
  font-size: 13px;
  line-height: 1.45;
  margin: 16px 0 0;
}

.bildeveSingleProduct__financingBreakdownEmpty {
  color: #6a7282;
  font-size: 13px;
  margin: 0;
}

.bildeveSingleProduct__financingWaykeSummaryDivider {
  align-self: stretch;
  background: #e5e5e5;
  flex-shrink: 0;
  width: 1px;
}

.bildeveSingleProduct__financingWaykeEstimateNote {
  color: #6a7282;
  font-size: 13px;
  line-height: 1.45;
  margin: -8px 8px 0;
  max-width: 615px;
}

.bildeveSingleProduct__financingWaykeVisual {
  max-width: 616px;
  position: relative;
  width: 100%;
  height: 100%;
}

.bildeveSingleProduct__financingWaykeVisual--empty {
  aspect-ratio: auto;
  background: #e5e7eb;
  min-height: 320px;
}

.woocommerce .bildeveSingleProduct__financingWaykeHero {
  border-radius: 5px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bildeveSingleProduct__financingWaykeDisclaimer {
  align-items: center;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  bottom: 15px;
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  left: 15px;
  max-width: calc(100% - 30px);
  padding: 20px 30px;
  position: absolute;
  right: 15px;
}

.bildeveSingleProduct__financingWaykeDisclaimerIcon {
  flex-shrink: 0;
  height: 136px;
  width: 136px;
}

.bildeveSingleProduct__financingWaykeDisclaimerIcon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.bildeveSingleProduct__financingWaykeDisclaimerTitle {
  color: #101828;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 12px;
}

.bildeveSingleProduct__financingWaykeDisclaimerBody {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.bildeveSingleProduct__financingWaykeDisclaimerBody
  .bildeveSingleProduct__financingDisclaimerLink {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.bildeveSingleProduct__financingDisclaimerAsterisk {
  margin-right: 2px;
}

.bildeveSingleProduct__financingCards {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1100px;
}

.bildeveSingleProduct__financeInfoCard {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  min-height: 226px;
  padding: 33px;
}

.bildeveSingleProduct__financeInfoTitle {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.bildeveSingleProduct__financeInfoText {
  color: #4a5565;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.bildeveSingleProduct__financeInfoAmount {
  color: #101828;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.bildeveSingleProduct__expertsHeader {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.bildeveSingleProduct__expertsGrid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bildeveSingleProduct__expertImageWrap {
  aspect-ratio: 296 / 296;
  border-radius: 5px;
  overflow: hidden;
}

.bildeveSingleProduct__expertImage,
.bildeveSingleProduct__expertPlaceholder {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

span.bildeveSingleProduct__equipmentLabel {
  font-size: 14px;
}

.bildeveSingleProduct__expertPlaceholder {
  background: #d9d9d9;
}

.bildeveSingleProduct__expertContent {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

/* Invisible wrapper on desktop; becomes an icon-button row on mobile. */
.bildeveSingleProduct__expertMetaRow {
  display: contents;
}

.bildeveSingleProduct__expertMeta {
  align-items: center;
  color: #4a5565;
  display: inline-flex;
  font-size: 14px;
  gap: 5px;
  line-height: 1.5;
  margin-bottom: 8px;
  text-decoration: none;
}

.bildeveSingleProduct__expertMeta:hover {
  text-decoration: underline;
}

.bildeveSingleProduct__expertMeta span:first-child {
  display: inline-flex;
  height: 16px;
  width: 16px;
}

.bildeveSingleProduct__introText,
.bildeveSingleProduct__textStripText {
  color: #4a5565;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.bildeveSingleProduct__introText {
  margin-top: 24px;
  max-width: 515px;
}

.bildeveSingleProduct__textStrip {
  background: #f9fafb;
  box-sizing: border-box;
  width: 100%;
}

.bildeveSingleProduct__textStripOuter {
  background: #f9fafb;
  width: 100%;
}

.bildeveSingleProduct__textStripInner {
  background: #f6f8fb;
  box-sizing: border-box;
  padding: 64px 64px 112px;
  width: 100%;
}

.bildeveSingleProduct__textStripTitle {
  color: #101828;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.112px;
  line-height: 1.5;
  margin: 0;
}

.bildeveSingleProduct__textStripBody {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.bildeveSingleProduct__textStripLink {
  align-self: flex-start;
}

/* Collapsed state for long text: JS adds/removes .is-clamped and only
   shows the toggle when the clamped text actually overflows. */
.bildeveSingleProduct__textStripText.is-clamped {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.bildeveSingleProduct__textStripToggle {
  align-items: center;
  align-self: flex-start;
  background: transparent;
  border: 0;
  color: #101828;
  cursor: pointer;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 4px;
  line-height: 1.5;
  padding: 0;
}

.bildeveSingleProduct__textStripToggle[hidden] {
  display: none;
}

.bildeveSingleProduct__textStripToggle:hover,
.bildeveSingleProduct__textStripToggle:focus-visible {
  opacity: 0.78;
  text-decoration: underline;
}

.bildeveSingleProduct__textStripToggle:focus-visible {
  outline: 2px solid rgba(16, 24, 40, 0.28);
  outline-offset: 2px;
}

.bildeveSingleProduct__textStripToggleIcon {
  display: inline-flex;
  height: 18px;
  transition: transform 0.2s ease;
  width: 18px;
}

.bildeveSingleProduct__textStripToggleIcon svg {
  height: 100%;
  width: 100%;
}

.bildeveSingleProduct__textStripToggle[aria-expanded="true"]
  .bildeveSingleProduct__textStripToggleIcon {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .bildeveSingleProduct__textStripToggleIcon {
    transition: none;
  }
}

.bildeveSingleProduct__contactSection {
  background: #f6f8fb;
  box-sizing: border-box;
  padding: 112px 0;
  width: 100%;
}

.bildeveSingleProduct__contactInfo {
  max-width: 515px;
}

.bildeveSingleProduct__contactInfo
  > .bildeveSingleProduct__eyebrow
  + .bildeveSingleProduct__largeTitle,
.bildeveSingleProduct__contactInfo
  > .bildeveSingleProduct__eyebrow
  + .bildeveSingleProduct__largeTitle--section {
  margin-top: 16px;
}

.bildeveSingleProduct__contactMetaGroup {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.bildeveSingleProduct__address {
  color: #4a5565;
  display: flex;
  font-size: 14px;
  gap: 5px;
  line-height: 1.5;
}

.bildeveSingleProduct__contactFormWrap {
  background: #fff;
  border-radius: 10px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.bildeveSingleProduct__contactFormPlaceholder {
  color: #4a5565;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.bildeveSingleProduct__contactFormWrap .wpcf7 {
  margin: 0;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-form p {
  margin: 0;
}

.bildeveSingleProduct__contactFormWrap .contactBlock__cf7Row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.bildeveSingleProduct__contactFormWrap .contactBlock__cf7Field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.bildeveSingleProduct__contactFormWrap .contactBlock__cf7Field label,
.bildeveSingleProduct__contactFormWrap .contactBlock__cf7Label {
  color: #0a0a0a;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1504px;
  line-height: 14px;
  margin: 0;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-form-control:not(.wpcf7-submit) {
  appearance: none;
  background: #f3f3f5;
  border: 1px solid transparent;
  border-radius: 8px;
  box-sizing: border-box;
  color: #0a0a0a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.1504px;
  line-height: normal;
  margin: 0;
  min-height: 36px;
  padding: 4px 12px;
  width: 100%;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-form-control::placeholder {
  color: #717182;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-form-control:focus {
  border-color: rgba(16, 24, 40, 0.25);
  outline: none;
}

.bildeveSingleProduct__contactFormWrap textarea.wpcf7-form-control {
  min-height: 106px;
  padding: 8px 12px;
  resize: vertical;
}

.bildeveSingleProduct__contactFormWrap .contactBlock__cf7Field--full {
  width: 100%;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-submit,
.bildeveSingleProduct__contactFormWrap input[type="submit"].wpcf7-form-control {
  background: #101828;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  min-height: 42px;
  padding: 8px 20px;
  width: auto;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-submit:hover,
.bildeveSingleProduct__contactFormWrap .wpcf7-submit:focus-visible {
  background: #1f2937;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-spinner {
  margin-left: 12px;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-not-valid-tip {
  color: #be123c;
  font-size: 12px;
  margin-top: 4px;
}

.bildeveSingleProduct__contactFormWrap .wpcf7-response-output {
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 12px 14px;
}

.bildeveSingleProduct__contactForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bildeveSingleProduct__formGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bildeveSingleProduct__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bildeveSingleProduct__fieldLabel {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.bildeveSingleProduct__fieldInput,
.bildeveSingleProduct__fieldTextarea {
  background: #f3f3f5;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #101828;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 12px;
  width: 100%;
}

.bildeveSingleProduct__fieldTextarea {
  min-height: 106px;
  resize: vertical;
}

.bildeveSingleProduct__submit {
  background: #101828;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  min-height: 42px;
  padding: 8px 20px;
}

.bildeveSingleProduct__notice {
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.bildeveSingleProduct__notice--success {
  background: #f0fdf4;
  color: #008236;
}

.bildeveSingleProduct__notice--error {
  background: #fff1f2;
  color: #be123c;
}

.bildeveSingleProduct__insuranceCta {
  background-color: #101828;
  box-sizing: border-box;
  overflow: hidden;
  padding: 112px 0;
  position: relative;
  width: 100%;
}

img.bildeveSingleProduct__insuranceBg {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.bildeveSingleProduct__insuranceOverlay {
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  position: absolute;
  z-index: 0;
}

.bildeveSingleProduct__insuranceContent {
  margin: 0 auto;
  max-width: 768px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.bildeveSingleProduct__insuranceTitle {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 68px;
  font-weight: 400;
  letter-spacing: 0.238px;
  line-height: 1.2;
  margin: 16px 0 0;
}

.bildeveSingleProduct__insuranceText {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 24px;
}

.bildeveSingleProduct__insuranceText p {
  margin: 0;
}

.bildeveSingleProduct__insuranceActions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.bildeveSingleProduct__insuranceActions .bildeveButton {
  min-width: 150px;
}

.bildeveSingleProduct__financingWaykeVisual > img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .bildeveSingleProduct__hero,
  .bildeveSingleProduct__financingCards,
  .bildeveSingleProduct__expertsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bildeveSingleProduct__sectionInner--contact {
    grid-template-columns: minmax(0, 1fr);
  }
  .bildeveSingleProduct__financingWaykeGrid {
    grid-template-columns: 1fr;
  }

  .bildeveSingleProduct__financingWaykeCol--visual {
    display: none;
  }
}

@media (max-width: 991px) {
  .bildeveSingleProduct {
    padding-top: 0;
  }

  .bildeveSingleProduct__breadcrumbs {
    margin-top: 30px;
  }

  .bildeveSingleProduct__breadcrumbs,
  .bildeveSingleProduct__backRow,
  .bildeveSingleProduct__hero {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .bildeveSingleProduct__summaryHeading {
    margin-bottom: 20px;
  }

  .bildeveSingleProduct__hero,
  .bildeveSingleProduct__financingCards,
  .bildeveSingleProduct__financingWaykeGrid,
  .bildeveSingleProduct__facts,
  .bildeveSingleProduct__specGrid,
  .bildeveSingleProduct__equipmentGrid,
  .bildeveSingleProduct__formGrid,
  .bildeveSingleProduct__contactFormWrap .contactBlock__cf7Row,
  .bildeveSingleProduct__sectionInner--contact {
    grid-template-columns: 1fr;
  }

  .bildeveSingleProduct__expertsGrid {
    gap: 16px;
  }

  .bildeveSingleProduct__expertContent {
    margin-top: 12px;
  }

  .bildeveSingleProduct__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bildeveSingleProduct__detailsColumn {
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }

  .bildeveSingleProduct__galleryProgress {
    left: auto;
    margin-top: 12px;
    padding: 0 12px;
    position: static;
    top: auto;
    width: 100%;
  }

  .bildeveSingleProduct__galleryArrow {
    height: 40px;
    width: 40px;
  }

  .bildeveSingleProduct__galleryArrow--prev {
    left: 8px;
  }

  .bildeveSingleProduct__galleryArrow--next {
    right: 8px;
  }

  .bildeveSingleProduct__equipmentTabs {
    flex-wrap: nowrap;
    margin-left: -20px;
    margin-right: -20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0 20px 4px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .bildeveSingleProduct__equipmentTabs::-webkit-scrollbar {
    display: none;
  }

  .bildeveSingleProduct__equipmentTab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .bildeveSingleProduct__financingWaykeGrid {
    gap: 40px;
  }

  .bildeveSingleProduct__financingCard {
    max-width: none;
    padding: 20px;
  }

  .bildeveSingleProduct__financingIntroBlock {
    margin-bottom: 20px;
  }

  .bildeveSingleProduct__financingMeta {
    margin-bottom: 20px;
  }

  .bildeveSingleProduct__financingSummaryRow {
    flex-direction: column;
  }

  .bildeveSingleProduct__financingSummaryCard {
    min-width: 0;
    width: 100%;
  }

  .bildeveSingleProduct__financingWaykeCol--visual {
    justify-self: stretch;
  }

  .bildeveSingleProduct__financingWaykeVisual {
    max-width: none;
  }

  .bildeveSingleProduct__financingWaykeVisual:not(
    .bildeveSingleProduct__financingWaykeVisual--empty
  ) {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }

  .bildeveSingleProduct__financingSection--wayke {
    margin-top: 64px;
    padding: 48px 20px;
  }

  .bildeveSingleProduct__summary {
    background: #f9fafb;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    position: static;
  }

  .bildeveSingleProduct__title {
    font-size: 36px;
  }

  .bildeveSingleProduct__subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-top: 12px;
  }

  .bildeveSingleProduct__priceValue {
    font-size: 32px;
    line-height: 40px;
  }

  .bildeveSingleProduct__summaryLocationTitle {
    font-size: 24px;
  }

  .bildeveSingleProduct__summaryAction {
    width: 100%;
  }

  .bildeveSingleProduct__galleryColumn {
    grid-column: 1;
    grid-row: 1;
  }

  .bildeveSingleProduct__sidebar {
    background-color: transparent;
    grid-column: 1;
    grid-row: 2;
    padding-top: 16px;
    position: static;
    top: auto;
  }

  .bildeveSingleProduct__detailsColumn {
    grid-column: 1;
    grid-row: 3;
    padding: 0;
  }

  .bildeveSingleProduct__sectionTitle {
    font-size: 22px;
    line-height: 28px;
  }

  .bildeveSingleProduct__expertsSection {
    padding: 64px 20px;
  }

  .bildeveSingleProduct__expertsHeader {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .bildeveSingleProduct__sectionInner--contact {
    gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .bildeveSingleProduct__contactSection {
    padding: 64px 0;
  }

  .bildeveSingleProduct__contactFormWrap {
    padding: 24px;
  }

  .bildeveSingleProduct__textStripInner {
    padding: 48px 20px 64px;
  }

  .bildeveSingleProduct__textStripTitle {
    font-size: 28px;
  }

  .bildeveSingleProduct__insuranceCta {
    padding: 64px 20px;
  }

  .bildeveSingleProduct__insuranceTitle {
    font-size: 40px;
  }

  .bildeveSingleProduct__insuranceActions {
    flex-direction: column;
  }

  .bildeveSingleProduct__insuranceActions .bildeveButton {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bildeveSingleProduct__container {
    padding-bottom: 64px;
  }

  .bildeveSingleProduct__title,
  .bildeveSingleProduct__largeTitle,
  .bildeveSingleProduct__largeTitle--section,
  .bildeveSingleProduct__financingWaykeTitle {
    font-size: 32px;
  }

  /* Expert phone/email collapse to icon-only tap targets on mobile. */
  .bildeveSingleProduct__expertMetaRow {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }

  .bildeveSingleProduct__expertMeta {
    align-items: center;
    background: #f6f8fb;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    flex: 1 1 0;
    height: 44px;
    justify-content: center;
    margin-bottom: 0;
    min-width: 0;
  }

  .bildeveSingleProduct__expertMeta span:first-child {
    height: 18px;
    width: 18px;
  }

  .bildeveSingleProduct__expertMeta span:first-child svg {
    height: 18px;
    width: 18px;
  }

  .bildeveSingleProduct__expertMetaText {
    display: none;
  }

  .bildeveSingleProduct__financingWaykeCol--visual {
    display: none;
  }

  .bildeveSingleProduct__financingSection--wayke {
    margin-left: -20px;
    margin-right: -20px;
    padding: 40px 16px;
  }

  .bildeveSingleProduct__financingWaykeSummary {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 16px 0;
  }

  .bildeveSingleProduct__financingWaykeInner {
    width: 100%;
  }

  .bildeveSingleProduct__financingWaykeSummaryDivider {
    height: 1px;
    width: 100%;
  }

  .bildeveSingleProduct__financingWaykeSummaryValue {
    font-size: 26px;
  }

  .bildeveSingleProduct__financingWaykeSummaryLabel {
    font-size: 16px;
  }

  .bildeveSingleProduct__financingSummaryCardValue {
    font-size: 22px;
  }

  .bildeveSingleProduct__financingBreakdownPanel--tooltip {
    margin-top: 12px;
    max-width: none;
    min-width: 0;
    position: static;
    right: auto;
    top: auto;
    width: 100%;
  }

  .bildeveSingleProduct__financingBreakdownPanel--tooltip::before {
    display: none;
  }

  .bildeveSingleProduct__financingWaykeDisclaimer {
    align-items: flex-start;
    bottom: auto;
    flex-direction: column;
    left: auto;
    margin-top: 16px;
    max-width: none;
    position: static;
    right: auto;
  }

  .bildeveSingleProduct__financingWaykeDisclaimerIcon {
    height: 72px;
    width: 72px;
  }

  .bildeveSingleProduct__financingWaykeVisual:not(
    .bildeveSingleProduct__financingWaykeVisual--empty
  ) {
    aspect-ratio: auto;
    max-height: none;
  }

  .bildeveSingleProduct__facts {
    gap: 10px;
    margin-top: 24px;
    padding: 16px;
  }

  .bildeveSingleProduct__specCard,
  .bildeveSingleProduct__equipmentCard {
    padding: 14px;
  }

  .bildeveSingleProduct__section {
    margin-top: 32px;
  }

  .bildeveSingleProduct__sectionTitle {
    font-size: 20px;
    line-height: 26px;
  }

  .bildeveSingleProduct__expertsSection,
  .bildeveSingleProduct__contactSection,
  .bildeveSingleProduct__insuranceCta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bildeveSingleProduct__textStripInner {
    padding-bottom: 48px;
    padding-top: 40px;
  }

  .bildeveSingleProduct__insuranceTitle {
    font-size: 36px;
  }

  .bildeveSingleProduct__galleryThumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-left: -20px;
    margin-right: -20px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding: 0 20px 6px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(16, 24, 40, 0.22) transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .bildeveSingleProduct__galleryThumbs::-webkit-scrollbar {
    height: 4px;
  }

  .bildeveSingleProduct__galleryThumbs::-webkit-scrollbar-thumb {
    background: rgba(16, 24, 40, 0.22);
    border-radius: 999px;
  }

  .bildeveSingleProduct__galleryThumb {
    flex: 0 0 clamp(72px, 22vw, 92px);
    scroll-snap-align: center;
  }

  .bildeveSingleProduct__galleryThumbImage {
    pointer-events: none;
  }
}

@media (max-width: 479px) {
  .bildeveSingleProduct__breadcrumbs,
  .bildeveSingleProduct__backRow,
  .bildeveSingleProduct__hero,
  .bildeveSingleProduct__sectionInner--contact,
  .bildeveSingleProduct__expertsSection,
  .bildeveSingleProduct__insuranceCta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bildeveSingleProduct__title {
    font-size: 28px;
  }

  .bildeveSingleProduct__largeTitle,
  .bildeveSingleProduct__largeTitle--section,
  .bildeveSingleProduct__financingWaykeTitle {
    font-size: 28px;
  }

  .bildeveSingleProduct__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .bildeveSingleProduct__priceValue {
    font-size: 28px;
    line-height: 36px;
  }

  .bildeveSingleProduct__summary {
    padding: 16px;
  }

  .bildeveSingleProduct__summaryLocationTitle {
    font-size: 20px;
  }

  .bildeveSingleProduct__facts {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .bildeveSingleProduct__factLabel,
  .bildeveSingleProduct__specLabel {
    font-size: 13px;
  }

  .bildeveSingleProduct__factValue,
  .bildeveSingleProduct__specValue,
  .bildeveSingleProduct__equipmentValue {
    font-size: 15px;
  }

  .bildeveSingleProduct__equipmentTabs {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bildeveSingleProduct__financingSection--wayke {
    margin-left: -16px;
    margin-right: -16px;
    padding: 32px 12px;
  }

  .bildeveSingleProduct__financingWaykeSummaryValue {
    font-size: 24px;
  }

  .bildeveSingleProduct__financingSummaryCardValue {
    font-size: 20px;
  }

  .bildeveSingleProduct__contactFormWrap {
    padding: 20px;
  }

  .bildeveSingleProduct__contactFormWrap .wpcf7-submit,
  .bildeveSingleProduct__contactFormWrap input[type="submit"] {
    width: 100%;
  }

  .bildeveSingleProduct__textStripTitle {
    font-size: 24px;
  }

  .bildeveSingleProduct__insuranceTitle {
    font-size: 32px;
  }

  .bildeveSingleProduct__galleryThumbs {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-inline: 16px;
  }
}
