/** Shopify CDN: Minification failed

Line 712:0 Unexpected "{"
Line 712:1 Expected identifier but found "%"
Line 721:0 Unexpected "{"
Line 721:1 Expected identifier but found "%"
Line 896:9 Expected identifier but found whitespace
Line 896:11 Unexpected "{"
Line 896:20 Expected ":"
Line 897:11 Expected identifier but found whitespace
Line 897:13 Unexpected "{"
Line 897:22 Expected ":"
... and 24 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Isolate bundle collection from theme styles */
.bundle-collection-section {
  --bundle-card-padding: 10px;
  --bundle-card-gap: 12px;
  --bundle-image-fit: cover;
  --bundle-button-width: 100%;
  display: block !important;
  flex-direction: initial !important;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.bundle-collection-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  width: 100%;
  box-sizing: border-box;
}

.bundle-section {
  width: 100%;
  order: -1;
  display: block;
  box-sizing: border-box;
}

.product-section {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .bundle-section {
    width: var(--bundle-section-width, 50%);
    order: 2;
    flex: 0 0 var(--bundle-section-width, 50%);
    max-width: var(--bundle-section-width, 50%);
  }

  .product-section {
    width: var(--product-section-width, 50%);
    order: 1;
    flex: 0 0 var(--product-section-width, 50%);
    max-width: var(--product-section-width, 50%);
  }
}

.bundle-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}

.bundle-image {
  width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 6 / 1;
  max-height: 200px;
  overflow: hidden;
  border-radius: 4px;
}

.bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 768px) {
  .bundle-container {
    position: sticky;
    top: 120px;
  }
}

