/** Shopify CDN: Minification failed

Line 32:19 Expected ":"

**/

/* ===========================
   Flavor Bundle Widget Styles
   =========================== */

.fp-widget {
  max-width: 480px;
  margin: 0 auto;
  padding: 0px 0px;
  background: #000000;
  border-radius: 18px;
  box-sizing: border-box;
}

/* ---- Stars & Header ---- */
.fp-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.fp-star {
  color: #f0a500;
  font-size: 18px;
  line-height: 1;
}
.fp-review-count {s
  font-size: 11px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.8px;
  margin-left: 6px;
  text-transform: uppercase;
}
.fp-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  color: var(--fp-header-color);
}
.fp-description {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.fp-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.fp-benefits li {
  font-size: 14px;
  margin-bottom: 6px;
  padding-left: 4px;
}

/* ---- Flavor Grid ---- */
.fp-flavors-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
}

/* Dynamic grid: 4 columns for 3-4 variants, 2 columns for 1-2 variants */
/*
.fp-flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.fp-flavors-grid--1,
.fp-flavors-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.fp-flavors-grid--3 {
  grid-template-columns: repeat(3, 1fr);
} */

.fp-flavors-grid {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Optional spacing between cards */
}

/* This ensures each card is full-width by default */
.fp-flavors-grid .fp-flavor-card {
  width: 100%;
}

/* ---- Flavor Card ---- */
.fp-flavor-card {
  display: flex;
  flex-direction: row;       /* Arrange items in a line */
  align-items: center;      /* Vertically center the image, text, and stepper */
  justify-content: space-between; /* Pushes image to left, stepper to right */
  
  background: #000;
  border: 2.5px solid #e0e0e0;
  border-radius: 14px;
  padding: 0px 20px;       /* Adjusted padding for horizontal flow */
  gap: 30px;
  text-align: left;         /* Align text to the left now that it's in the middle */
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  width: 100%;              /* Ensures it spans the full width of the stack */
  box-sizing: border-box;
}
.fp-flavors-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;    /* NEW: Pushes the 'ADD 4 PACKS' message further down */
}
/* Ensure the name takes up the available middle space */
.fp-flavor-name {
  flex-grow: 1;
  margin: 0 20px;           /* Adds breathing room between image and stepper */
  font-weight: bold;
  text-transform: uppercase;
}

/* Constrain the image size so it doesn't push other elements out */
.fp-flavor-image {
  width: 60px;              /* Adjust based on your asset size */
  flex-shrink: 0;           /* Prevents the image from being squished */
}

.fp-qty-stepper {
  flex-shrink: 0;           /* Prevents the stepper from being squished */
}

