/** Shopify CDN: Minification failed

Line 218:25 Expected identifier but found "{"
Line 218:26 Unexpected "{"
Line 218:36 Expected ":"

**/


/* =========================================
   MOBILE MENU PROMO + CATEGORY BLOCK
========================================= */

#NavDrawer .drawer__scrollable{
  padding:0;
}
#NavDrawer .mobile-nav {
    margin: 0;
}
/* Promo Banner */
.okh-mob-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(135deg, #17120f 0%, #241b15 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.okh-mob-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(198,145,92,0.18), transparent 45%);
  pointer-events: none;
}

.okh-mob-promo-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.okh-mob-promo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c6915c;
  margin-bottom: 10px;
}

.okh-mob-promo-title {
  font-size: 17px;
  font-weight: 700;
  color: #f1e7dc;
  line-height: 1.2;
  margin-bottom: 6px;
}

.okh-mob-promo-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 14px;
}

.okh-mob-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  background: #a77a54;
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.okh-mob-promo-cta:hover {
  background: #b98961;
  transform: translateY(-1px);
}

.okh-mob-promo-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.okh-mob-promo-img {
  width: 108px;
  min-width: 108px;
  height: 108px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.okh-mob-promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section Label */
.okh-mob-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

/* Category Grid */
.okh-mob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Category Card */
.okh-mob-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.okh-mob-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198,145,92,0.28);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.okh-mob-card-img {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}

.okh-mob-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.okh-mob-card-body {
  flex: 1;
  min-width: 0;
}

.okh-mob-card-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #f3ece4;
}

.okh-mob-card-count {
  margin-top: 6px;
}

.okh-mob-sale {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(198,145,92,0.15);
  color: #c6915c;
  padding: 5px 7px;
  border-radius: 999px;
}

/* Small screens */
@media screen and (max-width: 750px) {
  .okh-mobile-menu-extras {
    background-color: var(--colorDrawers);
    padding: 11px;
    margin: 10px -20px 0 -20px;  
        background-color:{{ settings.color_drawer_background | default: "#1c1d1d" }};
    background-color:var(--colorDrawers)
  }
}
@media screen and (max-width: 380px) {

  .okh-mob-promo {
    gap: 10px;
    padding: 12px;
  }

  .okh-mob-promo-title {
    font-size: 16px;
  }

  .okh-mob-promo-sub {
    font-size: 11px;
  }

  .okh-mob-promo-img {
    width: 88px;
    min-width: 88px;
    height: 88px;
  }

  .okh-mob-grid {
    gap: 10px;
  }

  .okh-mob-card {
    padding: 9px;
    gap: 10px;
    min-height: 78px;
  }

  .okh-mob-card-img {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .okh-mob-card-name {
    font-size: 12px;
  }
}




.reason-block {
  color: #000;
}

.reason-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.reason-block__grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.2fr);
  gap: 32px;
  align-items: flex-start;
}

/* MEDIA */
.reason-block__media {
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
}

.reason-block__media img,
.reason-block__media video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* TEXT */
.reason-block__eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #00733d;
  margin-bottom: 4px;
}

.reason-block__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.reason-block__body {
  font-size: 16px;
  line-height: 1.7;
}

.reason-block__body p {
  margin: 10px 0 0;
}

/* FAQ */
.reason-block__faq {
  margin-top: 20px;
  border-top: 1px solid #000;
}

.reason-block__faq-item {
  border-bottom: 1px solid #000;
}

.reason-block__faq-summary {
  cursor: pointer;
  padding: 16px 0 16px 22px;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.reason-block__faq-summary::-webkit-details-marker {
  display: none;
}

.reason-block__faq-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #000;
}

.reason-block__faq-toggle {
  width: 16px;
  height: 16px;
  position: relative;
}

.reason-block__faq-toggle::before,
.reason-block__faq-toggle::after {
  content: "";
  position: absolute;
  background: #000;
}

.reason-block__faq-toggle::before {
  width: 16px;
  height: 2px;
  top: 7px;
}

details:not([open]) .reason-block__faq-toggle::after {
  width: 2px;
  height: 16px;
  left: 7px;
}

.reason-block__faq-content {
  padding: 0 24px 16px 24px;
  font-size: 15px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .reason-block__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reason-block__title {
    font-size: 24px;
  }

  .reason-block__faq-summary {
    font-size: 16px;
  }
}


.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #000;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}