.bundle-explanation-banner {
  background-color: var(--banner-bg-color, #e8f4f8);
  color: var(--banner-text-color, #1a1a1a);
  text-align: center;
  padding: 40px 15px 25px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.bundle-explanation-banner h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--banner-text-color, #1a1a1a);
}

.bundle-explanation-banner p {
  font-size: 16px;
  margin: 0;
  color: var(--banner-text-color, #1a1a1a);
}

.bundle-discount-banner {
  background-color: var(--bundle-banner-bg-color, #f8f9fa);
  border: 1px solid #244141;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 15px;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bundle-discount-banner__text {
  font-size: 14px;
  font-weight: 500;
  color: #244141;
  line-height: 1.4;
  display: block;
  margin-bottom: 10px;
}

.bundle-discount-tiers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.bundle-discount-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bundle-discount-tier__items {
  display: flex;
  gap: 3px;
  align-items: center;
}

.bundle-discount-tier__item {
  width: 20px;
  height: 20px;
  border: 1.5px solid #244141;
  border-radius: 3px;
  background-color: transparent;
  display: block;
}

.bundle-discount-tier__percent {
  font-size: 11px;
  font-weight: 600;
  color: #244141;
  line-height: 1;
}

.bundle-discount-tiers__connector {
  font-size: 16px;
  font-weight: 600;
  color: #244141;
  line-height: 1;
  margin: 0 2px;
}

.bundle-discount-tier.is-active .bundle-discount-tier__item {
  border-color: #244141;
  border-width: 2px;
}

.bundle-discount-tier.is-complete .bundle-discount-tier__percent {
  font-weight: 700;
}

.bundle-items {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px 0;
  box-sizing: border-box;
  position: relative;
}

/* Hide items that aren't visible */
.bundle-item--reveal:not(.is-visible) {
  display: none !important;
}

.bundle-item {
  width: calc(33.333% - 8px);
  aspect-ratio: 1 / 1;
  border: 1px dashed #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 8px;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  box-sizing: border-box;
  min-height: 0;
}

.bundle-item--reveal {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.bundle-item--reveal.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bundle-discount-message {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #254141 !important;
  color: var(--discount-text-color, #ffffff);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  width: 100%;
  box-sizing: border-box;
}

.bundle-discount-message.is-visible {
  opacity: 1;
  visibility: visible;
  display: block;
}

@media screen and (min-width: 768px) {
  .bundle-items {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 8px;
    max-width: 100%;
  }

  .bundle-item {
    width: 100%;
    padding: 6px;
  }
  
  .bundle-product-title {
    font-size: 9px;
  }
  
  .bundle-item-variant {
    font-size: 8px;
  }
  
  .bundle-item-content {
    gap: 3px;
  }
  
  .bundle-item-details {
    gap: 1px;
  }
  
  .bundle-item-number {
    font-size: 18px;
  }
  
  .bundle-placeholder {
    padding: 8px;
  }

  /* Hide grid rows when items are hidden */
  .bundle-item--reveal:not(.is-visible) {
    display: none !important;
  }
}

.bundle-item-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  flex-basis: 0;
  flex-grow: 1;
  min-height: 0;
}

.bundle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundle-item-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.bundle-item-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  flex-grow: 0;
  flex-shrink: 1;
  min-height: 0;
  overflow: hidden;
}

.bundle-product-title {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 2.4em;
}

.bundle-item-variant {
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  margin-top: 4px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bundle-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #f6f6f5;
  color: #6c757d;
  text-align: center;
  border-radius: 4px;
}

.bundle-item-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: #999;
}

/* Compact grid layout when 6+ items are added */
.bundle-items.has-many-items {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
  flex-direction: initial !important;
  flex-wrap: initial !important;
}

.bundle-items.has-many-items .bundle-item {
  width: 100% !important;
  aspect-ratio: auto !important;
  height: auto !important;
}

.bundle-items.has-many-items .bundle-item-content {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  gap: 4px;
  justify-content: flex-start;
}

.bundle-items.has-many-items .bundle-item-image-wrapper {
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  min-height: 0 !important;
  display: block !important;
  padding-bottom: 100% !important;
  height: 0 !important;
}

.bundle-items.has-many-items .bundle-item img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.bundle-items.has-many-items .bundle-item-details {
  flex-shrink: 1;
  flex-grow: 0;
  width: 100%;
  min-height: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 4px;
}

.bundle-items.has-many-items .bundle-product-title {
  font-size: 9px !important;
  line-height: 1.2 !important;
  max-height: 2.4em !important;
  -webkit-line-clamp: 2 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-break: break-word !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.bundle-items.has-many-items .bundle-item-variant {
  font-size: 8px !important;
  margin-top: 2px !important;
  display: block !important;
}

/* Grid layout stays consistent - no shrinking needed */

.remove-from-bundle {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #000;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 20px;
}

.remove-from-bundle:hover {
  opacity: 1;
}

.bundle-footer {
  border-top: 1px solid #ddd;
  padding: 10px 15px;
}

.bundle-total {
  margin: 10px 0;
}

.price-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
  box-sizing: border-box;
}

.price-container > * {
  display: flex;
  align-items: center;
  line-height: 1.4;
}

#bundle-discounted-total {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-right: 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

#bundle-original-total {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.bundle-savings {
  color: #000;
  margin-left: auto;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.bundle-discount-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--discount-bg-color, #254141);
  color: var(--discount-text-color, #ffffff);
  border: 1px solid var(--discount-bg-color, #ff6b6b);
  padding: 4px 15px;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 8px;
  height: fit-content;
}

@media screen and (max-width: 767px) {
  .bundle-discount-tag {
    display: none;
  }
}

.add-bundle-to-cart-btn {
  background-color: var(--button-bg-color, #2c3e50);
  color: var(--button-text-color, #ffffff);
  border: 1px solid var(--button-border-color, #2c3e50);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease;
  margin-top: 10px;
}

.add-bundle-to-cart-btn:hover:not(:disabled) {
  background-color: var(--button-hover-bg-color, #34495e);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transform: scale(1.06);
  opacity: 0.9;
}

.add-bundle-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.add-bundle-to-cart-btn.is-loading {
  opacity: 0.8;
  cursor: wait;
  position: relative;
}

.add-bundle-to-cart-btn__loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.add-bundle-to-cart-btn.is-loading .add-bundle-to-cart-btn__text {
  display: none;
}

.add-bundle-to-cart-btn.is-loading .add-bundle-to-cart-btn__loading {
  display: flex;
}

.add-bundle-to-cart-btn__spinner {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: bundle-spinner 0.6s linear infinite;
  flex-shrink: 0;
}

@keyframes bundle-spinner {
  to {
    transform: rotate(360deg);
  }
}

.add-bundle-to-cart-btn__progress {
  font-size: 14px;
  white-space: nowrap;
  color: inherit;
  line-height: 1;
}

/* Scoped product grid - prevent theme conflicts */
.bundle-collection-section .product-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bundle-collection-section .product-column {
  flex: 0 0 33.333% !important;
  max-width: 33.333% !important;
  padding: 0 10px;
  margin-bottom: 30px;
  box-sizing: border-box;
  display: block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bundle-collection-section .product-column {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.bundle-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  padding: var(--bundle-card-padding);
  gap: var(--bundle-card-gap);
  box-sizing: border-box;
  position: relative;
}

.bundle-card__media {
  position: relative;
  overflow: hidden;
}

.bundle-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.bundle-card__image {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  display: block;
}

.bundle-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

{% if section.settings.show_secondary_on_hover %}
/* Only hide first image on hover if a secondary image exists (not the only child) */
.bundle-card__media:hover .bundle-card__image:first-child:not(:only-child) {
  opacity: 0;
}

.bundle-card__media:hover .bundle-card__image--hover {
  opacity: 1;
}
{% endif %}

.bundle-card__placeholder {
  width: 100%;
  height: 100%;
}

.bundle-card__details {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1;
  width: 100%;
  align-items: stretch;
  box-sizing: border-box;
  justify-content: space-between;
}

.bundle-card__title {
  height: 48px;
  line-height: 1.3;
  word-break: break-word;
  margin: -0.25em 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.bundle-card__title p {
  margin: 0;
  line-height: 1.3;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bundle-card__price {
  padding: 0;
  margin: 10px 0;
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

.bundle-card__vendor {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  margin: 4px 0;
}

.bundle-card__description {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  margin: 4px 0;
}

.bundle-card__option-label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.bundle-card__option-select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 44px;
  font-size: 14px;
}

.bundle-card__options {
  display: none;
  margin-top: 10px;
  width: 100%;
  flex-direction: column;
  flex-shrink: 0;
}

.bundle-card__cta {
  width: var(--bundle-button-width, 100%);
  padding: 10px 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--button-border-color, #2c3e50);
  background-color: transparent;
  color: var(--button-border-color, #2c3e50);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease, color 0.3s ease;
  margin-top: auto;
  flex-shrink: 0;
}

.choose-options-btn + .add-to-bundle-btn,
.choose-options-btn ~ .add-to-bundle-btn {
  margin-top: 8px !important;
}

.bundle-card__cta:hover:not(:disabled) {
  background-color: var(--button-bg-color, #2c3e50);
  color: var(--button-text-color, #ffffff);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transform: scale(1.06);
  opacity: 0.9;
}

.bundle-card__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mobile-review-bundle {
  display: none;
  position: fixed;
  bottom: 45px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.review-bundle-btn {
  width: 100%;
  padding: 15px;
  background: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .mobile-review-bundle {
    display: block;
  }

  .bundle-collection-container {
    padding-bottom: 70px;
  }

  .bundle-explanation-banner h2 {
    font-size: 20px;
  }

  .bundle-explanation-banner p {
    font-size: 14px;
  }
}
.interactive-map {
    --map-bg: #f8f9fa;
    --map-stroke: #dee2e6;
    --map-fill: #e9ecef;
    --map-hover: #007bff;
    --map-active: #0056b3;
    --transition: all 0.3s ease;
  }
  
  /* Ensure SVG paths have default colors */
  .interactive-map__svg path {
    fill: {{ section.settings.map_fill_default | default: '#e9ecef' }};
    stroke: {{ section.settings.map_stroke | default: '#dee2e6' }};
    stroke-width: 1;
  }

  .interactive-map__container {
    position: relative;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .interactive-map__svg-wrapper {
    position: relative;
    height: 0;
    max-height: 80vh;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 600px;
    width: 100%;
  }
  

  .interactive-map__svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .interactive-map__province {
    fill: {{ section.settings.map_fill_default | default: '#e9ecef' }};
    stroke: {{ section.settings.map_stroke | default: '#dee2e6' }};
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .interactive-map__province:hover {
    fill: {{ section.settings.map_fill_hover | default: '#6c757d' }};
    stroke: {{ section.settings.map_stroke | default: '#dee2e6' }};
    stroke-width: 1;
  }

  .interactive-map__province--active {
    fill: {{ section.settings.map_fill_active | default: '#007bff' }};
    stroke: {{ section.settings.map_stroke | default: '#dee2e6' }};
    stroke-width: 1;
  }

          .interactive-map__province--active:hover {
            fill: {{ section.settings.map_fill_hover | default: '#6c757d' }};
            stroke: {{ section.settings.map_stroke | default: '#dee2e6' }};
            stroke-width: 1;
          }


          .interactive-map__product-label {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            pointer-events: none;
            z-index: 1000;
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            max-width: 80%;
            text-align: center;
          }

          .interactive-map__product-label--visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
          }