/* LED Theme CSS bundle — post — generated, do not edit */

/* --- led-theme-variables --- */
/* =============================================================
   Design tokens — CSS custom properties
   Source of truth for all LED Theme styling.

   Typography tokens bridge to inc/typography.php (--led-* vars).
   When the plugin was active it set --led-*; now the theme does it.
   Fallback values are the built-in defaults from LED_Theme_Typography.
   ============================================================= */

:root {

	/* ----------------------------------------------------------------
	   Brand palette — Primary (green)
	   Source: Figma Color → Color Foundations (single board)
	   ---------------------------------------------------------------- */
	--color-primary-950: #00411a;
	--color-primary-900: #005c25;
	--color-primary-800: #007b38;
	--color-primary-700: #088c43;
	--color-primary-600: #27a147;
	--color-primary-500: #46b74b;
	--color-primary-400: #71c663;
	--color-primary-300: #9cd67a;
	--color-primary-200: #b0e4a2;
	--color-primary-100: #caefd0;
	--color-primary-50:  #eaf5ef;

	--color-primary:          var(--color-primary-700);
	--color-primary-hover:    var(--color-primary-900);
	--color-primary-bright:   var(--color-primary-400);
	--color-primary-muted:    var(--color-primary-200);

	/* ----------------------------------------------------------------
	   Brand palette — Secondary (blue)
	   Source: Figma Color → Color Foundations
	   ---------------------------------------------------------------- */
	--color-secondary-950: #00167b;
	--color-secondary-900: #2640b9;
	--color-secondary-800: #2461d8;
	--color-secondary-700: #2173eb;
	--color-secondary-600: #1c86ff;
	--color-secondary-500: #159af4;
	--color-secondary-400: #0eade8;
	--color-secondary-300: #4ebbf3;
	--color-secondary-200: #8ecaff;
	--color-secondary-100: #bbdeff;
	--color-secondary-50:  #e3f2ff;

	--color-secondary:       var(--color-secondary-600);
	--color-secondary-hover: var(--color-secondary-900);

	/* ----------------------------------------------------------------
	   Warning palette
	   ---------------------------------------------------------------- */
	--color-warning-900: #8c2419;
	--color-warning-800: #b53228;
	--color-warning-700: #cc3d32;
	--color-warning-600: #e6473e;
	--color-warning-500: #fd7251;
	--color-warning-400: #fd9078;
	--color-warning-300: #fdad98;
	--color-warning-200: #fdcdc0;
	--color-warning-100: #fce4e0;
	--color-warning-50:  #faeae8;

	--color-warning: var(--color-warning-600);

	/* ----------------------------------------------------------------
	   Accent — Orange (tertiary buttons)
	   ---------------------------------------------------------------- */
	--color-orange-600: #ff6e4b;
	--color-orange-500: #ff6e4b;
	--color-orange-400: #ff9b3f;
	--color-orange-100: #ffe3dc;
	--color-orange-50:  #fff5f2;

	/* ----------------------------------------------------------------
	   Neutral palette
	   ---------------------------------------------------------------- */
	--color-neutral-900: #000000;
	--color-neutral-800: #2b2b2b;
	--color-neutral-700: #565656;
	--color-neutral-600: #737373;
	--color-neutral-500: #8f8f8f;
	--color-neutral-400: #a5a5a5;
	--color-neutral-300: #bfbfbf;
	--color-neutral-200: #d1d1d1;
	--color-neutral-100: #ededed;
	--color-neutral-50:  #f5f5f5;
	--color-neutral-0:   #ffffff;

	/* Legacy gray scale — mapped to brand neutrals / tints */
	--color-white:    var(--color-neutral-0);
	--color-black:    var(--color-neutral-900);
	--color-gray-100: var(--color-neutral-100);
	--color-gray-200: var(--color-neutral-200);
	--color-gray-400: var(--color-neutral-400);
	--color-gray-500: var(--color-neutral-500);
	--color-gray-700: var(--color-neutral-700);
	--color-gray-900: var(--color-neutral-900);

	/* ----------------------------------------------------------------
	   Semantic / surface colours
	   ---------------------------------------------------------------- */
	--color-bg:          var(--color-white);
	--color-bg-footer:   var(--color-white);
	--color-bg-subtle:   var(--color-primary-50);
	--color-border:      var(--color-neutral-200);
	--color-text:        var(--color-black);
	--color-text-muted:  var(--color-neutral-700);
	--color-text-subtle: var(--color-neutral-400);
	--color-link:        var(--color-secondary);
	--color-success:     var(--color-primary);
	--color-success-light: var(--color-primary-400);
	--color-danger:      var(--color-warning);

	/* ----------------------------------------------------------------
	   Buttons — style-guide tokens
	   ---------------------------------------------------------------- */
	--btn-height:           49px;
	--btn-height-bordered:  calc(var(--btn-height) - (2 * var(--btn-border-width)));
	--btn-padding-x:        1.5rem;
	--btn-radius:           8px;
	--btn-border-width:     1px;

	/* Primary (solid green) */
	--btn-primary-bg:           var(--color-primary-500); /* foundations primary-bg */
	--btn-primary-bg-hover:     var(--color-primary-bright);
	--btn-primary-bg-disabled:  var(--color-primary-100);
	--btn-primary-color:          var(--color-white);
	--btn-primary-color-disabled: var(--color-white);

	/* Secondary — green outline */
	--btn-secondary-green-bg:              var(--color-white);
	--btn-secondary-green-border:          var(--color-primary-500);
	--btn-secondary-green-color:           var(--color-primary-500);
	--btn-secondary-green-bg-hover:        var(--color-primary-bright);
	--btn-secondary-green-color-hover:     var(--color-white);
	--btn-secondary-green-border-disabled: var(--color-primary-muted);
	--btn-secondary-green-color-disabled:  var(--color-primary-muted);

	/* Secondary — dark outline */
	--btn-secondary-dark-bg:              var(--color-white);
	--btn-secondary-dark-border:          var(--color-black);
	--btn-secondary-dark-color:           var(--color-black);
	--btn-secondary-dark-bg-hover:        var(--color-black);
	--btn-secondary-dark-color-hover:     var(--color-white);
	--btn-secondary-dark-border-disabled: var(--color-neutral-100);
	--btn-secondary-dark-color-disabled:  var(--color-neutral-100);

	/* Tertiary — white / text */
	--btn-tertiary-bg:              var(--color-white);
	--btn-tertiary-color:           var(--color-black);
	--btn-tertiary-bg-hover:        var(--color-primary-bright);
	--btn-tertiary-color-hover:     var(--color-white);
	--btn-tertiary-bg-disabled:     var(--color-neutral-100);
	--btn-tertiary-color-disabled:  var(--color-white);

	/* Tertiary — orange */
	--btn-orange-bg:          var(--color-orange-600);
	--btn-orange-bg-hover:    var(--color-orange-400);
	--btn-orange-bg-disabled: var(--color-orange-100);
	--btn-orange-color:       var(--color-white);

	/* Tertiary — blue */
	--btn-blue-bg:          var(--color-secondary);
	--btn-blue-bg-hover:    var(--color-secondary-500);
	--btn-blue-bg-disabled: var(--color-secondary-100);
	--btn-blue-color:       var(--color-white);

	/* Link-style */
	--btn-link-color:          var(--color-secondary);
	--btn-link-color-hover:    var(--color-secondary-500);
	--btn-link-color-disabled: var(--color-neutral-400);
	--btn-link-opacity-disabled: 0.4;

	/* Table cells — bridge to inc/typography.php (--led-table-*) */
	--table-cell-border:         var(--led-table-cell-border, 1px solid var(--color-border));
	--table-cell-color:          var(--led-table-cell-color, var(--color-text-muted));
	--table-cell-color-desktop:  var(--led-table-cell-color-desktop, var(--color-text));
	--table-cell-bg:             var(--led-table-cell-bg, color-mix(in srgb, var(--color-border) 10%, transparent));

	/* ----------------------------------------------------------------
	   Typography — font families
	   Bridge to led-fonts-plugin (--led-*-font-family).
	   Fallbacks used when plugin is inactive.
	   ---------------------------------------------------------------- */
	--font-family-heading-fallback: Oswald, "Arial Black", Arial, sans-serif;
	--font-family-body-fallback:    Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--font-family-button-fallback: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--font-family-price-fallback:   Oswald, "Arial Black", Arial, sans-serif;
	--font-family-heading: var(--led-heading-font-family, var(--font-family-heading-fallback));
	--font-family-body:    var(--led-body-font-family,    var(--font-family-body-fallback));
	--font-family-button:  var(--led-button-font-family,  var(--font-family-button-fallback));
	--font-family-price:   var(--led-price-font-family,   var(--font-family-price-fallback));

	/* ----------------------------------------------------------------
	   Typography — font sizes (mobile → desktop)
	   Bridge to inc/typography.php (--led-* custom properties).
	   ---------------------------------------------------------------- */

	/* Mobile (< 768px) */
	--font-size-h1:    var(--led-h1-size,              30px);
	--font-size-h2:    var(--led-h2-size,              20px);
	--font-size-h3:    var(--led-h3-size,              18px);
	--font-size-h4:    var(--led-h4-size,              17px);
	--font-size-h5:    var(--led-h5-size,              16px);
	--font-size-body:  var(--led-body-font-size,       15px);
	--font-size-small: var(--led-body-small-font-size, 13px);
	--font-size-btn:   var(--led-button-font-size,     16px);
	--font-size-price: var(--led-price-font-size,      16px);
	--font-size-list:  var(--led-list-font-size,       15px);

	/* Tablet (768px – 1023px) — midpoints between mobile and desktop */
	--font-size-h1-tablet:    var(--led-h1-size-tablet,              35px);
	--font-size-h2-tablet:    var(--led-h2-size-tablet,              22px);
	--font-size-h3-tablet:    var(--led-h3-size-tablet,              19px);
	--font-size-h4-tablet:    var(--led-h4-size-tablet,              17px);
	--font-size-h5-tablet:    var(--led-h5-size-tablet,              16px);
	--font-size-body-tablet:  var(--led-body-font-size-tablet,       16px);
	--font-size-small-tablet: var(--led-body-small-font-size-tablet, 13px);
	--font-size-btn-tablet:   var(--led-button-font-size-tablet,     17px);
	--font-size-price-tablet: var(--led-price-font-size-tablet,      20px);
	--font-size-list-tablet:  var(--led-list-font-size-tablet,       16px);

	/* Desktop (≥ 981px type / ≥ 1024px chrome) */
	--font-size-h1-desktop:    var(--led-h1-size-desktop,              40px);
	--font-size-h2-desktop:    var(--led-h2-size-desktop,              25px);
	--font-size-h3-desktop:    var(--led-h3-size-desktop,              20px);
	--font-size-h4-desktop:    var(--led-h4-size-desktop,              17px);
	--font-size-h5-desktop:    var(--led-h5-size-desktop,              16px);
	--font-size-body-desktop:  var(--led-body-font-size-desktop,       16px);
	--font-size-small-desktop: var(--led-body-small-font-size-desktop, 14px);
	--font-size-btn-desktop:   var(--led-button-font-size-desktop,     18px);
	--font-size-price-desktop: var(--led-price-font-size-desktop,      25px);
	--font-size-list-desktop:  var(--led-list-font-size-desktop,       16px);

	/* Extra Small — Figma Body/Extra Small (10px, all breakpoints) */
	--font-size-xxs: 0.625rem;

	/* ----------------------------------------------------------------
	   Typography — weights
	   ---------------------------------------------------------------- */
	--font-weight-heading: var(--led-heading-weight, 600);
	--font-weight-body:    var(--led-body-weight,    400);
	--font-weight-button:  var(--led-button-weight,  700);
	--font-weight-price:   var(--led-price-weight,   700);

	/* Utility */
	--font-weight-light:    300;
	--font-weight-normal:   400;
	--font-weight-semibold: 600;
	--font-weight-bold:     700;

	/* ----------------------------------------------------------------
	   Typography — text transform
	   ---------------------------------------------------------------- */
	--text-transform-heading: var(--led-heading-case, uppercase);
	--text-transform-body:    var(--led-body-case,    none);
	--text-transform-button:  var(--led-button-case,  none);
	--text-transform-price:   var(--led-price-case,   none);

	/* ----------------------------------------------------------------
	   Typography — line-heights & letter-spacing
	   ---------------------------------------------------------------- */
	--line-height-heading: var(--led-heading-line-height, 1.1em);
	--line-height-body:    var(--led-body-line-height,    1.5em);
	--line-height-button:  var(--led-button-line-height,  1.5em);
	--line-height-price:   var(--led-price-line-height,   1.5em);
	--line-height-base:    1.5;
	--line-height-relaxed: 1.6;

	--letter-spacing-heading: var(--led-heading-letter-spacing, normal);
	--letter-spacing-body:    var(--led-body-letter-spacing,    normal);
	--letter-spacing-button:  var(--led-button-letter-spacing,  normal);
	--letter-spacing-price:   var(--led-price-letter-spacing,   normal);
	--letter-spacing-wide:    0.06em;
	--letter-spacing-wider:   0.07em;

	/* ----------------------------------------------------------------
	   Typography — heading margins
	   ---------------------------------------------------------------- */
	--heading-margin-top:             var(--led-heading-margin-top,             1.25rem);
	--heading-margin-bottom:          var(--led-heading-margin-bottom,          0.5rem);
	--heading-margin-top-desktop:     var(--led-heading-margin-top-desktop,     1.25rem);
	--heading-margin-bottom-desktop:  var(--led-heading-margin-bottom-desktop,  1rem);

	/* ----------------------------------------------------------------
	   Typography — list indent
	   ---------------------------------------------------------------- */
	--list-padding:         var(--led-list-padding,         0 12px);
	--list-padding-desktop: var(--led-list-padding-desktop, 0 24px);

	/* ----------------------------------------------------------------
	   Layout — shared content shell (.led-wrap)
	   max-width + side gutters. Figma: Layout/max-width, Layout/gutter,
	   Layout/gutter-mobile on Section / Header / Footer outer frames.
	   ---------------------------------------------------------------- */
	--layout-max-width:     1368px;
	/* Outside the content column (Figma: Section/bleed pad, not .led-wrap) */
	/* Figma Spacing modes: Mobile / Tablet / Desktop on Layout/gutter + Layout/content-top */
	--layout-gutter:           1.5rem;  /* 24 — desktop + tablet (Figma Layout/gutter) */
	--layout-gutter-mobile:    1rem;    /* 16 — <768 (Figma Layout/gutter · Mobile, also Layout/gutter-mobile) */
	--layout-content-top:      2rem;    /* 32 — desktop (Figma Layout/content-top) */
	--layout-content-top-tablet: 1.5rem; /* 24 */
	--layout-content-top-mobile: 1rem;   /* 16 */
	--layout-narrow-max:    48rem;    /* ~768px reading column */
	--layout-section-y:     2rem;
	--layout-section-y-sm:  1.5rem;

	/* ----------------------------------------------------------------
	   Spacing scale
	   ---------------------------------------------------------------- */
	--space-1:  0.25rem;   /*  4px */
	--space-2:  0.5rem;    /*  8px */
	--space-3:  0.75rem;   /* 12px */
	--space-4:  1rem;      /* 16px */
	--space-5:  1.25rem;   /* 20px */
	--space-6:  1.5rem;    /* 24px */
	--space-8:  2rem;      /* 32px */
	--space-10: 2.5rem;    /* 40px */
	--space-12: 3rem;      /* 48px */
	--space-16: 4rem;      /* 64px — Figma Spacing Space/16 */

	/* ----------------------------------------------------------------
	   Border & radius
	   ---------------------------------------------------------------- */
	--border-width:        1px;
	--border-color:        var(--color-border);
	--border-radius-sm:    4px;
	--border-radius-md:    var(--led-image-border-radius, 8px);  /* matches plugin */
	--border-radius-full:  9999px;

	/* ----------------------------------------------------------------
	   Transitions
	   ---------------------------------------------------------------- */
	--transition-fast: 0.15s ease;
	--transition-base: 0.18s ease;
	--transition-slow: 0.3s ease;

	/* ----------------------------------------------------------------
	   Breakpoints — reference only (use directly in @media queries)

	   Mobile:  < 768px
	   Tablet:  768px – 1023px
	   Desktop: ≥ 1024px (header chrome)
	            ≥ 981px  (typography / Divi-aligned type ramp)

	   --bp-sm:     580px  (legacy footer dense)
	   --bp-tablet: 768px
	   --bp-md:     980px
	   --bp-header: 1024px
	   --bp-lg:     1200px
	   ---------------------------------------------------------------- */
}