.review-card {
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.review-person {
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
}

.review-location {
  font-size: 13px;
  color: #666;
}

.review-time {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-stars {
  max-width: 130px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #222;
}

.review-verified img {
  width: 18px;
}

.review-title {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .reviews-section {
    padding: 0 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 14px;
  }
}

.qa-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  color: #000;
}

.qa-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 16px 0;
  text-align: left;
}

.qa-list {
  border-top: 1px solid #000;
}

.qa-row {
  display: grid;
  grid-template-columns: minmax(0,220px) minmax(0,1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #000;
}

.qa-q {
  font-weight: 700;
  font-size: 15px;
}

.qa-a {
  font-size: 15px;
  line-height: 1.6;
}

.qa-a p {
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .qa-wrap {
    padding: 0 14px;
  }

  .qa-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .qa-q,
  .qa-a {
    font-size: 14px;
  }
}








.atb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  
}

/* TEXT */
.atb-text {
  text-align: center;
}

.atb-topline {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.atb-subline {
  font-size: 13px;
  margin-top: 4px;
}

/* TIMER */
.atb-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.atb-seg {
  background: var(--timer-bg);
  color: var(--timer-text);
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.atb-num {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.atb-lbl {
  font-size: 10px;
  margin-top: 4px;
  opacity: .85;
}

.atb-colon {
  font-size: 20px;
  font-weight: 800;
}

/* CTA */
.atb-cta {
   background: var(--btn-bg);
  color: var(--btn-text);
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.atb-cta:hover {
  opacity: .9;
}

.atb-cta .arrow {
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .atb-inner {
    gap: 16px;
  }
  .atb-cta {
    display: none;
  }
}
















.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* SOURCE (CENTERED) */
.hero-source {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* FULL WIDTH DIVIDER */
.hero-divider-full {
  width: 100vw;
  height: 2px;
  margin: 0 calc(50% - 50vw) 48px;
}

/* CONTENT — FIXED 1200px */
.image-text-hero {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* HEADING */
.hero-heading {
  margin: 0 0 24px;
  line-height: 1.2;
}

/* DESCRIPTION (RICH TEXT) */
.hero-description {
  max-width: 900px;
  line-height: 1.6;
}

.hero-description p {
  margin: 0 0 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-image-wrap {
    max-width: 100%;
  }

}




.pf-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* HERO BOX */
.pf-hero-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #5f8f2d;
  border-radius: 16px;
  background: #e5f1d7;
  overflow: hidden;
  margin-bottom: 56px;
}

.pf-hero-left {
  padding: 40px;
  text-align: center;
}

.pf-hero-left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pf-note {
  margin-top: 16px;
  font-weight: 600;
}

.pf-btn {
  display: inline-block;
  background: #1aaa3a;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.pf-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRID */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pf-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.pf-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.pf-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.pf-name {
  display: block;
  font-weight: 700;
  margin-top: 4px;
}

.pf-verified {
  font-size: 13px;
  color: #666;
}

/* BOTTOM BUTTON */
.pf-bottom-btn {
  text-align: center;
  margin-top: 32px;
}

/* MOBILE */
@media (max-width: 900px) {
  .pf-hero-box {
    grid-template-columns: 1fr;
  }

  .pf-grid {
    grid-template-columns: 1fr;
  }

  .pf-heading {
    font-size: 24px;
  }
}







.article-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* AUTHOR */
.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.author-image {
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 15px;
}

.author-date {
  font-size: 13px;
  color: #777;
}

/* IMAGE BASE */
.article-image {
  margin: 48px 0;
}

.article-image img {
  width: var(--img-width);
  max-width: 100%;
  height: auto;
  display: block;
}

/* ALIGNMENT OPTIONS */
.article-image.align-center img {
  margin-left: auto;
  margin-right: auto;
}

.article-image.align-left img {
  margin-left: 0;
  margin-right: auto;
}

.article-image.align-right img {
  margin-left: auto;
  margin-right: 0;
}

/* FULL WIDTH */
.article-image.is-full {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-image.is-full img {
  width: 100vw;
}

/* CAPTION */
.article-image figcaption {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 16px;
  font-size: 14px;
  color: #555;
}

/* TEXT */
.article-heading {
  font-size: 28px;
  font-weight: 700;
  margin: 56px 0 16px;
}

.article-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-divider {
  width: 100%;
  height: 2px;
  background: #000;
  margin: 64px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .article-image img {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .article-heading {
    font-size: 22px;
  }

  .article-text {
    font-size: 16px;
  }
}