/** Shopify CDN: Minification failed

Line 39:13 Expected identifier but found whitespace
Line 39:26 Unexpected "{"
Line 39:35 Expected ":"
Line 1023:14 Unexpected "{"
Line 1023:23 Expected ":"
Line 1023:30 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-product-baner (INDEX:41) */
.product-hero *,
  .product-hero *::before,
  .product-hero *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .hero-pdp-description {
    background: #f5f5f5;
    padding: 30px 0;
    font-size: 15px;
    color: #303030;
    font-family: 'Roboto', sans-serif;
    text-align: center;
  }
  .product-hero {
    --overlay-left:   rgba(0, 0, 0, 0.58);
    --overlay-right:  rgba(0, 0, 0, 0.08);
    --overlay-bottom: rgba(0, 0, 0, 0.62);
    --crumb-color:       rgba(255, 255, 255, 1);
    --crumb-hover-color: #ffffff;
    --crumb-sep-color:   rgba(255, 255, 255, 1);
    --title-color:       #ffffff;
    --accent:            {{ section.settings.accent_color }};
    --content-pad-x: 60px;
    --content-pad-b: 44px;
  }
  .product-hero--small  { --banner-height: 320px; }
  .product-hero--medium { --banner-height: 480px; }
  .product-hero--large  { --banner-height: 685px; }
  .product-hero {
    position: relative;
    width: 100%;
    height: var(--banner-height);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .product-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .product-hero__bg--placeholder {
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-hero__bg--placeholder .placeholder-svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
  }
  .product-hero__overlay {
    position: absolute;
    inset: 0;
    /* background:
      linear-gradient(to right, var(--overlay-left) 0%, rgba(0,0,0,0.30) 45%, var(--overlay-right) 100%),
      linear-gradient(to top, var(--overlay-bottom) 0%, rgba(0,0,0,0) 55%); */
    background: linear-gradient(
      to top,
      #1B263A 0%,
      rgba(27, 38, 58, 0.65) 20%,
      rgba(27, 38, 58, 0.45) 30%,
      rgba(27, 38, 58, 0.10) 40%
    );
  }
  .product-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: pheroReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
  .product-hero__content.page-width {
    padding: 40px 25px;
  }
  @keyframes pheroReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .product-hero .breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .product-hero .breadcrumbs__item {
    display: flex;
    align-items: center;
  }
  .product-hero .breadcrumbs__item + .breadcrumbs__item::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid var(--crumb-sep-color);
    border-top: 1.5px solid var(--crumb-sep-color);
    transform: rotate(45deg);
    margin: 0 9px;
    flex-shrink: 0;
  }
  .product-hero .breadcrumbs__link {
    color: var(--crumb-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-shadow: -4px 4px 6px black;
  }
  .product-hero .breadcrumbs__link:hover {
    color: var(--crumb-hover-color);
  }
  .product-hero .breadcrumbs__item--current .breadcrumbs__link {
    color: var(--crumb-hover-color);
    pointer-events: none;
  }
  .product-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--title-color);
    line-height: 0.95;
    text-shadow: -4px 4px 6px black;
  }
  @media screen and (max-width: 900px) {
    .product-hero { --banner-height: 360px; }
    .product-hero__title { font-size: 42px; }
  }
  @media screen and (max-width: 600px) {
    .product-hero { --banner-height: 260px; }
    .product-hero .breadcrumbs { font-size: 10px; letter-spacing: 0.06em; }
    .product-hero .breadcrumbs__item + .breadcrumbs__item::before { margin: 0 6px; }
    .product-hero__bg { object-position: center center; }
    .product-hero__title { font-size: 32px; }
  }
/* END_SECTION:custom-product-baner */