/* --- led-theme-base --- */
/*
 * Base — thin normalize (not Tailwind Preflight).
 *
 * Replaces Divi’s old global resets without resetting lists/headings/buttons
 * that typography.css / buttons.css / WooCommerce own.
 *
 * Load after variables, before utilities.
 */

/* -------------------------------------------------------------------------
   Box model
   ------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   Document
   ------------------------------------------------------------------------- */

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
}

/* -------------------------------------------------------------------------
   Media
   ------------------------------------------------------------------------- */

img,
video,
canvas {
	max-width: 100%;
	height: auto;
}

img {
	border-style: none;
}

/* -------------------------------------------------------------------------
   Forms — inherit type; keep native look (buttons.css styles .led-btn)
   ------------------------------------------------------------------------- */

button,
input,
optgroup,
select,
textarea {
	font: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	appearance: button;
	cursor: pointer;
}

textarea {
	resize: vertical;
}

/* -------------------------------------------------------------------------
   Links / misc
   ------------------------------------------------------------------------- */

a {
	background-color: transparent;
}

[hidden] {
	display: none !important;
}


/* --- led-theme-utilities --- */
/* =============================================================
   Utilities — helpers + shared layout

   Naming (BEM):
     .led-{block}
     .led-{block}__{element}
     .led-{block}--{modifier}
     .led-{block}__{element}--{modifier}

   Shared width shell: .led-wrap
   ============================================================= */

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.led-skip-link:focus {
	position: fixed;
	top: var(--space-2, 8px);
	left: var(--space-2, 8px);
	z-index: 100000;
	width: auto;
	height: auto;
	padding: var(--space-2, 8px) var(--space-4, 16px);
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: var(--color-white, #fff);
	color: var(--color-black, #000);
	border-radius: var(--btn-radius, 4px);
	box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
	text-decoration: none;
	font-family: var(--font-family-body);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-semibold);
}

/* -------------------------------------------------------------------------
   .led-wrap — site content width (page / header / footer)

   Figma parallel: Section / Header / Footer put side gutters on the outer
   (Section frame or bleed band); .led-wrap stays pad 0 so the content
   column is a full 1368 on desktop. In CSS there is no separate Section
   node — gutters are the width inset below (same visual).

     desktop/tablet → --layout-gutter (24) each side
     mobile <768    → --layout-gutter-mobile (16) each side
   ------------------------------------------------------------------------- */

.led-wrap {
	width:          calc(100% - (2 * var(--layout-gutter, 1.5rem)));
	max-width:      var(--layout-max-width, 1368px);
	margin-inline:  auto;
	padding-inline: 0;
	box-sizing:     border-box;
}

@media (max-width: 767px) {
	.led-wrap {
		width: calc(100% - (2 * var(--layout-gutter-mobile, 1rem)));
	}
}

.led-wrap--narrow {
	max-width: var(--layout-narrow-max, 48rem);
}

/* Edge-to-edge: no gutter inset (full-bleed bands that still use the class). */
.led-wrap--flush {
	width:          100%;
	padding-inline: 0;
}

.led-wrap--full {
	max-width: none;
}

/* -------------------------------------------------------------------------
   .led-h1–.led-h5 — heading scale on any element (e.g. <h2 class="led-h3">)

   !important is only here so the helper beats tag rules and Divi Customizer.
   Do not re-declare these in overrides.css.
   ------------------------------------------------------------------------- */

.led-h1, .led-h2, .led-h3, .led-h4, .led-h5 {
	font-family:    var(--font-family-heading, Oswald, "Arial Black", Arial, sans-serif);
	font-weight:    var(--font-weight-heading);
	text-transform: var(--text-transform-heading, uppercase);
	letter-spacing: var(--letter-spacing-heading);
	line-height:    var(--line-height-heading);
	margin-top:     var(--heading-margin-top);
	margin-bottom:  var(--heading-margin-bottom);
}

.led-h1 { font-size: var(--font-size-h1) !important; }
.led-h2 { font-size: var(--font-size-h2) !important; }
.led-h3 { font-size: var(--font-size-h3) !important; }
.led-h4 { font-size: var(--font-size-h4) !important; }
.led-h5 { font-size: var(--font-size-h5) !important; }

@media (min-width: 768px) and (max-width: 980px) {
	.led-h1 { font-size: var(--font-size-h1-tablet) !important; }
	.led-h2 { font-size: var(--font-size-h2-tablet) !important; }
	.led-h3 { font-size: var(--font-size-h3-tablet) !important; }
	.led-h4 { font-size: var(--font-size-h4-tablet) !important; }
	.led-h5 { font-size: var(--font-size-h5-tablet) !important; }
}

@media (min-width: 981px) {
	.led-h1, .led-h2, .led-h3, .led-h4, .led-h5 {
		margin-top:    var(--heading-margin-top-desktop, var(--heading-margin-top));
		margin-bottom: var(--heading-margin-bottom-desktop, var(--heading-margin-bottom));
	}

	.led-h1 { font-size: var(--font-size-h1-desktop) !important; }
	.led-h2 { font-size: var(--font-size-h2-desktop) !important; }
	.led-h3 { font-size: var(--font-size-h3-desktop) !important; }
	.led-h4 { font-size: var(--font-size-h4-desktop) !important; }
	.led-h5 { font-size: var(--font-size-h5-desktop) !important; }
}

/* -------------------------------------------------------------------------
   Type helpers — body / small / xxs / price

   Full body stack so helpers beat tag rules (e.g. h3.led-small).
   !important on font-size only (matches prior .led-small behavior).
   ------------------------------------------------------------------------- */

.led-body {
	font-family:    var(--font-family-body, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
	font-size:      var(--font-size-body) !important;
	font-weight:    var(--font-weight-body);
	line-height:    var(--line-height-body);
	letter-spacing: var(--letter-spacing-body);
	text-transform: var(--text-transform-body, none);
}

.led-small, .small-text, .small-body-text {
	font-family:    var(--font-family-body, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
	font-size:      var(--font-size-small) !important;
	font-weight:    var(--font-weight-body);
	line-height:    var(--line-height-body);
	letter-spacing: var(--letter-spacing-body);
	text-transform: var(--text-transform-body, none);
}

.led-xxs,
.led-extra-small {
	font-family:    var(--font-family-body, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
	font-size:      var(--font-size-xxs);
	font-weight:    var(--font-weight-body);
	line-height:    1.2;
	letter-spacing: var(--letter-spacing-body);
	text-transform: none;
}

.led-price {
	font-family:    var(--font-family-price);
	font-size:      var(--font-size-price);
	font-weight:    var(--font-weight-price);
	line-height:    var(--line-height-price);
	letter-spacing: var(--letter-spacing-price);
	text-transform: var(--text-transform-price, none);
}

@media (min-width: 768px) and (max-width: 980px) {
	.led-body {
		font-size: var(--font-size-body-tablet, var(--font-size-body)) !important;
	}

	.led-small, .small-text, .small-body-text {
		font-size: var(--font-size-small-tablet, var(--font-size-small)) !important;
	}

	.led-price {
		font-size: var(--font-size-price-tablet, var(--font-size-price));
	}
}

@media (min-width: 981px) {
	.led-body {
		font-size: var(--font-size-body-desktop, var(--font-size-body)) !important;
	}

	.led-small, .small-text, .small-body-text {
		font-size: var(--font-size-small-desktop, var(--font-size-small)) !important;
	}

	.led-price {
		font-size: var(--font-size-price-desktop, var(--font-size-price));
	}
}


/* --- led-theme-typography --- */
/*
 * Typography — static rules using theme tokens from variables.css.
 *
 * Dynamic values (font families, sizes, weights …) are populated at runtime
 * as --led-* custom properties by inc/typography.php, then bridged to
 * --font-family-* / --font-size-* etc. by variables.css.
 *
 * body.led-typography is always on the frontend (inc/typography.php).
 * Heading / body / small / price helpers live in utilities.css.
 */

/* -------------------------------------------------------------------------
   Font rendering
   ------------------------------------------------------------------------- */

* {
    -webkit-font-smoothing:  antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering:          optimizeLegibility;
}

/* -------------------------------------------------------------------------
   Base — body owns the text scale (Figma Body/Default)

   Divi sets `body { font-size: 100% }` (often 11px). Token + !important
   on body; copy tags inherit so they cannot fall back to that 100%.
   ------------------------------------------------------------------------- */

html body.led-typography {
    font-family:    var(--font-family-body, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
    font-size:      var(--font-size-body) !important;
    font-weight:    var(--font-weight-body);
    text-transform: var(--text-transform-body, none);
    letter-spacing: var(--letter-spacing-body);
    line-height:    var(--line-height-body);
    color:          var(--color-text);
}

.led-typography :is(p, li, blockquote, dd, dt, figcaption),
.led-typography :is(p, li) a {
    font-family:    inherit;
    font-size:      inherit;
    font-weight:    inherit;
    line-height:    inherit;
    letter-spacing: inherit;
}

.led-typography ul:where(:not(.led-header-dropdown)),
.led-typography ol {
    font-family: inherit;
    font-size:   var(--font-size-list);
    line-height: inherit;
    padding:     var(--list-padding, 0 12px);
}

/* -------------------------------------------------------------------------
   Links
   ------------------------------------------------------------------------- */

a {
    color: var(--color-link);
}

a:hover:not(.led-btn):not(.green-btn):not(.blue-btn):not(.custom-shop-btn):not(.contact-for-pricing-btn):not(.blurb-cta):not(.button):not(.wp-block-button__link):not(.product-info-button):not(
    .shop-all-button,
    .featured-collabs-filter,
    .cta-item,
    .led-cart__clear
) {
    color: var(--color-link);
}

/* -------------------------------------------------------------------------
   Headings
   ------------------------------------------------------------------------- */

.led-typography :is(h1, h2, h3, h4, h5, h6) {
    font-family:    var(--font-family-heading, Oswald, "Arial Black", Arial, sans-serif);
    font-weight:    var(--font-weight-heading);
    text-transform: var(--text-transform-heading, uppercase);
    letter-spacing: var(--letter-spacing-heading);
    line-height:    var(--line-height-heading);
    margin-top:     var(--heading-margin-top);
    margin-bottom:  var(--heading-margin-bottom);
    padding-bottom: 0;
}

.led-typography h1 { font-size: var(--font-size-h1); }
.led-typography h2 { font-size: var(--font-size-h2); }
.led-typography h3 { font-size: var(--font-size-h3); }
.led-typography h4 { font-size: var(--font-size-h4); }
.led-typography h5 { font-size: var(--font-size-h5); }
.led-typography h6 { font-size: var(--font-size-h5); }

.led-typography :is(h1, h2, h3, h4, h5, h6) a {
    font-family:     inherit;
    font-weight:     inherit;
    text-transform:  inherit;
    letter-spacing:  inherit;
    text-decoration: none;
    color:           inherit;
}

.led-typography :is(h1, h2, h3, h4, h5, h6) a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.button,
.wp-block-button__link {
    font-family:    var(--font-family-button, Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
    font-size:      var(--font-size-btn);
    font-weight:    var(--font-weight-button);
    text-transform: var(--text-transform-button, none);
    letter-spacing: var(--letter-spacing-button);
    line-height:    var(--line-height-button);
}

/* -------------------------------------------------------------------------
   Lists — global fallback (content areas use scoped rules above)
   ------------------------------------------------------------------------- */

ul, ol {
    line-height: var(--line-height-body);
}

/* -------------------------------------------------------------------------
   Tablet  (768px – 980px)
   ------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 980px) {
    html body.led-typography {
        font-size: var(--font-size-body-tablet, var(--font-size-body)) !important;
    }

    .led-typography h1 { font-size: var(--font-size-h1-tablet); }
    .led-typography h2 { font-size: var(--font-size-h2-tablet); }
    .led-typography h3 { font-size: var(--font-size-h3-tablet); }
    .led-typography h4 { font-size: var(--font-size-h4-tablet); }
    .led-typography h5 { font-size: var(--font-size-h5-tablet); }

    .led-typography ul:where(:not(.led-header-dropdown)),
    .led-typography ol {
        font-size: var(--font-size-list-tablet, var(--font-size-list));
        padding:   var(--list-padding, 0 12px);
    }

    button,
    input[type="submit"],
    input[type="button"],
    input[type="reset"],
    .button,
    .wp-block-button__link {
        font-size: var(--font-size-btn-tablet, var(--font-size-btn));
    }
}

/* -------------------------------------------------------------------------
   Desktop  (≥ 981 px — matches Divi breakpoint)
   ------------------------------------------------------------------------- */

@media (min-width: 981px) {
    html body.led-typography {
        font-size: var(--font-size-body-desktop, var(--font-size-body)) !important;
    }

    .led-typography h1 { font-size: var(--font-size-h1-desktop); }
    .led-typography h2 { font-size: var(--font-size-h2-desktop); }
    .led-typography h3 { font-size: var(--font-size-h3-desktop); }
    .led-typography h4 { font-size: var(--font-size-h4-desktop); }
    .led-typography h5 { font-size: var(--font-size-h5-desktop); }
    .led-typography h6 { font-size: var(--font-size-h5-desktop); }

    .led-typography :is(h1, h2, h3, h4, h5, h6) {
        margin-top:    var(--heading-margin-top-desktop, var(--heading-margin-top));
        margin-bottom: var(--heading-margin-bottom-desktop, var(--heading-margin-bottom));
    }

    .led-typography ul:where(:not(.led-header-dropdown)),
    .led-typography ol {
        font-size: var(--font-size-list-desktop, var(--font-size-list));
        padding:   var(--list-padding-desktop, 0 24px);
    }

    button,
    input[type="submit"],
    input[type="button"],
    input[type="reset"],
    .button,
    .wp-block-button__link {
        font-size: var(--font-size-btn-desktop, var(--font-size-btn));
    }
}


/* --- led-theme-page --- */
/*
 * Page template — BEM (.led-page / .led-crumbs)
 *
 *   body.led-page | --classic
 *   .led-page__root          — #main-content
 *   .led-page__inner         — width row (+ .led-wrap)
 *   .led-page__grid          — #content-area
 *   .led-page__grid--classic
 *   .led-page__primary       — #left-area
 *   .led-page__main          — <main>
 *   .led-page__main--classic
 *   .led-page__article
 *   .led-page__header / __title — classic page title (H1)
 *   .led-page__content       — typography / tables / images scope
 *   .led-page__pagination
 *   .led-crumbs              — breadcrumb block
 *   .led-404                 — 404 banner; categories reuse .led-home__*
 *
 * Width tokens: .led-wrap in utilities.css
 */

/* -------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */

html body.led-page .led-page__grid--classic {
	width: 100%;
}

html body.led-page .led-page__primary {
	width: 100%;
}

html body.led-page .led-page__main--classic {
	display:       block;
	width:         100%;
	margin-inline: auto;
	padding-block: var(--layout-content-top, 2rem) var(--space-12, 3rem);
	box-sizing:    border-box;
}

html body.led-page .led-page__header {
	margin: 0 0 var(--heading-margin-bottom, 0.5rem);
}

html body.led-page .led-page__title {
	margin-top: 0;
}

/* -------------------------------------------------------------------------
   Content
   ------------------------------------------------------------------------- */

html body.led-page .led-page__content {
	padding:    0;
	border:     0;
	background: transparent;
}

html body.led-page .led-page__content > :first-child {
	margin-top: 0;
}

html body.led-page .led-page__content > :last-child {
	margin-bottom: 0;
}

html body.led-page .led-page__content :is(h1, h2, h3, h4, h5, h6) {
	padding-bottom: 0;
}

html body.led-page .led-page__pagination {
	margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------
   Breadcrumb — .led-crumbs
   ------------------------------------------------------------------------- */

html body.led-page .led-crumbs {
	margin:      0 0 var(--space-5, 1.25rem);
	padding-top: var(--space-2, 0.5rem);
	font-size:   var(--font-size-small);
	line-height: var(--line-height-body, 1.5);
	color:       var(--color-text-muted, #565656);
}

@media (min-width: 768px) {
	html body.led-page .led-crumbs {
		font-size: var(--font-size-small-tablet, var(--font-size-small));
	}
}

@media (min-width: 981px) {
	html body.led-page .led-crumbs {
		font-size: var(--font-size-small-desktop, var(--font-size-small));
	}
}

html body.led-page .led-crumbs__list {
	display:     flex;
	flex-wrap:   wrap;
	align-items: center;
	gap:         0.35rem 0;
	margin:      0;
	padding:     0;
	list-style:  none;
}

.led-crumbs :is(.led-crumbs__list, .led-crumbs__item, .led-crumbs__link, .led-crumbs__item--current, .led-crumbs__plugin, a, span) {
	font-size:   inherit !important;
	line-height: inherit;
}

html body.led-page .led-crumbs__item {
	display:     inline-flex;
	align-items: center;
	margin:      0;
	padding:     0;
}

html body.led-page .led-crumbs__item:not(:last-child)::after {
	content: "/";
	margin:  0 0.5rem;
	color:   var(--color-text-subtle, #a5a5a5);
	speak:   never;
}

html body.led-page .led-crumbs__link {
	color:           var(--color-link, var(--color-secondary, #1c86ff));
	text-decoration: none;
}

html body.led-page .led-crumbs__link:hover,
html body.led-page .led-crumbs__link:focus {
	text-decoration: underline;
}

html body.led-page .led-crumbs__item--current {
	color:       var(--color-text, #000);
	font-weight: var(--font-weight-body, 400);
}

html body.led-page .led-crumbs__plugin {
	display: block;
}

/* -------------------------------------------------------------------------
   404 — .led-404
   ------------------------------------------------------------------------- */

html body.led-404-page .led-404 {
	display: flex;
	flex-direction: column;
	gap: var(--space-8, 2rem);
}

html body.led-404-page .led-404__banner {
	margin: 0;
	overflow: hidden;
	border-radius: var(--btn-radius, 8px);
}

html body.led-404-page .led-404__banner-img {
	display: block;
	width: 100%;
	height: auto;
}

html body.led-404-page .led-404__categories {
	display: flex;
	flex-direction: column;
	gap: var(--space-6, 1.5rem);
}

html body.led-404-page .led-404__section-title {
	margin: 0;
	font-weight: 400;
	line-height: var(--line-height-body, 1.5);
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: var(--text-transform-heading, uppercase);
	color: var(--color-text-muted, #565656);
}

html body.led-404-page .led-404__categories .led-home__categories {
	margin-block-start: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
	html body.led-page .led-page__main--classic {
		padding-block: var(--layout-content-top-tablet, 1.5rem) var(--space-10, 2.5rem);
	}
}

@media (max-width: 767px) {
	html body.led-page .led-page__main--classic {
		padding-block: var(--layout-content-top-mobile, 1rem) var(--space-8, 2rem);
	}
}


/* --- led-theme-blog --- */
/**
 * Blog archive (.led-blog) + single post (.led-post).
 *
 * Tokens only — Divi ul resets beaten for article content lists.
 */

/* -------------------------------------------------------------------------
   Archive
   ------------------------------------------------------------------------- */

.led-blog__intro {
	clear: both;
	margin-bottom: var(--space-8, 32px);
}

.led-blog__title {
	margin: 0 0 var(--space-4, 16px);
}

.led-blog__welcome {
	max-width: 72ch;
	overflow: hidden;
}

.led-blog__welcome > :first-child {
	margin-top: 0;
}

.led-blog__welcome > :last-child {
	margin-bottom: 0;
}

.led-blog__intro .led-post__author {
	margin-top: 0;
}

.led-blog__grid {
	clear: both;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8, 32px);
	min-width: 0;
}

@media (min-width: 768px) {
	.led-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-8, 32px) var(--space-6, 24px);
	}
}

@media (min-width: 981px) {
	.led-blog__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Topic-style card: image + title + author + date (no chrome / excerpt) */
.led-blog-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--space-3, 12px);
	margin: 0;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
	cursor: pointer;
}

.led-blog-card__media {
	display: block;
	position: relative;
	overflow: hidden;
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 3 / 2;
	margin: 0;
	background: var(--color-neutral-100, #f0f0f0);
	border-radius: 0;
}

.led-blog-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	display: block;
}

.led-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	gap: var(--space-2, 8px);
}

/* 3-line title; full string stays in HTML + title= tooltip */
.led-blog-card .led-blog-card__title {
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	line-height: var(--line-height-heading, 1.1em);
	max-height: calc(3 * var(--line-height-heading, 1.1em));
	overflow: hidden;
}

.led-blog-card__title a {
	position: relative;
	z-index: 2;
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	line-height: inherit;
}

.led-blog-card__hit {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.led-blog-card:hover .led-blog-card__title a,
.led-blog-card:focus-within .led-blog-card__title a {
	color: var(--color-link, var(--color-secondary, #1c86ff));
}

.led-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 0.35em;
	row-gap: 0;
	width: 100%;
	margin: 0;
	flex: 0 0 auto;
	color: var(--color-text-muted, #565656);
}

.led-blog-card__author {
	position: relative;
	z-index: 2;
	color: inherit;
	font-weight: var(--font-weight-semibold, 600);
	text-decoration: none;
}

.led-blog-card__author:hover,
.led-blog-card__author:focus {
	color: var(--color-link, var(--color-secondary, #1c86ff));
	text-decoration: underline;
}

.led-blog-card__date {
	margin-inline-start: auto;
	text-align: right;
	white-space: nowrap;
}

.led-blog__pagination {
	display: flex;
	justify-content: center;
	margin-top: var(--space-8, 32px);
	padding-bottom: var(--space-6, 24px);
}

.led-blog__pagination .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	border: 1px solid var(--color-neutral-300, #bfbfbf);
	border-radius: 8px;
	overflow: hidden;
	background: var(--color-neutral-0, #fff);
}

.led-blog__pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 10px 14px;
	border-left: 1px solid var(--color-neutral-300, #bfbfbf);
	color: var(--color-text, #000);
	text-decoration: none;
	line-height: 1.2;
}

.led-blog__pagination .page-numbers:first-child {
	border-left: 0;
}

.led-blog__pagination .page-numbers.current {
	background: var(--color-primary-50, #eaf7eb);
	font-weight: var(--font-weight-semibold, 600);
}

.led-blog__empty {
	margin: var(--space-8, 32px) 0;
}

/* -------------------------------------------------------------------------
   Single post — Section Bleed (full viewport + gutters, aside at left)
   ------------------------------------------------------------------------- */

.led-post {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding-inline: var(--layout-gutter, 24px);
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.led-post {
		padding-inline: var(--layout-gutter-mobile, 16px);
	}
}

.led-post__layout {
	display: flex;
	flex-direction: column;
	gap: var(--space-6, 24px);
	align-items: stretch;
	width: 100%;
}

.led-post__intro,
.led-post__main {
	min-width: 0;
}

.led-post__aside {
	display: flex;
	flex-direction: column;
	gap: var(--space-3, 12px);
	min-width: 0;
}

@media (min-width: 1280px) {
	/* Aside stays on the left gutter; right edge matches .led-wrap / header. */
	.led-post {
		padding-right: max(
			var(--layout-gutter, 24px),
			calc((100% - var(--layout-max-width, 1368px)) / 2)
		);
	}

	.led-post__layout {
		display: grid;
		grid-template-columns: 26% minmax(0, 1fr);
		grid-template-areas:
			"aside intro"
			"aside main";
		align-items: start;
		column-gap: var(--space-6, 24px);
		row-gap: 0;
	}

	.led-post__intro {
		grid-area: intro;
	}

	.led-post__aside {
		/* Prod `.left-sidebar` ≥1280: 26% / sticky / 95vh. */
		grid-area: aside;
		gap: var(--space-6, 24px);
		width: 100%;
		max-width: none;
		margin-top: 0;
		position: sticky;
		top: 18px;
		height: 95vh;
		overflow-y: auto;
	}

	.led-post__intro,
	.led-post__main {
		width: 100%;
		max-width: none;
	}

	.led-post__main {
		grid-area: main;
	}
}

/* Help / live call ------------------------------------------------------- */

.led-post__help {
	margin: 0;
	padding: var(--space-4, 16px);
	border: 2px dashed var(--color-primary-500, #45b449);
	border-radius: 8px;
	background: var(--color-bg, var(--color-neutral-0, #fff));
	box-sizing: border-box;
}

html body.led-post-page .led-post__help-title {
	margin: 0 0 var(--space-4, 16px);
	color: var(--color-text, #000);
	font-family: var(--font-family-heading);
	font-size: var(--font-size-h2, 20px);
	font-weight: var(--font-weight-heading, 600);
	line-height: var(--line-height-heading, 1.2);
	text-transform: var(--text-transform-heading, uppercase);
}

.led-post__help-text {
	margin: 0 0 var(--space-3, 12px);
	color: var(--color-text, #000);
	font-size: var(--font-size-body, 16px);
	line-height: var(--line-height-body, 1.5em);
}

.led-post__help-btn {
	width: 100%;
	margin: 0 0 var(--space-3, 12px);
	white-space: normal;
}

.led-post__help-btn:last-child {
	margin-bottom: 0;
}

.led-post__live-help {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-5, 20px);
	margin: 0;
	padding: var(--space-4, 16px);
	border: 2px dashed var(--color-neutral-300, #d3d3d3);
	border-radius: 8px;
	background: var(--color-neutral-50, #fbfbfb);
	box-sizing: border-box;
}

.led-post__live-help-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 64px;
}

html body.led-post-page .led-post__live-help-title,
html body.led-post-page .led-post__live-help h2 {
	margin: 0 0 var(--space-2, 8px);
	color: var(--color-text);
	font-family: var(--font-family-heading);
	font-size: 20px;
	font-weight: var(--font-weight-semibold, 600);
	line-height: 22px;
	text-transform: uppercase;
}

html body.led-post-page .led-post__live-help-phone {
	display: inline-flex;
	align-items: baseline;
	gap: 0.35em;
	margin-top: var(--space-1, 4px);
	color: var(--color-primary-700, #088c43);
	font-family: var(--font-family-heading, Oswald, sans-serif);
	font-size: 20px;
	font-weight: var(--font-weight-semibold, 600);
	line-height: 22px;
	text-decoration: none;
	text-transform: uppercase;
}

html body.led-post-page .led-post__live-help-label,
html body.led-post-page .led-post__live-help-number {
	color: inherit;
	font: inherit;
	font-weight: inherit;
	text-transform: inherit;
}

.led-post__live-help-number {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.led-post__live-help-icon {
	flex: 0 0 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.led-post__live-help-icon:hover,
.led-post__live-help-icon:focus {
	opacity: 0.8;
}

.led-post__live-help-img {
	display: block;
	width: 64px;
	height: 64px;
}

@media (min-width: 1024px) {
	.led-post__help {
		padding: var(--space-5, 20px);
		border-radius: 16px;
	}

	.led-post__live-help {
		padding: var(--space-6, 24px);
		border-radius: 16px;
	}

	.led-post__help-text {
		margin-bottom: var(--space-6, 24px);
	}
}

/* Header ----------------------------------------------------------------- */

.led-post__header {
	margin-bottom: 0;
}

.led-post__title {
	margin: 0 0 var(--space-5, 22px);
}

.led-post__meta {
	width: fit-content;
	max-width: 100%;
	margin: 0 0 var(--space-6, 24px);
	padding: 0;
	color: var(--color-text, #000);
	font-size: var(--font-size-body, 16px);
	font-weight: var(--font-weight-regular, 400);
	line-height: 1.4em;
}

html body.led-post-page .led-post__meta p {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.led-post__meta-label,
.led-post__meta-author {
	font-weight: var(--font-weight-bold, 700);
}

.led-post__meta-author {
	color: var(--color-link, var(--color-secondary, #1c86ff));
	text-decoration: none;
}

.led-post__meta-author:hover,
.led-post__meta-author:focus {
	text-decoration: underline;
}

html body.led-post-page .led-post__meta-sep {
	display: block;
	width: 100%;
	height: 0;
	margin: 18px 0 0;
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--color-neutral-300, #d4d4d4);
}

@media (min-width: 1024px) {
	.led-post__title {
		margin-bottom: var(--space-6, 24px);
	}

	.led-post__meta {
		width: 324px;
	}
}

/* TOC — collapsed when stacked (<1024), always open in the desktop sidebar */

.led-post__toc {
	margin: 0;
	padding: 0;
	background: var(--color-bg, var(--color-neutral-0, #fff));
	border-radius: 8px;
}

html body.led-post-page .led-post__toc-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 16px 30px 16px 16px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	text-align: left;
	position: relative;
	color: var(--color-text, #000);
	font: inherit;
	line-height: 1.2;
	min-height: 0;
}

html body.led-post-page .led-post__toc-toggle::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-text, #000);
	border-right: 2px solid var(--color-text, #000);
	transform: translateY(-50%) rotate(135deg);
	transition: transform 0.3s ease;
}

html body.led-post-page .led-post__toc-toggle.is-open::after,
html body.led-post-page .led-post__toc-toggle[aria-expanded="true"]::after {
	transform: translateY(-50%) rotate(-45deg);
}

.led-post__toc-title {
	display: block;
	margin: 0;
	color: var(--color-text, #000);
	font-family: var(--font-family-heading);
	font-size: 22px;
	font-weight: var(--font-weight-semibold, 600);
	line-height: 1.2;
	text-transform: uppercase;
}

html body.led-post-page .led-post__toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

html body.led-post-page .led-post__toc-toggle.is-open + .led-post__toc-list,
html body.led-post-page .led-post__toc-toggle[aria-expanded="true"] + .led-post__toc-list {
	max-height: 2000px;
	padding: 0 16px 16px;
}

@media (min-width: 1024px) {
	.led-post__toc {
		margin: 0;
		padding: var(--space-4, 16px);
	}

	html body.led-post-page .led-post__toc-toggle {
		cursor: default;
		padding: 0 0 var(--space-4, 16px);
		pointer-events: none;
	}

	html body.led-post-page .led-post__toc-toggle::after {
		display: none;
	}

	html body.led-post-page .led-post__toc-list,
	html body.led-post-page .led-post__toc-toggle.is-open + .led-post__toc-list,
	html body.led-post-page .led-post__toc-toggle[aria-expanded="true"] + .led-post__toc-list {
		max-height: none;
		overflow: visible;
		padding: 0;
	}
}

.led-post__toc-item {
	margin: 0;
	font-size: var(--font-size-small, 14px);
	line-height: 1.4;
}

.led-post__toc-link {
	display: block;
	position: relative;
	padding: 12px 0 12px 24px;
	color: var(--color-text-muted, #828487);
	font-weight: var(--font-weight-semibold, 600);
	text-decoration: none;
}

.led-post__toc-link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: var(--color-neutral-300, #d1d1d1);
	transition: background-color 0.3s ease;
}

.led-post__toc-link:hover,
.led-post__toc-link:focus,
.led-post__toc-link.is-passed {
	color: var(--color-text-muted, #828487);
}

.led-post__toc-link.is-passed::before {
	background: var(--color-neutral-600, #565656);
}

.led-post__toc-link.is-active {
	color: var(--color-text, #000);
	font-weight: var(--font-weight-bold, 700);
}

/* Beat Divi list-style:none inside article body */
html body.led-post-page .led-post__content ul {
	margin: 0 0 1em;
	padding-left: 1.25em;
	list-style: disc;
	list-style-type: disc;
	list-style-position: outside;
}

html body.led-post-page .led-post__content ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
	list-style: decimal;
	list-style-type: decimal;
	list-style-position: outside;
}

html body.led-post-page .led-post__content li {
	display: list-item;
	margin: 0 0 var(--space-2, 8px);
}

html body.led-post-page .led-post__content li:last-child {
	margin-bottom: 0;
}

/* Article tables — do not use classic-page card chrome (overrides.css) */
html body.led-post-page .led-post__content table {
	width: 100%;
	max-width: 100%;
	margin: 0 0 1em;
	border-collapse: collapse;
	border-spacing: 0;
}

html body.led-post-page .led-post__content table td,
html body.led-post-page .led-post__content table th {
	margin: 0;
	padding: 8px 12px;
	border: 1px solid var(--color-border, #d4d4d4);
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

/* Author ----------------------------------------------------------------- */

.led-post__author {
	display: flex;
	flex-direction: column;
	gap: var(--space-2, 8px);
	margin-top: var(--space-6, 24px);
	padding: var(--space-4, 16px);
	border: 2px dashed var(--color-primary-700, #088c43);
	border-radius: 0;
	background: var(--color-bg, var(--color-neutral-0, #fff));
}

.led-post__author-photo {
	display: block;
	width: 93px;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	align-self: flex-start;
}

.led-post__author-body {
	flex: 1 1 auto;
	min-width: 0;
}

.led-post__author-title {
	margin: 0 0 var(--space-4, 16px);
}

.led-post__author-bio {
	margin: 0;
	max-width: 72ch;
}

.led-post__author-bio > :first-child {
	margin-top: 0;
}

.led-post__author-bio > :last-child {
	margin-bottom: 0;
}

.led-post__author-social {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: var(--space-4, 16px) 0 0;
	padding: 0;
	list-style: none;
}

.led-post__author-social-link {
	display: block;
	width: 24px;
	aspect-ratio: 1 / 1;
	color: var(--color-link, var(--color-secondary, #1c86ff));
	font-size: var(--font-size-small, 15px);
	text-decoration: none;
}

.led-post__author-social-icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.led-post__author-social-link:hover,
.led-post__author-social-link:focus {
	opacity: 0.8;
}

@media (min-width: 1024px) {
	.led-post__author {
		flex-direction: row;
		gap: var(--space-5, 20px);
		margin-top: 41px;
		padding: var(--space-5, 20px);
	}

	.led-post__author-photo {
		width: 136px;
	}

	.led-post__author-title {
		margin-bottom: var(--space-3, 12px);
	}

	.led-post__author-social {
		margin-top: var(--space-3, 12px);
	}

	.led-post__author-social-link {
		width: 31px;
	}
}

.led-post__related {
	margin-top: var(--space-10, 40px);
	padding-top: var(--space-8, 32px);
	border-top: 1px solid var(--color-neutral-200, #ddd);
}

.led-post__related-title {
	margin: 0 0 var(--space-6, 24px);
}

/* Related uses .led-blog__grid + .led-blog-card; keep 3-up (only 3 items). */
@media (min-width: 981px) {
	.led-post__related .led-blog__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


/* --- led-theme-buttons --- */
/* =============================================================
   Buttons — LED style guide (primary / secondary / tertiary / link)
   ============================================================= */

/* --- Shared base ------------------------------------------------ */

.led-btn,
a.led-btn,
button.led-btn,
input.led-btn,
.green-btn,
.blue-btn,
.custom-shop-btn,
.contact-for-pricing-btn,
a.blurb-cta,
html body .product-info-button,
html body .shop-all-button,
html body .woocommerce a.button,
html body .woocommerce button.button,
html body .woocommerce input.button,
html body .woocommerce #respond input#submit,
html body .woocommerce .cart .button,
html body .woocommerce .checkout-button,
html body .woocommerce .single_add_to_cart_button,
html body .woocommerce .add_to_cart_button,
html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
html body .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: var(--btn-height);
	padding: 0 var(--btn-padding-x);
	border: none;
	border-radius: var(--btn-radius);
	/* PDP ATC outline is set in overrides.css (beats Divi blue). */
	box-sizing: border-box;
	font-family: var(--font-family-button);
	font-size: var(--font-size-btn);
	font-weight: var(--font-weight-button);
	text-transform: var(--text-transform-button, none);
	letter-spacing: var(--letter-spacing-button);
	line-height: var(--line-height-button);
	text-decoration: none;
	text-align: center;
	/* Allow multi-line labels (e.g. PLP plan CTA on narrow widths). */
	/* white-space: nowrap; */
	cursor: pointer;
	opacity: 1;
	transition:
		background-color var(--transition-base),
		color var(--transition-base);
}

.led-btn:focus-visible,
.green-btn:focus-visible,
.blue-btn:focus-visible,
html body .woocommerce a.button:focus-visible,
html body .woocommerce button.button:focus-visible {
	outline: 2px solid var(--color-secondary);
	outline-offset: 2px;
}

@media (min-width: 768px) and (max-width: 980px) {
	.led-btn,
	a.led-btn,
	button.led-btn,
	input.led-btn,
	.green-btn,
	.blue-btn,
	.custom-shop-btn,
	.contact-for-pricing-btn,
	a.blurb-cta,
	html body .product-info-button,
	html body .shop-all-button,
	html body .woocommerce a.button,
	html body .woocommerce button.button,
	html body .woocommerce input.button,
	html body .woocommerce #respond input#submit,
	html body .woocommerce .cart .button,
	html body .woocommerce .checkout-button,
	html body .woocommerce .single_add_to_cart_button,
	html body .woocommerce .add_to_cart_button,
	html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
	html body .wp-block-button__link {
		font-size: var(--font-size-btn-tablet, var(--font-size-btn));
	}
}

@media (min-width: 981px) {
	.led-btn,
	a.led-btn,
	button.led-btn,
	input.led-btn,
	.green-btn,
	.blue-btn,
	.custom-shop-btn,
	.contact-for-pricing-btn,
	a.blurb-cta,
	html body .product-info-button,
	html body .shop-all-button,
	html body .woocommerce a.button,
	html body .woocommerce button.button,
	html body .woocommerce input.button,
	html body .woocommerce #respond input#submit,
	html body .woocommerce .cart .button,
	html body .woocommerce .checkout-button,
	html body .woocommerce .single_add_to_cart_button,
	html body .woocommerce .add_to_cart_button,
	html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
	html body .wp-block-button__link {
		font-size: var(--font-size-btn-desktop, var(--font-size-btn));
	}
}

/* --- Primary (solid green) -------------------------------------- */

.led-btn--primary,
.green-btn,
html body .woocommerce a.button:not(.single_add_to_cart_button),
html body .woocommerce button.button:not(.single_add_to_cart_button),
html body .woocommerce input.button:not(.single_add_to_cart_button),
html body .woocommerce #respond input#submit,
html body .woocommerce .cart .button:not(.single_add_to_cart_button),
html body:not(.led-product-page) .woocommerce .single_add_to_cart_button,
html body .woocommerce .add_to_cart_button,
html body .product-info-button,
.custom-shop-btn {
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-color);
}

.led-btn--primary:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]),
.green-btn:hover,
html body .woocommerce a.button:not(.single_add_to_cart_button):hover,
html body .woocommerce button.button:not(.single_add_to_cart_button):hover,
html body .woocommerce input.button:not(.single_add_to_cart_button):hover,
html body .woocommerce #respond input#submit:hover,
html body .woocommerce .cart .button:not(.single_add_to_cart_button):hover,
html body:not(.led-product-page) .woocommerce .single_add_to_cart_button:hover,
html body .woocommerce .add_to_cart_button:hover,
html body .product-info-button:hover,
.custom-shop-btn:hover {
	background-color: var(--btn-primary-bg-hover);
	color: var(--btn-primary-color);
}

.led-btn--primary:disabled,
.led-btn--primary[disabled],
.led-btn--primary.is-disabled,
.led-btn--primary[aria-disabled="true"],
.green-btn:disabled,
.green-btn[disabled],
.green-btn.is-disabled {
	background-color: var(--btn-primary-bg-disabled);
	color: var(--btn-primary-color-disabled);
	cursor: not-allowed;
	opacity: 1;
}

/* --- Secondary — green outline ---------------------------------- */

.led-btn--secondary,
.led-btn--secondary-green {
	min-height: var(--btn-height-bordered);
	border: var(--btn-border-width) solid var(--btn-secondary-green-border);
	background-color: var(--btn-secondary-green-bg);
	color: var(--btn-secondary-green-color);
	transition:
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base);
}

.led-btn--secondary:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]),
.led-btn--secondary-green:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]) {
	background-color: var(--btn-secondary-green-bg-hover);
	border-color: var(--btn-secondary-green-bg-hover);
	color: var(--btn-secondary-green-color-hover);
}

.led-btn--secondary:disabled,
.led-btn--secondary[disabled],
.led-btn--secondary.is-disabled,
.led-btn--secondary[aria-disabled="true"],
.led-btn--secondary-green:disabled,
.led-btn--secondary-green[disabled],
.led-btn--secondary-green.is-disabled,
.led-btn--secondary-green[aria-disabled="true"] {
	background-color: var(--btn-secondary-green-bg);
	border-color: var(--btn-secondary-green-border-disabled);
	color: var(--btn-secondary-green-color-disabled);
	cursor: not-allowed;
}

/* --- Secondary — dark outline ----------------------------------- */

.led-btn--secondary-dark {
	min-height: var(--btn-height-bordered);
	border: var(--btn-border-width) solid var(--btn-secondary-dark-border);
	background-color: var(--btn-secondary-dark-bg);
	color: var(--btn-secondary-dark-color);
	transition:
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base);
}

.led-btn--secondary-dark:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]) {
	background-color: var(--btn-secondary-dark-bg-hover);
	border-color: var(--btn-secondary-dark-bg-hover);
	color: var(--btn-secondary-dark-color-hover);
}

.led-btn--secondary-dark:disabled,
.led-btn--secondary-dark[disabled],
.led-btn--secondary-dark.is-disabled,
.led-btn--secondary-dark[aria-disabled="true"] {
	background-color: var(--btn-secondary-dark-bg);
	border-color: var(--btn-secondary-dark-border-disabled);
	color: var(--btn-secondary-dark-color-disabled);
	cursor: not-allowed;
}

/* --- Tertiary — white / black text -------------------------------- */

.led-btn--tertiary {
	background-color: var(--btn-tertiary-bg);
	color: var(--btn-tertiary-color);
}

.led-btn--tertiary:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]) {
	background-color: var(--btn-tertiary-bg-hover);
	color: var(--btn-tertiary-color-hover);
}

.led-btn--tertiary:disabled,
.led-btn--tertiary[disabled],
.led-btn--tertiary.is-disabled,
.led-btn--tertiary[aria-disabled="true"] {
	background-color: var(--btn-tertiary-bg-disabled);
	color: var(--btn-tertiary-color-disabled);
	cursor: not-allowed;
}

/* --- Tertiary — orange ------------------------------------------ */

.led-btn--tertiary-orange {
	background-color: var(--btn-orange-bg);
	color: var(--btn-orange-color);
}

.led-btn--tertiary-orange:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]) {
	background-color: var(--btn-orange-bg-hover);
	color: var(--btn-orange-color);
}

.led-btn--tertiary-orange:disabled,
.led-btn--tertiary-orange[disabled],
.led-btn--tertiary-orange.is-disabled,
.led-btn--tertiary-orange[aria-disabled="true"] {
	background-color: var(--btn-orange-bg-disabled);
	color: var(--btn-orange-color);
	cursor: not-allowed;
}

/* --- Tertiary — blue -------------------------------------------- */

.led-btn--tertiary-blue,
.blue-btn,
html body .shop-all-button,
html body .woocommerce .checkout-button,
html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	background-color: var(--btn-blue-bg);
	color: var(--btn-blue-color);
}

.led-btn--tertiary-blue:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]),
.blue-btn:hover,
html body .shop-all-button:hover,
html body .woocommerce .checkout-button:hover,
html body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background-color: var(--btn-blue-bg-hover);
	color: var(--btn-blue-color);
}

.led-btn--tertiary-blue:disabled,
.led-btn--tertiary-blue[disabled],
.led-btn--tertiary-blue.is-disabled,
.led-btn--tertiary-blue[aria-disabled="true"],
.blue-btn:disabled,
.blue-btn[disabled],
.blue-btn.is-disabled,
html body .shop-all-button:disabled,
html body .shop-all-button[disabled],
html body .shop-all-button.is-disabled,
html body .shop-all-button[aria-disabled="true"] {
	background-color: var(--btn-blue-bg-disabled);
	color: var(--btn-blue-color);
	cursor: not-allowed;
}

/* --- Link-style ------------------------------------------------- */

.led-btn--link,
a.blurb-cta,
.contact-for-pricing-btn {
	min-height: auto;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	color: var(--btn-link-color);
}

.led-btn--link:hover:not(:disabled):not([disabled]):not(.is-disabled):not([aria-disabled="true"]),
a.blurb-cta:hover,
.contact-for-pricing-btn:hover {
	background: transparent;
	color: var(--btn-link-color-hover);
}

.led-btn--link:disabled,
.led-btn--link[disabled],
.led-btn--link.is-disabled,
.led-btn--link[aria-disabled="true"],
a.blurb-cta.is-disabled,
.contact-for-pricing-btn.is-disabled {
	background: transparent;
	color: var(--btn-link-color-disabled);
	opacity: var(--btn-link-opacity-disabled);
	cursor: not-allowed;
}


/* --- led-theme-dialogs --- */
/* =============================================================
   HubSpot dialogs — contractor / PDP / blog (BlockUI) + menu overlay
   Tokens from variables.css. Shared .led-dialog chrome for both shells.
   ============================================================= */

.led-dialog {
	--led-dialog-radius: var(--space-3);
	--led-dialog-z: 10000;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--color-bg);
	color: var(--color-text);
	border-radius: var(--led-dialog-radius);
	box-shadow: 0 var(--space-2) var(--space-8) color-mix(in srgb, var(--color-neutral-900) 35%, transparent);
}

.led-dialog--form {
	min-height: 25rem;
	max-height: 90vh;
	max-height: 90dvh;
}

.led-dialog--menu {
	width: 100%;
	max-width: var(--layout-narrow-max);
	min-height: 28rem;
	max-height: 80vh;
}

.led-dialog__overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: var(--led-dialog-z, 10000);
	align-items: center;
	justify-content: center;
	padding: var(--space-4);
	background: color-mix(in srgb, var(--color-neutral-900) 60%, transparent);
}

.led-dialog__overlay.is-open {
	display: flex;
}

.led-dialog__topbar {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-2) var(--space-2) 0;
}

.led-dialog__header {
	flex: 0 0 auto;
	z-index: 1;
	padding: var(--space-8) var(--space-10) var(--space-3) var(--space-8);
	text-align: left;
	background: var(--color-bg);
}

.led-dialog--menu .led-dialog__header {
	padding: 0 var(--space-8) var(--space-1);
}

.led-dialog__title {
	display: block;
	margin: 0;
	text-align: left;
	color: var(--color-text);
}

.led-dialog__subtitle {
	display: block;
	margin-top: var(--space-1);
	color: var(--color-text-muted);
	font-size: var(--font-size-body);
}

.led-dialog__body {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 13.75rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.led-dialog--menu .led-dialog__body {
	padding: 0 var(--space-8) var(--space-8);
}

.led-dialog__form {
	width: 100%;
}

.led-dialog__form .hs-form-frame,
.led-dialog__form iframe {
	display: block;
	width: 100%;
	max-width: 100%;
}

.led-dialog__form:empty {
	display: none;
}

.led-dialog__form-wrap {
	display: none;
}

.led-dialog__form-wrap.is-open {
	display: block;
}

.led-dialog__form-item {
	display: none;
}

.led-dialog__form-item.is-active {
	display: block;
}

.led-dialog__banner {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-start;
	gap: var(--space-10);
	padding: var(--space-2) var(--space-4);
	background: var(--color-bg-subtle);
}

.led-dialog__banner-item {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	color: var(--color-text);
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body, 400);
	line-height: var(--line-height-body);
	text-align: left;
}

.led-dialog__banner-item img {
	display: block;
	width: 24px;
	height: 24px;
	flex: none;
}

.led-dialog__close,
.led-dialog__back {
	display: inline-flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: var(--space-10);
	height: var(--space-10);
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	box-shadow: none;
	color: var(--color-text-muted);
	font-size: var(--font-size-h3, 2rem);
	font-weight: 300;
	line-height: 1;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color var(--transition-base, 0.15s ease), color var(--transition-base, 0.15s ease);
}

.led-dialog__close {
	position: absolute;
	top: var(--space-2);
	right: var(--space-2);
	z-index: 5;
}

.led-dialog--menu .led-dialog__close {
	position: static;
}

.led-dialog__back {
	visibility: hidden;
	font-size: inherit;
}

.led-dialog__close:hover,
.led-dialog__close:focus-visible,
.led-dialog__back:hover,
.led-dialog__back:focus-visible {
	background: var(--color-neutral-50);
	color: var(--color-text);
	outline: none;
}

.led-dialog__loading {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 2;
	align-items: center;
	justify-content: center;
	background: var(--color-bg);
}

.led-dialog--menu .led-dialog__loading {
	background: color-mix(in srgb, var(--color-bg) 85%, transparent);
	border-radius: var(--led-dialog-radius);
}

.led-dialog.is-loading .led-dialog__loading,
.led-dialog__loading.is-open {
	display: flex;
}

.led-dialog.is-loading .led-dialog__header,
.led-dialog.is-loading .led-dialog__banner {
	visibility: hidden;
}

.led-dialog__spinner {
	width: var(--space-10);
	height: var(--space-10);
	border: 4px solid var(--color-neutral-100);
	border-top-color: var(--color-primary-500);
	border-radius: 50%;
	animation: led-dialog-spin 1s linear infinite;
}

@keyframes led-dialog-spin {
	to { transform: rotate(360deg); }
}

.led-dialog__choices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	margin-top: var(--space-4);
}

.led-dialog__choice {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-6);
	border: 1px dashed var(--color-primary-500);
	border-radius: var(--space-3);
	text-align: center;
}

.led-dialog__choice--blue {
	border-color: var(--color-secondary);
}

.led-dialog__choice-icon {
	width: 3.75rem;
	height: 3.75rem;
	object-fit: contain;
}

.led-dialog__choice-title {
	margin: 0;
}

.led-dialog__choice-text {
	margin: 0;
	color: var(--color-text-muted);
}

.led-dialog__choice .led-btn {
	width: 100%;
}

.led-dialog__error {
	display: none;
	margin-top: var(--space-4);
	padding: var(--space-3) var(--space-4);
	border: 1px solid var(--color-warning-200);
	border-radius: var(--btn-radius);
	background: var(--color-warning-50);
	color: var(--color-warning-900);
	font-size: var(--font-size-small, 0.875rem);
	line-height: 1.4;
}

.led-dialog__places-wrap {
	position: relative;
}

.led-dialog__places {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	z-index: calc(var(--led-dialog-z, 10000) + 1);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	box-shadow: 0 var(--space-1) var(--space-2) color-mix(in srgb, var(--color-neutral-900) 10%, transparent);
}

.led-dialog__places-item {
	padding: var(--space-2) var(--space-3);
	cursor: pointer;
	background: var(--color-bg);
	color: var(--color-text);
}

.led-dialog__places-item.is-active {
	background: var(--color-secondary-50);
}

/* BlockUI shell — beat inline styles from jquery-blockui */
.blockUI.blockMsg.blockPage {
	z-index: 10000 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: none !important;
	border-radius: var(--space-3) !important;
	background: var(--color-bg) !important;
	color: var(--color-text) !important;
	text-align: left !important;
	box-shadow: 0 var(--space-2) var(--space-8) color-mix(in srgb, var(--color-neutral-900) 35%, transparent) !important;
}

.blockUI.blockOverlay {
	background: var(--color-neutral-900) !important;
}

.hsfc-Step__Content {
	padding: 0 !important;
}

@media (max-width: 1023px) {
	.led-dialog--form {
		min-height: 20rem;
	}

	.led-dialog--menu {
		max-width: 96vw;
	}

	.led-dialog__header {
		padding: var(--space-5) var(--space-12) var(--space-2) var(--space-3);
	}

	.led-dialog--menu .led-dialog__header {
		padding: 0 var(--space-4) var(--space-1);
	}

	.led-dialog__subtitle {
		font-size: var(--font-size-small, 0.875rem);
	}

	.led-dialog__body {
		min-height: 11.25rem;
		padding: 0 var(--space-3) var(--space-3);
	}

	.led-dialog--menu .led-dialog__body {
		padding: 0 var(--space-4) var(--space-4);
	}

	.led-dialog__topbar {
		padding: var(--space-1) var(--space-1) 0;
	}

	.led-dialog__close {
		top: var(--space-1);
		right: var(--space-1);
	}

	.led-dialog__banner-item {
		font-size: var(--font-size-small, 0.875rem);
	}

	.led-dialog__choices {
		grid-template-columns: 1fr;
		gap: var(--space-3);
		margin-top: var(--space-3);
	}

	.led-dialog__choice {
		padding: var(--space-4);
		gap: var(--space-2);
	}

	.led-dialog__choice-icon {
		width: 2.25rem;
		height: 2.25rem;
	}

	.led-dialog__form {
		margin-top: var(--space-3);
	}

	.blockUI.blockMsg.blockPage {
		max-height: 90vh !important;
		max-height: 90dvh !important;
	}
}

@media (min-width: 1024px) {
	.blockUI.blockMsg.blockPage {
		min-width: 40rem !important;
	}

	.led-dialog--form {
		min-width: 40rem;
		min-height: 40rem;
	}

	.led-dialog__form {
		margin-top: var(--space-6);
	}
}


/* --- led-theme-header --- */
/* =============================================================
   Header — main nav with mega-menus and before/after placeholders
   ============================================================= */

/* Divi's default top + main header were suppressed historically via
   et_html_top_header / et_html_main_header. Standalone theme uses header.php. */

/* --- Outer wrapper --- */
.led-header {
	display: flex;
	flex-direction: column;
}

/* --- Before/after content (shortcodes from theme settings) --- */
.led-header__before,
.led-header__after {
	width: 100%;
}

/* =============================================================
   Header background (green gradient)
   ============================================================= */

@media (min-width: 1024px) {
	.led-header__bg {
		height: 120px;
		background: linear-gradient(0deg, var(--color-primary) 45%, var(--color-white) 45%);
	}
}

/* =============================================================
   Header main section
   ============================================================= */

.led-header__main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-block: 8px;
}

@media (min-width: 1024px) {
	.led-header__main {
		padding-block: 0;
	}
}

/* =============================================================
   Mobile toggle (hamburger)
   ============================================================= */

.led-header__toggle {
	max-width: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.led-header__toggle img {
	width: 28px;
	height: 28px;
}

@media (min-width: 1024px) {
	.led-header__toggle {
		display: none;
	}
}

/* =============================================================
   Logo
   ============================================================= */

.led-header__logo {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 43px;
}

.led-header__logo img {
	max-width: 248px;
	width: 100%;
	height: auto;
	/* Match live LLS SVG intrinsic ratio (300×52) — 248/68 caused ~24px CLS */
	aspect-ratio: 300 / 52;
	margin-top: 0;
	display: block;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.led-header__logo {
		order: 1;
		z-index: 5;
		flex: 0 0 250px;
		height: 68px;
		display: flex;
		align-items: center;
	}

	.led-header__logo img {
		margin-top: 0;
		max-height: 100%;
	}
}

/* =============================================================
   Account + Cart actions
   ============================================================= */

.led-header__actions {
	min-width: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-inline: 10px;
}

.led-header__account,
.led-header__cart {
	display: flex;
	align-items: center;
	justify-content: center;
}

.led-header__account img {
	display: block;
}

.led-header__cart {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.led-header__cart-icon {
	display: flex;
	line-height: 0;
}

.led-header__cart-icon img {
	display: block;
	width: 23px;
	height: 22px;
}

.led-header__cart-count {
	position: absolute;
	top: -6px;
	right: -10px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--color-neutral-700);
	color: var(--color-white);
	font-family: var(--font-family-body);
	font-size: var(--font-size-xxs);
	font-weight: var(--font-weight-bold, 700);
	line-height: 18px;
	text-align: center;
	pointer-events: none;
}

.led-header__cart-count.is-empty {
	display: none;
}

@media (min-width: 1024px) {
	.led-header__actions {
		order: 4;
		margin-inline: 0;
	}
}

/* =============================================================
   Search bar
   ============================================================= */

.led-header__search {
	flex: 1;
	min-width: 100%;
	padding: 8px 0;
}

.led-header__search-wrap {
	padding: 0 20px;
	width: 100%;
	border: 1px solid var(--color-gray-200);
	background: var(--color-gray-100);
	border-radius: 24px;
	height: 46px;
	display: flex;
	align-items: center;
}

.led-header__search-wrap form {
	width: 100%;
}

.led-header__search-input {
	width: 100%;
	background: transparent;
	font-family: var(--font-family-body);
	font-size: var(--font-size-small);
	outline: none;
}

html body .led-header__search-input {
	border: 0;
	background: transparent;
}

.led-header__search-icon {
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.led-header__search {
		order: 2;
		min-width: unset;
		flex: 1;
		padding: 0 12px;
	}
}

/* =============================================================
   Call button
   ============================================================= */

.led-header__call {
	display: flex;
	align-items: center;
	min-width: 100%;
	padding: 8px 0;
	justify-content: center;
}

.led-header__call-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 0 6px;
	border-radius: 24px;
	text-decoration: none;
	font-family: var(--font-family-body);
	font-size: var(--font-size-btn);
	font-weight: var(--font-weight-bold);
	line-height: 24px;
	white-space: nowrap;
	transition: background-color var(--transition-base), color var(--transition-base);
	width: 100%;
	justify-content: center;
	min-height: 46px;
	box-sizing: border-box;
}

.led-header__call-btn:hover {
	background: var(--color-secondary-700);
}

.led-header__call-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: currentColor;
}

.led-header__call-text {
	font-weight: var(--font-weight-bold);
	font-family: var(--font-family-body);
}

@media (min-width: 1024px) {
	.led-header__call {
		order: 3;
		min-width: unset;
		padding: 0;
		justify-content: flex-start;
		margin-right: 14px;
	}

	.led-header__call-btn {
		width: auto;
		background: transparent;
		color: var(--color-secondary);
		font-size: var(--font-size-btn-desktop);
		line-height: 27px;
		min-height: auto;
	}

	.led-header__call-btn:hover {
		background: transparent;
		color: var(--color-secondary-500);
	}

	.led-header__call-text {
		font-size: var(--font-size-btn-desktop);
		line-height: 27px;
		color: var(--color-secondary);
	}
}

/* =============================================================
   Navigation — top-level menu
   ============================================================= */

.led-header__nav {
	display: none;
	width: 100%;
	position: relative;
}

#led-header-block .led-header__nav.active {
	display: block;
	position: relative;
	top: -58px;
	z-index: 100;
}

.led-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.led-header__menu > .led-header__item--top {
	list-style: none;
}

@media (min-width: 1024px) {
	.led-header__nav {
		order: 5;
		display: flex;
		justify-content: center;
	}

	.led-header__nav.active {
		position: static;
		top: auto;
	}

	.led-header__menu {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		position: relative;
		margin: 0 auto;
		width: 100%;
		max-width: 1368px;
		height: 50px;
	}

	.led-header__menu > .led-header__item--top {
		flex-shrink: 0;
	}
}

/* =============================================================
   Menu items — top level
   ============================================================= */

.led-header__item--top {
	color: var(--color-white);
	text-decoration: none;
}

.led-header__item--top > .led-header__link {
	display: flex;
	align-items: center;
	color: var(--color-white) !important;
	text-decoration: none;
	font-family: var(--font-family-body);
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
	cursor: pointer;
}

.led-header__item--top > .led-header__link--has-children::after {
	content: '';
	display: none;
	width: 7px;
	height: 7px;
	margin-left: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	position: relative;
	top: -1px;
	flex-shrink: 0;
	font-family: inherit;
	font-size: unset;
	line-height: 0;
	color: unset;
}

/* --- Mobile menu item styling --- */
.led-header__nav.active .led-header__item--top {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-gray-200);
}

.led-header__nav.active .led-header__item--top > .led-header__link {
	font-size: var(--font-size-body);
	color: var(--color-black) !important;
	min-height: 24px;
}

.led-header__nav.active .led-header__menu {
	margin: 0 auto;
	border: 1px solid var(--color-gray-200);
	border-radius: 16px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: absolute;
	overflow: hidden;
	background: var(--color-white);
	width: 100%;
}

/* --- Desktop top-level items --- */
@media (min-width: 1024px) {
	.led-header__item--top {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 0 1%;
	}

	.led-header__item--top > .led-header__link {
		font-size: var(--font-size-small-desktop);
		white-space: nowrap;
	}

	.led-header__item--top > .led-header__link:hover {
		opacity: 0.68;
	}

	.led-header__item--top:hover > .led-header__link--has-children::after,
	.led-header__item--top:focus-within > .led-header__link--has-children::after {
		content: '';
		transform: rotate(-135deg);
		top: 1px;
	}

	.led-header__item--top > .led-header__link--has-children::after {
		display: inline-block;
	}
}

@media (min-width: 1366px) {
	.led-header__item--top > .led-header__link {
		font-size: var(--font-size-body-desktop);
	}
}

@media (min-width: 1600px) {
	.led-header__item--top:first-of-type {
		margin-left: 25px;
	}

	.led-header__item--top:last-of-type {
		margin-right: 25px;
	}

	.led-header__item--top {
		padding: 10px 15px;
	}
}

/* =============================================================
   Dropdown toggle (mobile chevron)
   ============================================================= */

.led-header__dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-gray-100);
	cursor: pointer;
}

.led-header__dropdown-toggle::after {
	content: '';
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--color-primary-400);
	border-bottom: 2px solid var(--color-primary-400);
	transform: rotate(-45deg) translate(-2px, -2px);
	line-height: 0;
}

.led-header__dropdown-toggle.active::after {
	content: '';
	transform: rotate(-135deg) translate(-2px, -2px);
}

@media (min-width: 1024px) {
	.led-header__dropdown-toggle {
		display: none;
	}
}

/* =============================================================
   Mega-menu dropdown (columns)
   ============================================================= */

.led-header__dropdown {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

#led-header-block .led-header__dropdown.active {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	flex: 0 0 100%;
}

.led-header__dropdown .led-header__column ul {
	padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
} 

.led-header__column {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 12px;
	flex: 1 1 100%;
}

.led-header__column:not(:last-of-type) {
	border-bottom: 1px solid var(--color-gray-200);
	padding-bottom: 24px;
}

.led-header__column-title {
	color: var(--color-black) !important;
	font-family: var(--font-family-heading) !important;
	font-size: var(--font-size-h3-desktop) !important;
	font-weight: var(--font-weight-semibold) !important;
	line-height: 22px !important;
	text-transform: uppercase !important;
}

.led-header__column-link {
	list-style: none;
}

.led-header__column-link a {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--font-size-body);
	color: var(--color-black) !important;
	font-weight: var(--font-weight-normal);
	font-family: var(--font-family-body);
	line-height: 22.5px;
	min-height: 24px;
	white-space: nowrap;
	text-decoration: none;
}

.led-header__column-link a img {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.led-header__column-link a:hover {
	opacity: 0.68;
}

/* --- Desktop mega-menu dropdown --- */
@media (min-width: 600px) {
	.led-header__column:not(:last-of-type) {
		border: none;
	}

	.led-header__column {
		flex: unset;
	}
}

@media (min-width: 1024px) {
	.led-header__dropdown {
		border-radius: 18px;
		overflow: hidden;
		width: 100%;
		gap: 3%;
		padding: 24px;
		position: absolute;
		background: var(--color-white);
		z-index: 1000;
		left: 0;
		top: 46px;
		list-style: none;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.led-header__dropdown.active {
		display: flex;
	}

	.led-header__item--top:hover .led-header__dropdown {
		transition: all 0.2s ease-in-out;
		display: flex;
	}

	#led-header-block .led-header__item--top:hover .led-header__dropdown {
		display: flex;
	}

	.led-header__column-link a {
		font-size: var(--font-size-body);
	}
}

/* =============================================================
   Tablet (768px – 1023px) — compact top row + full-width search
   Hamburger nav stays; desktop chrome starts at 1024px
   ============================================================= */

@media (min-width: 768px) and (max-width: 1023px) {
	.led-header__main {
		padding-block: 12px;
		column-gap: 12px;
		row-gap: 8px;
	}

	.led-header__logo {
		justify-content: flex-start;
		flex: 1 1 auto;
		min-width: 0;
	}

	.led-header__logo img {
		max-width: 200px;
		margin-top: 0;
	}

	.led-header__actions {
		margin-inline: 0 0 0 auto;
		gap: 16px;
	}

	.led-header__search {
		min-width: 100%;
		flex: 1 0 100%;
		padding: 4px 0 0;
		order: 10;
	}

	.led-header__search-wrap {
		padding: 0 16px;
		height: 44px;
	}

	.led-header__call {
		min-width: 100%;
		flex: 1 0 100%;
		order: 11;
		justify-content: center;
		padding-top: 4px;
	}

	.led-header__nav.active .led-header__dropdown {
		gap: 3%;
	}
}

@media (max-width: 1023px) {
	.led-header__nav.active .led-header__dropdown .led-header__column {
		gap: 16px;
		padding: 16px;
	}

	.led-header__nav.active .led-header__dropdown .led-header__column-title {
		font-size: var(--font-size-h3) !important;
		line-height: 20px !important;
	}

	.led-header__nav.active .led-header__dropdown .led-header__column-link a {
		font-size: var(--font-size-body) !important;
		line-height: 19.5px !important;
	}
}

/* =============================================================
   Resources / Contact dropdowns (single column, optional icons)
   ============================================================= */

.led-header__dropdown--resources,
.led-header__dropdown--contact {
	flex-direction: column;
}

.led-header__dropdown--resources .led-header__column,
.led-header__dropdown--contact .led-header__column {
	width: 100%;
}

@media (min-width: 1024px) {
	.led-header__dropdown--resources,
	.led-header__dropdown--contact {
		min-width: 200px;
		width: auto;
		padding: 0;
		left: unset;
	}

	.led-header__dropdown--resources .led-header__column,
	.led-header__dropdown--contact .led-header__column {
		padding: 24px;
	}
}

/* =============================================================
   View all links inside columns
   ============================================================= */

.led-header__column-link.view-all a,
.led-header__column-link a.view-all {
	font-size: var(--font-size-body) !important;
	font-weight: var(--font-weight-semibold) !important;
	color: var(--color-secondary) !important;
	text-decoration: underline;
	font-family: var(--font-family-body);
	line-height: 23px;
	min-height: 24px;
}

@media (max-width: 1023px) {
	.led-header__column-link.view-all a,
	.led-header__column-link a.view-all {
		font-size: var(--font-size-body) !important;
		line-height: 23px !important;
	}
}


/* --- led-theme-footer --- */
/* =============================================================
   Footer — 4-column layout (LED footer markup in #main-footer)
   ============================================================= */

/* --- Outer wrapper --- */
html body #main-footer .led-footer {
	padding: 0;
	background-color: var(--color-bg-footer);
	color: var(--color-text);
}

/* --- Before-footer content area --- */
html body #main-footer .led-footer__before {
	padding: 0 0 var(--space-8);
	font-size: var(--font-size-body);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-muted);
	text-align: center;
}

html body #main-footer .led-footer p:last-child,
html body #main-footer .led-footer__before p:last-child {
	margin-bottom: 0;
}

/* --- Separators --- */
html body #main-footer .led-footer__separator {
	border: none;
	border-top: var(--border-width) solid var(--color-border);
	margin: 0;
}

/* --- Shared layout width: .led-wrap (utilities.css) --- */

/* --- 4-column grid --- */
html body #main-footer .led-footer__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr) 1.2fr;
	gap: var(--space-10);
	padding-top: var(--space-10);
	padding-bottom: var(--space-10);
}

/* --- Column heading — type from .led-h5; layout only here --- */
html body #main-footer .led-footer__heading {
	display: block;
	margin: 0 0 var(--space-4);
}

/* --- Nav menu column --- */
html body #main-footer .led-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

html body #main-footer .led-footer-menu li {
	margin: 0 0 var(--space-2);
}

html body #main-footer .led-footer-menu li:last-child {
	margin-bottom: 0;
}

html body #main-footer a.led-footer__menu-link {
	display: block;
	color: var(--color-link);
}

/* --- Address column --- */
html body #main-footer .led-footer__address {
	font-style: normal;
}

