/** Shopify CDN: Minification failed

Line 353:29 Expected ")" to end URL token
Line 393:14 Expected identifier but found whitespace
Line 393:16 Unexpected "{"
Line 393:25 Expected ":"
Line 393:59 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:main-product (INDEX:53) */
/* Ensure thumbnails appear below main image */
  .product-media-gallery .product-media-wrapper {
    display: flex;
    flex-direction: column;
  }

  .product-media-gallery .product-media-main-wrapper {
    order: 1;
    width: 100%;
    position: relative;
  }

  .product-media-gallery .product-media-scroll-wrap {
    order: 2;
    width: 100%;
    margin-top: 16px;
  }
  

  .product-media-gallery .product-media-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-media-gallery .product-media-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .product-media-gallery .product-media-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: none !important;
    outline: none !important;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.2s ease;
  }

  .product-media-gallery .product-media-thumbnail:focus {
    outline: none !important;
    border: none !important;
    border-bottom: 3px solid transparent;
  }

  .product-media-gallery .product-media-thumbnail:active {
    outline: none !important;
    border: none !important;
    border-bottom: 3px solid transparent;
  }

  .product-media-gallery .product-media-thumbnail.is-active {
    border-bottom: 3px solid #ED1E24 !important;
  }

  @media screen and (max-width: 749px) {
    .product-media-gallery .product-media-thumbnail {
      width: 60px;
      height: 60px;
    }
  }

  /* Product media navigation arrows */
  .product-media-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 49px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }

  .product-media-nav:hover {
    opacity: 1;
  }

  .product-media-nav--prev {
    left: 16px;
  }

  .product-media-nav--next {
    right: 16px;
  }

  .product-media-nav svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  @media screen and (max-width: 749px) {
    .product-media-nav {
      width: 40px;
      height: 40px;
    }

    .product-media-nav--prev {
      left: 12px;
    }

    .product-media-nav--next {
      right: 12px;
    }
  }

  /* Custom CSS to make accordion titles match product title exactly */
/* Add this to your theme's custom CSS section */

/* Match accordion titles to product title styling */
[class*="ai-accordion-title-"] {
  font-family: 'Druk Medium', 'Impact', 'Arial Black', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
  font-size: 22px !important;
  line-height: 105% !important;
  letter-spacing: normal !important;
  text-transform: uppercase !important;
  color: #222222 !important;
  margin: 0 !important;
  padding: 0 !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
}

.ai-product-recommendations__title-productrecommendationsthqj4g{
   font-size: 22px !important; 
}

/* Ensure accordion header has proper height to accommodate multi-line titles */
[class*="ai-accordion-header-"] {
  height: auto !important;
  min-height: 74px !important;
  padding: 20px 0 !important;
  align-items: center !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  [class*="ai-accordion-title-"] {
    font-size: 22px !important;
    line-height: 105% !important;
  }
  
  [class*="ai-accordion-header-"] {
    min-height: 60px !important;
    padding: 15px 0 !important;
  }
  .ai-product-recommendations__title-productrecommendationsthqj4g{
   font-size: 22px !important; 
  }
}

@media screen and (max-width: 480px) {
  [class*="ai-accordion-title-"] {
    font-size: 22px !important;
    line-height: 105% !important;
  }
  
  [class*="ai-accordion-header-"] {
    min-height: 62px !important;
    padding: 15px 0 !important;
  }
  .ai-product-recommendations__title-productrecommendationsthqj4g{
   font-size: 22px !important; 
  }
}
/* Custom Image Zoom Popup */
.custom-zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.custom-zoom-modal.is-open {
  display: flex;
}

.custom-zoom-modal__img-wrap {
  width: 90%;
  height: 80%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.custom-zoom-modal__img-wrap.is-dragging {
  cursor: grabbing;
}

.custom-zoom-modal__img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.15s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.custom-zoom-modal__controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 50px;
}

.custom-zoom-modal__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #222222;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.custom-zoom-modal__btn:hover {
  background: #ED1E24;
}

.custom-zoom-modal__close {
  position: absolute;
  top: 120px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.custom-zoom-modal__close:hover {
  background: #ED1E24;
  color: #ffffff;
}

@media screen and (max-width: 749px) {
  .custom-zoom-modal__img-wrap {
    width: 96%;
    height: 70%;
  }
  .custom-zoom-modal__close {
    top: 70px;
    right: 12px;
  }
}
/* END_SECTION:main-product */

/* START_SECTION:why-chose-us (INDEX:82) */
.why-choose-section {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.why-choose-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0rem 4rem 0rem 3rem;
  gap: 80px;
}

.why-choose-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.why-choose-features {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14px, 1fr));
  gap: 20px;
}

.why-choose-block {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.why-choose-block img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.mobile-bottom-image {
  display: none;
  margin-top: 20px;
  text-align: center;
}

.mobile-bottom-image img {
  max-width: 100%;
  height: auto;
}

/* 📱 Mobile Fixes */
@media (max-width: 768px) {
  .why-choose-section {
    background-image: url({{ section.settings.background_image_mobile | image_url }}) !important;
  }

  .why-choose-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 20px 0px 20px;
    gap: 0;
  }

  .why-choose-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .why-choose-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
    margin-top:0px;
  }

  .why-choose-block {
    margin: 0 auto;
  }

  /* ✅ Last block spans full row */
  .why-choose-features .why-choose-block:last-child {
    grid-column: span 2;
  }

  .mobile-bottom-image {
    display: block;
  }

  /* ✅ Mobile Heading Size Override */
  .why-choose-section .why-choose-text h2 {
    font-size: {{ section.settings.heading_size_mobile }}px !important;
  }
}
/* END_SECTION:why-chose-us */