/** 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;
    font-family: inherit;
  }

  .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: 40px;
    font-family: inherit;
    font-weight: inherit;
  }

  .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;
    font-family: inherit;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: white;
    padding: 6px 10px;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
    font-family: inherit;
  }

  .product-rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: inherit;
  }

  .rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
  }

  .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 5px;
    font-size: 16px;
    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;
    font-family: inherit;
  }

  .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: 18px;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.4;
  }

  .product-title a {
    color: inherit;
    text-decoration: none;
    font-family: inherit;
  }

  .product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-price {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: inherit;
  }

  .product-compare-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin: 0;
    font-family: inherit;
  }

  /* 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: 24px;
      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: 15px;
      padding: 10px 5px;
    }

    .product-title {
      font-size: 16px;
    }

    .product-price {
      font-size: 14px;
    }

    .product-compare-price {
      font-size: 16px;
    }
  }
.shop-by-recipient {
  text-align: center;
  padding: 0px 20px;
  font-family: inherit;
}

.shop-by-recipient__heading {
  font-size: 42px;
  padding: 0 30px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Desktop layout - horizontal side by side */
.shop-by-recipient__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.shop-by-recipient__item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f8f8f8;
  flex: 0 1 auto;
}

.shop-by-recipient__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.shop-by-recipient__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-by-recipient__item:hover .shop-by-recipient__image {
  transform: scale(1.03);
}

.shop-by-recipient__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  pointer-events: none;
  z-index: 2;
}

.shop-by-recipient__title {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 20px;
}

.shop-by-recipient__button {
  display: inline-block;
  background-color: transparent;
  color: #000;
  padding: 12px 26px;
  border: 2px solid #000;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.shop-by-recipient__link:hover .shop-by-recipient__button {
  background-color: #000;
  color: #fff;
}

/* Tablet + Mobile stacked layout */
@media (max-width: 991px) {
  .shop-by-recipient {
    padding: 0px 15px;
  }

  .shop-by-recipient__heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .shop-by-recipient__grid {
    flex-direction: column;
    gap: 25px;
  }

  .shop-by-recipient__item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .shop-by-recipient__title {
    font-size: 38px;
  }
}
.promo-boxes-wrapper {
    padding: 0 0 10px 0;
  }

  .promo-boxes-heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
  }

  .promo-boxes-heading-line {
    flex: 1;
    height: 1px;
    background-color: #000000;
  }

  .promo-boxes-heading {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    font-family: Georgia, Times, serif;
  }

  .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: 15px; /* Reduced from 30px to 15px */
  }

  .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: Georgia, Times, serif;
  }

  @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: Georgia, Times, serif;
    }
    
    .promo-boxes-heading-container {
      gap: 8px;
    }
    
    .promo-boxes-heading {
      font-size: 20px;
      font-family: Georgia, Times, serif;
    }
  }
  .section-promotional-boxes {
    border-top: none !important;
  }