:root {
	--wd-text-font: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #767676;
	--wd-text-font-size: 15px;
	--wd-title-font: var(--wd-text-font);
	--wd-title-font-weight: 700;
	--wd-title-color: #0E2A4D;
	--wd-entities-title-font: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 500;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: var(--wd-text-font);
	--wd-widget-title-font: var(--wd-title-font);
	--wd-widget-title-font-weight: 600;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: var(--wd-text-font);
	--wd-header-el-font-weight: 700;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 13px;
	--wd-otl-style: dotted;
	--wd-otl-width: 2px;
	--wd-primary-color: #1B4B8C;
	--wd-alternative-color: #C0392B;
	--btn-default-bgcolor: #1B4B8C;
	--btn-default-bgcolor-hover: #efefef;
	--btn-accented-bgcolor: #83b735;
	--btn-accented-bgcolor-hover: #74a32f;
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
	--wd-link-color: #1B4B8C;
	--wd-link-color-hover: #C0392B;
}
.wd-age-verify-wrap {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}
.wd-promo-popup-wrap {
	--wd-popup-width: 800px;
}
:is(.woodmart-woocommerce-layered-nav, .wd-product-category-filter) .wd-scroll-content {
	max-height: 223px;
}
.wd-page-title .wd-page-title-bg img {
	object-fit: cover;
	object-position: center center;
}
.wd-footer {
	background-color: #ffffff;
	background-image: none;
}
.single-post .wd-entry-content:not(.main-footer) h3 {
	font-weight: 700;
	font-size: 22px;
	color: #242424;
}
.mfp-wrap.wd-popup-quick-view-wrap {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1222px;
--wd-form-brd-radius: 0px;
--btn-default-color: #fff;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 0px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-default-box-shadow-active: none;
--btn-default-bottom: 0px;
--btn-accented-bottom-active: -1px;
--btn-accented-brd-radius: 0px;
--btn-accented-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15);
--btn-accented-box-shadow-hover: inset 0 -2px 0 rgba(0, 0, 0, .15);
--wd-brd-radius: 0px;
}

@media (min-width: 1222px) {
section.elementor-section.wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}


.wd-page-title {
background-color: #0a0a0a;
}

/* BEGIN NDN_MANAGED_CODE css:post-heading-numbering */
/* Topic 045 Stage 4 — repo-owned global Custom CSS (managed block).
   Registered in custom-code-manifest.json and deployed into WoodMart Theme
   Settings > Custom CSS by theme:custom-code-apply. The compatibility command
   theme:custom-css-apply targets this same block. Other CSS/JS blocks and all
   unmanaged code are preserved. Edit here, then re-run the gated apply.

   Heading numbering for single-post article content:
     H2 -> upper-roman section number (I, II, III ...)
     H3 -> "section.sub" using the same section counter shown as a plain number
           plus a per-section subsection counter (1.1, 1.2, ...).
   H2 uses counter-set for ndn-sub. counter-reset on the H2 itself creates a
   nested counter that does not reset following sibling H3 headings in article
   DOM, so later sections can otherwise continue at 6.3, 7.5, etc.
   Scoped to .single-post .wd-entry-content:not(.main-footer). The :not(.main-footer)
   guard EXCLUDES THE FOOTER: since 2026-07-01 the footer is a WoodMart HTML Block
   rendered inside .container.main-footer.wd-entry-content, which shares the
   .wd-entry-content class with the article body. Without the guard these article
   rules leak into footer h3 on single-post pages (footer headings showed a
   stray "0.1" section number). Pages, landings (.ndn-lp) and homepage are still
   untouched. */

.single-post .wd-entry-content:not(.main-footer) {
  counter-reset: ndn-sec ndn-sub;
}

.single-post .wd-entry-content:not(.main-footer) h2 {
  counter-increment: ndn-sec;
  counter-set: ndn-sub 0;
}

.single-post .wd-entry-content:not(.main-footer) h2::before {
  content: counter(ndn-sec, upper-roman) ". ";
  font-weight: 700;
}

.single-post .wd-entry-content:not(.main-footer) h3 {
  counter-increment: ndn-sub;
}

.single-post .wd-entry-content:not(.main-footer) h3::before {
  content: counter(ndn-sec) "." counter(ndn-sub) " ";
  font-weight: 700;
}
/* END NDN_MANAGED_CODE css:post-heading-numbering */