html body #main-footer .led-footer__address-section + .led-footer__address-section {
	margin-top: var(--space-6);
}

html body #main-footer .led-footer__address-line {
	display: block;
	margin: 0 0 var(--space-1);
	color: var(--color-text);
}

html body #main-footer a.led-footer__address-line,
html body #main-footer a.led-footer__menu-link {
	text-decoration: none;
	opacity: 1;
	transition: opacity var(--transition-base);
}

html body #main-footer a.led-footer__address-line:hover,
html body #main-footer a.led-footer__address-line:focus,
html body #main-footer a.led-footer__menu-link:hover,
html body #main-footer a.led-footer__menu-link:focus {
	color: var(--color-link);
	opacity: 0.8;
	text-decoration: underline;
}

html body #main-footer a.led-footer__address-line--phone::before {
	content: '\260E\00A0';
}

/* --- Social column --- */
html body #main-footer .led-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
}

html body #main-footer .led-footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: var(--border-radius-full);
	font-size: var(--font-size-body);
	color: inherit;
	opacity: 1;
	transition: opacity var(--transition-base);
	text-decoration: none;
}

html body #main-footer .led-footer-social__link--text {
	width: auto;
	height: auto;
	min-height: 2rem;
	padding: 0 var(--space-1);
	border-radius: var(--border-radius-sm);
}

