/* ==========================================================================
   NLNaturals — Consolidated Custom CSS
   ======================================================================
   ALL custom CSS changes gathered from:
     1. themes/falcon/assets/css/theme.css  (4 custom blocks)
     2. themes/falcon/assets/css/product-redesign.css  (entire file, 1309 lines)

   This file is placed inside the ws_productdisplay MODULE directory so it
   will NOT be overwritten when the Falcon theme is updated.

   HOW TO LOAD (choose one):
   ──────────────────────────
   Option A — Module PHP hook (RECOMMENDED, fully theme-update-safe):
     In modules/ws_productdisplay/src/Module/Front/FrontHooks.php,
     inside hookDisplayHeader() add:
       $this->context->controller->registerStylesheet(
           'nlnaturals-custom',
           'modules/ws_productdisplay/views/css/nlnaturals-custom-all.css',
           ['media' => 'all', 'priority' => 200]
       );

   Option B — Keep the <link> tags in the TPL files (current method):
     themes/falcon/templates/catalog/listing/product-list.tpl  line 28
     themes/falcon/templates/catalog/product.tpl               line 29
     ⚠  These will be lost on theme update — must be re-added.

   After moving to Option A you can DELETE:
     • themes/falcon/assets/css/product-redesign.css
     • The <link> tags in product-list.tpl and product.tpl
     • The 4 custom blocks in _custom.scss / theme.css (listed below)
   ========================================================================== */


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  SECTION 1 — Changes extracted from theme.css / _custom.scss         ║
   ║  These 4 blocks were added directly to the theme's compiled CSS.     ║
   ║  Source SCSS file: themes/falcon/_dev/css/theme/_custom.scss          ║
   ╚════════════════════════════════════════════════════════════════════════╝ */


/* ── 1A. Logo — max-width override ──
   _custom.scss line 1406-1408
   theme.css    line 16042-16052
   ──────────────────────────────────── */
div.header-top__container div.header-top__block--logo .logo {
  max-width: 283px;
}


/* ── 1B. Menu Font — weight + family ──
   _custom.scss line 2239-2245
   theme.css    line 16659-16665
   ──────────────────────────────────── */
div.menu__container div.ets_mm_megamenu div.ets_mm_megamenu_content li.mm_menus_li a .mm_menu_content_title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  min-height: 50px;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}


/* ── 1C. Banner — vertical centering ──
   _custom.scss line 3429-3469
   theme.css    line 17504-17543
   ──────────────────────────────────── */
section.banner__section {
  display: grid !important;
  align-items: center;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}

section.banner__section > * {
  grid-row: 1;
  grid-column: 1;
}

section.banner__section div.background__block {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: calc(60% - 15px) 1fr;
}

section.banner__section div.background__block div.bg__item {
  display: block;
  border-top-right-radius: 21px;
  border-bottom-right-radius: 21px;
}

section.banner__section div.background__block div.bg__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 21px;
  border-bottom-right-radius: 21px;
}

@media (max-width: 1500px) {
  section.banner__section div.background__block {
    display: none;
  }
}

section.banner__section div.content__block {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}
section.banner__section div.content__block div.banner__block,
section.banner__section div.content__block div.banner__block div.banner__item,
section.banner__section div.content__block div.banner__block div.banner_inner,
section.banner__section div.content__block div.banner__block div.banner__image {
  border-radius: 10px;
  overflow: hidden;
}
section.banner__section div.content__block div.banner__block img {
  border-radius: 10px;
}
@media (max-width: 1500px) {
  section.banner__section div.content__block {
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 1500px) {
  section.banner__section div.content__block div.banner__block div.banner__image {
    border-radius: 5px;
    overflow: hidden;
  }
  section.banner__section div.content__block div.banner__block div.banner__image img {
    max-height: 350px;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 1050px) {
  section.banner__section div.content__block div.text__block {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  section.banner__section div.content__block {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  section.banner__section div.content__block div.text__block {
    grid-column: 1;
  }
}


/* ── 1D. Subcategory Circular Thumbnails ──
   _custom.scss line 4824-4899
   theme.css    line 18604-18670
   ──────────────────────────────────── */
section#subcategories.subcat-layout--circular {
  margin-bottom: 30px;
}

section#subcategories.subcat-layout--circular .subcat-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 28px;
  justify-content: center;
  padding: 10px 0;
}

section#subcategories.subcat-layout--circular .subcat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 150px;
  text-align: center;
}

section#subcategories.subcat-layout--circular .subcat-circle-item:hover .subcat-circle-img {
  border-color: var(--main-color, #2d6a4f);
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(45, 106, 79, 0.22);
}

section#subcategories.subcat-layout--circular .subcat-circle-item:hover .subcat-circle-name {
  color: var(--main-color, #2d6a4f);
}

section#subcategories.subcat-layout--circular .subcat-circle-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  background: #f5f1eb;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

section#subcategories.subcat-layout--circular .subcat-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

section#subcategories.subcat-layout--circular .subcat-circle-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--extra-dark-color, #1a1a1a);
  line-height: 1.3;
  transition: color 0.2s;
  word-break: break-word;
}

