/** Shopify CDN: Minification failed

Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:53 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.featured-collection-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .featured-collection-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured-collection-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
  }

  .featured-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
  }

  .product-rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .rating-stars {
    color: #fbbf24;
    font-size: 0.75rem;
  }

  .rating-value {
    color: #000;
  }

  .rating-count {
    color: #666;
    font-weight: 400;
  }

  .product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Hide Quick View Icon */
  .product-actions {
    display: none !important;
  }

  .add-to-cart-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    letter-spacing: 0.5px;
    width: 100%;
    margin: 0 0 12px 0;
    text-align: center;
  }

  .add-to-cart-btn:hover {
    background: #333;
  }

  .add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .product-info {
    padding: 16px 0px 12px 0px;
  }

  .product-title {
    font-size: 1rem;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
  }

  .product-title a {
    color: inherit;
    text-decoration: none;
  }

  .product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    margin: 0;
  }

  .product-compare-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
  }

  /* Mobile Carousel */
  .featured-products-mobile {
    display: none;
  }

  .mobile-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 0px 0;
  }

  .mobile-scroll-container::-webkit-scrollbar {
    display: none;
  }

  .mobile-products-wrapper {
    display: flex;
    gap: 16px;
    padding: 0 20px;
  }

  .mobile-product-card {
    flex: 0 0 280px;
    max-width: 280px;
  }

  @media (max-width: 1024px) {
    .featured-products-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 768px) {
    .featured-products-grid {
      display: none;
    }

    .featured-products-mobile {
      display: block;
    }

    .featured-collection-title {
      font-size: 1.75rem;
      margin-bottom: 24px;
    }

    .featured-collection-wrapper {
      padding-left: 0;
      padding-right: 0;
    }

    .mobile-product-card {
      flex: 0 0 75%;
      max-width: 75%;
    }

    .add-to-cart-btn {
      font-size: 0.8rem;
      padding: 10px 20px;
    }

    .product-price {
      font-size: 1rem;
    }

    .product-compare-price {
      font-size: 0.9rem;
    }
  }
.promo-boxes-wrapper {
    padding: 10px 0; /* 20px top & bottom padding for desktop and mobile */
  }

  .promo-boxes-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .promo-boxes-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Safari + Chrome */
  }

  .promo-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
  }

  .promo-box-item {
    padding: 10px;
    text-align: center;
    min-width: 140px;
    flex-shrink: 0;
  }

  .promo-icon {
    width: 60px;
    height: auto;
    margin: 0 auto 10px;
  }

  .promo-text {
    font-size: 16px;
    font-weight: 500;
    font-family: inherit; /* Uses store's default font */
  }

  @media screen and (max-width: 768px) {
    .promo-boxes-grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      padding: 0 10px;
      width: max-content;
      min-width: 100%;
      justify-content: center;
    }

    .promo-box-item {
      min-width: 70px;
      padding: 5px 3px;
      flex-shrink: 0;
      flex-grow: 1;
      max-width: 100px;
    }

    .promo-icon {
      width: 30px;
      margin-bottom: 5px;
    }

    .promo-text {
      font-size: 11px;
      line-height: 1.2;
      font-family: inherit; /* Uses store's default font */
    }
  }

  .section-promotional-boxes {
    border-top: none !important;
  }