html body #main-footer .led-footer-social__link:hover {
	opacity: 0.8;
}

html body #main-footer .led-footer-payments {
	margin-top: var(--space-6);
}

html body #main-footer .led-footer__col--social .led-footer-payments:first-child {
	margin-top: 0;
}

html body #main-footer .led-footer-payments__icons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	align-items: center;
}

html body #main-footer .led-footer-payments__icon {
	display: block;
	width: 54px;
	height: 35px;
	flex: 0 0 auto;
	object-fit: contain;
	opacity: 1;
	transition: opacity var(--transition-base);
}

html body #main-footer .led-footer-payments__icon:hover {
	opacity: 0.8;
}

/* --- Copyright bar --- */
html body #main-footer .led-footer__bottom {
	padding: var(--space-4) 0;
}

html body #main-footer .led-footer__bottom-inner {
	float: none;
	clear: both;
}

html body #main-footer .led-footer__copyright {
	margin: 0;
	text-align: center;
	color: var(--color-text-muted);
}

/* --- Responsive ---
   Desktop: ≥ 1024px — 4-col (default)
   Tablet:  768px – 1023px — 2-col
   Mobile:  < 768px — 1-col
   ---------------------------------------------------------------- */

@media (max-width: 1023px) {
	html body #main-footer .led-footer__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-8);
	}
}