@media (max-width: 750px) {
  section#subcategories.subcat-layout--circular .subcat-circles {
    gap: 16px 18px;
  }
  section#subcategories.subcat-layout--circular .subcat-circle-item {
    width: 100px;
  }
  section#subcategories.subcat-layout--circular .subcat-circle-img {
    width: 90px;
    height: 90px;
  }
  section#subcategories.subcat-layout--circular .subcat-circle-name {
    font-size: 12px;
  }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  SECTION 2 — Full product-redesign.css                               ║
   ║  Originally at: themes/falcon/assets/css/product-redesign.css        ║
   ║  Contains: Product page redesign, category listing layout,           ║
   ║            variant price cards, Design 12 connected unit,            ║
   ║            responsive rules                                          ║
   ╚════════════════════════════════════════════════════════════════════════╝ */


/* --- CSS Custom Properties ---
   ========================================================================== */
body#product {
  --nl-primary: #2d5f2b;
  --nl-primary-dark: #1e4a1c;
  --nl-primary-light: #3a7a38;
  --nl-secondary: #c8a96e;
  --nl-accent: #f4efe7;
  --nl-dark: #1a1a1a;
  --nl-gray: #6b7280;
  --nl-light: #f9fafb;
  --nl-white: #ffffff;
  --nl-heading-font: 'Fraunces', Georgia, serif;
  --nl-body-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Base Typography ---
   ========================================================================== */
body#product {
  font-family: var(--nl-body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body#product h1,
body#product h2,
body#product h3,
body#product h4,
body#product .h1,
body#product .h2,
body#product .h3,
body#product .h4 {
  font-family: var(--nl-heading-font);
  color: var(--nl-dark);
  font-weight: 400;
}

body#product h5,
body#product h6,
body#product .h5,
body#product .h6 {
  font-family: var(--nl-body-font);
  color: var(--nl-dark);
}

/* --- Breadcrumb ---
   ========================================================================== */
body#product nav.breadcrumb_container {
  font-family: var(--nl-body-font);
}

body#product nav.breadcrumb_container ol.breadcrumb {
  font-size: 13px;
}

body#product nav.breadcrumb_container a {
  color: var(--nl-gray);
}

body#product nav.breadcrumb_container a:hover {
  color: var(--nl-primary);
}

/* --- Product Intro Block ---
   ========================================================================== */
body#product section#intro__block {
  padding: 0;
}

/* --- Image Block (left side) ---
   ========================================================================== */
body#product section#intro__block div.grid-container div.image__block {
  background: #ffffff;
  padding: 30px;
  border-radius: 0;
}

body#product .js-product-images div.product-main-images div.swiper-slide {
  background: transparent;
}

body#product .product-thumbs__elem {
  border-color: rgba(45, 95, 43, 0.15) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

body#product .product-thumbs__elem:hover,
body#product .product-thumbs__elem.active {
  border-color: var(--nl-primary) !important;
}

/* --- Product Flags ---
   ========================================================================== */
body#product ul.product-flags .product-flags__flag {
  background: var(--nl-primary);
  color: #fff;
  border-radius: 0 6px 6px 0 !important;
  font-family: var(--nl-body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

body#product ul.product-flags .product-flags__flag--discount,
body#product ul.product-flags .product-flags__flag--discount-amount,
body#product ul.product-flags .product-flags__flag--discount-percentage {
  background: var(--nl-secondary);
  color: var(--nl-dark);
}

/* --- Category Label ---
   ========================================================================== */
body#product .product-category-label {
  font-family: var(--nl-body-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nl-secondary);
  font-weight: 600;
  margin-bottom: 8px;
}

/* --- Product Name ---
   ========================================================================== */
