/** Shopify CDN: Minification failed

Line 631:1 Unexpected "{"

**/
/* New Bundle Styles - Theme Integrated */

/* Use theme fonts */
.new-bundle-wrapper,
.new-bundle-wrapper * {
  font-family: var(--font-body-family);
  -webkit-font-smoothing: antialiased;
}

/* Layout Structure */
.new-bundle-wrapper {
  margin: 2rem 0;
  width: 100%;
}

/* Desktop Sidebar Positioning */
.new-bundle-sidebar-desktop {
  display: none;
}

/* Mobile Sidebar Positioning */
.new-bundle-sidebar-mobile {
  display: block;
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .new-bundle-sidebar-desktop {
    display: block;
    margin-top: 2rem;
  }
  
  .new-bundle-sidebar-mobile {
    display: none;
  }
}

/* Theme Container */
.theme-container {
  background: rgb(var(--color-background));
  border: 1px solid #7c4dff;
  border-radius: 20px;
  box-shadow: 6px 6px 0px 0px  #7c4dff;
  overflow: hidden;
  position: relative;
}

/* Main Bundle Container */
.new-bundle-container {
  max-width: 450px;
  padding: 12px;
  margin: 0 auto;
}

.new-bundle-header {
  margin-bottom: 10px;
  text-align: center;
}

.new-bundle-title {
    text-align: left;
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
  font-weight: 500;
  color: rgb(var(--color-foreground));
  padding-left: 5px;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Bundle Options Grid */
.new-bundle-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.new-bundle-option {
  background: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-shadow));
  border-radius: 20px;
  padding: 12px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  min-height: 1px;
  margin-bottom: 0px;
  transition: all 0.3s ease;
}

.new-bundle-option.selected {
    border-color: rgb(var(--color-button));
    background: rgb(153 119 249 / 16%);
    border-width: 1px;
  }


.new-bundle-option:hover {
  /* Minimal hover effect - just border color change */
  border-color: rgb(var(--color-button));
}



.bundle-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0px;
}

.bundle-person-count {
  font-size: 18px;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  font-family: var(--font-heading-family);
}

.bundle-discount {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  padding: 4px 20px;
  border-radius: var(--badge-corner-radius);
  font-size: 18px;
      font-weight: 400;
    font-family: 'Bungee';
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0px;
  width: 100%;
}

.bundle-price {
      font-size: 24px;
    font-weight: 400;
    color: rgb(var(--color-foreground));
    font-family: var(--font-heading-family);
}

.bundle-original-price {
  font-size: 16px;
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: line-through;
  font-family: var(--font-body-family);
}

.bundle-per-day {
  font-size: 14px;
  color: rgb(var(--color-button));
  font-weight: 600;
  font-family: var(--font-body-family);
  width: 100%;
}

/* Features List */
.bundle-features {
  margin-bottom: 20px;
}

.bundle-feature {
    line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 14px;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

.checkmark-icon {
  flex-shrink: 0;
  color: rgb(var(--color-button));
}

.checkmark-icon path {
  stroke: rgb(var(--color-button));
}

/* Theme Button Styles */
.theme-button {
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight-bold);
  border-radius: var(--buttons-radius);
  border: var(--buttons-border-width) solid;
  padding: 12px 24px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  position: relative;
}

.theme-button-primary {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  font-family: 'Bungee'!important;
  border-color: transparent;
  box-shadow: 5px 5px 0px 0px  #4b1fbf;
  border-radius: 35px;
  font-weight: 400;
}

.theme-button-secondary {
  background: rgb(var(--color-secondary-button));
  color: rgb(var(--color-secondary-button-text));
  border-color: rgb(var(--color-shadow));
  box-shadow: 3px 3px 0px 0px rgb(var(--color-shadow));
  border-radius: 35px;
}

/* CTA Button */
.bundle-cta {
  margin-top: 20px;
}

