/** Shopify CDN: Minification failed

Line 95:0 Unexpected "{"
Line 95:1 Expected identifier but found "%"
Line 204:0 Unexpected "{"
Line 204:1 Expected identifier but found "%"

**/
.product-collapsible {
  margin-bottom: 15px;
  width: 100%;
}

.product-collapsible-header {
  background-color: #f8f8f8;
  padding: 15px;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}

.product-collapsible-header:hover {
  background-color: #e8e8e8;
}

.product-collapsible-header:after {
  content: '+';
  font-size: 18px;
}

.product-collapsible-header.active:after {
  content: '-';
}

.product-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}

.product-collapsible-content-inner {
  padding: 15px;
}

.product-collapsible-content-inner ul,
.product-collapsible-content-inner ol {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.product-collapsible-content-inner li {
  display: list-item;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .product-collapsible-content-inner ul li,
  .product-collapsible-content-inner ol li {
    display: table-row !important;
  }

  .product-collapsible-content-inner ul li:before,
  .product-collapsible-content-inner ol li:before {
    content: "• ";
    display: table-cell !important;
    padding-right: 10px;
  }

  .product-collapsible-content-inner ul,
  .product-collapsible-content-inner ol {
    list-style-type: none !important;
    padding-left: 0 !important;
  }

  .product-collapsible-content-inner li > * {
    display: inline !important;
    vertical-align: top !important;
  }
}
/* Make all prices bold */
.price-item {
  font-weight: bold !important;
}

/* Target product page prices with larger font size */
{% if template contains 'product' %}
  /* Main content area prices */
  .product-template .price__container .price-item,
  .product-single .price__container .price-item,
  #ProductSection .price__container .price-item,
  .product__info-container .price__container .price-item,
  .product-form__container .price__container .price-item,
  .product__content .price__container .price-item,
  .product-single__meta .price__container .price-item {
    font-size: 30px !important;
  }

  /* Exclude similar structure prices in recommended products */
  .product-recommendations .price-item,
  .related-products .price-item,
  [data-section-type="product-recommendations"] .price-item {
    font-size: inherit !important;
  }

  /* Fixed alignment for sale badge to match exactly with price */
  .badge.price__badge-sale {
    vertical-align: middle;
    display: inline-flex !important;
    align-items: center;
    position: relative !important;
    margin-bottom: 0;
    height: 30px;
    top: 0;
    margin-left: 10px;
  }

  /* Price container alignment fixes */
  .price__container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  /* Sale price specific alignment */
  .price-item--sale,
  .price-item--regular,
  s.price-item--regular.price-item--last {
    display: inline-block;
    vertical-align: middle;
  }

  /* Make sure prices and badges stay on same line */
  .price--large {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  /* Hide sale badge when not on sale */
  .price:not(.price--on-sale) .price__badge-sale {
    display: none !important;
  }

  /* Keep recommended products price alignment intact */
  .product-recommendations .price__container,
  [data-section-id*="related-products"] .price__container,
  .related-products .price__container {
    display: block !important; /* Restore original display */
  }

  .product-recommendations .price-item,
  [data-section-id*="related-products"] .price-item,
  .related-products .price-item {
    display: inline-block !important;
  }

  /* Make text and quantity selector side by side with perfect alignment */
  .product-form__input.product-form__quantity {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  .product__quantity-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .quantity__label {
    margin-right: 15px !important;
    margin-bottom: 0 !important;
    min-width: 80px !important;
    flex-shrink: 0 !important;
  }

  .price-per-item__container {
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
  }

  .quantity {
    display: flex !important;
    align-items: center !important;
  }

  .quantity__rules-cart {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }
{% endif %}

.cart-count-bubble {
  background: #FFA500 !important;
  color: #000000 !important;
  position: absolute !important;
  top: 0.0rem !important;
  right: 0.0rem !important;
  z-index: 0;
}

/* Only apply ripple animation when cart has items */
.cart-count-bubble:not(:empty):before,
.cart-count-bubble:not(:empty):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #FFA500;
  opacity: 0;
  animation: ripple 2s linear infinite;
}

.cart-count-bubble:not(:empty):after {
  animation-delay: 1s;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.card__media {
  border-radius: 20px !important;
}
.card {
  border-radius: 20px !important;
  overflow: hidden !important;
}
.card__inner {
  border-radius: 20px !important;
  overflow: hidden !important;
}
.media {
  border-radius: 20px !important;
}
.card__content {
  border-radius: 0 0 20px 20px !important;
}
product-form .quick-add__submit,
product-form .product-form__submit {
  background: #FFA500;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
}

/* ─── Override: slim, lined collapsibles ─── */
.product-collapsible {
  background: none !important;
  border: none !important;
  border-bottom: 2px solid #d0d0d0 !important; /* Darker and thicker border */
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Remove top border from first item */
.product-collapsible:first-child {
  border-top: none !important; 
}

.product-collapsible-header {
  background: none !important;
  border: none !important;
  padding: 0.8rem 0 !important; /* slightly bigger padding */
  border-radius: 0 !important;
  font-size: 16px !important; /* ensure readable size */
}

.product-collapsible-header:hover {
  background: none !important;
}

.product-collapsible-header::after {
  margin-left: 0.5rem;
  font-size: 18px !important; /* slightly larger plus/minus icon */
}

/* Add separator line when content is open */
.product-collapsible-header.active {
  border-bottom: 2px solid #d0d0d0 !important; /* Darker and thicker border */ 
}

.product-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border: none !important;
}

.product-collapsible-content-inner {
  padding: 0.9rem 0 1.2rem 0 !important; /* more padding top & bottom */
}

/* Add extra padding for content elements */
.product-collapsible-content-inner p {
  margin-top: 0.5rem !important;
  margin-bottom: 0.8rem !important;
}

.product-collapsible-content-inner ul,
.product-collapsible-content-inner ol {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}