/* LED Theme CSS bundle — home — 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-front-page --- */
/*
 * Front page — production homepage structure (led-* BEM).
 * Reference: Divi homepage code module styles.
 */

html body.led-page .led-page__main--front {
	padding-block: var(--layout-content-top, 2rem) var(--space-10, 2.5rem);
}

@media (max-width: 1023px) {
	html body.led-page .led-page__main--front {
		padding-top: var(--layout-content-top-tablet, 1.5rem);
	}
}

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

.led-home {
	width: 100%;
}

.led-home__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-8, 2rem);
	width: 100%;
	margin-inline: auto;
}

@media (max-width: 767px) {
	.led-home__inner {
		gap: var(--space-6, 1.5rem);
	}
}

.led-home__inner > * {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Placeholder + section title: assets/css/components/shared.css */

/* --- Hero (.header-banner) --- */

.led-home__banner {
	position: relative;
	overflow: hidden;
	min-height: 465px;
	padding: 42px 0 0 42px;
	border-radius: 22px;
	background-color: var(--color-neutral-700, #808080);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: var(--color-neutral-0, #fff);
	box-sizing: border-box;
}

.led-home__banner-stamp {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 152px;
	height: 152px;
	z-index: 10;
	object-fit: contain;
}

.led-home__banner-body {
	position: relative;
	z-index: 2;
	flex: 1 1 49%;
	max-width: 800px;
	color: var(--color-neutral-0, #fff);
}

.led-home__banner-title {
	margin: 0;
	max-width: 800px;
	color: var(--color-neutral-0, #fff);
	text-align: left;
}

.led-home__banner-content {
	margin-bottom: 11px;
}

.led-home__banner-lead {
	max-width: 703px;
	margin: 20px 0;
	font-weight: var(--font-weight-bold, 700);
	color: inherit;
}

.led-home__banner-list {
	max-width: 703px;
	margin: 0 0 var(--space-4, 1rem);
	padding-left: 1.25em;
	list-style: disc;
	list-style-type: disc;
	color: inherit;
}

.led-home__banner-list li {
	display: list-item;
	list-style-type: disc;
	margin-bottom: 6px;
	line-height: 1.5;
}

.led-home__banner-list li:last-child {
	margin-bottom: 0;
}

.led-home__banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	position: relative;
	z-index: 100;
	margin-bottom: 42px;
}

.led-home__banner-certs {
	position: absolute;
	right: 45px;
	bottom: 20px;
	height: 71px;
	width: auto;
	max-width: calc(100% - 90px);
	object-fit: contain;
	z-index: 5;
}

@media (max-width: 1200px) {
	.led-home__banner-certs {
		height: 64px;
		bottom: 32px;
	}
}

@media (max-width: 979px) {
	.led-home__banner {
		padding: 0;
	}

	.led-home__banner-body {
		padding: 24px;
		padding-bottom: 96px;
	}

	.led-home__banner-title,
	.led-home__banner-lead,
	.led-home__banner-list {
		max-width: 70%;
	}

	.led-home__banner-title-wrap,
	.led-home__banner-content {
		margin: 0;
	}

	.led-home__banner-actions {
		margin-bottom: 0;
	}

	.led-home__banner-actions .led-btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.led-home__banner-certs {
		left: 0;
		right: 0;
		width: 100%;
		max-width: none;
		height: 49px;
		padding-inline: 24px;
		box-sizing: border-box;
	}
}

@media (max-width: 767px) {
	.led-home__banner-list {
		max-width: 100%;
	}

	.led-home__banner-title,
	.led-home__banner-title.led-h1 {
		letter-spacing: -0.02em;
	}

	.led-home__banner-stamp {
		top: 12px;
		right: 12px;
		width: 100px;
		height: 100px;
	}

	.led-home__banner-actions {
		flex-direction: column;
	}
}

@media (max-width: 576px) {
	.led-home__banner-lead,
	.led-home__banner-list {
		max-width: 100%;
	}
}

/* --- SPO cards (.spo-block-wrapper / .block-banner) --- */

.led-home__spo {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

a.led-home__spo-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4, 1rem);
	width: 100%;
	padding: 16px;
	border: 1px solid var(--color-border, #e2e2e2);
	border-radius: 16px;
	background: var(--color-bg, #fff);
	box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	overflow: hidden;
	transition:
		transform 0.2s ease-in-out,
		border-color 0.2s ease-in-out,
		box-shadow 0.2s ease-in-out;
}

a.led-home__spo-card:hover {
	transform: translateY(-1px);
	border-color: var(--color-primary-700, #078a3e);
	box-shadow: 0 8px 16px rgb(7 138 62 / 0.1);
}

.led-home__spo-copy {
	display: flex;
	flex-direction: column;
	gap: var(--space-4, 0.5rem);
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 16px;
}

.led-home__spo-title {
	margin: 0;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	color: var(--color-text, #000);
}

.led-home__spo-text {
	margin: 0;
	color: var(--color-text, #000);
}

.led-home__spo-media {
	flex: 0 0 auto;
	max-width: 140px;
	min-height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.led-home__spo-media img,
.led-home__spo-img {
	display: block;
	max-width: 100%;
	max-height: 160px;
	height: auto;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.led-home__spo {
		flex-direction: row;
		gap: 24px;
	}

	a.led-home__spo-card {
		flex: 1 1 50%;
		padding: 32px;
		min-width: 0;
	}

	.led-home__spo-copy {
		padding-right: 24px;
	}

	.led-home__spo-media {
		max-width: 220px;
	}
}

/* --- Brand promise --- */

.led-home__promise {
	position: relative;
	z-index: 0;
	margin-top: var(--space-12, 3rem);
	clear: both;
}

.led-home__promise-header {
	margin: var(--space-8, 2rem) auto var(--space-6, 1.5rem);
	text-align: center;
}

.led-home__promise-eyebrow {
	margin: 0;
}

.led-home__promise-title {
	margin: var(--space-2, 0.5rem) 0 0;
	color: var(--color-primary-400, #45b449);
}

.led-home__promise-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-3, 0.75rem);
	width: 100%;
}

.led-home__promise-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space-6, 1.5rem);
	width: 100%;
	padding: var(--space-5, 1.25rem);
	border: 1px solid var(--color-border, #e2e2e2);
	border-radius: 10px;
	background: var(--color-bg, #fff);
	box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
	box-sizing: border-box;
	transition: border-color var(--transition-slow, 0.3s ease), box-shadow var(--transition-slow, 0.3s ease);
}

/* Production .compare-us-banner-card:nth-child(even) — icon on right (mobile/tablet) */
.led-home__promise-card:nth-child(even) {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.led-home__promise-card:hover {
	border-color: var(--color-primary-700, #078a3e);
	box-shadow: 0 8px 16px color-mix(in srgb, var(--color-primary-700, #078a3e) 20%, transparent);
}

.led-home__promise-icon {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.led-home__promise-body {
	min-width: 0;
}

.led-home__promise-card-title {
	margin: 0 0 var(--space-2, 0.5rem);
	margin-top: 0 !important;
}

.led-home__promise-card-text {
	margin: 0;
	color: var(--color-text-muted, #565656);
}

/* Tablet: 2 per row, larger icons */
@media (min-width: 768px) {
	.led-home__promise-grid {
		grid-template-columns: 1fr 1fr;
	}

	.led-home__promise-icon {
		flex: 0 0 72px;
		width: 72px;
		height: 72px;
	}
}

/* Desktop: 4 per row, icon above text */
@media (min-width: 1024px) {
	.led-home__promise-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.led-home__promise-card,
	.led-home__promise-card:nth-child(even) {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.led-home__promise-icon {
		flex: 0 0 60px;
		width: 60px;
		height: 60px;
	}
}

/* --- Categories (production .categories-homepage) --- */

.led-home__categories {
	display: flex;
	flex-direction: column;
	gap: 96px;
	/* Center 1024px shell inside .led-wrap (flex stretch otherwise fills full wrap) */
	align-self: center;
	width: min(100%, 1024px);
	max-width: 1024px;
	margin: 64px auto;
}

.led-home__cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	width: 100%;
}

.led-home__cat-title {
	margin: 0;
	text-align: center;
	color: var(--color-text, #000);
}

/* Desktop: 2×2 grid stretches to featured image height; cards stay 184px (prod). */
.led-home__cat-row {
	display: flex;
	justify-content: center;
	gap: 32px;
	align-items: stretch;
	width: 100%;
}

.led-home__cat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 32px;
	flex: 0 0 auto;
	align-self: stretch;
}

a.led-home__cat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	max-width: 184px;
	width: 100%;
	height: 100%;
	min-height: 0;
	border: 1px solid #ededed;
	border-radius: 16px;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: inherit;
	background: #fff;
	box-sizing: border-box;
}

a.led-home__cat-item img {
	display: block;
	width: 100%;
	flex: 1 1 0;
	min-height: 0;
	max-height: 118px;
	object-fit: contain;
	object-position: center;
	background: var(--color-bg, #fff);
}

.led-home__cat-label {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 100%;
	padding: 8px 0;
	box-sizing: border-box;
	font-weight: var(--font-weight-bold, 700);
	text-align: center;
	color: var(--color-text, #000);
}

.led-home__cat-large {
	position: relative;
	overflow: hidden;
	/* Stretch with grid; shrink if row is tight */
	flex: 0 1 auto;
	align-self: stretch;
	max-width: 522px;
	width: min(100%, 522px);
	min-height: 355px;
	border-radius: 16px;
}

.led-home__cat-large a.led-home__cat-item--featured {
	position: relative;
	display: block;
	overflow: hidden;
	max-width: 522px;
	width: 100%;
	height: 100%;
	min-height: 355px;
	border: 1px solid #ededed;
	border-radius: 16px;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: inherit;
	background: #fff;
	box-sizing: border-box;
}

.led-home__cat-large a.led-home__cat-item--featured img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 355px;
	max-height: none;
	object-fit: cover;
	object-position: center;
}

/* Position only — look comes from .led-btn.blue-btn */
.led-home__cat-shop {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}

/*
 * Production only stacked at ≤600px.
 * We also stack tablet (≤1023) so featured stays full-width + on top.
 */
@media only screen and (max-width: 1023px) {
	.led-home__categories {
		max-width: none;
	}

	.led-home__cat-row,
	.led-home__cat-row--right {
		flex-direction: column;
		gap: 16px;
	}

	/* Same idea as .category-items.right { flex-direction: column-reverse } */
	.led-home__cat-large {
		order: -1;
		max-width: none;
		width: 100%;
	}

	.led-home__cat-grid {
		order: 1;
		gap: 16px;
		width: 100%;
	}

	a.led-home__cat-item {
		max-width: 100%;
		height: auto;
	}

	a.led-home__cat-item img {
		flex: none;
		width: 100%;
		height: 118px;
		max-height: 118px;
		object-fit: contain;
		object-position: center;
	}

	.led-home__cat-large {
		min-height: 220px;
		border-radius: 16px;
	}

	.led-home__cat-large a.led-home__cat-item--featured {
		max-width: 100%;
		min-height: 220px;
	}

	.led-home__cat-large a.led-home__cat-item--featured img {
		min-height: 220px;
	}
}


/* --- 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-components-shared --- */
/*
 * Shared home/component primitives (placeholder + section title).
 * Loaded with front page and any component that needs them.
 */

.led-home__ph {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gray-200, #e5e7eb);
	border: 2px dashed var(--color-gray-400, #9ca3af);
	color: var(--color-text-muted, #6b7280);
	font-size: var(--font-size-small);
	text-align: center;
	box-sizing: border-box;
}

html body .led-home__section-title {
	margin: 0 0 var(--space-4, 1rem);
	text-align: center;
}


/* --- led-theme-component-product-card --- */
/*
 * Shared product card — Best Sellers + PDP upsells
 */

.led-product-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-2, 0.5rem);
	min-width: 0;
	width: 100%;
	height: 100%;
	padding: var(--space-2, 0.5rem);
	border: 1px solid var(--color-border, #e2e2e2);
	border-radius: 10px;
	background: var(--color-bg, #fff);
	box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
	text-align: center;
	overflow: hidden;
	box-sizing: border-box;
}

a.led-product-card {
	text-decoration: none;
	color: inherit;
	transition: border-color var(--transition-slow, 0.3s ease), box-shadow var(--transition-slow, 0.3s ease);
}

a.led-product-card:hover {
	border-color: var(--color-primary-700, #078a3e);
	box-shadow: 0 8px 16px color-mix(in srgb, var(--color-primary-700, #078a3e) 20%, transparent);
}

.led-product-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.led-product-card__media img,
.led-product-card__img {
	display: block;
	width: 75%;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.led-product-card__ph {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	border: 1px dashed var(--color-primary-400, #45b449);
	border-radius: 4px;
	color: var(--color-text-muted, #646464);
}

.led-product-card__name {
	margin: 0;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	min-height: 5rem;
	color: var(--color-text, #000);
}

.led-product-card__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3, 0.75rem);
	margin-top: auto;
	width: 100%;
	color: var(--color-text-muted, #414141);
}

.led-product-card__price {
	color: var(--color-primary-400, #45b449);
	text-align: center;
	width: 100%;
}

.led-product-card__price-regular {
	color: var(--color-text-muted, #565656);
	text-decoration: line-through;
	margin-right: var(--space-1, 0.25rem);
	font-size: 0.75em;
}

.led-product-card__stock {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: var(--font-size-xxs);
	line-height: 1.3;
}

.led-product-card__stock strong {
	color: var(--color-text, #111);
}

/* CTA uses .led-btn.green-btn — layout only; tokens live in buttons.css */
a.led-product-card .led-product-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 12rem;
	margin-inline: auto;
	text-align: center;
	pointer-events: none; /* whole card is the link */
	white-space: normal;
	box-sizing: border-box;
}

.led-product-card__icons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px;
	justify-content: center;
	width: 100%;
	overflow: hidden;
}

/* Unwrap ACF/editor wrappers so imgs share one flex row */
.led-product-card__icons *:not(img):not(noscript) {
	display: contents;
}

.led-product-card__icons noscript {
	display: none !important;
}

.led-product-card__icons br {
	display: none;
}

.led-product-card__icons img {
	display: block;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	max-width: 18px;
	max-height: 18px;
	margin: 0;
	float: none;
	object-fit: contain;
}

.led-product-card__icons img:nth-child(n + 6) {
	display: none;
}

/* Tablet */
@media (min-width: 768px) {
	.led-product-card {
		padding: var(--space-4, 1rem);
	}

	.led-product-card__name {
		min-height: 3rem;
	}

	.led-product-card__media img,
	.led-product-card__img {
		width: 65%;
	}

	.led-product-card__stock {
		font-size: var(--font-size-small);
	}

	.led-product-card__icons {
		gap: 4px;
		margin-top: var(--space-2, 0.5rem);
	}

	.led-product-card__icons img {
		width: 28px;
		height: 28px;
		max-width: 28px;
		max-height: 28px;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.led-product-card__media img,
	.led-product-card__img {
		width: 50%;
	}

	.led-product-card__icons {
		gap: 6px;
	}

	.led-product-card__icons img {
		width: 32px;
		height: 32px;
		max-width: 32px;
		max-height: 32px;
	}

	.led-product-card__icons img:nth-child(6) {
		display: none;
	}
}

@media (min-width: 981px) {
	.led-product-card__stock {
		font-size: var(--font-size-small-desktop, var(--font-size-small));
	}
}


/* --- led-theme-component-bestsellers --- */
/*
 * Best Sellers grid — [led_bestsellers]
 * Card chrome: product-card.css (.led-product-card)
 */

.led-home__bestsellers {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-bottom: var(--space-4, 1rem);
}

.led-home__bestsellers .led-home__section-title {
	margin-block: var(--space-6, 1.5rem) var(--space-8, 2rem);
	text-align: center;
}

.led-home__products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-2, 0.5rem);
	width: 100%;
}

/* Tablet: 3 per row */
@media (min-width: 768px) {
	.led-home__products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Desktop: 5 per row (6th slot mobile/tablet only) */
@media (min-width: 1024px) {
	.led-home__products {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: var(--space-3, 0.75rem);
	}

	.led-home__products > .led-product-card:nth-child(6),
	.led-home__products > .led-product-card--mobile-only {
		display: none;
	}
}


/* --- led-theme-component-customers --- */
/*
 * Our Customers — Embla logo carousel [led_customers]
 * Fixed 160×100 slide box → no CLS; skel until img load.
 */

.led-customers {
	width: 100%;
}

.led-customers__title {
	margin-block: var(--space-6, 1.5rem) var(--space-4, 1rem);
	text-align: center;
}

.led-customers__banner {
	display: flex;
	align-items: center;
	gap: var(--space-2, 0.5rem);
	height: 110px;
	width: 100%;
}

.led-customers__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	height: 100px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.led-customers__container {
	display: flex;
	touch-action: pan-y pinch-zoom;
	height: 100%;
}

.led-customers__slide {
	position: relative;
	flex: 0 0 auto;
	width: 160px;
	height: 100px;
	margin-right: var(--space-4, 1rem);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.led-customers__skel {
	position: absolute;
	inset: 12px 20px;
	border-radius: 4px;
	background: linear-gradient(
		90deg,
		var(--color-neutral-100, #ededed) 0%,
		var(--color-neutral-50, #f5f5f5) 50%,
		var(--color-neutral-100, #ededed) 100%
	);
	background-size: 200% 100%;
	animation: led-customers-shimmer 1.2s ease-in-out infinite;
}

.led-customers__slide.is-loaded .led-customers__skel {
	display: none;
	animation: none;
}

a.led-customers__link {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 100px;
	text-decoration: none;
	color: inherit;
}

a.led-customers__link:focus-visible {
	outline: 2px solid var(--color-secondary, #1c86ff);
	outline-offset: 2px;
	border-radius: 4px;
}

@keyframes led-customers-shimmer {
	0% {
		background-position: 100% 0;
	}
	100% {
		background-position: -100% 0;
	}
}

.led-customers__img,
.led-customers__slide img {
	position: relative;
	z-index: 1;
	display: block;
	width: 160px;
	height: 100px;
	max-width: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.led-customers__slide.is-loaded .led-customers__img,
.led-customers__slide.is-loaded img {
	opacity: 1;
}

.led-customers__slide.is-loaded .led-customers__link .led-customers__img,
.led-customers__slide.is-loaded .led-customers__link img {
	opacity: 1;
}

.led-customers__prev,
.led-customers__next {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-text-muted, #565656);
	font-size: var(--font-size-h1-desktop, var(--font-size-h1));
	line-height: 1;
	cursor: pointer;
	user-select: none;
}

.led-customers__prev:hover,
.led-customers__next:hover {
	color: var(--color-text, #000);
}

.led-customers__prev:disabled,
.led-customers__next:disabled {
	opacity: 0.35;
	cursor: default;
}

@media only screen and (max-width: 600px) {
	.led-customers__prev,
	.led-customers__next {
		font-size: var(--font-size-h1);
		width: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.led-customers__skel {
		animation: none;
	}

	.led-customers__img,
	.led-customers__slide img {
		transition: none;
	}
}


/* --- led-theme-component-case-studies --- */
/*
 * Case studies cards — [led_case_studies]
 */

.led-home__cases {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin: 0 auto 24px;
}

.led-home__case {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	min-width: 0;
	border: 1px solid #dedede;
	border-radius: 8px;
	padding: 12px;
	box-sizing: border-box;
	background: #fff;
}

.led-home__case img {
	display: block;
	width: 117px;
	height: 82px;
	object-fit: contain;
}

.led-home__case-text {
	display: block;
	margin-top: 8px;
	font-weight: 700;
	color: #000;
	font-size: var(--font-size-body);
	line-height: 1.35;
	text-align: center;
}

@media (min-width: 768px) {
	.led-home__cases {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		margin-bottom: 32px;
	}

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

@media (min-width: 1024px) {
	.led-home__cases {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
		margin-bottom: 48px;
	}

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


/* --- 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);
}

