/** Shopify CDN: Minification failed

Line 201:22 Unexpected "{"
Line 201:31 Expected ":"
Line 201:38 Unexpected "{"
Line 202:12 Expected identifier but found whitespace
Line 202:14 Unexpected "{"
Line 202:23 Expected ":"

**/
.featured-img-mobile {
    display: none;
  }
  @media screen and (max-width: 768px) {
    .featured-img-desktop {
      display: none !important;
    }
    .featured-img-mobile {
      display: block !important;
    }
    /* Hide cards with no mobile image */
    .no-mobile-image {
      display: none !important;
    }
  }

  .featured-carousel-wrapper {
    padding: 20px 20px;
    background: #fff;
    overflow: visible;
  }
  .featured-carousel {
    overflow: visible;
  }
  .featured-carousel .swiper-slide {
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .featured-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .featured-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }
  .featured-card-text {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .featured-label {
    background: #ffd700;
    color: black;
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 999px;
    margin-bottom: 8px;
    font-weight: 600;
  }
  .featured-title {
    font-size: 1.1rem;
    font-weight: bold;
  }
  .featured-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin: 0.5rem 0;
  }
  .featured-btn {
    background: #f04f30;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
  }

  /* Responsive Image Height */
  @media screen and (max-width: 1024px) {
    .featured-img {
      height: 200px;
    }
  }
  @media screen and (max-width: 768px) {
    .featured-carousel-wrapper {
      padding: 0px;
    }
    .featured-img {
      height: auto;
      object-fit: cover;
    }

    /* Hide arrows on mobile */
    .featured-carousel-wrapper .swiper-button-next,
    .featured-carousel-wrapper .swiper-button-prev {
      display: none !important;
    }
  }

  /* Navigation Button Styles */
  .featured-carousel-wrapper .swiper-button-next {
    right: 10px;
  }
  .featured-carousel-wrapper .swiper-button-prev {
    left: 10px;
  }
  .featured-carousel-wrapper {
    overflow-x: hidden !important;
  }
  .featured-carousel {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }
  .featured-carousel .swiper-slide {
    box-sizing: border-box;
  }
  .featured-carousel .swiper-button-next,
  .featured-carousel .swiper-button-prev {
    color: #f04f30;
    width: 35px;
    height: 35px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .featured-carousel .swiper-button-next::after,
  .featured-carousel .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 600;
  }
  .featured-carousel .swiper-button-prev.hidden {
    display: none !important;
  }

  /* Hide pagination by default */
  .featured-carousel-wrapper .swiper-pagination {
    display: none;
  }

  /* Show pagination only on mobile */
  @media screen and (max-width: 768px) {
    .featured-carousel-wrapper .swiper-pagination {
      display: block;
      text-align: center;
      margin-top: 10px;
    }
    .featured-carousel-wrapper .swiper-pagination-bullet {
      background: #ccc;
      opacity: 1;
    }
    .swiper-pagination-bullet-active {
      background: #f04f30;
    }
    .featured-carousel-wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
      position: static;
      margin: 0;
      padding: 0;
    }
  }

  /* Swiper Visibility Control */
  .featured-carousel {
    visibility: hidden;
  }
  .featured-carousel-wrapper .swiper-initialized {
    visibility: visible;
  }

  @media screen and (max-width: 768px) {
    .featured-carousel-wrapper .swiper-pagination-bullet-active {
      background: #f04f30;
    }
  }

  @media (max-width:768px){
    #shopify-section-{{ section.id }} {
      order: {{ section.settings.order_no }};
    }
  }