/** Shopify CDN: Minification failed

Line 549:10 Unexpected "{"
Line 549:19 Expected ":"
Line 555:12 Unexpected "{"
Line 555:21 Expected ":"

**/
/* ===================================
   PRODUCT PAGE STRUCTURE IMPROVEMENTS
   =================================== */

/* Main Product Section - Remove excess spacing */
.product__info-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Product Title Styling */
.product__title {
  margin-bottom: 32px;
}

.product__title h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
  color: #1b3728;
  font-weight: 600;
}

/* Product Info Text (CBD content, etc.) - Remove background and reduce spacing */
.product__text.inline-richtext {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  background: transparent;
  border: none;
}

/* Price Section - Remove borders and excess spacing */
.price {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.price--large {
  font-size: 28px;
  font-weight: 700;
  color: #1b3728;
  margin: 0;
  line-height: 1.2;
}

/* Shipping text - Remove all spacing */
.product__tax.caption {
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  font-size: 13px;
  line-height: 1.4;
}

/* Remove spacing after price section */
.price + * {
  margin-top: 8px !important;
}

/* Product Description - Compact and View More inline */
.product__description {
  margin: 12px 0 0 0 !important;
  line-height: 1.6;
  font-size: 14px;
  padding: 0;
}

.product__description .description_inner {
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-bottom: 0;
  line-height: 1.6;
}

.product__description.active .description_inner {
  max-height: none;
}

.product__description .description_inner p {
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.product__description .description_inner p:last-child {
  margin-bottom: 0;
}

.viewmore_with_viewles {
  color: #1b3728;
  cursor: pointer;
  font-weight: 600;
  margin: 6px 0 0 0;
  padding: 0;
  display: inline-block;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-size: 13px;
  line-height: 1.4;
}

.viewmore_with_viewles.hidden {
  display: none;
}

.viewmore_with_viewles:hover {
  color: #2d4d3a;
}

/* Remove space between description and size selector */
.product__description + .product-form__input,
.product__description + fieldset {
  margin-top: 12px !important;
}

/* Variant Picker - Compact */
.product-form__input {
  margin: 8px 0 !important;
}

fieldset.product-form__input {
  padding: 0;
  margin: 8px 0 !important;
  border: none;
}

.product-form__input legend {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #1b3728;
}

/* Size buttons */
.product-form__input input[type="radio"] + label {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: white;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 14px;
  margin-right: 8px;
}

.product-form__input input[type="radio"]:checked + label {
  border-color: #1b3728;
  background: #1b3728;
  color: white;
}

.product-form__input input[type="radio"] + label:hover {
  border-color: #1b3728;
}

/* Quantity Selector - Compact */
.product-form__quantity {
  margin: 8px 0 0 0;
}

.quantity__label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #1b3728;
  font-size: 14px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.quantity__button {
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.quantity__button:hover {
  background: #e0e0e0;
}

.quantity__input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: white;
}

/* Remove ALL spacing between quantity and buttons */
.product-form__quantity + .product-form__buttons,
.product-form__quantity + * {
  margin-top: 8px !important;
}

.price-per-item__container {
  margin: 0 !important;
  padding: 0 !important;
}

.quantity__rules {
  margin: 0 !important;
  padding: 0 !important;
}

/* Buy Buttons Container - Align side by side */
.product-form__buttons {
  display: flex;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: stretch;
}

.product-form__submit {
  flex: 1;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  background: #1b3728;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-form__submit:hover {
  background: #2d4d3a;
}

/* Buy Now button (Shopify payment button) */
.shopify-payment-button {
  flex: 1;
  margin: 0;
}

.shopify-payment-button__button {
  height: 48px !important;
  border-radius: 6px !important;
}

.shopify-payment-button__button--unbranded {
  background-color: #1b3728 !important;
  color: white !important;
  font-weight: 600 !important;
}

.shopify-payment-button__button--unbranded:hover {
  background-color: #2d4d3a !important;
}

/* Service Button (Upload) - Compact */
.service-button {
  margin-top: 12px;
}

.service-button .button {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #1b3728;
  border: 1px solid #1b3728;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 14px;
}

.service-button .button:hover {
  background: #1b3728;
  color: white;
}

/* ===================================
   PRODUCT BENEFITS SECTION
   =================================== */
.product-benefits-section {
  background: #f9f9f9;
}

.product-benefits-section .multicolumn__title {
  text-align: center;
  margin-bottom: 40px;
  color: #1b3728;
  font-size: 32px;
  font-weight: 600;
}

.product-benefits-section .multicolumn-card {
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.product-benefits-section .multicolumn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-benefits-section .multicolumn-card__image-wrapper {
  margin-bottom: 20px;
}

.product-benefits-section .multicolumn-card__info h3 {
  color: #1b3728;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===================================
   PRODUCT DETAILS SECTION
   =================================== */
.product-details-section {
  background: white;
  padding: 60px 20px;
}

.product-details-section .rich-text__wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.product-details-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.product-faqs {
  background: #f9f9f9;
}

.collapsible-content .accordion__title {
  font-size: 18px;
  font-weight: 600;
  color: #1b3728;
}

.collapsible-content details {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.collapsible-content summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  transition: color 0.2s ease;
}

.collapsible-content summary:hover {
  color: #1b3728;
}

.collapsible-content .accordion__content {
  padding: 16px 0;
  line-height: 1.8;
  color: #555;
}

/* ===================================
   TRUST BADGES SECTION
   =================================== */
.trust-badges-section {
  background: #e9f0e9;
}

.trust-badges-section .multicolumn__title {
  text-align: center;
  margin-bottom: 40px;
  color: #1b3728;
  font-size: 28px;
  font-weight: 600;
}

.trust-badges-section .multicolumn-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badges-section .multicolumn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.trust-badges-section h3 {
  color: #1b3728;
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0 8px;
}

/* ===================================
   RECOMMENDED PRODUCTS SECTION
   =================================== */
.related-products {
  padding: 60px 20px;
}

.related-products .section-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #1b3728;
  font-size: 32px;
  font-weight: 600;
}

/* ===================================
   CUSTOMER TESTIMONIALS SECTION
   =================================== */
.customer-story-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.customer-story-section .section-heading {
  text-align: center;
  margin-bottom: 50px;
  color: #1b3728;
  font-size: 32px;
  font-weight: 600;
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */
@media screen and (max-width: 749px) {
  .product__title h1 {
    font-size: 24px;
  }
  
  .price--large {
    font-size: 22px;
  }
  
  .product-benefits-section .multicolumn__title,
  .trust-badges-section .multicolumn__title,
  .related-products .section-heading,
  .customer-story-section .section-heading {
    font-size: 24px;
  }
  
  .product-benefits-section .multicolumn-card,
  .trust-badges-section .multicolumn-card {
    margin-bottom: 20px;
  }
  
  .product__description .description_inner {
    max-height: 120px;
  }
  
  /* Stack buttons vertically on mobile */
  .product-form__buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .product-form__submit,
  .shopify-payment-button__button {
    width: 100%;
  }
}

/* ===================================
   TABLET RESPONSIVENESS
   =================================== */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .product__title h1 {
    font-size: 28px;
  }
  
  .price--large {
    font-size: 24px;
  }
}

/* ===================================
   REMOVE EXCESSIVE SPACING
   =================================== */
.product > * {
  margin-top: 0;
}

.product__info-wrapper > * {
  margin-top: 0;
}

/* Remove default Shopify spacing */
.product-form > *:first-child {
  margin-top: 0;
}

.product-form__input:first-child {
  margin-top: 0;
}

/* Compact product form */
.product-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Remove extra padding from sections */
.section-{{ section.id }}-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* Force remove all default margins and padding from product info */
.product__info-container > * {
  margin: 0;
  padding: 0;
}

.product__info-container > .product__title {
  margin-bottom: 8px;
}

.product__info-container > #price-template {
  margin-bottom: 4px;
}

.product__info-container > .product__description {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Remove Shopify's default spacing */
.rte p {
  margin: 0 0 12px 0;
}

.rte p:last-child {
  margin-bottom: 0;
}

/* Quick add hidden class should not add extra spacing */
.quick-add-hidden {
  margin: 0;
  padding: 0;
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */
.product-form__submit:focus,
.service-button .button:focus,
.viewmore_with_viewles:focus {
  outline: 2px solid #1b3728;
  outline-offset: 2px;
}

/* Skip to content for screen readers */
.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 10px;
  background: #1b3728;
  color: white;
  text-decoration: none;
}

.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

/* ===================================
   LOADING STATES
   =================================== */
.product-form__submit.loading {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
}

.product-form__submit.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
