/** Shopify CDN: Minification failed

Line 339:22 Unexpected "{"
Line 339:31 Expected ":"
Line 339:38 Unexpected "{"
Line 345:24 Unexpected "{"
Line 345:33 Expected ":"
Line 351:24 Unexpected "{"
Line 351:33 Expected ":"
Line 358:24 Unexpected "{"
Line 358:33 Expected ":"
Line 365:24 Unexpected "{"
... and 35 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-hotspot-section (INDEX:13) */
.hotspots-container {
    position: relative; width: 100%; line-height: 0; overflow: hidden;
  }
  .hotspots-background-image, .placeholder-svg, .hotspots-container picture {
    width: 100%; height: auto; display: block;
  }
  .hotspots-background-image { object-fit: cover; }
  .content-overlay-wrapper {
    position: absolute; top: 50%; transform: translateY(-50%); width: 40%; max-width: 500px;
    padding: 20px 40px; z-index: 5; line-height: 1.6; display: flex; flex-direction: column;
  }
  .content-position--left { left: 5%; }
  .content-position--center { left: 50%; transform: translate(-50%, -50%); align-items: center; }
  .content-position--right { right: 5%; }
  .content-align--left { text-align: left; align-items: flex-start; }
  .content-align--center { text-align: center; align-items: center; }
  .content-align--right { text-align: right; align-items: flex-end; }
  .content-overlay-heading { font-size: 2.5rem; color: var(--heading-color); margin: 0 0 15px;  }
  .content-overlay-description { font-size: 1rem; color: var(--text-color); margin: 0 0 25px; }
  .content-overlay-description p { margin: 0; }
  .content-overlay-button {
    background-color: var(--button-bg); color: var(--button-text-color); padding: 12px 28px;
    text-decoration: none; border-radius: 5px; font-weight: 500; transition: opacity 0.3s ease; display: inline-block;
  }
  .content-overlay-button:hover { opacity: 0.85; }
  .hotspot-item {
    position: absolute; transform: translate(-50%, -50%); z-index: 10;
    top: var(--pos-y); left: var(--pos-x);
  }
  .hotspot-icon-wrapper { background: none; border: none; padding: 10px; cursor: pointer; border-radius: 50%; }
  .hotspot-icon {
    display: block;
    width: var(--hotspot-icon-size);
    height: var(--hotspot-icon-size);
    border-radius: 50%;
    position: relative;
    animation: liveTrackAnimation 2.5s infinite ease-in-out;
  }
  @keyframes liveTrackAnimation {
    0% { transform: scale(0.95); background-color: var(--start-color); box-shadow: 0 0 0 0 color-mix(in srgb, var(--start-color) 80%, transparent); }
    70% { transform: scale(1.1); background-color: var(--end-color); box-shadow: 0 0 0 12px color-mix(in srgb, var(--end-color) 0%, transparent); }
    100% { transform: scale(0.95); background-color: var(--start-color); box-shadow: 0 0 0 0 color-mix(in srgb, var(--start-color) 0%, transparent); }
  }

  .hotspot-product-card {
    display: none;
    position: absolute; left: 50%; transform: translateX(-50%);
    bottom: calc(100% + 15px);
    width: 300px;
    background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); z-index: 20; text-align: left;
    animation: fadeIn 0.3s ease-in-out;
    align-items: center;
    padding: 10px;
  }
  
  .hotspot-item.active .hotspot-product-card {
    display: flex;
  }

  .hotspot-item.show-card-below .hotspot-product-card { bottom: auto; top: calc(100% + 15px); }
  
  .hotspot-product-image {
    flex: 0 0 80px;
    margin-right: 15px;
  }
  .hotspot-product-image a { display: block; }
  .hotspot-product-image img { 
    width: 100%; height: auto; border-radius: 4px; display: block;
  }
  .hotspot-product-info {
    flex: 1; padding: 0; line-height: 1.4;
  }

  /* Desktop: prevent card going off-screen near edges */
  .hotspot-item[style*="left: 0%"] .hotspot-product-card,
  .hotspot-item[style*="left: 10%"] .hotspot-product-card,
  .hotspot-item[style*="left: 20%"] .hotspot-product-card { left: 0; transform: translateX(0); }
  .hotspot-item[style*="left: 100%"] .hotspot-product-card,
  .hotspot-item[style*="left: 90%"] .hotspot-product-card,
  .hotspot-item[style*="left: 80%"] .hotspot-product-card { left: auto; right: 0; transform: translateX(0); }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: var(--fade-transform-from, translateX(-50%) translateY(10px)); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  .hotspot-item.show-card-below .hotspot-product-card { --fade-transform-from: translateX(-50%) translateY(-10px); }

  .hotspot-product-title { font-size: 15px; margin: 0 0 5px; font-weight: 600; }
  .hotspot-product-title a { text-decoration: none; color: #333; }
  .hotspot-product-price { font-size: 14px; color: #555; margin: 0; }
  .hotspot-product-placeholder { padding: 20px; font-size: 14px; color: #777; width: 100%; text-align: center; }

  @media (max-width: 990px) {
    .content-overlay-heading { font-size: 2rem; }
    .content-overlay-description { font-size: 0.9rem; }
  }

  @media (max-width: 749px) {
    .hotspot-item { top: var(--pos-y-mobile); left: var(--pos-x-mobile); }
    .content-overlay-wrapper {
      width: 90%; left: 5%; right: 5%; top: auto; bottom: 5%; transform: none;
      padding: 20px; text-align: center; align-items: center;
      background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); border-radius: 10px;
    }
    .content-position--left, .content-position--center, .content-position--right { left: 5%; transform: none; }
    .content-overlay-heading { font-size: 1.8rem; }

    /* START: Mobile Hotspot Card Centering & Overlay Fix */
    .hotspots-section-wrapper.mobile-card-is-active::after {
      content: '';
      position: fixed; inset: 0; background-color: rgba(0, 0, 0, 0.5);
      z-index: 15; animation: fadeInOverlay 0.3s ease;
    }

    @keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

    /* This class is now added by JS to the card when it's moved for mobile view */
    .hotspot-product-card.is-active-mobile {
      display: flex;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      bottom: auto;
      width: 90vw;
      max-width: 340px;
      z-index: 20;
      animation: fadeInCenter 0.3s ease-out;
    }
    
    /* Ensure the card is hidden when inside its original parent on mobile */
    .hotspot-item .hotspot-product-card {
        display: none;
    }

    @keyframes fadeInCenter {
      from { opacity: 0; transform: translate(-50%, -45%); }
      to { opacity: 1; transform: translate(-50%, -50%); }
    }
    /* END: Mobile Hotspot Card Centering & Overlay Fix */
  }
/* END_SECTION:custom-hotspot-section */

/* START_SECTION:custom-image-with-collapsible (INDEX:14) */
/* --- Section Wrapper --- */
  .faq-component-wrapper {
   
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  /* --- Main Container for the entire component --- */
  .faq-component-wrapper .faq-component {
    display: flex;
    max-width: 1100px;
    width: 100%;
    border-radius: 10px;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  /* --- Left Column: FAQ Content --- */
  .faq-component-wrapper .faq-content {
    flex: 1;
    max-width: 50%;
  }
  
  .faq-component-wrapper .faq-subheading {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .faq-component-wrapper .faq-heading {
   
    margin-top: 0;
    margin-bottom: 30px;
  }

  /* --- Accordion Item Styling --- */
  .faq-component-wrapper .accordion-item:last-child {
    border-bottom: none;
  }

  .faq-component-wrapper .accordion-header {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .faq-component-wrapper .accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease-in-out;
  }

  .faq-component-wrapper .accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
  }

  .faq-component-wrapper .accordion-content {
    overflow: hidden;
    line-height: 1.6;
    padding: 0;
  }
  
  .faq-component-wrapper .accordion-content p:last-child {
    padding-bottom: 20px;
    margin: 0;
  }
  
  .faq-component-wrapper .accordion-item.active .accordion-body {
    grid-template-rows: 1fr;
  }

  .faq-component-wrapper .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  /* --- Right Column: Image and Contact Box --- */
  .faq-component-wrapper .faq-image-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 20px;
    min-height: 450px;
  }

  .faq-component-wrapper .contact-box {
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .faq-component-wrapper .contact-heading {
    margin: 0 0 5px 0;
  }

  .faq-component-wrapper .contact-text {
    margin: 0;
  }

  .faq-component-wrapper .contact-box a {
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }

  /* --- Responsive Design --- */
  @media (max-width: 992px) {
    .faq-component-wrapper .faq-component {
      flex-direction: column;
      padding: 20px;
    }
    .faq-component-wrapper .faq-content {
      max-width: 100%;
      order: 2;
    }
    .faq-component-wrapper .faq-image-container {
      width: 100%;
      order: 1;
    }
    /* Layout positioning for mobile */
    .faq-component-wrapper.layout--image-left .faq-content { order: 2; }
    .faq-component-wrapper.layout--image-left .faq-image-container { order: 1; }
  }
  
  /* Desktop layout positioning */
  @media (min-width: 993px) {
    .faq-component-wrapper.layout--image-left .faq-content { order: 2; }
    .faq-component-wrapper.layout--image-left .faq-image-container { order: 1; }
  }
  
  @media (max-width: 576px) {
    .faq-component-wrapper .faq-heading { font-size: 28px; }
    .faq-component-wrapper .accordion-header { font-size: 16px; }
    .faq-component-wrapper .contact-box {
      flex-direction: column;
      text-align: center;
      gap: 10px;
     
    }
    .contact-box-text {
    line-height: 23px;
}
  }
/* END_SECTION:custom-image-with-collapsible */

/* START_SECTION:custom-testimonals (INDEX:17) */
.testimonial-section-{{ section.id }} {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    /* Padding is now dynamic */
  }

  .testimonial-section-{{ section.id }} .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .testimonial-section-{{ section.id }} .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .testimonial-section-{{ section.id }} .sub-title {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .testimonial-section-{{ section.id }} .main-heading,
  .testimonial-section-{{ section.id }} .main-heading p {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin: 0;
  }

  .testimonial-section-{{ section.id }} .slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .testimonial-section-{{ section.id }} .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }

  .testimonial-section-{{ section.id }} .nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
  }

  .testimonial-section-{{ section.id }} .testimonial-slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .testimonial-section-{{ section.id }} .testimonial-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
  }

  .testimonial-section-{{ section.id }} .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }

  .testimonial-section-{{ section.id }} .quote {
    line-height: 1.6;
    flex-grow: 1;
  }
  .testimonial-section-{{ section.id }} .quote p {
    margin: 0;
  }

  .testimonial-section-{{ section.id }} .star-rating {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-section-{{ section.id }} .star {
    font-size: 20px;
  }

  .testimonial-section-{{ section.id }} .customer-name {
    font-weight: bold;
    margin-top: 0;
  }

  .testimonial-section-{{ section.id }} .verified-buyer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  @media (max-width: 992px) {
    .testimonial-section-{{ section.id }} .testimonial-card {
      flex: 0 0 calc((100% - 24px) / 2);
      min-width: calc((100% - 24px) / 2);
    }
  }

  @media (max-width: 768px) {
    .testimonial-section-{{ section.id }} .testimonial-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    
    .testimonial-section-{{ section.id }} .slider-nav {
      align-self: flex-end;
    }

    .testimonial-section-{{ section.id }} .testimonial-card {
      flex: 0 0 100%;
      min-width: 100%;
    }
  }
/* END_SECTION:custom-testimonals */