body#product section#intro__block div.info__block h1,
body#product section#intro__block div.info__block .h1 {
  font-family: var(--nl-heading-font) !important;
  font-size: 2rem !important;
  line-height: 1.2 !important;
  color: #2d5f2b !important;
  font-weight: 400 !important;
  margin-bottom: 16px !important;
}

/* --- Product Description Short ---
   ========================================================================== */
body#product .info__block .product-description {
  font-family: var(--nl-body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

body#product .info__block .product-description p {
  font-family: var(--nl-body-font);
  line-height: 1.7;
}

/* --- USP Features (new static section) ---
   ========================================================================== */
body#product .product-usp-features {
  display: flex;
  gap: 20px;
  margin: 20px 0 8px;
  flex-wrap: wrap;
}

/* --- Novel Food / Kratom Disclaimer ---
   ========================================================================== */
body#product .product-novel-food-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--nl-accent);
  border-left: 3px solid var(--nl-secondary);
  border-radius: 0 6px 6px 0;
  font-family: var(--nl-body-font);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--nl-gray);
}

body#product .product-novel-food-notice i {
  color: var(--nl-secondary);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

body#product .product-usp-features .usp-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-body-font);
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

body#product .product-usp-features .usp-feature i {
  color: var(--nl-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* --- Product Prices ---
   ========================================================================== */
body#product .product-prices .product-price .price,
body#product .product-price .price.price--lg {
  font-family: var(--nl-heading-font) !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: var(--nl-primary) !important;
}

body#product .product-price .price.price--regular {
  font-family: var(--nl-body-font);
  color: var(--nl-gray) !important;
  text-decoration: line-through;
}

body#product .product-price span.stock__notice {
  background: rgba(45, 95, 43, 0.12) !important;
  color: var(--nl-primary) !important;
  font-family: var(--nl-body-font);
  font-size: 12px;
  font-weight: 600;
}

body#product .tax-shipping-delivery-label {
  font-family: var(--nl-body-font);
  font-size: 12px;
  color: var(--nl-gray) !important;
}

/* --- Product Variants ---
   ========================================================================== */
body#product .info__block div.product-variants .h6 {
  font-family: var(--nl-body-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--nl-dark) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body#product .info__block div.product-variants select.custom-select {
  font-family: var(--nl-body-font);
  border-radius: 8px;
  border: 2px solid rgba(45, 95, 43, 0.25);
  background-color: var(--nl-accent);
  font-size: 14px;
  color: var(--nl-dark);
}

body#product .info__block div.product-variants select.custom-select:focus {
  border-color: var(--nl-primary);
  box-shadow: 0 0 0 2px rgba(45, 95, 43, 0.1);
}

/* --- Add to Cart Section ---
   ========================================================================== */
body#product .product-add-to-cart div.product-quantity .qty .input-group {
  border-color: rgba(45, 95, 43, 0.25) !important;
  background: var(--nl-accent) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

body#product .product-add-to-cart div.product-quantity .qty input#quantity_wanted {
  background: var(--nl-accent) !important;
  color: var(--nl-primary) !important;
  font-family: var(--nl-body-font);
  font-weight: 600;
  border-color: rgba(45, 95, 43, 0.25) !important;
}

body#product .product-add-to-cart div.product-quantity .qty span.input-group-btn button {
  background: var(--nl-accent) !important;
  color: var(--nl-primary) !important;
}

body#product .product-add-to-cart div.product-quantity .add button.add-to-cart {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  border-radius: 8px !important;
  font-family: var(--nl-body-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  transition: all 0.3s !important;
  color: #fff !important;
}

body#product .product-add-to-cart div.product-quantity .add button.add-to-cart:hover {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
  box-shadow: 0 4px 12px rgba(45, 95, 43, 0.3);
  transform: translateY(-1px);
}

body#product .product-add-to-cart div.product-quantity .add button.add-to-cart:disabled:not(:hover):not(:focus),
body#product .product-add-to-cart div.product-quantity .add button.add-to-cart.disabled:not(:hover):not(:focus) {
  background: #ccc !important;
  border-color: #ccc !important;
}

body#product .product-add-to-cart div.product-quantity .add[data-oos-prod="true"] button.add-to-cart {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
}

/* Wishlist / Action buttons */
body#product .product-add-to-cart div.product-quantity .col-auto.action__cta a.btn {
  border-color: var(--nl-secondary) !important;
  border-radius: 8px !important;
  color: var(--nl-gray);
  transition: all 0.3s;
}