.bundle-cta-button {
  font-family: var(--font-heading-family) !important;
  width: 100%;
  padding: 5px 24px;
  font-size: 18px;
  cursor: pointer;
}

/* Try Once Styles */
.try-once-wrapper {
  margin-top: 20px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.try-once-unified-container {
  background: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-shadow));
  border-radius: 20px;
  padding: 12px;
}

.try-once-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  cursor: pointer;
  display: block;
  text-align: left;
}

.try-once-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.try-once-title {
  font-size: 16px;
  font-weight: var(--font-body-weight-bold);
  color: rgb(var(--color-foreground));
}

.try-once-icon {
  transition: transform 0.3s ease;
  color: rgb(var(--color-foreground));
}

.try-once-toggle-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0px;
}

.try-once-expanded-content {
  /* No border or background - it's inside the unified container */
  padding-top: 0;
}

.try-once-separator {
  height: 1px;
  background: rgba(var(--color-foreground), 0.2);
  margin: 16px 0;
}

.try-once-price {
    line-height: normal!important;
  font-size: 24px;
  font-weight: var(--font-body-weight-bold);
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

.try-once-original-price {
  font-size: 16px;
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: line-through;
  font-family: var(--font-body-family);
}

.try-once-per-day {
  font-size: 14px;
  color: rgb(var(--color-button));
  font-weight: 600;
  font-family: var(--font-body-family);
  margin-bottom: 0px;
}

.try-once-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
  font-size: 14px;
  color: var(--red);
  font-family: var(--font-body-family);
  padding: 8px 0;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.try-once-warning-icon {
  flex-shrink: 0;
}

.try-once-cta-button {
  width: 100%;
  padding: 5px 24px;
  font-size: 18px;
  cursor: pointer;
}

/* Nutrition Label Button */
.nutrition-label-btn {
  width: 100%;
  border-radius: 12px;
  padding: 12px 16px;
  background: #E9DDFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Shipping Info */
.shipping-info {
  margin-bottom: 20px;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0px;
  font-size: 14px;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

.shipping-icon {
  flex-shrink: 0;
}

.custom-shipping-icon {
  object-fit: contain;
  border-radius: 3px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Accordion */
.bundle-accordion {
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body-family);
}

.accordion-header:hover {
  color: rgb(var(--color-button));
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: rgb(var(--color-foreground));
}

.accordion-content {
  display: none;
  padding-bottom: 16px;
  color: rgba(var(--color-foreground), 0.8);
  line-height: 1.6;
  font-family: var(--font-body-family);
}

.accordion-text p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 15px;
}

/* Nutrition Modal */
.nutrition-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nutrition-modal.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.nutrition-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nutrition-modal-content {
  position: relative;
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 90%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nutrition-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  background: white;
  transition: background-color 0.3s ease;
  color: rgb(var(--color-foreground));
}

.nutrition-modal-close:hover {
  background: rgba(var(--color-foreground), 0.2);
}

.nutrition-modal-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--media-radius);
}

/* Mobile Styles */
@media screen and (max-width: 749px) {
  .nutrition-modal {
    padding: 15px;
  }
  
  .nutrition-modal-content {
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 30px);
    padding: 20px;
    margin: 0;
  }
  
  .nutrition-modal-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: calc(100vh - 120px);
    display: block;
  }
  
  .nutrition-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    z-index: 10;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nutrition-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
  }

  .new-bundle-container {
    padding: 12px;
    max-width: 100%;
  }
  
  .bundle-option {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .new-bundle-title {
    font-size: 17px;
  }
  
  .bundle-person-count {
    font-size: 16px;
  }
  
  .bundle-price,
  .try-once-price {
    font-size: 20px;
    line-height: 5px;
  }
  
  .bundle-original-price,
  .try-once-original-price {
    font-size: 14px;
    line-height: 15px;
  }
  
  .bundle-per-day,
  .try-once-per-day {
    font-size: 12px;
  }
  
  .bundle-discount {
    font-size: 20px;
    padding: 3px 15px;
  }
  
  .bundle-cta-button,
  .try-once-cta-button {
    font-size: 16px;
    padding: 5px 20px;
  }
  

  
  .try-once-wrapper {
    max-width: 100%;    
  }
  
  .try-once-unified-container {
    padding: 15px;
  }
  
  .try-once-title {
    font-size: 14px;
  }
}

