/** Shopify CDN: Minification failed

Line 102:2 Unexpected "{"
Line 102:3 Expected identifier but found "%"
Line 102:41 Unexpected "{"
Line 102:42 Expected identifier but found "%"

**/

    .p-feature-grid {
      margin: 20px 0;
      border: 1px solid #eee; 
      padding: 20px;
      border-radius: 8px;
    }
    .p-feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 30px;
    }
    .p-feature-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .p-feature-icon img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }
    .p-feature-text {
      margin: 0;
      font-size: 14px;
      line-height: 1.4;
      color: #4a4a4a;
    }
    .p-dot-placeholder {
      display: block;
      width: 12px;
      height: 12px;
      background: #4A6CF7;
      border-radius: 50%;
    }

    .p-accordion-container {
      border-top: 1px solid #e5e5e5;
      margin: 15px 0;
    }
    .p-accordion-item {
      border-bottom: 1px solid #e5e5e5;
      background: #f9f9f9;
    }
   .p-accordion-item span.p-accordion-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
   .p-accordion-item:hover span.p-accordion-icon {
    background: #000;
    border-radius: 999px;
}
 .p-accordion-item:hover .p-accordion-header svg {
    stroke:#fff;
 }
    .p-accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 15px;
      cursor: pointer;
      list-style: none;
      font-weight: 600;
      color: #121212;
      font-size: 14px;
    }
    .p-accordion-header::-webkit-details-marker { display: none; }
    .p-accordion-icon { transition: transform 0.2s ease-in-out; }
    .p-accordion-item[open] .p-accordion-icon { transform: rotate(45deg); }
    .p-accordion-content {
      padding: 0 15px 15px 15px;
      font-size: 13px;
      line-height: 1.5;
      color: #333;
    }
    .p-accordion-title {
      display: flex;
      align-items: center;
    }

#faqwrap .accordion__wrapper:last-child .accordion__title {
    padding-bottom: 14px!important;
}
.video-gallery-wrapper {
  background: #f8f8f8;
  padding: 0px 0;
}

.video-grid {
  display: flex;
  {% comment %} justify-content: center; {% endcomment %}
  gap: 0;
  overflow-x: auto;   /* MAIN */
  scroll-snap-type: x mandatory;  /* SNAP EFFECT */

}

.video-card {
    cursor: pointer;
    text-align: center;
    width:25%;
    min-width:100px;
    padding: 8px;
}

.thumbnail-container {
    position: relative;
    width: 100%;
    margin: 0 auto 0px;
    aspect-ratio: 1;
}

/* ORANGE RING */
.orange-ring {
  opacity:0;
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 3px solid #ff5a3c;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 90, 60, 0.6);
}

/* VIDEO CIRCLE */
.image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
    border: 3px solid #f95e45;
    background-color: #f4f4f4;
    padding: 4px;
  position: relative;
}
.video-card:first-child .image-inner{
    animation: 1.4s ease-in-out infinite playButtonRipplet;
}
@keyframes playButtonRipplet {
0% {
box-shadow: 0 0 #f95e45, 0 0 #f95e45;
}

100% {
box-shadow: 0 0 0 4px rgba(249,94,69,0.1), 0 0 0 6px rgba(249,94,69,0.1);
}
}
.image-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;    border-radius: 200px;
}

/* PLAY BUTTON */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* LABEL */
.video-label {
    margin: 10px 0 0;
    text-align: center;
    font-size: 14px;
}

/* MODAL */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36,36,36,0.3);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 260px;
}

.modal-content video {
  width: 100%;
  border-radius: 10px;
}

.close-btn {
position: absolute;
    top: 4px;
    right: 4px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    background-color: #000000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-weight: 300;
    z-index: 9;
}

 



    @media (max-width: 768px) {
       .p-feature-row { 
        gap:6px;
    }

    }