body#product .product-add-to-cart div.product-quantity .col-auto.action__cta a.btn:hover {
  border-color: var(--nl-primary) !important;
  color: var(--nl-primary);
}

/* --- Special CTA Block (tablecombz custom attribute layout) ---
   ========================================================================== */

/* Layout container */
body#product section.special__cta_block div.new_attr_layout {
  max-width: 100% !important;
  margin-top: 20px;
}

body#product section.special__cta_block div.new_attr_layout.multiple__block {
  max-width: 100% !important;
}

/* Price block */
body#product section.special__cta_block div.new_attr_layout div.price__block {
  margin-bottom: 20px;
}

body#product section.special__cta_block div.new_attr_layout div.price__block .price {
  font-family: var(--nl-heading-font) !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  color: var(--nl-primary) !important;
}

body#product section.special__cta_block div.new_attr_layout div.price__block .regular-price,
body#product section.special__cta_block div.new_attr_layout div.price__block .product-discount .regular-price {
  color: var(--nl-gray) !important;
  font-family: var(--nl-body-font);
  text-decoration: line-through;
}

/* Options block (variant grid) */
body#product section.special__cta_block div.new_attr_layout div.options__block {
  grid-gap: 12px !important;
  margin-bottom: 20px !important;
}

body#product section.special__cta_block div.new_attr_layout.multiple__block div.options__block {
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)) !important;
}

/* Individual variant option cards */
body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item {
  border: 2px solid rgba(45, 95, 43, 0.2) !important;
  border-radius: 8px !important;
  color: var(--nl-primary) !important;
  font-family: var(--nl-heading-font) !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
  background: var(--nl-white) !important;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item:hover {
  border-color: var(--nl-primary) !important;
  box-shadow: 0 2px 8px rgba(45, 95, 43, 0.12);
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.selected {
  background-color: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  color: #fff !important;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.selected div.item__text {
  color: rgba(255, 255, 255, 0.8) !important;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.selected div.item__price span {
  color: #fff !important;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item div.item__price {
  font-weight: 700;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item div.item__price span.old__price {
  color: var(--nl-gray) !important;
  text-decoration: line-through;
  font-weight: normal;
  font-size: 12px;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item div.item__text {
  color: var(--nl-gray) !important;
  font-size: 13px;
}

/* Out of stock variant cards */
body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.out-of-stock {
  background: #f0f0f0 !important;
  border-color: #e0e0e0 !important;
  cursor: not-allowed;
  opacity: 1;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.out-of-stock div.item__price span.item__price {
  color: #999 !important;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.out-of-stock div.item__text {
  color: #aaa !important;
}

body#product section.special__cta_block div.new_attr_layout div.options__block div.attr__item.out-of-stock:hover {
  border-color: #e0e0e0 !important;
  box-shadow: none !important;
}

body#product .sold-out-badge {
  display: inline-block;
  background: #555;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

body#product section.special__cta_block div.new_attr_layout.multiple__block div.options__block div.attr__item.out-of-stock::before,
body#product section.special__cta_block div.new_attr_layout.multiple__block div.options__block div.attr__item.out-of-stock::after {
  display: none !important;
}

/* ── Staffelkorting — Design F: Outline + Best Filled ── */
body#product section.special__cta_block div.new_attr_layout div.special__prices div.sp_price__block {
  border: none !important;
  background: none !important;
  margin-bottom: 20px;
  font-family: var(--nl-body-font);
  padding: 0 !important;
}

body#product section.special__cta_block div.new_attr_layout div.special__prices div.sp_price__block div.block__header {
  display: none !important;
}

body#product .staffel-title {
  font-family: var(--nl-heading-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--nl-dark);
  margin-bottom: 12px;
}

body#product .content__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Base row — outline style */
body#product .staffel-row {
  background: transparent !important;
  border: 2px solid rgba(45, 95, 43, 0.2) !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
  cursor: pointer;
}

body#product .staffel-row.staffel-active {
  border-color: var(--nl-primary) !important;
  box-shadow: 0 0 0 3px rgba(45, 95, 43, 0.15);
}

body#product .staffel-row.staffel-best.staffel-active {
  box-shadow: 0 0 0 3px rgba(45, 95, 43, 0.3);
}