@media (max-width: 767px) {
	html body #main-footer .led-footer__inner {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}

	html body #main-footer .led-footer-social img {
		width: 26px;
		height: 26px;
	}

	html body #main-footer .led-footer-payments__icon {
		width: 48px;
		height: 31px;
	}

	html body #main-footer .led-footer-social {
		gap: var(--space-2);
	}
}


/* --- led-theme-overrides --- */
/*
 * Overrides — last-resort global touchups (keep thin).
 *
 * Prefer specificity (html body .selector) over !important.
 * Use !important only when the target plugin itself uses it.
 */

/* -------------------------------------------------------------------------
   Price typography — WooCommerce + theme price classes
   ------------------------------------------------------------------------- */

html body .price,
html body .woocommerce-Price-amount,
html body .woocommerce-Price-currencySymbol,
html body bdi,
html body .price-value,
html body .price-amount,
html body .amount,
html body .price .woocommerce-Price-amount,
html body .price bdi,
html body .price span,
html body .woocommerce-Price-amount bdi {
	font-family:    var(--font-family-price);
	font-size:      var(--font-size-price);
	font-weight:    var(--font-weight-price);
	text-transform: var(--text-transform-price, none);
	letter-spacing: var(--letter-spacing-price);
	line-height:    var(--line-height-price);
}

