/** Shopify CDN: Minification failed

Line 77:52 Expected ":"

**/
.custom-buybox-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.custom-buybox {
  background: transparent;
  border-radius: 0;
}

/* Purchase Type Toggle */
.purchase-type-toggle {
  display: flex;
}

.purchase-type-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  overflow: hidden;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  font-family: inherit;
}

.purchase-type-option-label {
  display: block;
  padding: 10px 16px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-text-color, rgb(119, 119, 119));
  cursor: pointer;
}

.purchase-type-option .subscription-discount-header {
  display: block;
  background: transparent;
  color: var(--secondary-text-color, rgb(119, 119, 119));
  padding: 0 16px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.purchase-type-option.active .subscription-discount-header {
  color: var(--active-accent-text-color, #3d47cd);
}

.purchase-type-option.active {
  background: var(--selected-bg-color, #ffffff);
}

.purchase-type-option.active .best-value-badge {
  width: 100%;
}

.purchase-type-option.active .purchase-type-option-label {
  color: var(--primary-text-color, #000);
}

.purchase-type-option .save-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: var(--active-accent-text-color, #3d47cd);\n  font-weight: 700;
  cursor: pointer;
}

.purchase-type-option .unit-price-value {
  display: block;
  font-size: 12px;
  color: var(--secondary-text-color, rgb(119, 119, 119));
  font-weight: 500;
  cursor: pointer;
}

/* Best Value Badge */
.best-value-badge {
  display: block;
  background: var(--badge-bg-color, #3d47cd);
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  visibility: visible;
}

.best-value-badge.invisible {
  visibility: hidden;
}

.purchase-type-tab-content {
  padding: 20px 15px;
  background-color: #ffffff;
}

/* Subscription Options */
.subscription-options {
  margin-bottom: 24px;
}

.subscription-options.hidden {
  display: none;
}

/* Subscription Quantity Options */
.subscription-quantity-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.subscription-quantity-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  padding-right: 45px;
  border: 2px solid var(--border-color, rgba(61, 71, 205, 0.48));
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--main-bg-color, rgba(61, 71, 205, 0.06));
}

.subscription-quantity-option:hover {
  border-color: var(--primary-color, #3d47cd);
}

.subscription-quantity-option.selected {
  border-color: var(--primary-color, #3d47cd);
  background: var(--selected-bg-color, #ffffff);
}

.subscription-quantity-option input[type="radio"] {
  display: none;
}

.quantity-left-wrapper,
.volume-left-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-text-wrapper,
.volume-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quantity-thumbnail,
.volume-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.quantity-details,
.volume-details {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.volume-details {
  align-self: flex-end;
}

.quantity-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-text-color, #000);
  flex-shrink: 0;
}

.volume-quantity {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-text-color, #000);
  flex-shrink: 0;
}

.volume-per-day {
  font-size: 12px;
  color: var(--secondary-text-color, rgb(119, 119, 119));
  font-weight: 400;
}

.quantity-per-day {
  font-size: 12px;
  color: var(--secondary-text-color, rgb(119, 119, 119));
  font-weight: 400;
}

.subscription-quantity-option.selected .quantity-label {
  color: var(--primary-text-color, #000);
}

.quantity-price,
.quantity-savings {
  font-size: 13px;
  color: var(--secondary-text-color, rgb(119, 119, 119));
}

.volume-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text-color, #000);
}

.volume-compare-price {
  font-size: 14px;
  color: var(--compare-price-color, #ff0000);
  text-decoration: line-through;
  font-weight: 400;
}

.volume-compare-price.hidden {
  display: none;
}

.subscription-quantity-option.selected .quantity-price,
.subscription-quantity-option.selected .quantity-savings {
  color: var(--secondary-text-color, rgb(119, 119, 119));
}

.quantity-savings {
  display: inline-block;
  padding: 2px 5px;
  background: rgba(61, 71, 205, 0.1);
  color: var(--active-accent-text-color, #3d47cd);
  font-weight: 600;
  border-radius: 0;
  font-size: 12px;
  width: fit-content;
}

.subscription-quantity-option.selected .quantity-savings {
  background: rgba(61, 71, 205, 0.1);
  color: var(--active-accent-text-color, #3d47cd);
}

.quantity-discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--badge-bg-color, #3d47cd);
  color: white;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 700;
}

.subscription-quantity-option.selected .quantity-discount-badge {
  background: var(--badge-bg-color, #3d47cd);
  color: white;
}

/* Free Shipping Badge */
.free-shipping-badge {
  position: absolute;
  top: -8px;
  right: 25px;
  background: var(--badge-bg-color, #3d47cd);
  color: white;
  padding: 6px 8px;
  border-radius: 0 0 8px 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
  z-index: 1;
  line-height: 1;
}

.subscription-quantity-option .free-shipping-badge {
  left: 25px;
  right: auto;
}

.free-shipping-badge::before,
.free-shipping-badge::after {
  content: "";
  border-bottom-color: var(--badge-bg-color, #3d47cd);
  border-bottom-style: solid;
  border-bottom-width: 8px;
  display: block;
  filter: brightness(.7);
  height: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.free-shipping-badge::before {
  border-left: 8px solid transparent;
  border-left-color: transparent !important;
  left: -8px;
}

.free-shipping-badge::after {
  border-right: 8px solid transparent;
  border-right-color: transparent !important;
  right: -8px;
}

/* Delivery Interval Section */
.delivery-interval-section {
  margin-bottom: 20px;
}

.delivery-interval-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: var(--primary-text-color, #000);
}

.subscription-interval-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .subscription-interval-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.subscription-interval {
  position: relative;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--border-color, rgba(61, 71, 205, 0.48));
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: var(--main-bg-color, rgba(61, 71, 205, 0.06));
}

.subscription-interval:hover {
  border-color: var(--primary-color, #3d47cd);
}

.subscription-interval.selected {
  border-color: var(--primary-color, #3d47cd);
  background: var(--selected-bg-color, #ffffff);
}

.subscription-interval input[type="radio"] {
  display: none;
}

.subscription-interval-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-text-color, #000);
}

.subscription-interval.selected .subscription-interval-label {
  color: var(--primary-text-color, #000);
}

/* Volume Options */
.volume-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.volume-options.hidden {
  display: none;
}

.volume-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--border-color, rgba(61, 71, 205, 0.48));
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--main-bg-color, rgba(61, 71, 205, 0.06));
}

.volume-option:hover {
  border-color: var(--primary-color, #3d47cd);
}

.volume-option.selected {
  border-color: var(--primary-color, #3d47cd);
  background: var(--selected-bg-color, #ffffff);
}

.volume-option input[type="radio"] {
  display: none;
}

/* Add to Cart Button */
.custom-add-to-cart {
  width: 100%;
  padding: 18px 24px;
  background: var(--button-bg-color, #000000);
  color: var(--button-text-color, white);
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.custom-add-to-cart:hover {
  background: var(--button-bg-color, #000000);
  opacity: 0.9;
  transform: translateY(-2px);
}

.custom-add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.add-to-cart-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.add-to-cart-text {
  font-weight: 700;
}

.add-to-cart-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-to-cart-price {
  font-weight: 700;
}

.add-to-cart-compare-price {
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.7;
}

.add-to-cart-compare-price.hidden {
  display: none;
}

/* Unit Price Display */
.unit-price-display {
  display: block;
  text-align: right;
  margin-top: 6px;
  font-size: 11px;
  color: var(--secondary-text-color, rgb(119, 119, 119));
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

/* Loading State */
.custom-buybox.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Error Message */
.buybox-error {
  background: #ffebee;
  color: #c62828;
  padding: 12px;
  border-radius: 0;
  margin-bottom: 16px;
  font-size: 14px;
  display: none;
}

.buybox-error.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .quantity-label,
  .volume-quantity {
    font-size: 14px;
  }
  
  .volume-per-day {
    font-size: 11px;
  }

  .quantity-per-day {
    font-size: 11px;
  }
  
  .subscription-title {
    font-size: 16px;
  }
  
  .volume-details {
    align-items: flex-end;
  }
  
  .subscription-quantity-option {
    flex-wrap: wrap;
  }
  
  .volume-option {
    padding: 12px;
  }
  
  .volume-price {
    font-size: 14px;
  }
  
  .volume-compare-price {
    font-size: 12px;
  }
}