/* Selected tier (matches current quantity) */
body#product .staffel-row.staffel-selected {
  border-color: var(--nl-primary) !important;
  background: rgba(45, 95, 43, 0.04) !important;
}

body#product .staffel-row.staffel-best.staffel-selected {
  background: var(--nl-primary) !important;
  box-shadow: 0 2px 12px rgba(45, 95, 43, 0.2);
}

body#product .staffel-row::before,
body#product .staffel-row::after {
  display: none !important;
}

body#product .staffel-row:hover {
  border-color: var(--nl-primary) !important;
  box-shadow: 0 2px 12px rgba(45, 95, 43, 0.1);
  transform: scale(1.01);
}

/* Left side: icon + text */
body#product .staffel-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

body#product .staffel-icon {
  width: 40px;
  height: 40px;
  background: var(--nl-accent);
  color: var(--nl-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

body#product .staffel-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--nl-dark);
}

/* Right side: price + unit */
body#product .staffel-right {
  text-align: right;
}

body#product .staffel-price {
  font-family: var(--nl-heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--nl-primary);
}

body#product .staffel-unit {
  font-size: 11px;
  color: var(--nl-gray);
  margin-top: 3px;
}

/* ── Best tier (last valid row) — filled green ── */
body#product .staffel-row.staffel-best {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  color: #fff !important;
}

body#product .staffel-row.staffel-best .staffel-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body#product .staffel-row.staffel-best .staffel-text {
  color: #fff;
}

body#product .staffel-row.staffel-best .staffel-price {
  color: #fff;
}

body#product .staffel-row.staffel-best .staffel-unit {
  color: rgba(255, 255, 255, 0.7);
}

body#product .staffel-row.staffel-best:hover {
  background: var(--nl-primary-dark, #1e4a1c) !important;
  border-color: var(--nl-primary-dark, #1e4a1c) !important;
  box-shadow: 0 4px 20px rgba(45, 95, 43, 0.25);
}

/* Old format overrides (hide old elements if any remain) */
body#product section.special__cta_block div.new_attr_layout div.special__prices div.sp_price__block div.price__item div.item_prcnt {
  color: var(--nl-primary) !important;
}

/* Action container (qty + add-to-cart) */
body#product section.special__cta_block div.new_attr_layout div.action__container div.action__inner {
  grid-gap: 12px !important;
}

body#product section.special__cta_block div.new_attr_layout div.action__container div.action__inner div.quantity-input-group {
  background: var(--nl-accent) !important;
  border: 2px solid rgba(45, 95, 43, 0.25) !important;
  border-radius: 8px !important;
}

body#product section.special__cta_block div.new_attr_layout div.action__container div.action__inner div.quantity-input-group input {
  background: var(--nl-accent) !important;
  color: var(--nl-primary) !important;
  font-family: var(--nl-body-font);
  border-right-color: rgba(45, 95, 43, 0.25) !important;
}

body#product section.special__cta_block div.new_attr_layout div.action__container div.action__inner div.quantity-input-group span.quantity-input-buttons button i {
  color: var(--nl-primary) !important;
}

/* Add to cart button */
body#product section.special__cta_block div.new_attr_layout div.action__container button.btn-primary,
body#product section.special__cta_block div.new_attr_layout div.action__container button.add-to-cart {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  border-radius: 8px !important;
  font-family: var(--nl-body-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  transition: all 0.3s !important;
}

body#product section.special__cta_block div.new_attr_layout div.action__container button.btn-primary:hover,
body#product section.special__cta_block div.new_attr_layout div.action__container button.add-to-cart:hover {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
  box-shadow: 0 4px 12px rgba(45, 95, 43, 0.3);
  transform: translateY(-1px);
}

body#product section.special__cta_block div.new_attr_layout div.action__container button.btn-primary:disabled,
body#product section.special__cta_block div.new_attr_layout div.action__container button.add-to-cart:disabled {
  background: #ccc !important;
  border-color: #ccc !important;
  opacity: 1 !important;
}

body#product section.special__cta_block div.new_attr_layout div.action__container .add[data-oos-prod="true"] button.add-to-cart {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
}

/* --- Hide helper class (used by tablecombz to toggle Add to cart / Out of stock) ---
   ========================================================================== */
body#product .hide {
  display: none !important;
}

/* --- Hide social sharing on product page ---
   ========================================================================== */
body#product .info__block .product-additional-info {
  display: none !important;
}

/* --- Product USP List (hook-based) ---
   ========================================================================== */