/* Cart / checkout — do not use PDP price scale in tables */
html body .wc-block-cart-items :is(
	.price,
	.price span,
	.woocommerce-Price-amount,
	.woocommerce-Price-amount bdi,
	bdi,
	.wc-block-components-formatted-money-amount
),
html body.led-cart-page .shop_table :is(
	.price,
	.price span,
	.woocommerce-Price-amount,
	.woocommerce-Price-amount bdi,
	.woocommerce-Price-currencySymbol,
	bdi,
	.amount
),
html body.led-cart-page .cart_totals :is(
	.price,
	.price span,
	.woocommerce-Price-amount,
	.woocommerce-Price-amount bdi,
	bdi,
	.amount
),
html body.led-checkout-page .shop_table :is(
	.price,
	.price span,
	.woocommerce-Price-amount,
	.woocommerce-Price-amount bdi,
	.woocommerce-Price-currencySymbol,
	bdi,
	.amount
) {
	font-family:    revert;
	font-size:      revert;
	font-weight:    revert;
	text-transform: revert;
	letter-spacing: revert;
	line-height:    revert;
}

/* WC shrinks $ by default; keep symbol same size as amount */
html body .price .woocommerce-Price-currencySymbol,
html body .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
	font-size:      1em;
	vertical-align: baseline;
}