/* START_SECTION:custom-product-configurator-moduflex (INDEX:44) */
.mqc-wrap {
    padding: 50px 25px;
    font-family: 'Roboto', sans-serif;
  }
  .mqc-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .mqc-progress {
    grid-column: 1 / -1;
  }
  .mqc-summary {
    grid-column: 1 / -1;
  }
  /* ── Progress ── */
  .mqc-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
  }
  .mqc-progress__dot {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: #e0e0e0;
    transition: background 0.3s ease;
  }
  .mqc-progress__dot.is-done {
    background: #1a1a1a;
  }
  /* ── Step card ── */
  .mqc-step {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 20px;
  }
  .mqc-step__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .mqc-step__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaaaaa;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .mqc-step__num--active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
  }
  .mqc-step__title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1a1a1a;
  }
  .mqc-step__hint {
    font-size: 12px;
    color: #aaaaaa;
    margin-left: auto;
  }
  /* ── Conditional step badge ── */
  .mqc-conditional-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6366f1;
    background: #eef2ff;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: auto;
    white-space: nowrap;
  }
  /* ── Trailer unavailable notice ── */
  .mqc-trailer-unavailable {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888888;
    margin-top: 10px;
  }
  /* ── Option pills ── */
  .mqc-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .mqc-opt {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 18px;
    min-width: 100px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }
  .mqc-opt:hover:not(:disabled):not(.mqc-opt--unavailable) {
    border-color: #303030;
  }
  .mqc-opt.is-selected {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
  }
  .mqc-opt.is-selected .mqc-opt__price {
    color: rgba(255,255,255,0.55);
  }
  .mqc-opt__name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }
  .mqc-opt__price {
    font-size: 11px;
    color: #888888;
    line-height: 1;
  }
  .mqc-opt--unavailable {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
  }
  /* ── Summary ── */
  .mqc-summary {
    background: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mqc-summary__breakdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 20px;
  }
  .mqc-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666666;
  }
  .mqc-summary__row span:last-child { font-weight: 500; color: #1a1a1a; }
  .mqc-summary__divider { height: 1px; background: #e5e5e5; }
  .mqc-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .mqc-summary__total-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
  }
  .mqc-summary__total-price {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.01em;
  }
  /* ── CTA ── */
  .mqc-cta {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
    margin-top: 4px;
  }
  .mqc-cta:disabled { background: #d0d0d0; color: #999999; cursor: not-allowed; }
  .mqc-cta:not(:disabled):hover { background: #333333; }
  .mqc-wrap.page-width { padding-bottom: 25px; }
  .shopify-section.section-moduflex-quote-configurator { background: #ffffff; }
  /* ── Responsive ── */
  @media screen and (max-width: 1024px) {
    .mqc-inner { grid-template-columns: repeat(2, 1fr); }
  }
  @media screen and (max-width: 900px) {
    .mqc-wrap { padding: 40px 20px; }
  }
  @media screen and (max-width: 600px) {
    .mqc-inner { grid-template-columns: 1fr; }
    .mqc-wrap  { padding: 28px 16px; }
    .mqc-step  { padding: 16px; }
    .mqc-opt   { min-width: 80px; padding: 9px 12px; }
    .mqc-summary__total-price { font-size: 24px; }
  }
/* END_SECTION:custom-product-configurator-moduflex */

/* START_SECTION:custom-product-configurator-vistapod (INDEX:45) */
.pqc-wrap { font-family: Roboto, sans-serif; }
  .pqc-section-header { margin-bottom: 24px; }
  .pqc-section-header__heading { margin: 0; color: var(--pqc-header-color); font: 500 36px/1.1 Oswald, sans-serif; }
  .pqc-section-header__subheading { margin-top: 10px; color: var(--pqc-header-color); font-size: 14px; }
  .pqc-section-header__subheading p { margin: 0; }
  .pqc-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: auto; }
  .pqc-inner--2 { grid-template-columns: repeat(2, 1fr); }
  .pqc-inner--3 { grid-template-columns: repeat(3, 1fr); }
  .pqc-inner--4 { grid-template-columns: repeat(4, 1fr); }
  .pqc-inner--5 { grid-template-columns: repeat(5, 1fr); }
  .pqc-progress, .pqc-summary { grid-column: 1 / -1; }
  .pqc-progress { display: flex; gap: 6px; margin-bottom: 20px; }
  .pqc-progress__dot { flex: 1; height: 3px; border-radius: 2px; background: #e0e0e0; }
  .pqc-progress__dot.is-done { background: var(--pqc-button-bg); }
  .pqc-step { padding: 20px; background: #fff; border: 1px solid #ebebeb; border-radius: 10px; }
  .pqc-step__header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .pqc-step__num { display: flex; width: 26px; height: 26px; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; background: var(--pqc-button-bg); border-radius: 50%; font-size: 12px; font-weight: 600; }
  .pqc-step__title { font-size: 13px; font-weight: 600; color: var(--pqc-header-color); }
  .pqc-step__sub { margin: 2px 0 0; color: #888; font-size: 12px; }
  .pqc-opts { display: flex; flex-wrap: wrap; gap: 8px; }
  .pqc-opt { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-width: 100px; padding: 10px 18px; font-family: Roboto, sans-serif; text-align: center; cursor: pointer; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; }
  .pqc-opt:hover { border-color: #303030; }
  .pqc-opt.is-selected { color: var(--pqc-button-text); background: var(--pqc-button-bg); border-color: var(--pqc-button-bg); }
  .pqc-opt__name { font-size: 12px; font-weight: 500; }
  .pqc-opt__price, .pqc-opt__detail { color: #888; font-size: 11px; line-height: 1.25; }
  .pqc-opt__detail { max-width: 200px; }
  .pqc-opt.is-selected .pqc-opt__price, .pqc-opt.is-selected .pqc-opt__detail { color: rgba(255, 255, 255, .65); }
  .pqc-qty-wrap { display: flex; width: fit-content; overflow: hidden; border: 1px solid #e0e0e0; border-radius: 8px; }
  .pqc-qty-btn { width: 40px; height: 40px; border: 0; background: #f7f7f7; cursor: pointer; }
  .pqc-qty-btn:first-child { border-right: 1px solid #e0e0e0; }
  .pqc-qty-btn:last-child { border-left: 1px solid #e0e0e0; }
  .pqc-qty-input { width: 56px; height: 40px; border: 0; text-align: center; font: 600 15px Roboto, sans-serif; -moz-appearance: textfield; }
  .pqc-qty-input::-webkit-inner-spin-button, .pqc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
  .pqc-qty-input:focus { outline: 0; }
  .pqc-summary { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: #f7f7f7; border: 1px solid #ebebeb; border-radius: 10px; }
  .pqc-summary__breakdown { display: flex; flex-direction: column; gap: 6px; min-height: 20px; }
  .pqc-summary__row, .pqc-summary__total { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #666; }
  .pqc-summary__row span:last-child { color: #1a1a1a; font-weight: 500; }
  .pqc-summary__divider { height: 1px; background: #e5e5e5; }
  .pqc-summary__total-label { color: #888; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
  .pqc-summary__total-price { color: #1a1a1a; font: 400 30px Oswald, sans-serif; }
  .pqc-cta { width: 100%; margin-top: 4px; padding: 14px; border: 0; border-radius: 6px; cursor: pointer; color: var(--pqc-button-text); background: var(--pqc-button-bg); font: 600 13px Roboto, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
  .pqc-cta:disabled { color: #999; background: #d0d0d0; cursor: not-allowed; }
  .pqc-cta:not(:disabled):hover { background: var(--pqc-button-hover-bg); }
  @media screen and (max-width: 1024px) { .pqc-inner, .pqc-inner--5 { grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 600px) { .pqc-inner, .pqc-inner--2, .pqc-inner--3, .pqc-inner--4, .pqc-inner--5 { grid-template-columns: 1fr; } .pqc-step { padding: 16px; } .pqc-opt { min-width: 80px; padding: 9px 12px; } .pqc-summary__total-price { font-size: 24px; } }
/* END_SECTION:custom-product-configurator-vistapod */

/* START_SECTION:custom-product-downloadable-resources (INDEX:46) */
.downloadable-resources {
  --bg-color: #ffffff;
  --text-color: #111111;
  --accent-color: #0a0a0a;
  --btn-text-color: #ffffff;
  --columns: 3;
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 0;
}
.dr-container {
  margin: 0 auto;
}
.dr-header {
  text-align: center;
  margin-bottom: 48px;
}
.dr-heading {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text-color);
font-family: 'Oswald', sans-serif;
}
.dr-subheading {
  font-size: 1.0625rem;
  opacity: 0.65;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.dr-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .dr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dr-grid { grid-template-columns: 1fr; }
  .downloadable-resources { padding: 40px 0; }
}
.dr-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-color);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.dr-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.dr-card__preview {
  position: relative;
  background: #f4f4f4;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-card__image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
.dr-card__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
}
.dr-card__icon svg { width: 48px; height: 48px; }
.dr-card__icon span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dr-card__icon--pdf   { color: #e53e3e; }
.dr-card__icon--video { color: #3182ce; }
.dr-card__icon--file  { color: #718096; }
.dr-card__badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.dr-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
}
.dr-badge--pdf   { background: #e53e3e; }
.dr-badge--video { background: #3182ce; }
.dr-badge--image { background: #38a169; }
.dr-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.dr-card__label {
  font-size: 14px;
  font-weight: 650;
  margin: 0;
  color: var(--text-color);
  line-height: 1.35;
 font-family: 'Roboto', sans-serif;
}
.dr-card__description {
  font-size: 0.875rem;
  opacity: 0.65;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.dr-download {
  margin-top: auto;
  padding-top: 4px;
}
.dr-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-color);
  color: var(--btn-text-color);
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
 font-family: 'Roboto', sans-serif;
}
.dr-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.dr-btn[data-loading] { opacity: 0.65; cursor: wait; pointer-events: none; }
.dr-btn__icon { width: 16px; height: 16px; flex-shrink: 0; }
.dr-split-btn { position: relative; display: inline-flex; }
.dr-btn--split-main { width: 100%; justify-content: center; }
.dr-btn__caret {
  width: 14px;
  height: 14px;
  margin-left: auto;
  transition: transform 0.2s ease;
}
.dr-split-btn[data-open] .dr-btn__caret { transform: rotate(180deg); }
.dr-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 9px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
  min-width: 180px;
}
.dr-split-btn[data-open] .dr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dr-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #111;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s ease;
}
.dr-dropdown__item:hover { background: #f5f5f5; }
.dr-dropdown__item[data-loading] { opacity: 0.65; cursor: wait; pointer-events: none; }
.dr-dropdown__item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
.dr-empty {
  text-align: center;
  padding: 60px 24px;
  opacity: 0.4;
  font-size: 0.9375rem;
}
/* END_SECTION:custom-product-downloadable-resources */

/* START_SECTION:custom-product-hotspot (INDEX:48) */
.product-hotspots.page-width {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 15px;
    padding-bottom: 64px;
    font-family: 'Roboto', sans-serif;
  }
  /* --- Top grid: image + panel side by side --- */
  .hotspots__top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  /* --- Image wrap --- */
  .hotspots__image-wrap {
    position: relative;
    width: 100%;
  }
  .hotspots__product-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .hotspots__product-image--placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
  }
  /* --- Pins container --- */
  .hotspots__pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  /* --- Pin --- */
  .hotspot__pin {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #c0392b;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 2;
    padding: 0;
    pointer-events: all;
  }
  .hotspot__pin:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: #a93226;
  }
  .hotspot__pin.is-active {
    background: #a93226;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 4px #1b263acc;
  }
  .hotspot__pin-icon {
    display: block;
    margin-top: -1px;
  }
  /* --- Panel (right column, sticky) --- */
  .hotspots__panel {
    position: sticky;
    top: 20px;
  }
  /* --- Specs bar (bottom, full-width) --- */
  .hotspots__specs-bar {
    margin-top: 32px;
  }
  /* --- Specs card --- */
  .hotspots__specs {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px 24px;
  }
  .hotspots__specs-content {
    font-size: 14px;
    color: #1A1A1A;
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
    align-items: start;
  }
  /* Each div.hotspots__specs-col is one column, written directly in the HTML field */
  .hotspots__specs-col {
    min-width: 0;
  }
  .hotspots__specs-content h2,
  .hotspots__specs-content h3,
  .hotspots__specs-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
  }
  .hotspots__specs-content table {
    border-collapse: collapse;
    font-size: 13px;
  }
  .hotspots__specs-content td {
    padding: 4px 12px 4px 0;
    vertical-align: top;
    color: #444;
  }
  .hotspots__specs-content td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    padding-right: 16px;
  }
  .hotspots__specs-content p {
    margin: 0 0 6px;
    /* white-space: nowrap; */
  }
  .hotspots__specs-content strong {
    font-weight: 600;
    color: #1a1a1a;
  }
  /* --- Detail card --- */
  .hotspots__detail {
    display: none;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px 24px;
    animation: hotspotFade 0.25s ease both;
  }
  .hotspots__detail.is-active {
    display: block;
  }
  @keyframes hotspotFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* --- Back button hidden (specs always visible at bottom) --- */
  .hotspots__back {
    display: none;
  }
  .hotspots__detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 10px;
    line-height: 1.5;
  }
  .hotspots__detail-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.2;
  }
  .hotspots__detail-image-wrap {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .hotspots__detail-image {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    margin-left:auto;
    margin-right:auto;
  }
  .hotspots__detail-description {
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
  }
  .hotspots__detail-description strong,
  .hotspots__detail-description b {
    font-weight: 600;
    color: #1a1a1a;
  }
  .hotspots__empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 14px;
  }
  .shopify-section.section-product-hotspots {
    background: #f5f5f5;
  }
  /* --- Variants --- */
  .hero-pdp-variants {
    background: #f5f5f5;
    border-top: 1px solid #e8e8e8;
    padding: 64px 0 20px 0;
  }
  .hero-pdp-variants .page-width {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }
  .hero-pdp-variants__group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-pdp-variants__label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666666;
    white-space: nowrap;
  }
  .hero-pdp-variants__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-pdp-variants__pill {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #303030;
    background: #ffffff;
    border: 1.5px solid #d0d0d0;
    border-radius: 40px;
    padding: 7px 30px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-pdp-variants__pill:hover { border-color: #303030; }
  .hero-pdp-variants__pill.is-selected {
    background: #303030;
    border-color: #303030;
    color: #ffffff;
  }
  .hero-pdp-variants__pill .pill__size {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .hero-pdp-variants__pill .pill__name {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    opacity: 0.72;
  }
  .hero-pdp-variants__pill:not(:has(.pill__size)) .pill__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    opacity: 1;
  }
  .hero-pdp-variants__pill.is-selected .pill__name { opacity: 0.85; }
  .hero-pdp-variants__pill--sold-out {
    color: #b0b0b0;
    border-color: #e0e0e0;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .hero-pdp-variants__pill--sold-out::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top right,
      transparent calc(50% - 0.75px),
      #d0d0d0 calc(50% - 0.75px),
      #d0d0d0 calc(50% + 0.75px),
      transparent calc(50% + 0.75px)
    );
  }
  .heading-spec.page-width {
    padding-top: 15px;
    font-size: 17px;
    font-weight: bold;
  }
  .hotspots__specs-col h6 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .hotspots__specs-col a:hover {
    text-decoration-thickness: 1px!important;
  }
  /* --- Tablet --- */
  @media screen and (max-width: 900px) {
    .hotspots__top-grid { grid-template-columns: 1fr; gap: 24px; }
    .hotspots__panel    { position: static; }
    .hotspots__specs-content { grid-template-columns: 1fr; gap: 0; }
    .hotspots__specs-col { min-width: 0; margin-bottom: 25px; }
    .hotspots__specs-content p { white-space: normal; }
  }
  /* --- Mobile --- */
  @media screen and (max-width: 600px) {
    .product-hotspots { padding-top: 32px; padding-bottom: 32px; }
    .hotspot__pin     { width: 18px; height: 18px; font-size: 15px; }
    .hotspots__detail { padding: 20px 16px; }
    .hotspots__specs  { padding: 20px 16px; }
    .hotspots__detail-heading { font-size: 18px; }
    .hero-pdp-variants .page-width { gap: 16px; }
    .hero-pdp-variants__group { gap: 8px; }
    .hero-pdp-variants__pill { font-size: 12px; padding: 6px 12px; }
    .hero-pdp-variants__pill .pill__size { font-size: 13px; }
    .hero-pdp-variants__pill .pill__name { font-size: 10px; }
    .hotspots__specs-content p { white-space: normal; }
  }
  .hotspots__specs--right .hotspots__specs-content {
  grid-template-columns: 1fr;
  gap: 0;
}

.hotspots__specs--right .hotspots__specs-col {
  margin-bottom: 25px;
}

.hotspots__specs--right .hotspots__specs-col:last-child {
  margin-bottom: 0;
}
/* END_SECTION:custom-product-hotspot */

/* START_SECTION:custom-product-quote-configurator (INDEX:50) */
.pqc-section-{{ section.id }} {
    background-color: var(--pqc-section-bg);
    padding-top: var(--pqc-padding-top);
    padding-bottom: var(--pqc-padding-bottom);
    width: 100%;
  }

  .pqc-section-header {
    margin: 0 auto;
  }

  .pqc-section-header__heading {
    margin: 0;
    color: var(--pqc-header-color);
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
  }

  .pqc-section-header__subheading {
    margin-top: 10px;
    color: var(--pqc-header-color);
    font-size: 14px;
    line-height: 1.6;
  }

  .pqc-section-header__subheading p {
    margin: 0;
  }
  .pqc-inner {
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .pqc-progress {
    grid-column: 1 / -1;
  }
  .pqc-summary {
    grid-column: 1 / -1;
  }
  .pqc-inner {
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }

  .pqc-inner--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pqc-inner--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pqc-inner--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .pqc-inner--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .pqc-progress,
  .pqc-summary {
    grid-column: 1 / -1;
  }

  @media screen and (max-width: 1024px) {
    .pqc-inner--3,
    .pqc-inner--4,
    .pqc-inner--5 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 600px) {
    .pqc-inner--2,
    .pqc-inner--3,
    .pqc-inner--4,
    .pqc-inner--5 {
      grid-template-columns: 1fr;
    }
  }
  /* ── Progress ── */
  .pqc-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
  }
  .pqc-progress__dot {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: #e0e0e0;
    transition: background 0.3s ease;
  }
  .pqc-progress__dot.is-done {
    background: #1a1a1a;
  }
  /* ── Step card ── */
  .pqc-step {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 20px;
  }
  .pqc-step__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .pqc-step__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaaaaa;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .pqc-step__num--active {
    background: var(--pqc-button-bg);
    border-color: var(--pqc-button-bg);
    color: #ffffff;
  }
  .pqc-step__title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1a1a1a;
  }
  .pqc-step__sub {
    font-size: 12px;
    color: #888888;
    margin-top: 2px;
  }
  .pqc-step__hint {
    font-size: 12px;
    color: #aaaaaa;
    margin-left: auto;
  }
  /* ── Trailer note badge ── */
  .pqc-trailer-note {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #b45309;
    background: #fef3c7;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: auto;
  }
  .pqc-trailer-note.is-visible {
    display: inline-flex;
  }
  /* ── Trailer unavailable notice ── */
  .pqc-trailer-unavailable {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888888;
    margin-top: 10px;
  }
  /* ── Option pills ── */
  .pqc-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .pqc-opt {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 18px;
    min-width: 100px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }
  .pqc-opt:hover:not(:disabled):not(.pqc-opt--unavailable):not(.pqc-opt--crossed) {
    border-color: #303030;
  }
  .pqc-opt.is-selected {
    background: var(--pqc-button-bg);
    border-color: var(--pqc-button-bg);
    color: #ffffff;
  }
  .pqc-opt.is-selected .pqc-opt__price {
    color: rgba(255,255,255,0.55);
  }
  .pqc-opt__size {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
  }
  .pqc-opt__name,
  .pqc-opt__frame {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }
  .pqc-opt__price {
    font-size: 11px;
    color: #888888;
    line-height: 1;
  }
  .pqc-opt--unavailable,
  .pqc-opt--crossed {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
  }
  .pqc-opt--crossed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top right,
      transparent calc(50% - 0.75px),
      #c0c0c0 calc(50% - 0.75px),
      #c0c0c0 calc(50% + 0.75px),
      transparent calc(50% + 0.75px)
    );
    border-radius: 8px;
  }
  /* ── Quantity stepper ── */
  .pqc-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
  }
  .pqc-qty-btn {
    width: 40px;
    height: 40px;
    background: #f7f7f7;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    transition: background 0.15s ease;
    flex-shrink: 0;
  }
  .pqc-qty-btn:hover {
    background: #eeeeee;
  }
  .pqc-qty-btn:first-child {
    border-right: 1px solid #e0e0e0;
  }
  .pqc-qty-btn:last-child {
    border-left: 1px solid #e0e0e0;
  }
  .pqc-qty-input {
    width: 56px;
    height: 40px;
    text-align: center;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    -moz-appearance: textfield;
  }
  .pqc-qty-input::-webkit-outer-spin-button,
  .pqc-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  .pqc-qty-input:focus {
    outline: none;
  }
  /* ── Summary ── */
  .pqc-summary {
    background: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pqc-summary__breakdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 20px;
  }
  .pqc-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666666;
  }
  .pqc-summary__row span:last-child {
    font-weight: 500;
    color: #1a1a1a;
  }
  .pqc-summary__divider {
    height: 1px;
    background: #e5e5e5;
  }
  .pqc-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .pqc-summary__total-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
  }
  .pqc-summary__total-price {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.01em;
  }
  /* ── CTA ── */
  body .pqc-cta.rfq-btn {
    width: 100%;
    padding: 14px;
    background: var(--pqc-button-bg) !important;
    color: var(--pqc-button-text);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 4px;
  }
  .pqc-cta:disabled {
    background: #d0d0d0;
    color: #999999;
    cursor: not-allowed;
  }
  .pqc-cta:not(:disabled):hover {
    background: var(--pqc-button-hover-bg);
    color: var(--pqc-button-text);
  }
  /* ── Responsive ── */
  @media screen and (max-width: 1024px) {
    .pqc-inner {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (max-width: 900px) {
    .pqc-wrap {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  @media screen and (max-width: 600px) {
    .pqc-inner {
      grid-template-columns: 1fr;
    }
    .pqc-wrap {
      padding-left: 16px;
      padding-right: 16px;
    }
    .pqc-step {
      padding: 16px;
    }
    .pqc-opt {
      min-width: 80px;
      padding: 9px 12px;
    }
    .pqc-summary__total-price {
      font-size: 24px;
    }
  }
/* END_SECTION:custom-product-quote-configurator */

/* START_SECTION:custom-vistapod-flat-pack-kit (INDEX:57) */
.vfp-section {
  background: var(--vfp-bg);
}

.vfp-container {
  max-width: 1380px;
  margin: 0 auto;
}

/* HEADER */

.vfp-header {
  text-align: center;
  margin-bottom: 28px;
}

.vfp-heading {
  margin: 0;
  color: var(--vfp-navy);
  line-height: 1.05;
}

.vfp-subheading {
  max-width: 750px;
  margin: 10px auto 0;
  color: var(--vfp-text);
  font-size: 15px;
  line-height: 1.5;
}

.vfp-subheading p {
  margin: 0;
}

/* GRID */

.vfp-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  align-items: stretch;
}

/* LEFT IMAGE */

.vfp-image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.vfp-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.vfp-placeholder {
  width: 100%;
  height: 100%;
}

.vfp-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0) 38%
    );
}

/* BADGE */

.vfp-badge {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  background: var(--vfp-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vfp-badge-icon {
  width: 22px;
  height: 22px;
}

.vfp-badge-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* IMAGE TEXT */

.vfp-image-copy {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 32px;
  color: #fff;
}

.vfp-script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(20px, 3vw, 38px);
  line-height: 1;
  transform: rotate(-3deg);
}

.vfp-image-caption {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 400;
}

.vfp-brush-line {
  display: block;
  width: 90px;
  height: 3px;
  margin-top: 16px;
  background: var(--vfp-light-blue);
  transform: rotate(-5deg);
  border-radius: 10px;
}

/* RIGHT CARD */

.vfp-info-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 38px;
  border-radius: 8px;
  background: #f1f6fc;
}

.vfp-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vfp-cube-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: var(--vfp-navy);
}

.vfp-cube-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.vfp-eyebrow {
  margin-bottom: 3px;
  color: var(--vfp-navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vfp-card-heading {
  margin: 0;
  color: var(--vfp-navy);
  line-height: 1;
}

.vfp-description {
  margin-top: 18px;
  color: var(--vfp-text);
  font-size: 14px;
  line-height: 1.5;
}

.vfp-description p {
  margin: 0;
}

/* BENEFITS */

.vfp-benefits {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.vfp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vfp-check {
  display: flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--vfp-navy);
  border-radius: 50%;
}

.vfp-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.vfp-benefit-text {
  padding-top: 2px;
  color: var(--vfp-text);
  font-size: 13px;
  line-height: 1.45;
}

.vfp-benefit-text p {
  margin: 0;
}

/* DELIVERY */

.vfp-delivery-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding: 16px 22px;
  background: var(--vfp-light-blue);
  border-radius: 7px;
}

.vfp-truck-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--vfp-navy);
}

.vfp-truck-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vfp-delivery-divider {
  width: 1px;
  height: 44px;
  flex: 0 0 1px;
  background: rgba(27, 38, 58, 0.18);
}

.vfp-delivery-heading {
  color: var(--vfp-navy);
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vfp-delivery-text {
  margin-top: 3px;
  color: var(--vfp-text);
  font-size: 12px;
}

/* TABLET */

@media screen and (max-width: 990px) {
  .vfp-grid {
    grid-template-columns: 1fr;
  }

  .vfp-image-card,
  .vfp-image {
    min-height: 480px;
  }

  .vfp-info-card {
    min-height: auto;
  }

  .vfp-delivery-box {
    margin-top: 30px;
  }
}

/* MOBILE */

@media screen and (max-width: 600px) {

  .vfp-header {
    margin-bottom: 20px;
  }

  .vfp-grid {
    gap: 12px;
  }

  .vfp-image-card,
  .vfp-image {
    min-height: 360px;
  }

  .vfp-badge {
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

  .vfp-image-copy {
    left: 22px;
    bottom: 24px;
  }

  .vfp-script {
    font-size: 32px;
  }

  .vfp-image-caption {
    font-size: 16px;
  }

  .vfp-info-card {
    padding: 26px 20px;
  }

  .vfp-title-row {
    gap: 13px;
  }

  .vfp-cube-icon {
    width: 42px;
    height: 42px;
  }

  .vfp-card-heading {
    font-size: 34px;
  }

  .vfp-delivery-box {
    gap: 14px;
    padding: 15px;
  }

  .vfp-delivery-heading {
    font-size: 16px;
  }
}
/* END_SECTION:custom-vistapod-flat-pack-kit */