/** Shopify CDN: Minification failed

Line 1394:13 Expected ":"
Line 1394:26 Unterminated string token
Line 1441:19 Expected identifier but found whitespace
Line 1441:20 Unexpected "rgba("

**/
.announcement-bar,
.announcement-bar__item {
  background: #224414 !important;
}
.announcement-bar,
.announcement-bar .flickity-viewport {
  overflow: hidden !important;
}

.announcement-bar .flickity-slider {
  display: flex !important;
  align-items: center !important;
  width: max-content !important;
  position: static !important;
  transform: none !important;
  animation: cf-announcement-ticker 38s linear infinite !important;
}
.announcement-bar__item {

  position: static !important;
  left: auto !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: max-content !important;
  padding: 0 2.75rem !important;
}
.announcement-bar__content,
.announcement-bar__link {
  white-space: nowrap !important;
  color: #fff !important;
  text-shadow: none !important;
}
.announcement-bar .flickity-slider::after {
  content: "FREE SHIPPING ON ORDERS OVER $149  •  FREE GIFT WITH EVERY PURCHASE  •  TRY OUR SCENT QUIZ  •";
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0 5.5rem 0 2.75rem;
  color: #fff;
  white-space: nowrap;
}
@keyframes cf-announcement-ticker {
  from { transform: translateX(0) !important; }
  to { transform: translateX(-50%) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar .flickity-slider {
    animation: none !important;
  }
}

.header__menu-icon {
  width: auto !important;
  min-width: 48px;
  padding: 0 8px !important;
}
.header__menu-icon .icon-button {
  display: none !important;
}
.header__menu-icon::after {
  content: "SHOP";
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
}

/* Sonsie-style hero buttons */
.slideshow__button .btn {
  display: inline-block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 14px 32px !important;
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  line-height: 18px !important;
  text-transform: none !important;
  transition: background-color .3s, border-color .3s, color .3s !important;
}
.slideshow__button .btn:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

/* Larger SHOP menu label */
.header__menu-icon::after {
  font-size: 16px !important;
}

/* Announcement ticker: continuous left-to-right motion */
.announcement-bar .flickity-slider {
  animation-name: cf-announcement-right !important;
  animation-direction: normal !important;
}
@keyframes cf-announcement-right {
  from { translate: -50% 0; }
  to { translate: 0 0; }
}

/* Hero button labels in caps */
.slideshow__button .btn {
  text-transform: uppercase !important;
}

/* Keep ticker announcements visually distinct */
.announcement-bar__item {
  display: flex !important;
  align-items: center !important;
  padding: 0 2.5rem !important;
}
.announcement-bar__item::after {
  content: "•";
  display: inline-block;
  margin-left: 5rem;
  color: #fff;
  opacity: .8;
}
.announcement-bar .flickity-slider::after {
  content: "FREE SHIPPING ON ORDERS OVER $149    •    FREE GIFT WITH EVERY PURCHASE    •    TRY OUR SCENT QUIZ    •";
  padding-left: 2.5rem;
  padding-right: 5rem;
}

/* Three separate rotating announcement slides */
.announcement-bar .flickity-slider {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  animation: none !important;
  translate: none !important;
}
.announcement-bar .flickity-slider::after,
.announcement-bar__item::after {
  content: none !important;
  display: none !important;
}
.announcement-bar__item {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: var(--spacing-small) 0 !important;
}

/* Classic candle benefit icons */
.template-product .product__meta > .product__text.product__block--medium {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.template-product .product__meta > .product__text.product__block--medium::before {
  content: "🍃";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.template-product .product__meta > .product__text.product__block--medium::after {
  content: "✓";
  display: inline-flex;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #224414;
  border-radius: 50%;
  color: #224414;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

/* Product Add to Cart — Crowfoot dark green */
.product-form__cart-submit {
  min-height: 60px !important;
  background-color: #224414 !important;
  border-color: #224414 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
.product-form__cart-submit:hover,
.product-form__cart-submit:focus {
  background-color: #1d2923 !important;
  border-color: #1d2923 !important;
  color: #fff !important;
}

/* Clean text-only SHOP drawer */
.drawer-menu__link > .icon.menu-icon {
  display: none !important;
}

/* Continuous left-to-right motion for each announcement slide */
@keyframes cf-announcement-left-to-right {
  from { transform: translateX(-110%); }
  to { transform: translateX(110%); }
}

.announcement-bar__item .announcement-bar__content-wrapper {
  display: block !important;
  width: 100% !important;
  animation: cf-announcement-left-to-right 14s linear infinite !important;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .announcement-bar__item .announcement-bar__content-wrapper {
    animation: none !important;
    transform: none !important;
  }
}

/* Slower, continuously repeated announcement ticker */
.announcement-bar__item .announcement-bar__content-wrapper {
  animation-duration: 25s !important;
}
.announcement-bar__item .announcement-bar__content,
.announcement-bar__item .announcement-bar__content span,
.announcement-bar__item .announcement-bar__link {
  white-space: nowrap !important;
}
.announcement-bar__item:nth-child(1) .announcement-bar__link::after {
  content: "   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149";
}
.announcement-bar__item:nth-child(2) .announcement-bar__link::after {
  content: "   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE";
}
   .announcement-bar__item:nth-child(3) .announcement-bar__link::after {
  content: "   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ";
}

/* Seamless LOHN-style announcement marquee */
@keyframes cf-announcement-seamless-left-to-right {
  from { transform: translateX(-10%); }
  to { transform: translateX(0); }
}
.announcement-bar__item {
  overflow: hidden !important;
}
.announcement-bar__item .announcement-bar__content-wrapper {
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  animation: cf-announcement-seamless-left-to-right 22s linear infinite !important;
  will-change: transform;
}
.announcement-bar__item .announcement-bar__content,
.announcement-bar__item .announcement-bar__content span,
.announcement-bar__item .announcement-bar__link,
.announcement-bar__item .announcement-bar__link::after {
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}
.announcement-bar__item .announcement-bar__content {
  display: block !important;
  width: max-content !important;
  flex: none !important;
}
.announcement-bar__item .announcement-bar__link {
  display: inline-block !important;
  width: max-content !important;
  white-space: nowrap !important;
  font-size: 0 !important;
}
.announcement-bar__item:nth-child(1) .announcement-bar__link::after {
  content: "FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   FREE SHIPPING ON ORDERS OVER $149   •   ";
  font-size: 12px !important;
}
.announcement-bar__item:nth-child(2) .announcement-bar__link::after {
  content: "FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   FREE GIFT WITH EVERY PURCHASE   •   ";
  font-size: 12px !important;
}
.announcement-bar__item:nth-child(3) .announcement-bar__link::after {
  content: "TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   TRY OUR SCENT QUIZ   •   ";
  font-size: 12px !important;
}
/* Build Your Garden cart drawer */
.quick-cart__container {
  width: min(640px, 100vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #f7f4ee !important;
  color: #224414 !important;
}

.quick-cart__cart {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow-y: auto !important;
  background: #f7f4ee !important;
  color: #224414 !important;
}

.quick-cart__header {
  flex: none;
  margin: 0 !important;
  padding: 26px 34px 22px !important;
  background: #224414 !important;
  color: transparent !important;
  font-size: 0 !important;
}

.quick-cart__header::before {
  content: "Your Cart";
  display: inline-block;
  color: #f7f4ee;
  font-family: var(--font-heading-family);
  font-size: 40px;
  line-height: 1.1;
}

.quick-cart__close {
  top: 28px !important;
  right: 30px !important;
  z-index: 3 !important;
  color: #f7f4ee !important;
}

.quick-cart__items {
  flex: none !important;
  overflow: visible !important;
  padding: 26px 34px 8px !important;
  background: #f7f4ee !important;
  color: #224414 !important;
}

.quick-cart__item {
  padding: 22px 0 !important;
  border-bottom: 1px solid #cfc9c1;
  background: #f7f4ee !important;
  color: #224414 !important;
}

.quick-cart__item * {
  color: #224414 !important;
}

.quick-cart__garden:empty {
  display: none;
}

.quick-cart__garden {
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  position: relative !important;
  padding: 18px 34px 22px;
  border-top: 1px solid #cfc9c1;
  background: #f7f4ee;
  color: #224414;
}

.quick-cart__garden-inner {
  width: 100%;
}

.quick-cart__garden-title {
  margin: 0 0 14px;
  color: #224414 !important;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-cart__garden-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-cart__garden-link {
  display: block;
  color: #224414;
  text-decoration: none;
}

.quick-cart__garden-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f7f1e8;
}

.quick-cart__garden-name,
.quick-cart__garden-price {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.quick-cart__garden-price {
  margin-top: 3px;
}

.quick-cart__garden-add {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 1px solid #224414;
  background: #224414;
  color: #224414;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.quick-cart__garden-add:hover {
  background: #224414;
  color: #fff;
}

.quick-cart__footer {
  flex: none;
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin: 0 !important;
  padding: 22px 34px 28px !important;
  border-top: 1px solid #cfc9c1;
  background: #f7f4ee !important;
  color: #224414 !important;
}

.quick-cart__footer * {
  color: #224414 !important;
}

.quick-cart__shipping-progress {
  margin-bottom: 18px;
  text-align: left;
}

.quick-cart__shipping-message {
  margin: 0 0 9px;
  color: #224414 !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-cart__shipping-track {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border: 1px solid #224414;
  background: transparent;
}

.quick-cart__shipping-fill {
  display: block;
  width: 0;
  height: 100%;
  background: #224414;
  transition: width 300ms ease;
}

.quick-cart__review-cart,
.quick-cart__footer .sezzle-checkout-button,
.quick-cart__footer [class*="sezzle"],
.quick-cart__footer [id*="sezzle"] {
  display: none !important;
}

.quick-cart__footer .quick-cart__buy-now {
  display: flex !important;
  width: 100% !important;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  background: #224414 !important;
  color: #fff !important;
}

.quick-cart__footer .quick-cart__buy-now * {
  color: #fff !important;
}

.product-form__shipping-promise {
  margin: 10px 0 0;
  color: #224414;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}

.product-form__botanical-promise {
  margin: 8px 0 0;
  color: #224414;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}

.product-form__essential-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

.product-form__essential-benefits > div {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid #d8d7cf;
  color: #224414;
  font-size: 10px;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-align: left;
}

.product-phase-two-accordions {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #d8d2c5;
  border-radius: 3px;
  background: #f1ede4;
}

.product__long-description {
  margin: 26px 0 0;
  padding-top: 24px;
  border-top: 1px solid #d8d2c5;
}

.product__long-description-heading {
  margin: 0 0 14px;
  color: #224414;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.product__long-description-content {
  color: #224414;
  line-height: 1.75;
}

.product__long-description-content > :first-child {
  margin-top: 0;
}

.product__long-description-content > :last-child {
  margin-bottom: 0;
}

.product-phase-two-accordions .accordion {
  margin: 0;
  background: transparent;
}

.product-phase-two-accordions .accordion__group {
  border-bottom: 1px solid #d8d2c5;
}

.product-phase-two-accordions .accordion:last-child .accordion__group {
  border-bottom: 0;
}

.product-phase-two-accordions .accordion__label {
  min-height: 0;
  padding: 17px 18px;
  color: #224414;
  background: #f1ede4;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-phase-two-accordions .accordion__label:hover {
  background: #e8e2d6;
}

.product-phase-two-accordions .accordion__text {
  padding: 18px !important;
  background: #faf8f3;
  color: #224414;
  line-height: 1.65;
}

.product-phase-two-accordions .accordion__label .icon {
  width: 22px;
  height: 22px;
}

.product-scent-pyramid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 4px 0 8px;
}

.product-scent-pyramid > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border: 1px solid #d8d7cf;
}

.product-scent-pyramid strong {
  color: #224414;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.product-scent-pyramid span {
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 749px) {
  .product-form__essential-benefits {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-form__essential-benefits > div {
    min-height: 0;
  }

  .product-scent-pyramid {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* About page: press and recognition, inspired by an editorial story layout. */
[data-section-id*="logo_list_KXQTxy"] .section__inner {
  max-width: 1240px;
}

.crowfoot-press__intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.crowfoot-press__eyebrow,
.crowfoot-press__publication {
  margin: 0;
  color: #224414;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.crowfoot-press__title {
  margin: 12px 0 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.crowfoot-press__copy {
  max-width: 660px;
  margin: 0 auto;
  color: #224414;
  font-size: 16px;
  line-height: 1.65;
}

[data-section-id*="logo_list_KXQTxy"] .logo-list__list {
  padding: 28px 0;
  border-top: 1px solid rgba(34, 68, 20, 0.25);
  border-bottom: 1px solid rgba(34, 68, 20, 0.25);
}

.crowfoot-press__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(34, 68, 20, 0.25);
  border-bottom: 1px solid rgba(34, 68, 20, 0.25);
}

.crowfoot-press__feature {
  padding: 30px;
}

.crowfoot-press__feature + .crowfoot-press__feature {
  border-left: 1px solid rgba(34, 68, 20, 0.25);
}

.crowfoot-selected {
  margin-top: 54px;
  text-align: center;
}

.crowfoot-selected__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 22px auto 0;
  border-top: 1px solid rgba(34, 68, 20, 0.25);
  border-bottom: 1px solid rgba(34, 68, 20, 0.25);
}

.crowfoot-selected__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px;
  color: #224414;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.crowfoot-selected__item + .crowfoot-selected__item {
  border-left: 1px solid rgba(34, 68, 20, 0.25);
}

.crowfoot-selected__item small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.crowfoot-press__feature h3 {
  min-height: 3.2em;
  margin: 12px 0 26px;
  font-size: 20px;
  line-height: 1.35;
}

.crowfoot-press__feature a {
  color: #224414;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 749px) {
  .crowfoot-press__intro {
    margin-bottom: 30px;
  }

  .crowfoot-press__features {
    display: block;
    margin-top: 32px;
  }

  .crowfoot-press__feature {
    padding: 24px 4px;
  }

  .crowfoot-press__feature + .crowfoot-press__feature {
    border-top: 1px solid rgba(34, 68, 20, 0.25);
    border-left: 0;
  }

  .crowfoot-press__feature h3 {
    min-height: 0;
    margin-bottom: 18px;
  }

  .crowfoot-selected__list {
    display: block;
  }

  .crowfoot-selected__item + .crowfoot-selected__item {
    border-top: 1px solid rgba(34, 68, 20, 0.25);
    border-left: 0;
  }
}

.product-item__botanical-notes {
  margin: 8px auto 0;
  color: #224414;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.45;
  text-transform: uppercase;
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-item__craft-line {
  margin: 5px auto 0;
  color: #66705e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-transform: uppercase;
  min-height: 2.8em;
}

.product-item__reviews {
  min-height: 18px;
  margin-top: 6px;
}

.product-item__reviews .jdgm-prev-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  color: #224414;
  font-size: 11px;
}

.product-item__reviews .jdgm-star {
  color: #224414 !important;
}

.product-item__reviews .jdgm-prev-badge__text {
  display: inline !important;
  visibility: visible !important;
  margin-left: 4px;
  color: #224414 !important;
  font-size: 11px !important;
}

.product-item__reviews .jdgm-prev-badge[data-number-of-reviews="0"] {
  display: none !important;
}

.product__title-group .product__title {
  margin: 0;
  color: #224414;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.98;
}

.product__scent-subtitle {
  margin: 10px 0 0;
  color: #224414;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.product-title-rating-under {
  margin-top: 9px;
}

.product__meta > .shopify-app-block:has(.jdgm-preview-badge) {
  display: none !important;
}

.product-title-rating-under .jdgm-prev-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}

.product-title-rating-under .jdgm-prev-badge__text {
  visibility: visible !important;
}

.product-form__review-quote {
  margin: 14px 0 4px;
  padding: 14px 16px;
  border: 1px solid #d8d7cf;
  background: #f7f4ee;
  color: #224414;
}

.product-form__review-stars {
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.product-form__review-quote blockquote {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-form__review-quote p {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 700;
}

.product-form__review-quote a {
  display: inline-block;
  margin-top: 8px;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: underline;
}

.product-item {
  height: 100%;
}

.product-item .product-item__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-item .product-item__meta,
.product-item .product-item__text {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-item .product-item__product-title {
  display: -webkit-box;
  min-height: 2.8em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-item .product-item__price-wrapper {
  margin-top: auto;
}

@media (min-width: 960px) {
  .product-item--has-quick-add .product-item__inner .product-item__quick-add-button-wrapper {
    display: flex !important;
    position: static !important;
    width: 100% !important;
    margin-top: 14px;
    opacity: 1 !important;
    transform: none !important;
  }

  .product-item--has-quick-add .product-item__inner .product-item__quick-add-container {
    display: none !important;
  }
}

@media (max-width: 749px) {
  .product-item--has-quick-add .product-item__inner .product-item__quick-add-button-wrapper {
    display: flex !important;
    position: static !important;
    width: 100% !important;
    margin-top: 10px;
    opacity: 1 !important;
    transform: none !important;
  }

  .product-item__quick-add-button {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 10px;
  }

  .product-item__botanical-notes {
    font-size: 10px;
    letter-spacing: 0.045em;
    min-height: 4.35em;
    -webkit-line-clamp: 3;
  }

  .product-item__craft-line {
    font-size: 9px;
    letter-spacing: 0.035em;
    min-height: 4.2em;
  }
}

.scent-quiz-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 18px;
  text-align: center;
}

.scent-quiz-intro h1 {
  margin: 0 0 14px;
}

.scent-quiz-intro__promise,
.scent-quiz-intro__note {
  margin: 0 auto;
  max-width: 680px;
}

.scent-quiz-intro__promise {
  color: #224414;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

.scent-quiz-intro__note {
  margin-top: 14px;
  color: #224414;
}

@media (max-width: 600px) {
  .quick-cart__header,
  .quick-cart__items,
  .quick-cart__garden,
  .quick-cart__footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .quick-cart__header::before {
    font-size: 32px;
  }

  .quick-cart__garden-grid {
    gap: 9px;
  }

  .quick-cart__garden-name,
  .quick-cart__garden-price {
    font-size: 12px;
  }
}

@media (max-width: 749px) {
  .template-product {
    padding-bottom: 86px;
  }

  .template-product .product-form__cart-submit {
    position: fixed !important;
    right: 16px !important;
    bottom: 14px !important;
    left: 16px !important;
    z-index: 20 !important;
    width: calc(100% - 32px) !important;
    min-height: 56px !important;
    margin: 0 !important;
    box-shadow: 0 5px 20px rgba(34, 68, 20, 0.24);
  }
}

/* Crowfoot mobile navigation */
@media (max-width: 959px) {
  .drawer-menu, .drawer-menu__panel, .drawer-menu__contents {
    background: #f4efe6 !important;
    color: #49382f !important;
  }
  .drawer-menu a, .drawer-menu button { color: #49382f !important; }
  button.drawer-menu__link {
    display: flex; align-items: center; gap: 12px; width: 100%;
    min-height: 52px; padding: 14px 20px;
    border-bottom: 1px solid rgba(73,56,47,.2);
  }
  button.drawer-menu__link .ff-heading { font-size: 0 !important; }
  button.drawer-menu__link .ff-heading::after {
    content: "Back to menu"; font-size: 16px; font-weight: 600;
  }
  button.drawer-menu__link .menu-icon { order: -1; width: 18px; height: 18px; }
}

/* Crowfoot desktop navigation */
@media (min-width: 960px) {
  .drawer-menu__panel { background: #f4efe6 !important; color: #49382f !important; }
  .drawer-menu__panel a, .drawer-menu__panel button { color: #49382f !important; }
  .drawer-menu__panel a:hover, .drawer-menu__panel a:focus-visible { color: #7a5c4c !important; }
}


/* Desktop menu surface correction */
@media (min-width: 960px) {
  .drawer-menu__primary-links { background: transparent !important; }
  .drawer-menu__close-icon { color: #49382f !important; }
}


/* Final desktop menu surface */
@media (min-width: 960px) {
  .drawer-menu__panel .drawer-menu__primary-links.drawer-menu-list--0 {
    background: #f4efe6 !important;
    background-color: #f4efe6 !important;
  }
}

/* Unified navigation surface */
.drawer-menu__primary-links,
.drawer-menu__primary-links.drawer-menu-list--0 {
  background: #f4efe6 !important;
  background-color: #f4efe6 !important;
}
.drawer-menu__close-icon { color: #49382f !important; }

/* Unified nested navigation surfaces */
.drawer-menu__list,
.drawer-menu__list--sub,
.drawer-menu-list--1,
.drawer-menu-list--2 {
  background: #f4efe6 !important;
  background-color: #f4efe6 !important;
  color: #49382f !important;
}
.drawer-menu__list a,
.drawer-menu__list button { color: #49382f !important; }

/* Clear submenu back control */
button.drawer-menu__link[data-item="back"] {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
button.drawer-menu__link[data-item="back"] .ff-heading {
  font-size: clamp(24px, 3vw, 36px) !important;
}
button.drawer-menu__link[data-item="back"] .ff-heading::after { content: none !important; }
button.drawer-menu__link[data-item="back"] .menu-icon {
  display: block !important;
  order: -1 !important;
  width: 22px !important;
  height: 22px !important;
  flex: 0 0 22px !important;
  transform: rotate(180deg) !important;
}


/* Hide redundant footer brand heading */
.footer__group--1 > h4.footer__header {
  display: none !important;
}


/* Crowfoot gift-set builder */
.cc-bundle-builder {
  margin: 28px 0 24px;
  padding: 24px;
  background: #f4efe6;
  border: 1px solid rgba(73, 56, 47, .18);
  color: #49382f;
}
.cc-bundle-builder__eyebrow {
  margin: 0 0 5px;
  color: #6c7650;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cc-bundle-builder__title {
  margin: 0;
  color: #49382f;
  font-family: var(--font-heading-family);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.05;
}
.cc-bundle-builder__intro {
  margin: 9px 0 20px;
  color: rgba(73, 56, 47, .78);
  font-size: 14px;
  line-height: 1.5;
}
.cc-bundle-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 12px;
}
.cc-bundle-slot {
  min-height: 70px;
  padding: 10px 8px;
  border: 1px dashed rgba(73, 56, 47, .36);
  background: rgba(255,255,255,.48);
  color: #49382f;
  text-align: left;
  cursor: pointer;
}
.cc-bundle-slot.is-filled {
  border-style: solid;
  border-color: #6c7650;
  background: #fff;
}
.cc-bundle-slot__number {
  display: block;
  margin-bottom: 5px;
  color: #6c7650;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cc-bundle-slot__name {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}
.cc-bundle-progress-text {
  margin: 0 0 18px;
  color: #6c7650;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cc-scent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 9px;
}
.cc-scent-card {
  position: relative;
  min-height: 68px;
  padding: 12px 42px 12px 14px;
  border: 1px solid rgba(73,56,47,.22);
  background: #fff;
  color: #49382f;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.cc-scent-card:hover,
.cc-scent-card:focus-visible {
  border-color: #6c7650;
  background: #faf8f2;
  transform: translateY(-1px);
}
.cc-scent-card.is-selected {
  border-color: #6c7650;
  box-shadow: inset 0 0 0 1px #6c7650;
}
.cc-scent-card__ritual {
  display: block;
  color: #6c7650;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cc-scent-card__name {
  display: block;
  margin-top: 4px;
  font-family: var(--font-heading-family);
  font-size: 16px;
  line-height: 1.2;
}
.cc-scent-card__add {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #6c7650;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.cc-scent-card__count {
  position: absolute;
  right: 8px;
  top: 7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 12px;
  background: #49382f;
  color: #fff;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}
#simple-bundles-io-options.cc-bundle-enhanced > label,
#simple-bundles-io-options.cc-bundle-enhanced > select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 640px) {
  .cc-bundle-builder { padding: 20px 16px; margin-top: 22px; }
  .cc-bundle-progress { grid-template-columns: repeat(2, 1fr); }
  .cc-scent-grid { grid-template-columns: 1fr; }
  .cc-scent-card { min-height: 62px; }
}


/* Gift-set scent notes */
.cc-scent-card { min-height: 86px; }
.cc-scent-card__notes {
  display: block;
  margin-top: 5px;
  color: rgba(73, 56, 47, .68);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .015em;
}


/* Four-candle gift set conversion */
form.product-form-template--20897212039351__main .product-form__quantity {
  display: none !important;
}
form.product-form-template--20897212039351__main .cc-bundle-builder {
  margin-top: 18px;
}
@media (max-width: 749px) {
  form.product-form-template--20897212039351__main {
    padding-bottom: 88px;
  }
  form.product-form-template--20897212039351__main .product-form__controls-group--submit {
    position: fixed;
    z-index: 35;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #f4efe6;
    border-top: 1px solid rgba(73, 56, 47, .16);
    box-shadow: 0 -8px 24px rgba(73, 56, 47, .12);
  }
  form.product-form-template--20897212039351__main .product-form__cart-submit {
    min-height: 52px;
  }
}


/* Keep the white homepage wordmark, but make it visible on light inner-page headers. */
body:not(.template-index) .header__logo .regular-logo img {
  filter: brightness(0) saturate(100%) !important;
}

.quick-cart__footer::before {
  content: none;
  display: block;
  margin: 0 0 14px;
  padding: 11px 12px;
  border: 1px solid rgba(34, 68, 20, 0.22);
  background: #f1ede4;
  color: #224414;
  font-size: 10px;
  font-weight: 700;
  line-hdidnt' eight: 1.5;
  text-align: left;
}

/* Shop Now button hover */
a.btn.btn--primary:not([disabled]):hover,
a.btn.btn--primary:not([disabled]):focus {
  background-color: #B79C77 !important;
  border-color: #B79C77 !important;
  color: #ffffff !important;
}
/* Covers slideshow and outline-style Shop Now links */
.slideshow a.btn:hover,
.slideshow a.btn:focus,
a.btn.btn--outline:hover,
a.btn.btn--outline:focus,
.wrbtn.btn--secondary:hover,
.btn.btn--secondary:focus {
  background-color: #B79C77 !important;
  border-color: #B79C77 !important;
  color: #ffffff !important;
}

/* Gold bee + tree icons for candle value lists */
.text-scheme-meta li > span:first-child svg {
  display: none;
}

.text-scheme-meta li > span:first-child {
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  flex: 0 0 24px;
  background-image: url("/cdn/shop/files/beeswax-values-sprite-v3.png?v=1786121776");
  background-size: 400% 200%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
}

.quick-cart__button:hover, .quick-cart__button:focus, .quick-cart__button:active, .quick-cart__button-remove.quick-cart__button:hover, .quick-cart__button-remove.quick-cart__button:focus, .quick-cart__button-remove.quick-cart__button:active {
  background-color: rgba(34, 68, 20, 0.08) !important;
}

.text-scheme-meta li:nth-of-type(2) > span:first-child {
  background-position: 0% 100% !important;
}
  background-color: rgba(34, 68, 20, 0.08) !important;
}

.text-scheme-meta li:nth-of-type(2) > span:first-child {
  background-position: 0% 100% !important;
  background-position: 0% 100% !important;
}