@media (min-width: 981px) {
	html body .price,
	html body .woocommerce-Price-amount,
	html body .woocommerce-Price-currencySymbol,
	html body bdi,
	html body .price-value,
	html body .price-amount,
	html body .amount,
	html body .price .woocommerce-Price-amount,
	html body .price bdi,
	html body .price span,
	html body .woocommerce-Price-amount bdi {
		font-size: var(--font-size-price-desktop, var(--font-size-price));
	}

	html body .wc-block-cart-items :is(
		.price,
		.price span,
		.woocommerce-Price-amount,
		.woocommerce-Price-amount bdi,
		bdi,
		.wc-block-components-formatted-money-amount
	),
	html body.led-cart-page .shop_table :is(
		.price,
		.price span,
		.woocommerce-Price-amount,
		.woocommerce-Price-amount bdi,
		.woocommerce-Price-currencySymbol,
		bdi,
		.amount
	),
	html body.led-cart-page .cart_totals :is(
		.price,
		.price span,
		.woocommerce-Price-amount,
		.woocommerce-Price-amount bdi,
		bdi,
		.amount
	) {
		font-size: revert;
	}

	html body .price .woocommerce-Price-currencySymbol,
	html body .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
		font-size: 1em;
	}
}

html body.led-cart-page .led-cart__meta,
html body.led-cart-page .led-cart__meta :is(
	.led-cart__sku,
	.led-cart__unit-price,
	.led-cart__variation,
	.led-cart__variation-item,
	.woocommerce-Price-amount,
	.woocommerce-Price-currencySymbol,
	.amount,
	bdi,
	dt,
	dd,
	p,
	span,
	strong,
	b
) {
	font-family: var(--font-family-body, Inter, sans-serif);
	font-size: var(--font-size-small);
	font-weight: 400;
	color: var(--color-text-muted);
}

