/** Shopify CDN: Minification failed

Line 334:1 Expected "}" to go with "{"

**/
/* ===== Base styles (shared) ===== */
.setup-section {
  text-align: center;
  padding: 60px 20px;
}
.setup-step-container {
  max-width: 1200px;
  margin: 0 auto;
}
.setup-header h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.setup-header p {
  color: #555;
  margin-bottom: 25px;
}
.step-btn {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 40px;
  border: 1px solid #dcdcdc;
  background: #f3f5f8;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  color: #0a2540;
  transition: 0.3s ease;
  cursor: pointer;
}
.step-btn:hover { background: #0a2540; color: #fff; }
button.step-btn.active { background-color: #0a2540; color: #fff; }

.setup-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}
.setup-card.active { border-color: #172d42; }

.setup-image img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #e2e2e2;
}

.setup-content { padding: 15px; }
.setup-content h3 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.setup-content h3 span {
  background: #154577;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
p.p2 { color: #5f5f5f !important; }
.setup-content p {
  font-size: 14px;
  color: #000;
  margin: 5px 0;
  font-weight: 500;
  line-height: 1.5;
}

/* ===== Mobile/Tablet: CAROUSEL (<=1024px) ===== */
@media (max-width: 1024px) {
  .setup-section,
  .setup-step-container { overflow: visible !important; }

  .setup-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px !important;
    width: 100% !important;
    white-space: normal !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .setup-grid::-webkit-scrollbar { display: none; }

  .setup-grid > .setup-card {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 85% !important;   /* show a slight peek of next card */
    min-width: 85% !important;
    scroll-snap-align: start;
    border-radius: 12px;
    padding: 0 !important;      /* remove inner gaps so video hits borders */
    margin: 0 !important;
    overflow: hidden;
  }

  .setup-video {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .setup-video video,
  .setup-video iframe {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;          /* fill edge-to-edge inside rounded card */
    border: 0 !important;
  }

  .setup-content {
    padding: 12px 14px 10px !important;  /* tighter text area (smaller bottom border) */
    margin: 0 !important;
  }
}

/* ===== Desktop: 3-column GRID (>=1025px) ===== */
@media (min-width: 1025px) {
  .setup-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 equal columns */
    gap: 23px;
    overflow: visible !important;
  }
  /* neutralize any flex/mobile leftovers */
  .setup-card {
    flex: initial !important;
    min-width: 0 !important;
    width: auto !important;
    transform: none !important;
    padding: 0; /* keep video tight to card on desktop too */
  }
  .setup-video video,
  .setup-video iframe {
    transform: none !important;
    height: auto !important;
    object-fit: cover;
  }
}/* ==== Mobile + Tablet visual refinements (show full video, smaller size) ==== */
@media (max-width: 1024px) {
  /* Video smaller but fully visible */
  .setup-video {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 8px 0;
  }

  .setup-video video,
  .setup-video iframe {
    width: 90% !important;       /* shrink the overall width slightly */
    height: auto !important;     /* keep full video visible */
    object-fit: contain !important;  /* show full frame, no cropping */
    border-radius: 8px !important;
  }

  /* Card tighter but keeps balance */
  .setup-card {
    border-radius: 10px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    border-width: 1px !important;
  }

  /* Reduce white space under video */
  .setup-content {
    padding: 10px 14px 12px !important;
  }

  /* Text refinements */
  .setup-content h3 {
    font-size: 18px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }
  .setup-content h3 span {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
  }
  .setup-content p strong {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
  .setup-content p,
  .setup-content .p2 {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #555 !important;
  }
}/* ==== Mobile + Tablet perfect fit: full video visible + rounded edges ==== */
@media (max-width: 1024px) {
  .setup-card {
    border-radius: 12px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 auto !important;
    border: 1px solid #e2e2e2 !important;
  }
.setup-section {
  text-align: center;
  padding: 30px 20px;
}
.setup-header h2 {
  font-size: 22px;
  font-weight: 400;
}
.setup-header p {
    color: #000000;
    margin-bottom: 25px;
    line-height: normal;
    font-size: 15px;
}
  .setup-video {
    width: 100% !important;
    margin: 0;
    padding: 0;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .setup-video video,
  .setup-video iframe {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* show entire video */
    border-radius: 12px !important;
    background: #fff;
  }

  .setup-content {
    padding: 10px 14px 12px !important;
    margin: 0 !important;
  }

  .setup-content h3 {
    font-size: 18px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .setup-content h3 span {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
  }

  .setup-content p strong {
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .setup-content p,
  .setup-content .p2 {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #555 !important;
  }

/* Mobile: make all video frames a bit shorter, uniformly */
@media (max-width: 1024px){
  .setup-video{
    aspect-ratio: 9 / 14 !important;   /* was 9/16 (taller). Smaller denominator = shorter */
    overflow: hidden;
    border-radius: 12px;
  }
  .setup-video video,
  .setup-video iframe{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;     /* shows full video, no crop */
    border-radius: 12px !important;
    background: #fff;
  }
  .setup-content{                        /* optional: a touch more room for text */
    padding-top: 12px !important;
  }
}/* Fix video alignment so it touches all card edges and rounded corners */
@media (max-width: 1024px){
  .setup-card {
    padding: 0 !important;
    overflow: hidden;
    border-radius: 12px !important;
  }

  .setup-video {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin: 0 !important;
  }

  .setup-video video,
  .setup-video iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block;
  }
  
}