/** Shopify CDN: Minification failed

Line 48:5 Unexpected "{"
Line 48:6 Expected identifier but found "%"
Line 48:38 Unexpected "{"
Line 48:39 Expected identifier but found "%"
Line 51:5 Unexpected "{"
Line 51:6 Expected identifier but found "%"
Line 51:41 Unexpected "{"
Line 51:42 Expected identifier but found "%"

**/
.sc-pdp-image-text .sc-pdp-heading {
     text-align: center;
     font-style: normal;
     font-weight: 500;
     font-size: 40px;
     line-height: 48px;
     padding-bottom: 32px;
     font-family: "Poppins", sans-serif;
   }

   .sc-pdp-image-text .sc-pdp-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     max-width: 1264px;
     margin: 0 auto;
     padding: 0 16px;
   }

   .sc-pdp-image-text .sc-pdp-card {
     border-radius: 12px;
     overflow: hidden;
     transition: transform 0.3s ease;
   }

   .sc-pdp-image-text .sc-pdp-card:hover {
     transform: translateY(-5px);
   }

   .sc-pdp-image-text .sc-pdp-card-wrapper {
     display: block;
   }
   .sc-pdp-image-text .sc-pdp-card-image {
     width: 100%;
     height: 100%;
     {% comment %} max-height: 200px; {% endcomment %}
      max-height: max-content;
     object-fit: cover;
     {% comment %} object-position: top; {% endcomment %}
   }
   .sc-pdp-image-text .sc-pdp-card-content {
     padding: 16px;
   }

   .sc-pdp-image-text .sc-pdp-card-title {
     font-style: normal;
     font-weight: 500;
     font-size: 18px;
     line-height: 23px;
     color: #fff;
     font-family: "Poppins", sans-serif;
   }

   .sc-pdp-image-text .sc-pdp-card-text {
     font-style: normal;
     font-weight: 400;
     font-size: 14px;
     line-height: 20px;
     font-family: "Poppins", sans-serif;
     margin: 0;
     padding-top: 8px;
   }

   .sc-pdp-image-text .sc-pdp-card-toggle {
     display: none;
   }

   @media (max-width: 991px) {
    .sc-pdp-image-text .sc-pdp-card-content {
      padding: 16px 12px;
    }
    .sc-pdp-image-text .sc-pdp-grid {
     gap: 12px;
    }
  }
   /* Mobile List Layout */
   @media (max-width: 768px) {
     .sc-pdp-image-text .sc-pdp-heading {
       font-size: 32px;
       line-height: 38px;
       padding-bottom: 24px;
     }

     .sc-pdp-image-text .sc-pdp-grid {
       grid-template-columns: 1fr;
       gap: 8px;
     }

     .sc-pdp-image-text .sc-pdp-card {
       border-radius: 0;
       border-bottom: 1px solid #3a3a3a;
       background-color: #2a2a2a;
       margin-bottom: 0;
       overflow: visible;
     }

     .sc-pdp-image-text .sc-pdp-card:hover {
       transform: none;
     }

     .sc-pdp-image-text .sc-pdp-card-wrapper {
       display: flex;
       align-items: center;
       padding: 0px;
       cursor: pointer;
       position: relative;
     }

     .sc-pdp-image-text .sc-pdp-card-image {
       width: 100px;
       height: 100px;
       border-radius: 4px;
       flex-shrink: 0;
       object-fit: cover;
       border-top-right-radius: 0;
       border-bottom-right-radius: 0;
     }

     .sc-pdp-image-text .sc-pdp-card-content {
       padding: 8px 0 8px 16px;
       flex-grow: 1;
     }

     .sc-pdp-image-text .sc-pdp-card-title {
       font-size: 18px;
       margin-bottom: 0;
       line-height: 1.3;
     }

     .sc-pdp-image-text .sc-pdp-card-text {
       font-size: 14px;
       color: #a0a0a0;
       line-height: 20px;
       max-height: 0;
       overflow: hidden;
       opacity: 0;
       transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
       margin-top: 0;
       padding-top: 0;
     }

     .sc-pdp-image-text .sc-pdp-card.active .sc-pdp-card-text {
       max-height: max-content;
       opacity: 1;
        margin-top: 10px;
     }

     .sc-pdp-image-text .sc-pdp-card-toggle {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 32px;
       height: 32px;
       border-radius: 50%;
       border: 1px solid #CCD2D6;
       flex-shrink: 0;
       position: relative;
       background-color: transparent;
       transition: all 0.3s ease;
       margin-left: 10px;
       margin-right: 16px;
     }

     .sc-pdp-image-text .sc-pdp-card-toggle::before,
     .sc-pdp-image-text .sc-pdp-card-toggle::after {
       content: '';
       position: absolute;
       background-color: #FF5413;
       transition: all 0.3s ease;
     }

     /* Horizontal line (minus) */
     .sc-pdp-image-text .sc-pdp-card-toggle::before {
       width: 10px;
       height: 2px;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
     }

     /* Vertical line (plus) */
     .sc-pdp-image-text .sc-pdp-card-toggle::after {
       width: 2px;
       height: 10px;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       opacity: 1;
     }

     /* When active, hide vertical line to show minus */
     .sc-pdp-image-text .sc-pdp-card.active .sc-pdp-card-toggle::after {
       transform: translate(-50%, -50%) rotate(90deg);
       opacity: 0;
     }

     .sc-pdp-image-text .sc-pdp-card.active .sc-pdp-card-toggle {
       border-color: #CCD2D6;
       /* background-color: rgba(255, 107, 53, 0.1); */
     }

     /* Arrow pointer */
     .sc-pdp-image-text .sc-pdp-card-toggle-arrow {
       position: absolute;
       right: -15px;
       top: 50%;
       transform: translateY(-50%);
       width: 0;
       height: 0;
       border-top: 8px solid transparent;
       border-bottom: 8px solid transparent;
       border-left: 12px solid #ff6b35;
       opacity: 0.8;
     }
   }