body#product .info__block div.usp_list {
  margin-top: 20px;
}

body#product .info__block div.usp_list div.single__usp {
  font-family: var(--nl-body-font);
  font-size: 13px;
  color: #555;
}

/* --- USP Reassurance Block (feature-based) ---
   ========================================================================== */
body#product section#intro__block div.center-container div.reassurance__container {
  background: var(--nl-accent);
  border-radius: 8px;
  padding: 18px 32px;
  border: 1px solid rgba(200, 169, 110, 0.2);
}

body#product section#intro__block div.center-container div.reassurance__container span {
  font-family: var(--nl-body-font);
  font-size: 14px;
  color: var(--nl-dark);
  font-weight: 500;
}

body#product section#intro__block div.center-container div.reassurance__container svg path {
  fill: var(--nl-primary);
}

/* --- Product Tabs ---
   ========================================================================== */
body#product section#intro__block div.block__desc_details div.product-tabs {
  border: none;
  background: transparent;
}

body#product section#intro__block div.block__desc_details div.product-tabs div.card-header {
  background: transparent;
  border: none;
  padding: 0;
}

body#product section#intro__block div.block__desc_details div.product-tabs ul.card-header-tabs {
  border-bottom: 2px solid #eee;
  gap: 0;
}

body#product section#intro__block div.block__desc_details div.product-tabs li.nav-item a {
  font-family: var(--nl-body-font) !important;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--nl-gray);
  border: none !important;
  border-bottom: 2px solid transparent !important;
  padding: 14px 24px !important;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: transparent !important;
}

body#product section#intro__block div.block__desc_details div.product-tabs li.nav-item a:hover {
  color: var(--nl-primary);
}

body#product section#intro__block div.block__desc_details div.product-tabs li.nav-item a.active {
  color: var(--nl-primary) !important;
  border-bottom-color: var(--nl-primary) !important;
  font-weight: 700;
}

/* Tab Content */
body#product div.product-tabs div.card-body {
  padding: 28px 0 !important;
  margin-top: 0 !important;
}

body#product div.product-tabs .tab-content h3,
body#product div.product-tabs .tab-content .h3 {
  font-family: var(--nl-heading-font);
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--nl-dark);
  font-weight: 400;
}

body#product div.product-tabs .tab-content p,
body#product div.product-tabs .product-description p {
  font-family: var(--nl-body-font);
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

body#product div.product-tabs .tab-content ul {
  padding-left: 20px;
}

body#product div.product-tabs .tab-content li {
  font-family: var(--nl-body-font);
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* Product Features Data Sheet */
body#product dl.product__sheet {
  border-color: #eee !important;
  border-radius: 8px !important;
  overflow: hidden;
}

body#product dl.product__sheet div.detail__inner {
  font-family: var(--nl-body-font);
  font-size: 13px;
}

body#product dl.product__sheet div.detail__inner:nth-child(even) {
  background: var(--nl-accent) !important;
}

body#product dl.product__sheet div.detail__inner dt.feature__label {
  color: var(--nl-dark);
  font-weight: 600;
}

body#product dl.product__sheet div.detail__inner dd.feature__value {
  color: #555;
}

/* --- Accessories / Related Products ---
   ========================================================================== */
body#product div.accesory__block div.heading-block,
body#product div.accesory__block div.heading__block {
  border-bottom-color: #eee !important;
}

body#product div.accesory__block div.heading-block h3,
body#product div.accesory__block div.heading__block h3 {
  font-family: var(--nl-heading-font) !important;
  font-size: 1.25rem !important;
  color: var(--nl-dark) !important;
  font-weight: 400 !important;
}

/* Related product miniature cards */
body#product div.accesory__block article.product-miniature {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

body#product div.accesory__block article.product-miniature:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

body#product div.accesory__block .product-miniature__thumb {
  background: var(--nl-accent);
}

body#product div.accesory__block .product-miniature__thumb img {
  transition: transform 0.3s;
}

body#product div.accesory__block article.product-miniature:hover .product-miniature__thumb img {
  transform: scale(1.03);
}

body#product div.accesory__block .product-miniature__title,
body#product div.accesory__block .product-miniature__title a {
  font-family: var(--nl-heading-font) !important;
  font-size: 15px !important;
  line-height: 1.3;
  color: var(--nl-dark) !important;
  font-weight: 400 !important;
}