.fp-flavor-card {
  /* ... keep your other styles ... */
  border: 2.5px solid var(--flavor-color, #3ab5e6); /* Use the variable here! */
}

/* You can then use the active state for a "glow" or thicker border */
.fp-flavor-card.fp-active {
  box-shadow: 0 0 10px var(--flavor-color, #3ab5e6);
}

.fp-flavor-card.fp-active {
  border-color: var(--flavor-color, #3ab5e6);
  box-shadow: 0 0 0 1px var(--flavor-color, #3ab5e6);
}

/* Product Image */
.fp-flavor-image {
  width: 100px;
  height: 80px;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-flavor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Can placeholder (fallback) */
.fp-flavor-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background: #e8e8e8;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-can-body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #eaeaea 0%, #d4d4d4 100%);
  position: relative;
}
.fp-can-label {
  font-size: 10px;
  font-weight: 900;
  color: var(--fp-text-color);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.fp-can-stripe {
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.7;
}

.fp-flavor-name {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--fp-text-color);
}

/* ---- Quantity Stepper ---- */
.fp-qty-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px 8px;
}
.fp-qty-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid #ccc;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, border-color 0.1s;
  padding: 0;
  color: #333;
  flex-shrink: 0;
}
.fp-qty-btn:not(:disabled):hover {
  background: #f0f0f0;
  border-color: #999;
}
.fp-qty-btn:disabled {
  cursor: default;
}
.fp-qty-btn.fp-active-btn {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  opacity: 1 !important;
}
.fp-qty-value {
  font-size: 15px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #000000;
}

/* ---- Pricing Row ---- */
.fp-pricing-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.fp-pricing-left { flex: 1; }
.fp-upsell-msg {
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.fp-discount-badge {
  background: #4f46e5;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.fp-price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.fp-price-original {
  font-size: 20px;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
}
.fp-price-current {
  font-size: 40px;
  font-weight: 900;
  color: var(--fp-price-color);
  line-height: 1;
}
.fp-pricing-right { text-align: right; }
.fp-savings-label {
  font-size: 12px;
  color: #FFFFFF;
  margin: 0 0 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: bold;
}
.fp-savings-value {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  color: var(--fp-savings-color);
}

/* ---- Divider ---- */
.fp-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 18px;
}

/* ---- CTA Button ---- */
.fp-cta-btn {
  display: block;
  width: 100%;
  background: #CEFF43;
  color: #000;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  border: none;
  border-radius: 40px;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 0px 8px 0px var(--color-base-button-gradient);
}
.fp-cta-btn:hover:not(:disabled) {
  background: #CEFF43;
  /*transform: translateY(-1px);*/
}
.fp-cta-btn:active:not(:disabled) {
  transform: translateY(0);
}
.fp-cta-btn:disabled {
  background: #bbb;
  color: #FFF;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---- Sub info ---- */
.fp-sub-info {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--fp-text-color);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 10px 0 20px;
}

/* ---- Batch Shipping Box ---- */
.fp-batch-box {
  background: linear-gradient(135deg, #e8edf8 0%, #f0e8f8 100%);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(200, 200, 220, 0.4);
}
.fp-batch-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.fp-batch-header strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fp-batch-urgency {
  color: #22a344;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.fp-batch-subtitle {
  font-size: 12px;
  color: #777;
  margin: 0 0 12px;
}
.fp-batch-dates {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fp-batch-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.55);
}
.fp-batch-sold-out .fp-batch-date-label,
.fp-batch-sold-out .fp-batch-date-status {
  text-decoration: line-through;
  color: #bbb;
  font-size: 11px;
}
.fp-batch-active {
  background: #22a344;
}
.fp-batch-active .fp-batch-date-label,
.fp-batch-active .fp-batch-date-status {
  color: #fff;
  font-weight: 800;
}
.fp-batch-upcoming .fp-batch-date-status {
  color: #aaa;
}
.fp-batch-date-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fp-batch-date-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .fp-flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 360px) {
  .fp-title { font-size: 30px; }
  .fp-price-current { font-size: 32px; }
}

@media screen and (max-width: 1279px) {
  /* 1. Force the card into a horizontal row structure layout */
  .fp-flavor-card {
    display: flex;
    flex-direction: row;       /* Positions elements side-by-side */
    align-items: center;       /* Centers all elements vertically along the line */
    justify-content: flex-start;
    padding: 6px 8px;          /* Compressed inner cushion space padding */
    gap: 8px;                  /* Strict tight spacing between the image, text, and stepper */
    height: auto;
    min-height: 0 !important;   /* Strip out old minimum height block constraints */
  }

  /* 2. Compact the thumbnail image frame */
  .fp-flavor-image {
    width: 40px !important;    /* Compressed size footprint to save space */
    height: 40px !important;
    margin: 0 !important;      /* Eliminate external margin pushes completely */
    flex-shrink: 0;            /* Hard lock properties to prevent shrinking */
  }

  .fp-flavor-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
  }

  /* 3. Give the Title layout middle priority and fluid expansion */
  .fp-flavor-name {
    font-size: 13px !important; /* Sharp, high-density text presentation scale */
    line-height: 1.2;
    text-align: left;          /* Left-aligned text layout */
    margin: 0 !important;      /* Eliminate structural margins */
    padding: 0 !important;
    flex-grow: 1;              /* Automatically consumes available space in the middle */
    word-break: break-word;    /* Wrap gracefully into two lines if needed */
  }

  /* 4. Lock down the stepper tools container on the far right rail */
  .fp-qty-stepper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 76px !important;    /* Tight horizontal footprint for mobile screens */
    height: 24px !important;   /* Compressed structural height frame */
    margin: 0 !important;      /* Prevent outer margin layout alignment shifts */
    flex-shrink: 0;            /* Lock configuration shape from collapsing */
    gap: 2px;
  }

  /* 5. Compact Circle Buttons to optimize horizontal space */
  .fp-qty-btn {
    width: 24px !important;    /* Clean, high-density interactive targets */
    height: 24px !important;
    font-size: 12px !important;
    line-height: 24px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* 6. Compressed Quantity Counter text numbers value display */
  .fp-qty-value {
    font-size: 12px !important;
    min-width: 14px !important;
    text-align: center;
    line-height: 24px;
  }

  .fp-savings-value {
  font-size: 25px;
  font-weight: 900;
  margin: 0;
  color: #CEFF43;
}
}