/* Custom width container for when not using page-width */
.custom-width-container {
  width: 100%;
}

@media screen and (max-width: 749px) {
  .custom-width-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Additional theme integration */
.new-bundle-wrapper .theme-button,
 {
  font-family: var(--font-body-family) !important;
}

/* Responsive typography scaling */
@media screen and (min-width: 750px) {
  .new-bundle-title {
    font-size: 18px;
  }
  
  .bundle-person-count {
    font-size: 18px;
  }
  
  .bundle-price,
  .try-once-price {
    font-size: 24px;
    line-height: 5px;
  }
}

/* Theme color integration for icons */
.new-bundle-wrapper svg path[stroke] {
  stroke: rgb(var(--color-button));
}

.new-bundle-wrapper svg path[fill] {
  fill: rgb(var(--color-button));
}

.try-once-warning-icon path[stroke] {
  stroke: var(--red) !important;
}

/* Disable all animations for new-bundle add to cart buttons */
.bundle-cta-button,
.try-once-cta-button {
  transition: none !important;
  animation: none !important;
}

.bundle-cta-button:hover,
.bundle-cta-button:active,
.bundle-cta-button:focus,
.try-once-cta-button:hover,
.try-once-cta-button:active,
.try-once-cta-button:focus {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* Disable cart drawer animations when triggered by new-bundle */
.new-bundle-wrapper ~ cart-drawer .drawer,
.new-bundle-wrapper ~ cart-drawer .drawer__inner {
  transition: none !important;
  animation: none !important;
}

/* Force immediate cart drawer display */
.new-bundle-no-animation cart-drawer.active .drawer__inner {
  transform: translateX(0) !important;
  transition: none !important;
}

/* Bundle Reviews Styling */
.bundle-reviews-block {
  margin-top: 0px;
  width: 100%;
  margin-bottom: 0px;
}

.bundle-reviews-container {
  
  
  border-radius: 12px;
  padding: 0px;
  max-width: 500px;
  margin: 0 auto;
}

.bundle-reviews-row {

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  flex-flow: row;
}

.bundle-reviews-stars {
  display: flex;
  gap: 1px;
  align-items: center;
}

.review-star {
  width: 16px;
  height: 16px;
}

.bundle-reviews-content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.bundle-review-item {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: inline;
  margin-left: 2px;
    margin-right: 2px;
}

.review-separator {
  font-size: 14px;
  margin-left: 2px;
    margin-right: 2px;
  font-weight: 600;
  color: #333333;
}

/* TASTES LIKE Section Styles */
.tastes-like-section {
  margin-top: 30px;
  width: 100%;
}

.tastes-like-container {
  
  border-radius: 12px;
  padding: 0px;
  max-width: 600px;
  margin: 0 auto;
}

.tastes-like-title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flavor-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  flex-flow: row;
}

.flavor-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.flavor-icon {
  width: 48px;
  height: 48px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.flavor-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.flavor-text {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}

/* Individual Icon + Text Elements Styles */
.icon-text-elements {
    display: flex;
    
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        margin-top: 24px;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: flex-start;
}

.icon-text-element {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  text-align: left;
  position: relative;
  cursor: pointer;
}

.element-icon {
  width: 60px;
  height: 60px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.element-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.element-text {
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
  /* max-width: 80px; */
}

/* Summary element styling - horizontal layout */
.element-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 8px;
}

.element-summary::-webkit-details-marker {
  display: none;
}

.element-summary::marker {
  display: none;
}

/* Icon stays on the left */
.element-summary .element-icon {
  flex-shrink: 0;
}

/* Text takes remaining space */
.element-summary .element-text {
  flex: 1;
  text-align: left;
}

.element-text {
  text-align: left !important;
}

/* Individual Hover Block Styles */
.element-hover-block {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 300px;
  margin-top: 12px;
  white-space: normal;
}

.hover-content {
  text-align: left;
}

.hover-text {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #155EEF;
  line-height: 1.2;
}

.hover-description {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  line-height: 1.3;
}

.hover-arrow {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
}

.hover-arrow::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #e9ecef;
}

/* Desktop hover effect - original behavior */
@media screen and (min-width: 750px) {
  .icon-text-element.accordion-style .desktop-hover {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
  
  .icon-text-element.accordion-style:hover .desktop-hover {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hide mobile accordion content on desktop */
  .icon-text-element.accordion-style .mobile-content {
    display: none;
  }
  
  /* Hide default details marker on desktop */
  .icon-text-element.accordion-style summary::-webkit-details-marker {
    display: none;
  }
  
  .icon-text-element.accordion-style summary::marker {
    display: none;
  }
  
  /* Ensure summary is positioned relative for hover positioning */
  .icon-text-element.accordion-style .element-summary {
    position: relative;
  }
}

/* Mobile responsiveness */
@media screen and (max-width: 749px) {
  .bundle-reviews-container {
    padding: 0px;
    max-width: 100%;
  }
  
  .bundle-review-item {
    font-size: 13px;
  }
  
  .bundle-reviews-row {
    gap: 6px;
  }

  /* TASTES LIKE Mobile Styles */
  .tastes-like-container {
    padding: 0px;
    margin: 0 16px;
  }
  
  .flavor-options {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .flavor-icon {
    width: 40px;
    height: 40px;
  }
  
  .flavor-icon img {
    width: 40px;
    height: 40px;
  }
  
  .flavor-text {
    font-size: 13px;
  }
  
  .icon-text-elements {
    gap: 10px;
    margin-top: 40px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .element-icon {
    width: 28px;
    height: 28px;
  }
  
  .element-icon img {
    width: 40px;
    height: 40px;
  }
  
  .element-text {
    font-size: 11px;
    /* max-width: 70px; */
  }

  /* Mobile native accordion behavior */
  /* Hide desktop hover on mobile */
  .icon-text-element.accordion-style .desktop-hover,
  .icon-text-element.accordion-style .desktop-hover *,
  .icon-text-element.accordion-style .hover-content,
  .icon-text-element.accordion-style .hover-arrow {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
  }
  
  /* Hide default details marker on mobile */
  .icon-text-element.accordion-style summary::-webkit-details-marker {
    display: none;
  }
  
  .icon-text-element.accordion-style summary::marker {
    display: none;
  }
  
  /* Adjust summary padding for mobile */
  .icon-text-element.accordion-style .element-summary {
    padding: 0px;
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  /* Mobile icon sizing */
  .icon-text-element.accordion-style .element-icon {
    width: 40px;
    height: 40px;
  }
  
  .icon-text-element.accordion-style .element-icon img {
    width: 40px;
    height: 40px;
  }
  
  /* Mobile text sizing */
  .icon-text-element.accordion-style .element-text {
    font-size: 11px;
    text-align: left;
  }
  
  /* Style the mobile accordion content - appears below */
  .icon-text-element.accordion-style .mobile-content {
    display: block;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0px;
    padding-left: 50px;
    width: 100%;
    background: none;
    border: none;
  }
  
  .icon-text-element.accordion-style .mobile-content .hover-description {
    font-size: 11px;
    line-height: 1.3;
    color: #666;
    margin: 0;
    display: block;
    font-weight: 400;
  }
  
  /* Make summary clickable and ensure proper layout */
  .icon-text-element.accordion-style {
    display: block;
    width: 100%;
  }
  
  .icon-text-element.accordion-style summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  /* Ensure content appears below on mobile */
  .icon-text-element.accordion-style[open] .mobile-content {
    display: block;
  }
}