body#product div.accesory__block .product-miniature__title a:hover {
  color: var(--nl-primary) !important;
}

body#product div.accesory__block .product-miniature__pricing .price {
  font-family: var(--nl-heading-font) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--nl-primary) !important;
}

body#product div.accesory__block div.inner-accesory__block button.btn-primary {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  border-radius: 8px !important;
  font-family: var(--nl-body-font);
}

body#product div.accesory__block div.inner-accesory__block button.btn-primary:hover {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
}

/* --- Product Footer Section ---
   ========================================================================== */
body#product section#product__footer {
  font-family: var(--nl-body-font);
}

body#product section#product__footer h2,
body#product section#product__footer .h2 {
  font-family: var(--nl-heading-font);
  color: var(--nl-dark);
  font-weight: 400;
}

/* Featured products in footer */
body#product section#product__footer article.product-miniature .product-miniature__title a {
  font-family: var(--nl-heading-font);
  color: var(--nl-dark);
  font-weight: 400;
}

body#product section#product__footer article.product-miniature .product-miniature__title a:hover {
  color: var(--nl-primary);
}

body#product section#product__footer .product-miniature__pricing .price {
  font-family: var(--nl-heading-font) !important;
  color: var(--nl-primary) !important;
  font-weight: 700 !important;
}

body#product section#product__footer .product-miniature__thumb {
  background: var(--nl-accent);
  border-radius: 10px;
  overflow: hidden;
}

body#product section#product__footer article.product-miniature:hover .product-miniature__thumb img {
  transform: scale(1.03);
  transition: transform 0.3s;
}

/* --- Product Discounts Section ---
   ========================================================================== */
body#product section.product-discounts div.discount__item {
  background: var(--nl-accent);
  border-radius: 8px;
}

body#product section.product-discounts div.discount__item .discount__label {
  color: var(--nl-primary);
  font-family: var(--nl-body-font);
}

body#product section.product-discounts div.discount__item div.bottom__block {
  background: var(--nl-primary);
  border-radius: 0 0 8px 8px;
}

/* --- Login to see prices ---
   ========================================================================== */
body#product .login-to-see-prices {
  background: var(--nl-accent) !important;
  border-color: var(--nl-secondary) !important;
  color: var(--nl-dark) !important;
  border-radius: 8px;
  font-family: var(--nl-body-font);
}

body#product .login-to-see-prices .btn-primary {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  border-radius: 8px !important;
  font-family: var(--nl-body-font);
}

/* --- Product Availability Badge ---
   ========================================================================== */
body#product .product-add-to-cart span.badge {
  font-family: var(--nl-body-font) !important;
  border-radius: 6px;
}

body#product .product-add-to-cart span.badge.badge-success {
  background: rgba(45, 95, 43, 0.12) !important;
  color: var(--nl-primary) !important;
}

/* --- Product Modal (image zoom) ---
   ========================================================================== */
body#product div#product-modal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

/* --- General overrides for the product page ---
   ========================================================================== */
body#product .btn-primary:not(.search-icon-btn) {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  font-family: var(--nl-body-font);
  border-radius: 8px !important;
}

body#product .btn-primary:not(.search-icon-btn):hover,
body#product .btn-primary:not(.search-icon-btn):focus {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
}

body#product .btn-secondary {
  background: var(--nl-primary) !important;
  border-color: var(--nl-primary) !important;
  font-family: var(--nl-body-font);
  border-radius: 8px !important;
}

body#product .btn-secondary:hover,
body#product .btn-secondary:focus {
  background: var(--nl-primary-dark) !important;
  border-color: var(--nl-primary-dark) !important;
}

body#product .btn-outline-primary,
body#product .btn-outline-secondary {
  border-color: var(--nl-primary);
  color: var(--nl-primary);
  font-family: var(--nl-body-font);
  border-radius: 8px !important;
}

body#product .btn-outline-primary:hover,
body#product .btn-outline-secondary:hover {
  background: var(--nl-primary);
  border-color: var(--nl-primary);
  color: #fff;
}

body#product strong {
  color: var(--nl-primary);
}

/* --- Bulk Contact Banner ---
   ========================================================================== */
body#product .bulk-contact-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 95, 43, 0.08);
  border-left: 3px solid var(--nl-primary);
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  margin-top: 12px;
  font-family: var(--nl-body-font);
  font-size: 13px;
  color: var(--nl-dark);
}

