/** Shopify CDN: Minification failed

Line 791:0 Unexpected "<"
Line 880:0 Unexpected "<"
Line 941:1 Unexpected "#"
Line 941:3 Unexpected "{"
Line 941:12 Expected ":"
Line 944:2 Unexpected "#"
Line 944:4 Unexpected "{"
Line 944:13 Expected ":"
Line 947:2 Unexpected "#"
Line 947:4 Unexpected "{"
... and 1 more hidden warnings

**/


/* CSS from section stylesheet tags */
.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.faq-left {
  width: 45%;
}

.faq-right {
  width: 50%;
  background: #FCFCFC;
  border-radius: 12px;
  padding: 20px 40px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.faq-item:last-of-type {
  border-bottom: 0;
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  padding: 20px 0;
  padding-right: 10px;
}

.faq-arrow {
  transition: transform 0.3s ease;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 10px 0 25px 0;
  color: #666;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .faq-answer {
    font-size: 14px;
  }
}

@media screen and (min-width: 1025px) {
  .faq-right {
    width: 44%;
  }
}

@media screen and (max-width: 1024px) {
  .faq-right {
    padding: 20px;
  }
  .faq-left h2.section-heading-title {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 1024px) {
 .faq-left h2.section-heading-title {
    text-align: center;
  }
}

.faq-item.active .faq-answer {
  display: block;
}
.banner-tabs-wrapper {
    width: 100%;
  }

  .banner-tabs-inner {
    max-width: 1608px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .banner-tabs-content {
    max-width: 894px;
    height: 600px;
    padding: 60px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .banner-tabs-heading {
    font-family: 'Questrial', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #1D1D1B;
    margin-bottom: 28px;
    line-height: 1.2;
  }

  .banner-tab-nav {
    display: flex;
    gap: 36px;
    position: relative;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
  }

  .banner-tab-label {
    color: #c5c5c5;
    cursor: pointer;
    padding-bottom: 6px;
    position: relative;
  }

  .banner-tab-label.active {
    color: #1D1D1B;
  }

  .banner-tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #00d084;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .banner-tab-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #1D1D1B;
    max-width: 640px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .banner-tab-button {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    width: fit-content;
  }

  .banner-tab-button:hover {
    background-color: #111;
  }

  .banner-tabs-image {
    max-width: 688px;
    height: 600px;
    flex: none;
  }

  .banner-tabs-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 688 / 600;
    object-fit: cover;
    display: block;
  }
/* Width utilities */
  .h2c.section_width_standard{ width:50%; margin-inline:auto; }
  .h2c.section_width_full{ width:100%; }
  .h2c.section_content_width_full .container{ max-width:100% !important; }

  /* ============== Progress ============== */
  .h2c .progress{
    background:#20413B; display:flex; gap:8px; align-items:center; justify-content:center;
    padding:12px 0; margin:0 0 40px 0; flex-wrap:wrap;
  }
  .h2c .progress__pill{
    display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px;
    font-size:13px; color:#fff; opacity:.85; border:1px solid transparent;
  }
  .h2c .progress__pill.is-active{ background:var(--h2c-accent); color:#fff; opacity:1; }
  .h2c .progress__pill.is-complete{ opacity:1; }
  .h2c .progress__num{ width:28px; height:28px; border-radius:999px; display:inline-grid; place-items:center; font-size:15px; background:#C6C6C6; color:#fff; }
  .h2c .progress__pill.is-active .progress__num{ background: var(--Pink, #DB4B97); }
  .h2c .progress__pill.is-complete .progress__num{ background: var(--Mid-Green, #336256); }

  /* ============== Steps ============== */
  .h2c .step{ display:none; }
  .h2c .step.is-active{ display:block; animation:fadeIn .18s ease-in; }
  @keyframes fadeIn{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }
  .h2c .step__head{ margin:10px 0 22px; }
  .h2c .step__title{ font-size:clamp(22px,2.4vw,32px); color:#2b3b34; margin:0 0 8px; text-align:center; }
  .h2c .step__sub{ font-size:17px; color:#6b7c74; text-align:center; }
  .h2c .subhead{ font-size:23px; text-align:center; color:#2b3b34; margin:66px 0 14px 0; }
  .h2c .card:focus{ outline:2px solid var(--h2c-accent); outline-offset:2px; }

  /* Theme Editor click-through */
  html.shopify-design-mode .h2c .h2c-block-handle{ pointer-events:none !important; position:static !important; }
  html.shopify-design-mode .h2c [data-group="environment"] .card *{ pointer-events:none !important; }
  html.shopify-design-mode .h2c [data-group="mount"] .card *{ pointer-events:none !important; }
  .h2c [data-group="environment"] .card, .h2c [data-group="mount"] .card{ background:#F2F2F2; pointer-events:auto !important; position:relative; z-index:1; }

  /* ============== Grid ============== */
  .h2c .grid{ display:grid; gap:18px; }
  .h2c .grid--1{ grid-template-columns:1fr; }
  .h2c .grid--2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .h2c .grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
  .h2c .grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  @media (max-width:980px){ .h2c .grid--3,.h2c .grid--4{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
  @media (max-width:600px){ .h2c .grid--2,.h2c .grid--3,.h2c .grid--4{ grid-template-columns:1fr; } }

  /* ============== Cards ============== */
  .h2c .card{ position:relative; background:#fff; border-radius:12px; border:1px solid #e6ece8; padding:16px; box-shadow:0 1px 0 rgba(0,0,0,.02); cursor:pointer;transition: all 0.3s ease; }
  .h2c .card.is-selected{
    transform: translateY(-5px);
    box-shadow:0px 4px 15px 1px rgba(0, 0, 0, .12);
  }
  .h2c .card__img{ aspect-ratio:4/3; width:100%; object-fit:cover; border-radius:8px; background:#f6f8f7; }
  .h2c .card__title{ font-size:18px; color:#2b3b34; margin:10px 0 4px; text-align:center; }
  .h2c .card__desc{ font-size:12px; color:#6b7c74; text-align:center; }
  .h2c .card__radio{
    position:absolute; right:0; bottom:12px; width:18px; height:18px; border-radius:999px;
    border:2px solid #DB4B97; background:#fff; transition:all .15s ease; margin:0 auto; left:0; display:block;
  }
  .h2c .step[data-step="4"] .card__radio{
    position:absolute; right:0; top:20px; bottom:12px; width:18px; height:18px; border-radius:999px;
    border:2px solid #DB4B97; background:#fff; transition:all .15s ease; margin:0 auto; left:0; display:block;
  }
  .h2c .card.is-selected .card__radio{ border-color:#fff; background:#DB4B97; box-shadow:0 0 0 3px #DB4B97; }
  .env-nav-button,.series-nav-button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background:rgba(78, 80, 80, 0.8);
    border: 1px solid rgba(78, 80, 80, 0.3);
    backdrop-filter: blur(1px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    user-select: none; /* 禁止文本选择 */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
  }
  .env-nav-button span,.series-nav-button span{
    font-size: 27px;
    line-height: 26px;
    height: 26px;
  }
  .env-nav-button.visible,.series-nav-button.visible {
    display: flex;
  }
  .env-nav-button--left,.series-nav-button--left {
    left: 8px;
  }

  .env-nav-button--right,.series-nav-button--right {
    right: 8px;
  }
  /* Step 1 look */
  .h2c [data-group="environment"] .card{ border:none; box-shadow:0 8px 22px rgba(0,0,0,.06);transition: all 0.3s ease; }
  .h2c [data-group="environment"] .card.is-selected{ box-shadow:0 12px 28px rgba(0,0,0,.12);transform: translateY(-5px);}
  .h2c [data-group="environment"] .card .card__radio{ position:static; display:block; margin:12px auto 0; }
  @media (max-width:600px){
    .h2c .grid--2{
      display: flex;
      flex-wrap: nowrap;
      width:100%;
      overflow-x: auto;
      padding: 30px 20px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE and Edge */
      cursor: grab;
      user-select: none; /* 禁止文本选择 */
      -webkit-user-select: none; /* Safari */
      -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* IE/Edge */
    }
    .h2c .grid--2::-webkit-scrollbar {
      display: none; /* Chrome, Safari and Opera */
    }
    .h2c .grid--2 .card{
      width: calc(100% / 1.5);
      flex-shrink: 0;
    }
  }
  @media (max-width:400px){
    .h2c .grid--2 .card{
      width: calc(100% / 1.2);
    }
  }
  /* === Step 2: card columns compare === */
  .h2c .series-compare{ display:grid; grid-template-columns:220px 1fr; gap:18px; }
  @media (max-width:980px){ .h2c .series-compare{ grid-template-columns:1fr; } }
  .h2c .series-compare__left .left-header{ font-weight:600; font-size:13px; color:#6b7c74;margin-top: 20px; margin-bottom:70px; text-align:left; }
  .h2c .spec-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:35px; }
  .h2c .spec-list li{ color:#6b7c74; font-size:14px; }
  .h2c .series-compare__cols{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
  .h2c .series-card{ position:relative; background:#fff; border:1px solid #e6ece8; border-radius:12px; box-shadow:0 8px 22px rgba(0,0,0,.06); padding:18px; cursor:pointer;transition: all 0.3s ease; }
  .h2c .series-card.is-selected{ border: 1px solid #e6ece8; box-shadow:0 12px 28px rgba(0,0,0,.12);transform: translateY(-5px); }
  .h2c .series-card__head{ display:flex; align-items:center; gap:10px; justify-content:center; margin-bottom:8px; }
  .h2c .series-card__env{ font-size:12px; color:#6b7c74; text-align:center; margin-bottom:6px; }
  .h2c .series-items{ list-style:none; margin:10px 0 30px 0; padding:0; display:flex; flex-direction:column; gap:22px; }
  .h2c .series-item { text-align: center;font-size: 15px; }
  .h2c .series-item img { margin: 0 auto; }
  .h2c .series-item .series-cell{ gap:8px; }
  .h2c [data-series-col].is-selected .card__radio{ border-color:#fff; background:#DB4B97; box-shadow:0 0 0 3px #DB4B97; }
  @media (max-width:1024px){
    .h2c .series-compare{
      /* grid-template-columns: 140px 1fr; */
      width: 100%;
      display: flex;
    }
    .h2c .series-compare__left{
      min-width:110px;
    }
    .h2c .series-compare-div{
      width: calc(100% - 130px);
      position: relative;
    }
    .h2c .series-compare .series-compare__cols{
      position: relative;
      display: flex;
      flex-wrap: nowrap;
      width:100%;
      overflow-x: auto;
      padding: 30px 20px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE and Edge */
      cursor: grab;
      user-select: none; /* 禁止文本选择 */
      -webkit-user-select: none; /* Safari */
      -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* IE/Edge */
    }
    .h2c .series-compare .series-compare__cols::-webkit-scrollbar {
      display: none; /* Chrome, Safari and Opera */
    }
    .h2c .series-compare .series-compare__cols .series-card{
      width: calc(100% / 4.2);
      min-width: 210px;
      flex-shrink: 0;
    }
    .h2c .spec-list{
      gap:22px;
    }
    .h2c .series-compare__left .left-header{
      margin-top: 52px;
      margin-bottom: 72px;
    }
  }
  @media (max-width:900px){
    .h2c .series-compare {
      grid-template-columns: 100px 1fr;
    }
    .h2c .spec-list{
      gap:26px;
    }
    .h2c .series-compare__left .left-header{
      margin-bottom: 62px;
    }
    .h2c .spec-list li{
      font-size:13px;
    }
    .h2c .series-compare .series-compare__cols .series-card{
      width: calc(100% / 3.2);
      flex-shrink: 0;
    }
    .h2c .series-item{
      font-size:14px;
    }
  }
  @media (max-width:500px){
    .h2c .series-compare__left .left-header{
      margin-top: 28px;
      margin-bottom: 60px;
    }
    .h2c .series-compare {
      display: block;
    }
    .h2c .series-compare__left{
      display: none;
    }
    .h2c .series-compare-div{
      width: 100%;
    }
    .h2c .series-compare .series-compare__cols{
      padding:20px;
    }
    .h2c .series-compare .series-compare__cols .series-card{
      width: calc(100% / 1.5);
      min-width:180px;
    }
    .h2c .series-item{
      font-size:13px;
    }
  }
  /* === Step 3: Size + Setup chooser === */
  .h2c .chooser{ max-width:720px; margin:0 auto; }
  .h2c .chooser__head{ display:grid; grid-template-columns:1fr 1fr; font-size:12px; color:#6b7c74; gap:12px; margin-bottom:10px; text-align:left; padding-inline:10px; }
  .h2c .chooser__head > div{ padding:6px 10px; }
  .h2c .choice-list{ display:flex; flex-direction:column; gap:10px; }
  .h2c .choice-row{
    display:grid; grid-template-columns:24px 1fr 1fr; align-items:center; gap:16px;
    padding:10px; border:1px solid #e9eeeb; border-radius:10px; background:#fff; box-shadow:0 1px 0 rgba(0,0,0,.02); cursor:pointer;
    transition: all 0.3s ease;
  }
  .h2c .choice-row.is-selected{
    transform: translateY(-3px);
    box-shadow:0px 1px 10px 0px rgba(0, 0, 0, .12);
  }
  .h2c .choice-row .cell{ padding:8px 10px; }
  .h2c .choice-row .radio{ width:16px; height:16px; border-radius:999px; border:2px solid #DB4B97; display:inline-block; position:relative; }
  .h2c .choice-row.is-selected .radio{ border-color:#fff; background:#DB4B97; box-shadow:0 0 0 3px #DB4B97; }
  .h2c .rule-note{ margin:12px auto 0; font-size:12px; color:#6b7c74; text-align:center; }

  /* --- Setup list --- */
  .h2c .setup-head{
    display:grid; grid-template-columns:24px 1.2fr .8fr 1.6fr;
    font-size:12px; color:#6b7c74; gap:12px; margin:18px auto 8px; max-width:900px; padding-inline:10px;
  }
  .h2c .setup-list{ display:flex; flex-direction:column; gap:10px; max-width:900px; margin:0 auto; }
  .h2c .setup-row{
    display:grid; grid-template-columns:24px 1.2fr .8fr 1.6fr; align-items:center; gap:12px; padding:10px;
    border:1px solid #e9eeeb; border-radius:10px; background:#fff; box-shadow:0 1px 0 rgba(0,0,0,.02); cursor:pointer;
    transition: all 0.3s ease;
  }
  .h2c .setup-row.is-selected{
    transform: translateY(-3px);
    box-shadow:0px 1px 10px 0px rgba(0, 0, 0, .12);
  }
  .h2c .setup-row .col-space, .h2c .setup-row .col-sizes, .h2c .setup-row .col-why{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .h2c .setup-row .radio{ width:16px; height:16px; border-radius:999px; border:2px solid #e4d7e1; display:inline-block; }
  .h2c .setup-row.is-selected .radio{ border-color:#fff; background:#DB4B97; box-shadow:0 0 0 3px #DB4B97; }
  .h2c .setup-pill{ background:#fff; border:0; border-radius:10px; padding:10px 12px; }
  @media (max-width:1024px){
    .h2c .setup-row .col-space, .h2c .setup-row .col-sizes, .h2c .setup-row .col-why{
      font-size:15px;
    }
  }
  @media (max-width:720px){
    .h2c .chooser__head{ grid-template-columns:1fr 1fr; }
    .h2c .choice-row{ grid-template-columns:20px 1fr 1fr; }
    .h2c .setup-head{ grid-template-columns:20px 1fr 1fr; }
    .h2c .setup-row{ grid-template-columns:20px 1fr;}
    .h2c .setup-head .col-why{ display:none; }
    .h2c .setup-row .col-why{ grid-column:2 / span 2; margin-top:6px; }
    .h2c .setup-row{ grid-auto-rows:minmax(0,auto); grid-template-rows:auto auto; }
    .h2c .setup-row .col-space, .h2c .setup-row .col-sizes, .h2c .setup-row .col-why{
      font-size:14px;
    }
    .h2c .setup-head .col-size{
      text-align: right;
    }
    .h2c .setup-row .col-why{
      white-space:wrap;
      padding: 0;
    }
  }
  @media (max-width:500px){
    .h2c .setup-row{
      gap:8px;
    }
    .h2c .setup-pill{
      padding:4px 12px;
      box-shadow: none;
    }
    .h2c .setup-row .col-space, .h2c .setup-row .col-sizes, .h2c .setup-row .col-why{
      font-size:13px;
    }
    .h2c .setup-row .col-why{
      margin-top:0;
    }
  }
  .h2c .step[data-step="4"] .card ul li{ font-size:12px; color:#6b7c74; text-align:left; list-style:disc; }
  .h2c .step[data-step="4"] ul, .h2c .step[data-step="4"] ul li{ font-size:12px; color:#fff; text-align:left; list-style:disc; }
  .h2c .step[data-step="4"] .table {max-width: unset;}

  /* Step 4 tweaks */
  .h2c .step[data-step="4"] .card__radio{ top:12px; bottom:auto; }
  .h2c .step[data-step="4"] .card__img{ aspect-ratio:4/3; width:70%; object-fit:contain; border-radius:8px; margin:30px auto 0; background: none;}
  .h2c .step[data-step="4"] .card__title{ font-size:14px; font-weight:600; color:#2b3b34; margin:60px 0 4px 0; text-align:left; }
  .h2c .step[data-step="4"] .card__desc { font-size:12px; color:#6b7c74; text-align:left; list-style:disc; }

  .step[data-step="4"] .summary-table thead th { background: #fff; }

  .step[data-step="4"] .summary-table tr {
    background: #fff;
    border: 1px solid #e6ece8;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    padding: 18px !important;
    cursor: pointer;
  }

  /* About step4 data-step="5" -> data-step="4" */
  .h2c .step[data-step="4"] .card__title{ font-size:18px; color:#2b3b34; margin:10px 0 4px; text-align:left; }
  .h2c .step[data-step="4"] .card__desc {
      font-size: 12px;
      color: #6b7c74;
      text-align: left;
      margin: 0 0 20px 0 !important;
  }
  .h2c .step[data-step="4"] .cta {
      display: inline-flex;
      align-items: center;
      /* gap: 8px; */
      padding: 10px 16px;
      border-radius: 9999px;
      background: var(--Dark-Green, #20413B) !important;
      margin: 20px auto 0 auto !important;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      max-width: 118px;
  }

  .h2c .step[data-step="4"] .grid--3 {
    display: flex;
  }
  /* End About step4 data-step="5" -> data-step="4" */
  /* ============== Tables ============== */
  .h2c .table{ width:100%; border-collapse:collapse; background:#fff; border:1px solid #e6ece8; border-radius:10px; overflow:hidden; }
  .h2c .table th,.h2c .table td{ font-size:13px; padding:14px; border-bottom:1px solid #eef2ef; color:#2b3b34; text-align:left; vertical-align:top; }
  .h2c .table th{ font-weight:600; background:#f8faf9; }

  /* Summary table ✔ / ✖ */
  .h2c .summary-table td[data-yes]{ text-align:center; }
  .h2c .summary-table td[data-yes="true"]::after{ content:"✓"; font-weight:700; }
  .h2c .summary-table td[data-yes="false"]::after{ content:"✗"; }
  .h2c .summary-table td[data-yes="true"]{ color:#1a7f5a; }
  .h2c .summary-table td[data-yes="false"]{ color:#8a8f95; }

  /* --- Summary table (card rows) --- */
  .h2c .summary{ margin:18px auto 0; }
  .h2c .summary__head{ display:grid !important; grid-template-columns:1.2fr .7fr .9fr 1.8fr; gap:10px; padding:0 6px 8px; color:#8a9891; font-size:13px; }
  .h2c .summary__rows{ display:flex; flex-direction:column; gap:10px; }
  .h2c .summary__row{ display:grid !important; grid-template-columns:1.2fr .7fr .9fr 1.8fr; align-items:center; padding:14px 16px; background:#fff; border:1px solid #e6ece8; border-radius:12px; box-shadow:0 8px 22px rgba(0,0,0,.06); }
  .h2c .summary__cell{ font-size:14px; color:#2b3b34; }
  .h2c .summary__cell--center{ text-align:center; }
  .h2c .summary__yes[data-yes="true"]::after{ content:"✓"; color:#1a7f5a; font-weight:700; }
  .h2c .summary__yes[data-yes="false"]::after{ content:"✗"; color:#2b3b34; opacity:.65; }
  @media (max-width:720px){
    .h2c .summary__head, .h2c .summary__row{ grid-template-columns:1.2fr .6fr .6fr 1.4fr; }
  }

  /* Tips pills */
  .h2c .tips{ display:flex; flex-direction:column; gap:8px; margin:8px auto 0; }
  .h2c .tip{
    background:#173a34; color:#fff; border-radius:8px; padding:12px 16px; font-size:14px; font-weight:600;
    border:1px solid rgba(255,255,255,.08);
  }

  /* Real life examples */
  .h2c .examples{ margin-top:12px; }
  .h2c .example-card{
    background:#fff;  border-radius:12px; box-shadow:0 1px 0 rgba(0,0,0,.02); overflow:hidden; text-decoration:none; color:inherit;
  }
  .h2c .example-card .example__img{ width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
  .h2c .example-card .example__body{ padding:10px 12px; }
  .h2c .example-card .example__title{ font-size:14px; font-weight:600; color:#2b3b34; }
  .h2c .example-card .example__text{ font-size:12px; color:#6b7c74; margin-top:2px; }

  /* ============== Nav (Prev/Next) ============== */
  .h2c .nav{
    position:sticky; bottom:0; z-index:5; background:linear-gradient(to bottom, rgba(255,255,255,0), #fff 40%); padding-top:40px;
    display:flex; justify-content:space-between; gap:12px; place-content:center;
  }
  .h2c .btn{ appearance:none; border:1px solid #d7e2dc; background:#fff; color:#2b3b34; padding:12px 22px; border-radius:999px; cursor:pointer; font-size:14px; font-weight:600; display:inline-flex; align-items:center; justify-content:center; box-shadow:none; }
  .h2c .btn--primary{ border-radius:9999px; background:#1c5544; border-color:var(--h2c-accent); color:#fff; box-shadow:0 6px 18px rgba(0,0,0,.08); }
  .h2c .nav [data-prev]{ order:1; }
  .h2c .nav [data-next], .h2c .nav [data-restart]{ order:2; }
  .h2c .nav [data-next]{ display:inline-flex !important; }
  .h2c .btn--primary.is-disabled, .h2c .btn--primary[aria-disabled="true"], .h2c .btn--primary[disabled]{ opacity:.35; pointer-events:none; background:#fff; color:#8aa099; box-shadow:none; border-color:var(--h2c-accent); }

  /* Nav icons */
  /* .h2c{ --h2c-nav-icon: {{ section.settings.nav_icon_size | default: 18 }}px; } */
  .h2c .btn{ display:inline-flex; align-items:center; }
  .h2c .btn__icon{
    width:var(--h2c-nav-icon);
    height:var(--h2c-nav-icon);
    flex:0 0 auto;
    display:inline-block;
  }
  .h2c .btn__icon--left{ margin-right:8px; }
  .h2c .btn__icon--right{ margin-left:8px; }
  .h2c .btn__icon path{ stroke:currentColor; }

  /* ============== Result ============== */
  .h2c .result-card{ max-width:420px; margin:0 auto; border-radius:8px; background:#F2F2F2; padding-bottom:14px; }
  .h2c .result-card .card__img{ aspect-ratio:16/10; }
  .h2c .cta{ display:inline-flex; align-items:center; gap:8px; padding:10px 16px; border-radius:999px; background:var(--h2c-accent); color:#fff; text-decoration:none; font-weight:600; }
  .h2c .cta + .cta{ margin-left:8px; }

  .h2c .is-hidden{ display:none !important; }

  /* nicer cards in the multi grid */
  #h2c-results .result-card{
    background:#F2F2F2;
    border:1px solid #e6ece8;
    border-radius:12px;
    padding:40px 20px !important;
  }
  #h2c-results .result-card .card__img{
    aspect-ratio:4/3; width:100%; object-fit:cover; border-radius:8px; margin-bottom:10px;
  }
.info-card-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      padding-left: 50px;
      padding-right: 50px;
      background: white;
      flex-wrap: wrap;
      margin-top: 78px;
      margin-left: auto;
      margin-right: auto;
    }
    .info-card {
      position: relative;
      max-width: 792px;
      aspect-ratio: 792 / 530;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 40px;
      border-radius: 8px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-blend-mode: overlay;
      background-image: none;
      overflow: hidden;
      text-decoration: none;
      /* flex: 1 1 auto; */
    }
    .info-card h2 {
      font-family: 'Questrial', sans-serif;
      font-size: 48px;
      font-weight: 400;
      color: white;
      width: 636px;
      text-align: left;
    }
    .info-card .description {
      color: white;
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
      font-weight: 400;
      width: 562px;
      line-height: normal;
    }
    .info-card .cta {
      color: white;
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-top: 16px;
    }
    .info-card .arrow {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .info-card__bottom {
      margin-top: auto;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .info-card__bottom .description {
      max-width: 562px;
    }
    @media screen and (max-width: 767px) {
      .info-card-grid {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 40px 16px;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
      }

      .info-card {
        max-width: 358px;
        aspect-ratio: 358 / 266;
        height: auto;
        padding: 24px;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        /* flex: 1 1 auto; */
      }

      .info-card h2 {
        font-size: 20px;
        width: 100%;
        height: 21px;
      }

      .info-card .description {
        font-size: 14px;
      }

      .info-card .cta {
        font-size: 14px;
        font-weight: 700;
      }

      .info-card .arrow {
        width: 48px;
        height: 48px;
      }

      .info-card__bottom {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
      }

      .info-card__bottom .description {
        width: auto;
      }
    }
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<style>
  .product-tabs-section {
    transition: all 0.3s ease;
  }

  .product-tabs-section .tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .product-tabs-section .tab {
    padding: 8px 16px;
    border-radius: 9999px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    transition: background 0.3s;
  }

  .product-tabs-section .tab.active {
    background: #20413B;
    color: white;
    border-color: #20413B;
  }

  .product-tabs-section .tab-content {
    display: none;
  }

  .product-tabs-section .tab-content.active {
    display: block;
  }

  .product-carousel .carousel-cell {
    width: 250px;
    margin-right: 20px;
  }

  .product-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
  }

  .product-card img {
    max-width: 100%;
    border-radius: 6px;
  }

  .product-card h3 {
    font-size: 1rem;
    margin-top: 10px;
  }

  .product-card p {
    color: #333;
    font-weight: 600;
    margin-top: 4px;
  }

  .carousel-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .carousel-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
  }

  .carousel-arrows button svg {
    width: 16px;
    height: 16px;
    fill: #333;
  }
</style>
@import url('https://unpkg.com/flickity@2/dist/flickity.min.css');

  .you-may-like-wrapper {
    padding: 40px 0;
  }

  .you-may-like-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .you-may-like-heading {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .you-may-like-carousel {
    margin-bottom: 10px;
  }

  .carousel-cell {
    width: 285px;
    margin-right: 15px;
  }

  @media screen and (max-width: 768px) {
    .carousel-cell {
      width: 70vw;
    }
  }
.testimonials-section .flickity-page-dots {
    position: unset !important;
    width: 10%;
    padding: 0;
    margin: 0 auto !important;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.testimonials-section .flickity-page-dots .dot.is-selected {
  width: 72px;
height: 8px;
border-radius: 20px;
background: rgba(0, 0, 0, 0.10);
    opacity: 1;
    background-color: transparent;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: .25;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
 #{{ section.id }} .testimonials-section {
   padding: 0!important
  }
  #{{ section.id }} .testimonials-section .flickity-page-dots {
    padding-top: 10px !important;
  }
  #{{ section.id }} .testimonials-section .slideshow-wrapper {
    margin-top: 30px;
  }
}