html body.led-cart-page .led-cart__unit-price .woocommerce-Price-currencySymbol {
	font-weight: 700;
}

/* -------------------------------------------------------------------------
   Tables / images — PDP description + PLP below-fold only
   (not blog, classic pages, or PDP specs / variation tables)
   ------------------------------------------------------------------------- */

html body.led-product-page .led-product__description table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents),
html body.led-plp-page .led-plp__content-inner table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) {
	max-width:       var(--table-max-width, 600px);
	margin-bottom:   var(--table-margin-bottom, 12px);
	border-spacing:  var(--table-border-spacing, 6px);
	border-collapse: separate;
}

html body.led-product-page .led-product__description table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) td,
html body.led-product-page .led-product__description table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) th,
html body.led-plp-page .led-plp__content-inner table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) td,
html body.led-plp-page .led-plp__content-inner table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) th {
	border:         var(--table-cell-border);
	border-radius:  var(--table-cell-border-radius, 8px);
	color:          var(--table-cell-color);
	padding-left:   var(--table-cell-padding-left, 12px);
	font-size:      var(--table-cell-font-size, 15px);
	line-height:    var(--table-cell-line-height, 1.5em);
	background:     var(--table-cell-bg);
	margin-top:     var(--table-cell-margin-top, 0.6rem);
	margin-bottom:  var(--table-cell-margin-bottom, 0.1rem);
}

@media (min-width: 981px) {
	html body.led-product-page .led-product__description table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) td,
	html body.led-product-page .led-product__description table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) th,
	html body.led-plp-page .led-plp__content-inner table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) td,
	html body.led-plp-page .led-plp__content-inner table:not(.wc-block-cart-items):not(.shop_table):not(.woocommerce-cart-form__contents) th {
		color:     var(--table-cell-color-desktop);
		font-size: var(--table-cell-font-size-desktop, 16px);
	}
}

html body.led-product-page .led-product__description img,
html body.led-plp-page .led-plp__content-inner img {
	border-radius: var(--border-radius-md);
}