body#product .bulk-contact-banner i {
  color: var(--nl-primary);
  font-size: 16px;
  flex-shrink: 0;
}

body#product .bulk-contact-banner a {
  color: var(--nl-primary);
  font-weight: 600;
  text-decoration: none;
}

body#product .bulk-contact-banner a:hover {
  text-decoration: underline;
}

/* --- Category / Listing Page ---
   ========================================================================== */
div.products-ov-list article.product-miniature div.webmid_cart__block form div.price__block .price {
  font-family: Fraunces, Georgia, serif;
}

/* Hide product features on category listing (keep markup, hide via CSS) */
div.products-ov-list article.product-miniature dl.product-features.data-sheet {
  display: none !important;
}

/* --- Category Listing: Full-width layout (hide CTA column) ---
   ========================================================================== */
div.products-ov-list article.product-miniature {
  grid-template-columns: 225px 1fr !important;
}

div.products-ov-list article.product-miniature .product-miniature__cta {
  display: none !important;
}

/* --- Variant Row (cards + add-to-cart on same line) ---
   ========================================================================== */
.variant-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

/* --- Variant Price Cards (category listing) ---
   ========================================================================== */
.variant-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.variant-card {
  border: 2px solid #e8e5de;
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #fff;
  min-width: 80px;
  flex: 0 1 auto;
}

.variant-card:hover {
  border-color: #3d6b35;
}

.variant-card.active {
  border-color: #3d6b35;
  background: #f0f7ee;
}

.variant-card__label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #2c2c2c;
  margin-bottom: 2px;
}

.variant-card__price {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d5027;
}

.variant-card__stock--out {
  display: block;
  font-size: 0.7rem;
  color: #b44;
  font-weight: 600;
  margin-top: 2px;
}

.variant-card.sold-out {
  background: #f5f5f5;
  opacity: 0.55;
  cursor: not-allowed;
}

.variant-card.sold-out .variant-card__price {
  color: #999;
}

/* --- Design 12: Connected Unit (fused qty stepper + add button) ---
   ========================================================================== */
.variant-add-form {
  flex-shrink: 0;
  margin-left: auto;
}

.connected-unit {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #2d5f2b;
  height: 42px;
  flex-shrink: 0;
}

.qty-step {
  width: 34px;
  height: 100%;
  background: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #2d5f2b;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
  padding: 0;
}

.qty-step:hover:not(:disabled) {
  background: #f0f7ee;
}

.qty-step:disabled {
  color: #999;
  cursor: not-allowed;
}

.qty-input {
  width: 36px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid #d5e8d3;
  border-right: 1px solid #d5e8d3;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d5f2b;
  -moz-appearance: textfield;
  padding: 0;
  background: #fff;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:disabled {
  color: #999;
  background: #f5f5f5;
}

.add-part {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2d5f2b;
  color: #fff;
  padding: 0 16px;
  height: 100%;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.15s;
  line-height: 1;
}

.add-part:hover:not(:disabled) {
  background: #1e4a1c;
}

.add-part:disabled {
  background: #999;
  cursor: not-allowed;
}

.add-part svg {
  flex-shrink: 0;
}

.connected-unit--oos {
  border-color: #999;
}

.connected-unit--oos .qty-step {
  color: #999;
}

/* --- Responsive ---
   ========================================================================== */
@media (max-width: 1200px) {
  body#product section#intro__block div.grid-container div.image__block {
    padding: 20px;
  }

  body#product section#intro__block div.info__block h1 {
    font-size: 1.65rem !important;
  }

  body#product .product-usp-features {
    gap: 14px;
  }
}

@media (max-width: 750px) {
  body#product section#intro__block div.grid-container div.image__block {
    padding: 15px;
  }

  body#product section#intro__block div.info__block h1 {
    font-size: 1.4rem !important;
  }

  body#product .product-usp-features {
    flex-direction: column;
    gap: 10px;
  }

  body#product .product-usp-features .usp-feature {
    font-size: 12px;
  }

  body#product section#intro__block div.center-container div.reassurance__container {
    padding: 16px 20px;
  }

  body#product div.product-tabs li.nav-item a {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  /* Category listing: stack variant row on mobile */
  .variant-row {
    gap: 8px;
  }

  .variant-add-form {
    margin-left: 0;
    width: 100%;
  }

  .connected-unit {
    width: 100%;
  }

  .add-part {
    flex: 1;
    justify-content: center;
  }
}
