:root {
  --lfl-black: #030303;
  --lfl-black-soft: #080909;
  --lfl-charcoal: #101111;
  --lfl-panel: #121313;
  --lfl-panel-light: #181919;
  --lfl-white: #f7f7f4;
  --lfl-silver: #c9c9c5;
  --lfl-muted: #9d9e9b;
  --lfl-gold: #d5a52a;
  --lfl-gold-light: #f1d56a;
  --lfl-gold-dark: #76520c;
  --lfl-border: rgba(213, 165, 42, 0.42);
  --lfl-border-soft: rgba(255, 255, 255, 0.12);
  --lfl-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  --lfl-font: "Proxima Nova", Arial, Helvetica, sans-serif;
  --lfl-radius: 2px;
  --lfl-container: 1480px;
  --lfl-header-height: 82px;
}

html {
  scroll-behavior: smooth;
}

#about,
#catalog,
#faq,
#contact {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--lfl-black);
  color: var(--lfl-white);
  font-family: var(--lfl-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.lfl-menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--lfl-gold-light);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.lfl-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-180%);
  background: var(--lfl-gold-light);
  color: #080808;
  font-weight: 700;
}

.lfl-skip-link:focus {
  transform: translateY(0);
}

.lfl-container {
  width: min(calc(100% - 36px), var(--lfl-container));
  margin-inline: auto;
}

.lfl-main {
  overflow: hidden;
}

.lfl-section {
  position: relative;
  padding: 78px 0;
}

.lfl-eyebrow {
  display: inline-block;
  color: var(--lfl-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lfl-gold-rule {
  width: 64px;
  height: 2px;
  margin: 20px 0 26px;
  background: linear-gradient(90deg, var(--lfl-gold), var(--lfl-gold-light));
  box-shadow: 0 0 20px rgba(213, 165, 42, 0.5);
}

.lfl-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lfl-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 24px;
  border: 1px solid var(--lfl-gold);
  border-radius: var(--lfl-radius);
  background: rgba(0, 0, 0, 0.3);
  color: var(--lfl-white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lfl-button::after {
  content: "→";
  color: var(--lfl-gold-light);
  font-size: 1.15em;
}

.lfl-button:hover {
  border-color: var(--lfl-gold-light);
  background: rgba(213, 165, 42, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.lfl-button-gold {
  border-color: var(--lfl-gold-light);
  background: linear-gradient(110deg, #bd8420, #f1d96d 72%, #b37c18);
  color: #090909;
  box-shadow: 0 8px 30px rgba(213, 165, 42, 0.2);
}

.lfl-button-gold::after {
  color: #090909;
}

.lfl-button-gold:hover {
  background: linear-gradient(110deg, #d39e31, #fae68a 72%, #c99328);
  color: #090909;
}

.lfl-button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.7rem;
}

.lfl-notice-bar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(213, 165, 42, 0.26);
  background: linear-gradient(90deg, #060707, #131414 50%, #060707);
  color: var(--lfl-silver);
}

.lfl-notice-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-block: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}

.lfl-notice-inner strong {
  color: var(--lfl-gold-light);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lfl-notice-inner span {
  display: none;
}

.lfl-site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 2, 2, 0.98);
}

.lfl-header-inner {
  display: grid;
  min-height: var(--lfl-header-height);
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
}

.lfl-brand {
  display: inline-flex;
  width: min(210px, 100%);
  align-items: center;
}

.lfl-brand img {
  width: 100%;
  height: auto;
}

.lfl-menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--lfl-border);
  background: transparent;
  color: var(--lfl-white);
  cursor: pointer;
}

.lfl-menu-toggle-lines,
.lfl-menu-toggle-lines::before,
.lfl-menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--lfl-gold-light);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.lfl-menu-toggle-lines::before {
  transform: translateY(-6px);
}

.lfl-menu-toggle-lines::after {
  transform: translateY(5px);
}

.lfl-menu-toggle[aria-expanded="true"] .lfl-menu-toggle-lines {
  background: transparent;
}

.lfl-menu-toggle[aria-expanded="true"] .lfl-menu-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
}

.lfl-menu-toggle[aria-expanded="true"] .lfl-menu-toggle-lines::after {
  transform: translateY(-1px) rotate(-45deg);
}

.lfl-primary-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  min-height: calc(100vh - 120px);
  padding: 24px 18px 40px;
  border-top: 1px solid var(--lfl-border-soft);
  background: rgba(3, 3, 3, 0.99);
}

.lfl-primary-nav.is-open {
  display: block;
}

.lfl-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.lfl-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.lfl-menu a {
  display: flex;
  min-height: 54px;
  align-items: center;
  color: var(--lfl-white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lfl-menu a:hover,
.lfl-menu .current-menu-item > a {
  color: var(--lfl-gold-light);
}

.lfl-header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lfl-icon-button {
  position: relative;
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 0;
  background: transparent;
  color: var(--lfl-white);
  cursor: pointer;
}

.lfl-icon-button img {
  width: 24px;
  height: 24px;
}

.lfl-cart-link {
  display: inline-flex;
}

.lfl-cart-count {
  position: absolute;
  top: 0;
  right: -1px;
  display: flex;
  min-width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--lfl-gold);
  color: #060606;
  font-size: 0.62rem;
  font-weight: 800;
}

.lfl-header-shop {
  display: none;
}

.lfl-search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 18px 0;
  border-top: 1px solid var(--lfl-border-soft);
  border-bottom: 1px solid var(--lfl-border);
  background: rgba(4, 4, 4, 0.99);
  box-shadow: var(--lfl-shadow);
}

.lfl-search-panel .search-form {
  display: flex;
  max-width: 720px;
  margin-inline: auto;
}

.lfl-search-panel label {
  flex: 1;
}

.lfl-search-panel .search-field {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--lfl-border);
  background: var(--lfl-panel);
  color: var(--lfl-white);
}

.lfl-search-panel .search-submit {
  min-height: 50px;
  padding: 10px 20px;
  border: 1px solid var(--lfl-gold);
  background: var(--lfl-gold);
  color: #060606;
  font-weight: 700;
  cursor: pointer;
}

.lfl-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(178, 114, 16, 0.2), transparent 44%),
    linear-gradient(130deg, #030303 0%, #050505 48%, #0c0904 100%);
}

.lfl-hero::before {
  position: absolute;
  top: -10%;
  right: -25%;
  width: 70%;
  height: 120%;
  background: url("../images/backgrounds/logo-line-art.svg") center / contain no-repeat;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.lfl-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  align-items: center;
  padding-top: 62px;
}

.lfl-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.lfl-hero h1,
.lfl-section-heading h2,
.lfl-about h2,
.lfl-cta h2,
.lfl-footer-promo h2 {
  margin: 14px 0 0;
  color: var(--lfl-white);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.lfl-hero h1 {
  max-width: 560px;
  font-size: clamp(3.2rem, 14vw, 5.8rem);
}

.lfl-hero h1 .lfl-hero-gold,
.lfl-about h2 span,
.lfl-faq h2 span,
.lfl-cta h2 span {
  display: block;
  background: linear-gradient(105deg, #a46f16 0%, #f4db74 52%, #b27d20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lfl-hero-line,
.lfl-hero-gold {
  display: block;
  white-space: nowrap;
}

.lfl-hero-copy > p {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--lfl-silver);
  font-size: 1rem;
}

.lfl-hero-visual {
  position: absolute !important;
  z-index: 0;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  pointer-events: none;
}

.lfl-hero-visual img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: right center !important;
}

.lfl-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 1, 1, 0.72) 0%, rgba(1, 1, 1, 0.46) 30%, rgba(1, 1, 1, 0.13) 49%, transparent 68%);
  content: "";
  pointer-events: none;
}

.lfl-value-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(90deg, #101111, #070808 45%, #11110f);
}

.lfl-value-grid {
  display: grid;
}

.lfl-value-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lfl-value-item:last-child {
  border-bottom: 0;
}

.lfl-value-item img {
  width: 50px;
  height: 50px;
}

.lfl-value-item h2 {
  margin: 0 0 3px;
  color: var(--lfl-gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lfl-value-item p {
  margin: 0;
  color: var(--lfl-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.lfl-section-heading {
  margin-bottom: 34px;
}

.lfl-section-heading-center {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
  text-align: center;
}

.lfl-section-heading h2 {
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.05;
}

.lfl-section-heading > p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--lfl-muted);
}

.lfl-categories {
  background:
    linear-gradient(rgba(2, 2, 2, 0.95), rgba(2, 2, 2, 0.97)),
    url("../images/backgrounds/dark-luxury-texture.webp") center / cover;
}

.lfl-category-grid {
  display: grid;
  gap: 18px;
}

.lfl-category-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--lfl-border);
  border-radius: var(--lfl-radius);
  background: #080808;
  box-shadow: var(--lfl-shadow);
}

.lfl-category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.12) 100%);
  content: "";
}

.lfl-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lfl-category-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(60%, 310px);
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 20px;
}

.lfl-category-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lfl-category-copy h3::after {
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 16px;
  background: var(--lfl-gold);
  content: "";
}

.lfl-category-copy p {
  max-width: 170px;
  margin: 0 0 24px;
  color: var(--lfl-silver);
}

.lfl-featured {
  background:
    radial-gradient(circle at 50% 20%, rgba(158, 102, 19, 0.1), transparent 38%),
    #030303;
}

.lfl-product-grid {
  display: grid;
  gap: 14px;
}

.lfl-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lfl-border);
  border-radius: var(--lfl-radius);
  background: linear-gradient(155deg, #151616, #050505 68%);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lfl-product-card:hover {
  border-color: var(--lfl-gold-light);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
  transform: translateY(-5px);
}

.lfl-product-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  background: #050505;
}

.lfl-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lfl-product-card:hover .lfl-product-card-image img {
  transform: scale(1.025);
}

.lfl-product-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 16px;
  text-align: center;
}

.lfl-product-card h3 {
  min-height: 2.35em;
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-transform: uppercase;
}

.lfl-product-strength {
  display: inline-flex;
  min-width: 74px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: linear-gradient(100deg, #9b6916, #e7c252, #9b6916);
  color: #050505;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lfl-product-format {
  margin-top: 10px;
  color: var(--lfl-silver);
  font-size: 0.78rem;
}

.lfl-product-price {
  display: block;
  margin: 0 0 12px;
  color: var(--lfl-white);
  font-size: 0.96rem;
  font-weight: 700;
}

.lfl-product-price del { color: var(--lfl-muted); font-size: 0.82em; }
.lfl-product-price ins { color: var(--lfl-gold-light); text-decoration: none; }

.lfl-product-notice {
  margin: 5px 0 17px;
  color: var(--lfl-muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lfl-button-card {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 9px 12px;
  font-size: 0.66rem;
}

.lfl-section-action {
  margin-top: 32px;
  text-align: center;
}

.lfl-about {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.96), rgba(4, 4, 4, 0.8)),
    url("../images/backgrounds/geometric-primary.webp") center / cover;
}

.lfl-about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
  align-items: center;
}

.lfl-about-copy {
  position: relative;
  z-index: 2;
}

.lfl-about h2 {
  font-size: clamp(2.3rem, 10vw, 4rem);
  line-height: 1.02;
}

.lfl-about-copy p {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--lfl-silver);
}

.lfl-about-copy .lfl-button {
  margin-top: 14px;
}

.lfl-about-visual {
  position: absolute !important;
  z-index: 0;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden;
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
}

.lfl-about-visual picture,
.lfl-about-visual img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.lfl-about-visual img {
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: right center !important;
}

.lfl-about::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 1, 1, 0.78) 0%, rgba(1, 1, 1, 0.5) 31%, rgba(1, 1, 1, 0.14) 50%, transparent 69%);
  content: "";
  pointer-events: none;
}

.lfl-hero-grid::after,
.lfl-about-grid::after {
  display: none !important;
}

.lfl-catalog {
  background: linear-gradient(180deg, #070808, #020202);
}

.lfl-section-heading-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lfl-catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.lfl-catalog-links a {
  position: relative;
  padding-bottom: 8px;
  color: var(--lfl-silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lfl-catalog-links a:first-child,
.lfl-catalog-links a:hover {
  color: var(--lfl-gold-light);
}

.lfl-catalog-links a:first-child::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--lfl-gold-light);
  content: "";
}

.lfl-catalog-grid {
  display: grid;
  gap: 12px;
}

.lfl-catalog-card {
  display: grid;
  min-height: 132px;
  grid-template-columns: 112px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--lfl-border-soft);
  background: linear-gradient(135deg, #171818, #090909);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.lfl-catalog-card:hover {
  border-color: var(--lfl-gold);
}

.lfl-catalog-card > img {
  width: 112px;
  height: 132px;
  object-fit: cover;
}

.lfl-catalog-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 12px;
}

.lfl-catalog-card strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.lfl-catalog-card small {
  margin-top: 8px;
  padding: 3px 10px;
  background: var(--lfl-gold);
  color: #050505;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.lfl-catalog-card em {
  margin-top: 8px;
  color: var(--lfl-muted);
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

.lfl-benefits {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #020202;
}

.lfl-benefit-grid {
  display: grid;
  gap: 12px;
}

.lfl-benefit-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border: 1px solid var(--lfl-border);
  background: linear-gradient(150deg, rgba(22, 23, 23, 0.78), rgba(3, 3, 3, 0.88));
  text-align: center;
}

.lfl-benefit-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.lfl-benefit-card h3 {
  max-width: 210px;
  margin: 0 0 10px;
  color: var(--lfl-gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lfl-benefit-card p {
  margin: 0;
  color: var(--lfl-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.lfl-faq {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.96), rgba(15, 16, 16, 0.93)),
    url("../images/backgrounds/logo-line-art.svg") left center / auto 140% no-repeat;
}

.lfl-faq-grid {
  display: grid;
  gap: 36px;
}

.lfl-faq h2 {
  font-size: clamp(2.4rem, 11vw, 4.5rem);
}

.lfl-faq-heading p {
  margin: 0;
  color: var(--lfl-silver);
}

.lfl-accordion {
  display: grid;
  gap: 8px;
}

.lfl-accordion-item {
  border: 1px solid var(--lfl-border);
  background: linear-gradient(90deg, #181919, #0d0e0e);
}

.lfl-accordion-item h3 {
  margin: 0;
}

.lfl-accordion-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--lfl-white);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.lfl-accordion-item button i,
.lfl-accordion-item button i::after {
  display: block;
  width: 15px;
  height: 1px;
  flex: 0 0 15px;
  background: var(--lfl-gold-light);
  content: "";
  transition: transform 180ms ease;
}

.lfl-accordion-item button i::after {
  transform: rotate(90deg);
}

.lfl-accordion-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.lfl-accordion-panel {
  padding: 0 18px 18px;
  color: var(--lfl-silver);
}

.lfl-accordion-panel p {
  margin: 0;
}

.lfl-cta {
  padding: 20px 0;
  border-top: 1px solid var(--lfl-gold);
  border-bottom: 1px solid var(--lfl-gold);
  background: #050505;
}

.lfl-cta-inner {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--lfl-gold);
  background: url("../images/cta/cta-banner-wide.webp") 66% center / cover no-repeat;
  box-shadow: var(--lfl-shadow);
}

.lfl-cta-inner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.12) 100%);
  content: "";
}

.lfl-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 650px;
  min-height: 480px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 22px;
}

.lfl-cta h2 {
  font-size: clamp(2.5rem, 11vw, 4.8rem);
}

.lfl-cta-copy > p {
  max-width: 540px;
  margin: 22px 0 28px;
  color: var(--lfl-silver);
}

.lfl-footer-promo {
  padding: 20px 0 0;
  background: #050505;
}

.lfl-footer-promo-inner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--lfl-border);
  background: #070707;
}

.lfl-footer-promo-inner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.92) 56%);
  content: "";
}

.lfl-footer-promo-inner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.lfl-footer-promo-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 22px;
}

.lfl-footer-promo h2 {
  max-width: 650px;
  font-size: clamp(2.25rem, 9vw, 4rem);
  line-height: 1;
}

.lfl-footer-promo .lfl-button {
  margin-top: 28px;
}

.lfl-site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(7, 8, 8, 0.97), rgba(7, 8, 8, 0.97)),
    url("../images/backgrounds/dark-luxury-texture.webp") center / cover;
}

.lfl-footer-grid {
  display: grid;
  gap: 38px;
  padding-top: 62px;
  padding-bottom: 54px;
}

.lfl-footer-brand .lfl-brand {
  width: min(280px, 100%);
}

.lfl-footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--lfl-muted);
}

.lfl-footer-column h2 {
  margin: 0 0 18px;
  color: var(--lfl-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lfl-footer-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lfl-footer-column li,
.lfl-footer-column p {
  margin: 0;
}

.lfl-footer-column a {
  color: var(--lfl-silver);
}

.lfl-footer-column a:hover {
  color: var(--lfl-gold-light);
}

.lfl-footer-notice {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--lfl-border);
}

.lfl-footer-notice strong {
  color: var(--lfl-gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lfl-footer-notice span {
  color: var(--lfl-muted);
  font-size: 0.78rem;
}

.lfl-footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--lfl-border);
  color: var(--lfl-muted);
  font-size: 0.76rem;
}

.lfl-footer-bottom .lfl-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lfl-content-shell,
.lfl-commerce {
  min-height: 60vh;
  padding: 72px 0;
  background: var(--lfl-black);
}

.lfl-entry {
  max-width: 900px;
}

.lfl-entry h1,
.lfl-commerce h1 {
  color: var(--lfl-white);
  font-size: clamp(2.3rem, 8vw, 4.5rem);
}

.lfl-commerce .woocommerce-breadcrumb,
.lfl-commerce .woocommerce-result-count,
.lfl-commerce .woocommerce-ordering {
  color: var(--lfl-muted);
}

.lfl-commerce ul.products li.product,
.lfl-commerce div.product {
  color: var(--lfl-white);
}

.lfl-product-research-badge,
.lfl-research-notice {
  color: var(--lfl-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .lfl-notice-inner span {
    display: inline;
  }

  .lfl-notice-inner strong::after {
    margin-left: 8px;
    color: var(--lfl-gold-dark);
    content: "|";
  }

  .lfl-icon-button {
    display: inline-flex;
  }

  .lfl-product-grid,
  .lfl-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfl-footer-promo-copy {
    width: 62%;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .lfl-container {
    width: min(calc(100% - 64px), var(--lfl-container));
  }

  .lfl-section {
    padding: 104px 0;
  }

  .lfl-notice-inner {
    min-height: 42px;
    font-size: 0.72rem;
  }

  .lfl-header-inner {
    min-height: 94px;
  }

  .lfl-brand {
    width: 250px;
  }

  .lfl-hero-grid {
    min-height: 760px;
    padding-top: 82px;
  }

  .lfl-hero h1 {
    font-size: clamp(5rem, 10vw, 7.1rem);
  }

  .lfl-hero-copy > p {
    font-size: 1.12rem;
  }

  .lfl-hero-visual {
    width: calc(100% + 64px);
    margin-right: -32px;
    margin-left: -32px;
  }

  .lfl-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfl-value-item:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid rgba(213, 165, 42, 0.34);
  }

  .lfl-value-item:nth-child(even) {
    padding-left: 28px;
  }

  .lfl-value-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .lfl-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 380px;
  }

  .lfl-category-copy {
    padding: 42px;
  }

  .lfl-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lfl-about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
  }

  .lfl-section-heading-split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .lfl-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfl-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lfl-cta-inner,
  .lfl-cta-copy {
    min-height: 520px;
  }

  .lfl-cta-copy {
    width: 62%;
    padding: 60px;
  }

  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 470px;
  }

  .lfl-footer-promo-copy {
    padding: 60px;
  }

  .lfl-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lfl-footer-brand {
    grid-column: 1 / -1;
  }

  .lfl-footer-bottom .lfl-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .lfl-header-inner {
    grid-template-columns: 240px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .lfl-menu-toggle {
    display: none;
  }

  .lfl-primary-nav {
    position: static;
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .lfl-menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 32px);
    max-width: none;
  }

  .lfl-menu li {
    position: relative;
    border: 0;
  }

  .lfl-menu a {
    min-height: 44px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .lfl-menu .current-menu-item > a::after,
  .lfl-menu a:hover::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--lfl-gold-light);
    content: "";
  }

  .lfl-header-actions {
    gap: 5px;
  }

  .lfl-hero-grid {
    min-height: 680px;
    grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
    padding-top: 0;
  }

  .lfl-hero h1 {
    font-size: clamp(5.1rem, 7.3vw, 7.7rem);
  }

  .lfl-hero-visual {
    align-self: stretch;
    width: calc(100% + max(32px, (100vw - var(--lfl-container)) / 2));
    margin: 0;
  }

  .lfl-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-position: right center;
  }

  .lfl-value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lfl-value-item,
  .lfl-value-item:nth-child(odd),
  .lfl-value-item:nth-child(even) {
    padding: 28px 24px;
    border-right: 1px solid rgba(213, 165, 42, 0.34);
    border-bottom: 0;
  }

  .lfl-value-item:first-child {
    padding-left: 0;
  }

  .lfl-value-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 420px;
  }

  .lfl-category-copy {
    padding: 52px;
  }

  .lfl-product-card-image {
    aspect-ratio: 1 / 0.94;
  }

  .lfl-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lfl-faq-grid {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: start;
  }

  .lfl-footer-grid {
    grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(150px, 0.65fr));
  }

  .lfl-footer-brand {
    grid-column: auto;
  }
}

/* Focused homepage polish: category art, branded states, product rails, FAQ, and social icons. */
:root {
  --e-global-color-accent: var(--lfl-gold);
  --e-a-color-primary: var(--lfl-gold);
  --e-a-color-primary-bold: var(--lfl-gold-light);
}

.lfl-category-card::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.24) 31%, rgba(0, 0, 0, 0.06) 47%, transparent 61%);
}

.lfl-category-card img {
  object-position: right center;
}

.lfl-hero-visual img,
.lfl-about-visual picture img {
  object-position: right center;
}

.lfl-product-title {
  display: block;
  width: 100%;
  min-height: 1.2em !important;
  overflow: hidden;
  white-space: nowrap;
}

.lfl-product-title span {
  display: inline-block;
  min-width: max-content;
}

.lfl-product-title.is-overflowing {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.lfl-product-title.is-overflowing span {
  padding-inline: 10px;
  animation: lfl-title-reveal 6s ease-in-out 1s infinite alternate;
}

@keyframes lfl-title-reveal {
  0%, 18% { transform: translateX(0); }
  82%, 100% { transform: translateX(calc(-1 * var(--lfl-title-shift))); }
}

.lfl-featured .lfl-button-card {
  width: auto;
  min-width: 132px;
  min-height: 34px;
  padding: 7px 14px;
  font-size: 0.62rem;
}

.lfl-catalog-viewport {
  margin-top: -12px;
  padding-top: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.lfl-catalog-track {
  padding: 14px 28px 18px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.lfl-catalog-card:hover strong,
.lfl-catalog-card:focus-visible strong {
  color: var(--lfl-gold-light) !important;
}

.lfl-faq-grid {
  align-items: start;
}

.lfl-faq-heading {
  align-self: start;
}

.lfl-accordion-panel > div {
  padding: 12px 22px 22px;
}

.lfl-accordion-item button:hover,
.lfl-accordion-item button:focus-visible,
.lfl-accordion-item button[aria-expanded="true"] {
  border-color: var(--lfl-gold-light) !important;
  background: linear-gradient(90deg, rgba(213, 165, 42, 0.14), rgba(213, 165, 42, 0.04)) !important;
  color: var(--lfl-white) !important;
}

body button:hover,
body button:focus-visible,
body input[type="button"]:hover,
body input[type="button"]:focus-visible,
body input[type="submit"]:hover,
body input[type="submit"]:focus-visible {
  background-color: rgba(213, 165, 42, 0.12) !important;
}

.lfl-footer-social a {
  color: var(--lfl-gold);
}

.lfl-footer-social svg {
  width: 23px;
  height: 23px;
}

.lfl-footer-social svg path {
  fill: currentColor;
}

.lfl-footer-social .lfl-social--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.lfl-footer-social .lfl-social--instagram .lfl-social-dot {
  fill: currentColor;
  stroke: none;
}

.lfl-footer-social a:hover,
.lfl-footer-social a:focus-visible {
  color: var(--lfl-gold-light) !important;
  border-color: var(--lfl-gold-light);
  background: rgba(213, 165, 42, 0.1);
}

body a:hover,
body a:focus-visible,
body .elementor a:hover,
body .elementor a:focus-visible,
body .woocommerce a:hover,
body .woocommerce a:focus-visible,
body .elementor-tab-title:hover,
body .elementor-tab-title:focus-visible,
body .elementor-tab-title.elementor-active {
  color: var(--lfl-gold-light) !important;
}

body button:hover,
body button:focus-visible,
body input[type="button"]:hover,
body input[type="button"]:focus-visible,
body input[type="submit"]:hover,
body input[type="submit"]:focus-visible,
body .elementor-button:hover,
body .elementor-button:focus-visible,
body .woocommerce a.button:hover,
body .woocommerce a.button:focus-visible {
  border-color: var(--lfl-gold-light) !important;
  color: var(--lfl-gold-light) !important;
}

body .elementor-button:hover,
body .elementor-button:focus-visible,
body .woocommerce a.button:hover,
body .woocommerce a.button:focus-visible,
body .woocommerce button.button:hover,
body .woocommerce button.button:focus-visible,
body .woocommerce input.button:hover,
body .woocommerce input.button:focus-visible {
  border-color: var(--lfl-gold-light) !important;
  background-color: var(--lfl-gold) !important;
  color: #050505 !important;
}

body input:focus,
body select:focus,
body textarea:focus,
body .elementor-field:focus {
  border-color: var(--lfl-gold-light) !important;
  box-shadow: 0 0 0 2px rgba(213, 165, 42, 0.18) !important;
  outline-color: var(--lfl-gold-light) !important;
}

body .elementor-icon:hover,
body .elementor-icon:focus-visible,
body .elementor-icon-list-item:hover .elementor-icon-list-icon,
body .elementor-icon-list-item:focus-within .elementor-icon-list-icon {
  color: var(--lfl-gold-light) !important;
  fill: var(--lfl-gold-light) !important;
}

@media (min-width: 1200px) {
  .lfl-featured .lfl-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfl-product-title.is-overflowing span {
    animation: none;
  }
}

/* Footer navigation balance and responsive accordion behavior. */
.lfl-footer-column h2 button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
}

.lfl-footer-column h2 button:disabled {
  cursor: default;
  opacity: 1;
}

body .lfl-footer-column h2 button:hover {
  border-color: transparent !important;
  background: transparent !important;
  color: var(--lfl-gold-light) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.lfl-footer-column h2 button > span {
  display: none;
}

.lfl-footer-bottom .lfl-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
}

.lfl-footer-utility-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lfl-footer-utility-menu li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.lfl-footer-utility-menu li + li::before {
  color: rgba(213, 165, 42, 0.48);
  content: "\00b7";
}

.lfl-footer-utility-menu a {
  color: #8f8d87;
  font-size: 0.69rem;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.lfl-footer-utility-menu a:hover,
.lfl-footer-utility-menu a:focus-visible,
.lfl-footer-utility-menu .current-menu-item > a {
  color: var(--lfl-gold-light);
}

.lfl-footer-disclaimer {
  color: #817f79;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .lfl-footer-bottom .lfl-container {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 24px;
  }

  .lfl-footer-utility {
    justify-self: end;
  }

  .lfl-footer-disclaimer {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .lfl-footer-bottom .lfl-container {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 28px;
  }

  .lfl-footer-utility {
    justify-self: center;
  }

  .lfl-footer-disclaimer {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .lfl-footer-grid {
    gap: 0;
  }

  .lfl-footer-brand {
    padding-bottom: 34px;
  }

  .lfl-footer-column[data-footer-accordion] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lfl-footer-column[data-footer-accordion] h2 {
    margin: 0;
  }

  .lfl-footer-column h2 button {
    min-height: 54px;
    color: var(--lfl-gold-light);
    cursor: pointer;
  }

  .lfl-footer-column h2 button > span {
    position: relative;
    display: block;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .lfl-footer-column h2 button > span::before,
  .lfl-footer-column h2 button > span::after {
    position: absolute;
    top: 6px;
    right: 0;
    width: 13px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .lfl-footer-column h2 button > span::after {
    transform: rotate(90deg);
  }

  .lfl-footer-column h2 button[aria-expanded="true"] > span::after {
    opacity: 0;
    transform: rotate(0);
  }

  .lfl-footer-column [data-footer-accordion-panel] {
    padding-bottom: 20px;
  }

  .lfl-footer-contact .lfl-footer-notice {
    margin: 18px 0 30px;
  }

  .lfl-footer-bottom .lfl-container {
    justify-items: start;
  }

  .lfl-footer-utility-menu {
    gap: 4px 8px;
  }

  .lfl-footer-utility-menu li {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfl-footer-column h2 button > span::before,
  .lfl-footer-column h2 button > span::after {
    transition: none;
  }
}




/* Targeted desktop homepage fixes. */
@media (min-width: 1024px) {
  .lfl-hero,
  .lfl-about {
    overflow: hidden;
  }

  .lfl-hero-grid,
  .lfl-about-grid {
    overflow: visible;
  }

  .lfl-hero-visual {
    inset: 0 calc((100vw - 100%) / -2) 0 0;
    width: auto;
    margin: 0;
  }

  .lfl-about-visual {
    inset: 0 calc((100vw - 100%) / -2) 0 0;
    width: auto;
  }

  .lfl-hero-visual img,
  .lfl-about-visual picture,
  .lfl-about-visual picture img {
    width: 100%;
    height: 100%;
  }

  .lfl-hero-visual img,
  .lfl-about-visual picture img {
    object-fit: cover;
    object-position: right center;
  }

  .lfl-hero h1 {
    font-size: clamp(5.55rem, 6.25vw, 7.45rem);
  }

  .lfl-featured .lfl-product-card {
    display: flex;
    height: 100%;
    flex-direction: column;
  }

  .lfl-featured .lfl-product-card-body {
    min-height: 148px;
    flex: 1;
    padding: 13px 12px 12px;
  }

  .lfl-featured .lfl-product-title {
    margin-bottom: 6px;
  }

  .lfl-featured .lfl-product-strength {
    min-height: 22px;
    padding: 3px 10px;
  }

  .lfl-featured .lfl-product-format {
    margin-top: 5px;
    margin-bottom: 6px;
  }
}

.lfl-hero-gold {
  position: relative;
  width: max-content;
  max-width: 100%;
}

.lfl-hero-gold sup {
  position: absolute;
  top: 0.08em;
  left: 100%;
  margin: 0 0 0 0.08em;
  font-size: 0.12em;
  line-height: 1;
  vertical-align: baseline;
}

.lfl-category-copy h3 {
  letter-spacing: 0.075em;
}

.lfl-button-gold:hover,
.lfl-button-gold:focus,
.lfl-button-gold:focus-visible,
.lfl-button-gold:active {
  border-color: var(--lfl-gold-light) !important;
  background: linear-gradient(110deg, #d39e31, #fae68a 72%, #c99328) !important;
  color: #050505 !important;
  box-shadow: 0 10px 34px rgba(213, 165, 42, 0.34);
}

.lfl-button-gold:hover::after,
.lfl-button-gold:focus::after,
.lfl-button-gold:focus-visible::after,
.lfl-button-gold:active::after,
.lfl-button-gold:hover svg,
.lfl-button-gold:focus svg,
.lfl-button-gold:focus-visible svg,
.lfl-button-gold:active svg {
  color: #050505 !important;
  fill: #050505 !important;
  stroke: #050505 !important;
}

.lfl-accordion-item button i {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: none !important;
  transform: none !important;
}

.lfl-accordion-item button i::before,
.lfl-accordion-item button i::after {
  position: absolute;
  top: 50%;
  left: 2px;
  display: block !important;
  width: 20px;
  height: 1px;
  background: var(--lfl-gold-light) !important;
  content: "";
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lfl-accordion-item button i::after {
  transform: translateY(-50%) rotate(90deg);
}

.lfl-accordion-item button[aria-expanded="true"] i::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

body {
  --e-global-color-accent: var(--lfl-gold);
  --e-a-color-primary: var(--lfl-gold);
  --e-a-color-primary-bold: var(--lfl-gold-light);
  --wc-primary: var(--lfl-gold);
}

body input[type="checkbox"],
body input[type="radio"],
body input[type="range"],
body progress {
  accent-color: var(--lfl-gold);
}

body :where(a, button, input, select, textarea):focus,
body :where(a, button, input, select, textarea):focus-visible {
  outline-color: var(--lfl-gold-light) !important;
}

body .lfl-menu a:hover,
body .lfl-menu a:focus,
body .lfl-menu a:focus-visible,
body .lfl-menu a:active,
body .lfl-menu .current-menu-item > a,
body .lfl-menu .current-menu-ancestor > a,
body .lfl-menu .sub-menu a:hover,
body .lfl-menu .sub-menu a:focus,
body .lfl-menu .sub-menu a:active,
body .lfl-icon-button:hover,
body .lfl-icon-button:focus,
body .lfl-icon-button:focus-visible,
body .lfl-icon-button:active,
body .lfl-catalog-links button:hover,
body .lfl-catalog-links button:focus,
body .lfl-catalog-links button:focus-visible,
body .lfl-catalog-links button:active,
body .lfl-catalog-links button[aria-selected="true"],
body .lfl-catalog-arrows button:hover,
body .lfl-catalog-arrows button:focus,
body .lfl-catalog-arrows button:focus-visible,
body .lfl-catalog-arrows button:active,
body .lfl-accordion-item button:hover,
body .lfl-accordion-item button:focus,
body .lfl-accordion-item button:focus-visible,
body .lfl-accordion-item button:active,
body .lfl-accordion-item button[aria-expanded="true"],
body .elementor-tab-title:hover,
body .elementor-tab-title:focus,
body .elementor-tab-title:focus-visible,
body .elementor-tab-title:active,
body .elementor-tab-title.elementor-active,
body .elementor [aria-selected="true"],
body .elementor .active,
body .elementor .selected,
body .woocommerce a:hover,
body .woocommerce a:focus,
body .woocommerce a:focus-visible,
body .woocommerce a:active,
body .woocommerce .active > a,
body .woocommerce .selected > a,
body .woocommerce-tabs ul.tabs li.active a,
body .woocommerce nav.woocommerce-pagination ul li span.current {
  border-color: var(--lfl-gold-light) !important;
  color: var(--lfl-gold-light) !important;
}

body .lfl-catalog-links button[aria-selected="true"],
body .lfl-accordion-item button[aria-expanded="true"],
body .elementor-tab-title.elementor-active,
body .elementor [aria-selected="true"],
body .woocommerce .active > a,
body .woocommerce .selected > a,
body .woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: rgba(213, 165, 42, 0.12) !important;
  box-shadow: none !important;
}

body .elementor-button:hover,
body .elementor-button:focus,
body .elementor-button:focus-visible,
body .elementor-button:active,
body .woocommerce a.button:hover,
body .woocommerce a.button:focus,
body .woocommerce a.button:focus-visible,
body .woocommerce a.button:active,
body .woocommerce button.button:hover,
body .woocommerce button.button:focus,
body .woocommerce button.button:focus-visible,
body .woocommerce button.button:active,
body .woocommerce input.button:hover,
body .woocommerce input.button:focus,
body .woocommerce input.button:focus-visible,
body .woocommerce input.button:active {
  border-color: var(--lfl-gold-light) !important;
  background-color: var(--lfl-gold) !important;
  color: #050505 !important;
}

body .elementor-button:is(:hover, :focus, :focus-visible, :active) svg,
body .woocommerce :is(a.button, button.button):is(:hover, :focus, :focus-visible, :active) svg {
  color: #050505 !important;
  fill: #050505 !important;
  stroke: #050505 !important;
}

body :where(input, select, textarea):active,
body :where(input, select, textarea):focus,
body :where(input, select, textarea):focus-visible,
body :where(input, select, textarea):checked {
  border-color: var(--lfl-gold-light) !important;
  box-shadow: 0 0 0 2px rgba(213, 165, 42, 0.18) !important;
}

/* Precision parity pass: tighter approved section rhythm and component scale. */
.lfl-gold-rule {
  position: relative;
  width: 120px;
  height: 2px;
  margin: 28px 0 30px;
  background: linear-gradient(90deg, #9d6812 0%, #f4db74 48%, rgba(244, 219, 116, 0) 100%);
  box-shadow: 0 0 14px rgba(224, 178, 57, 0.34);
}

.lfl-gold-rule::after {
  position: absolute;
  right: -28px;
  top: -1px;
  width: 22px;
  height: 4px;
  background: linear-gradient(90deg, rgba(244, 219, 116, 0.72), transparent);
  content: "";
}

.lfl-hero-gold sup {
  display: inline-block;
  margin-left: 5px;
  color: var(--lfl-gold-light);
  font-size: 0.19em;
  letter-spacing: 0;
  vertical-align: top;
  -webkit-text-fill-color: var(--lfl-gold-light);
}

.lfl-product-heart {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(213, 165, 42, 0.78);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.76);
  color: var(--lfl-white);
  font-size: 1rem;
  line-height: 1;
}

.lfl-catalog-arrows img,
.lfl-contact-links img,
.lfl-footer-notice img,
.lfl-footer-social img {
  display: block;
}

.lfl-faq-heading .lfl-button {
  margin-top: 26px;
}

.lfl-accordion-item button i {
  width: 18px;
  height: 18px;
  background: url("../images/icons/plus.svg") center / contain no-repeat;
}

.lfl-accordion-item button i::after {
  display: none;
}

.lfl-accordion-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.lfl-cta-inner {
  background: #080704;
}

.lfl-cta-inner::before {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: 38%;
  background: url("../images/cta/cta-banner-wide.webp") right center / auto 100% no-repeat;
  content: "";
}

.lfl-cta-inner::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 28%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.42) 100%);
}

.lfl-cta-text {
  position: relative;
  z-index: 2;
}

.lfl-footer-grid {
  border-top: 1px solid rgba(213, 165, 42, 0.26);
}

.lfl-footer-social {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}

.lfl-footer-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--lfl-gold-light);
  font-size: 1rem;
}

.lfl-contact-links {
  display: grid;
  gap: 13px;
}

.lfl-contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.lfl-contact-links img {
  width: 20px;
  height: 20px;
}

.lfl-footer-notice strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .lfl-header-inner {
    min-height: 116px;
  }

  .lfl-site-header.is-compact .lfl-header-inner {
    min-height: 78px;
  }

  .lfl-hero-grid {
    min-height: 700px;
    grid-template-columns: minmax(560px, 0.9fr) minmax(0, 1.1fr);
  }

  .lfl-hero-copy {
    padding-left: 28px;
  }

  .lfl-hero h1 {
    font-size: clamp(6.1rem, 6.9vw, 8.25rem);
  }

  .lfl-hero-copy > p {
    max-width: 610px;
    margin-bottom: 34px;
  }

  .lfl-hero-visual img {
    object-position: 58% center;
  }

  .lfl-value-item,
  .lfl-value-item:nth-child(odd),
  .lfl-value-item:nth-child(even) {
    min-height: 128px;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding-block: 22px;
  }

  .lfl-value-item img {
    width: 58px;
    height: 58px;
  }

  .lfl-categories,
  .lfl-featured {
    padding-block: 54px;
  }

  .lfl-categories .lfl-section-heading,
  .lfl-featured .lfl-section-heading {
    margin-bottom: 32px;
  }

  .lfl-section-heading h2 {
    font-size: clamp(2.55rem, 3.2vw, 3.8rem);
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 340px;
  }

  .lfl-category-copy {
    width: min(52%, 330px);
    padding: 44px;
  }

  .lfl-category-copy h3 {
    font-size: 2.05rem;
  }

  .lfl-featured .lfl-product-grid {
    align-items: stretch;
  }

  .lfl-product-card-image {
    aspect-ratio: 1 / 0.86;
  }

  .lfl-product-card-body {
    min-height: 188px;
    padding: 16px 14px 14px;
  }

  .lfl-product-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .lfl-product-strength {
    min-height: 24px;
  }

  .lfl-product-format {
    margin-top: 7px;
  }

  .lfl-product-notice {
    margin: 4px 0 12px;
  }

  .lfl-about {
    padding-block: 0;
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.97), rgba(4, 4, 4, 0.66)),
      url("../images/backgrounds/geometric-secondary.webp") center / cover;
  }

  .lfl-about-grid {
    min-height: 505px;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 72px;
  }

  .lfl-about h2 {
    max-width: 650px;
    font-size: clamp(3.1rem, 3.8vw, 4.35rem);
  }

  .lfl-about-copy p {
    max-width: 600px;
    font-size: 1rem;
  }

  .lfl-about-visual {
    height: 505px;
    border-block: 0;
  }

  .lfl-about-visual img {
    height: 100%;
    aspect-ratio: auto;
    object-position: left center;
  }

  .lfl-catalog {
    padding-block: 54px;
  }

  .lfl-catalog .lfl-section-heading {
    margin-bottom: 26px;
  }

  .lfl-catalog-card {
    min-height: 160px;
    grid-template-columns: 96px 1fr;
  }

  .lfl-catalog-card > img {
    width: 96px;
    height: 160px;
  }

  .lfl-benefits {
    padding-block: 54px;
  }

  .lfl-benefits .lfl-section-heading {
    margin-bottom: 22px;
  }

  .lfl-benefit-card {
    min-height: 190px;
    padding: 22px 14px;
  }

  .lfl-benefit-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .lfl-faq {
    padding-block: 56px;
  }

  .lfl-faq-grid {
    min-height: 405px;
    grid-template-columns: minmax(380px, 0.76fr) minmax(0, 1.24fr);
    gap: 92px;
  }

  .lfl-faq h2 {
    font-size: clamp(3rem, 4vw, 4.4rem);
  }

  .lfl-accordion-item button {
    min-height: 58px;
    padding: 14px 22px;
  }

  .lfl-cta {
    padding-block: 20px;
  }

  .lfl-cta-inner,
  .lfl-cta-copy {
    min-height: 260px;
  }

  .lfl-cta-copy {
    width: 66%;
    max-width: none;
    margin-left: 34%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.94fr);
    align-items: center;
    gap: 48px;
    padding: 28px 50px;
  }

  .lfl-cta h2 {
    margin-top: 0;
    font-size: clamp(2.65rem, 3.25vw, 3.9rem);
    line-height: 0.98;
  }

  .lfl-cta-copy .lfl-gold-rule {
    margin: 18px 0 14px;
  }

  .lfl-cta-copy p {
    margin: 0;
    font-size: 0.92rem;
  }

  .lfl-cta-copy .lfl-button-group {
    flex-wrap: nowrap;
  }

  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 330px;
  }

  .lfl-footer-promo-copy {
    padding: 44px 60px;
  }

  .lfl-footer-promo h2 {
    max-width: 580px;
    font-size: 3.2rem;
  }

  .lfl-footer-grid {
    grid-template-columns: minmax(300px, 1.35fr) repeat(4, minmax(145px, 0.72fr));
    gap: 44px;
    padding-top: 52px;
    padding-bottom: 48px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .lfl-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfl-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .lfl-hero-gold sup {
    font-size: 0.22em;
  }

  .lfl-gold-rule {
    margin-block: 22px 24px;
  }

  .lfl-section {
    padding-block: 68px;
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 360px;
  }

  .lfl-product-card-body {
    min-height: 205px;
  }

  .lfl-faq-heading .lfl-button {
    margin-top: 22px;
  }

  .lfl-cta-inner::before {
    width: 100%;
    background-size: cover;
    background-position: 64% center;
    transform: none;
  }

  .lfl-cta-copy {
    margin-left: 0;
  }

  .lfl-cta-text p {
    max-width: 540px;
    margin: 22px 0 28px;
    color: var(--lfl-silver);
  }

  .lfl-footer-grid {
    gap: 32px;
  }
}

@media (min-width: 1200px) {
  .lfl-header-inner {
    grid-template-columns: 280px minmax(0, 1fr) auto;
  }

  .lfl-menu a {
    font-size: 0.74rem;
  }

  .lfl-header-shop {
    display: inline-flex;
    margin-left: 8px;
  }

  .lfl-hero-grid {
    min-height: 720px;
  }

  .lfl-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lfl-product-card-body {
    min-height: 265px;
    padding: 20px 12px 14px;
  }

  .lfl-product-card h3 {
    font-size: 1.02rem;
  }

  .lfl-benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lfl-benefit-card {
    min-height: 230px;
    padding-inline: 14px;
  }
}

@media (min-width: 1440px) {
  .lfl-section {
    padding: 122px 0;
  }

  .lfl-header-inner {
    min-height: 106px;
    grid-template-columns: 300px minmax(0, 1fr) auto;
  }

  .lfl-menu {
    gap: clamp(22px, 2vw, 40px);
  }

  .lfl-menu a {
    font-size: 0.8rem;
  }

  .lfl-hero-grid {
    min-height: 780px;
  }

  .lfl-hero h1 {
    font-size: 7.8rem;
  }

  .lfl-value-item {
    grid-template-columns: 64px 1fr;
  }

  .lfl-value-item img {
    width: 58px;
    height: 58px;
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 450px;
  }

  .lfl-category-copy {
    padding: 64px;
  }

  .lfl-category-copy h3 {
    font-size: 2.75rem;
  }

  .lfl-product-card h3 {
    font-size: 1.14rem;
  }

  .lfl-catalog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lfl-catalog-card {
    min-height: 160px;
    grid-template-columns: 88px 1fr;
  }

  .lfl-catalog-card > img {
    width: 88px;
    height: 160px;
  }

  .lfl-catalog-card-copy {
    padding: 12px 10px;
  }

  .lfl-catalog-card strong {
    font-size: 0.92rem;
  }

  .lfl-cta-inner,
  .lfl-cta-copy {
    min-height: 560px;
  }

  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 510px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Homepage refinement layer: approved reference scale, depth, and motion. */
:root {
  --lfl-container: 1680px;
  --lfl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.lfl-search-open {
  overflow: hidden;
}

.lfl-section {
  padding-block: clamp(88px, 7vw, 138px);
}

.lfl-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 56px;
  padding-inline: 30px;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 260ms var(--lfl-ease), box-shadow 260ms ease;
}

.lfl-button::before {
  position: absolute;
  z-index: -1;
  top: -30%;
  left: -50%;
  width: 30%;
  height: 160%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transition: left 600ms var(--lfl-ease);
}

.lfl-button::after {
  content: "\2192";
  transition: transform 260ms var(--lfl-ease);
}

.lfl-button:hover::before {
  left: 125%;
}

.lfl-button:hover::after {
  transform: translateX(4px);
}

.lfl-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 2, 2, 0.92);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.admin-bar .lfl-site-header {
  top: 32px;
}

.lfl-header-inner {
  transition: min-height 260ms var(--lfl-ease);
}

.lfl-brand {
  transition: width 260ms var(--lfl-ease), opacity 180ms ease;
}

.lfl-site-header.is-compact {
  background: rgba(2, 2, 2, 0.97);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.54);
}

.lfl-site-header.is-compact .lfl-header-inner {
  min-height: 76px;
}

.lfl-site-header.is-compact .lfl-brand {
  width: 230px;
}

.lfl-search-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  align-items: start;
  padding-top: clamp(150px, 20vh, 240px);
  background: rgba(1, 1, 1, 0.92);
  opacity: 0;
  backdrop-filter: blur(18px);
  transform: translateY(-18px);
  transition: opacity 280ms ease, transform 280ms var(--lfl-ease);
}

.lfl-search-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.lfl-search-panel-inner {
  position: relative;
}

.lfl-search-panel .search-form {
  max-width: 940px;
  border-bottom: 1px solid var(--lfl-gold);
}

.lfl-search-panel .search-field {
  min-height: 76px;
  border: 0;
  background: transparent;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.lfl-search-panel .search-submit {
  min-width: 150px;
  min-height: 76px;
}

.lfl-search-close {
  position: absolute;
  top: -70px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--lfl-border);
  background: #080808;
  color: var(--lfl-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lfl-hero-grid {
  min-height: min(860px, calc(100svh - 126px));
}

.lfl-hero-copy {
  max-width: 720px;
}

.lfl-hero h1 {
  max-width: 680px;
}

.lfl-hero-copy > p {
  max-width: 620px;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.6;
}

.lfl-hero-visual {
  transform: translate3d(0, var(--lfl-hero-shift, 0), 0);
  will-change: transform;
}

.lfl-hero-visual img {
  filter: saturate(1.06) contrast(1.03);
}

[data-hero-copy] > * {
  opacity: 0;
  animation: lfl-hero-enter 760ms var(--lfl-ease) forwards;
}

[data-hero-copy] > :nth-child(1) { animation-delay: 80ms; }
[data-hero-copy] > :nth-child(2) { animation-delay: 160ms; }
[data-hero-copy] > :nth-child(3) { animation-delay: 240ms; }
[data-hero-copy] > :nth-child(4) { animation-delay: 320ms; }
[data-hero-copy] > :nth-child(5) { animation-delay: 400ms; }

[data-hero-visual] {
  opacity: 0;
  animation: lfl-hero-visual-enter 1100ms 220ms var(--lfl-ease) forwards;
}

@keyframes lfl-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lfl-hero-visual-enter {
  from { opacity: 0; transform: translate3d(42px, 12px, 0) scale(1.025); }
  to { opacity: 1; transform: translate3d(0, var(--lfl-hero-shift, 0), 0) scale(1); }
}

.lfl-motion-ready .lfl-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--lfl-ease) var(--lfl-reveal-delay, 0ms), transform 760ms var(--lfl-ease) var(--lfl-reveal-delay, 0ms);
}

.lfl-motion-ready .lfl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lfl-value-item {
  min-height: 126px;
}

.lfl-value-item h2 {
  font-size: 0.82rem;
}

.lfl-value-item p {
  font-size: 0.86rem;
}

.lfl-section-heading {
  margin-bottom: clamp(42px, 4vw, 66px);
}

.lfl-section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.65rem);
}

.lfl-section-heading > p {
  font-size: 1.08rem;
}

.lfl-category-grid {
  gap: clamp(20px, 2vw, 30px);
}

.lfl-category-card {
  isolation: isolate;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms var(--lfl-ease);
}

.lfl-category-card::before {
  position: absolute;
  z-index: 2;
  inset: -20% auto -20% -45%;
  width: 32%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(240, 190, 66, 0.13), transparent);
  content: "";
  transition: left 850ms var(--lfl-ease);
  pointer-events: none;
}

.lfl-category-card:hover {
  border-color: rgba(241, 213, 106, 0.8);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7), inset 0 0 38px rgba(213, 165, 42, 0.05);
  transform: translateY(-5px);
}

.lfl-category-card:hover::before {
  left: 120%;
}

.lfl-category-card img {
  transition: transform 900ms var(--lfl-ease), filter 500ms ease;
}

.lfl-category-card:hover img {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.035);
}

.lfl-category-copy {
  z-index: 3;
}

.lfl-product-grid {
  gap: clamp(14px, 1.25vw, 22px);
}

.lfl-product-card,
.lfl-catalog-card {
  --lfl-pointer-x: 50%;
  --lfl-pointer-y: 50%;
  isolation: isolate;
}

.lfl-product-card::before,
.lfl-catalog-card::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(260px circle at var(--lfl-pointer-x) var(--lfl-pointer-y), rgba(241, 213, 106, 0.12), transparent 64%);
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.lfl-product-card:hover::before,
.lfl-catalog-card:hover::before {
  opacity: 1;
}

.lfl-product-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.lfl-product-card:hover {
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.65), 0 0 28px rgba(213, 165, 42, 0.08);
}

.lfl-product-card-image {
  aspect-ratio: 1 / 1.04;
}

.lfl-product-card-image img {
  object-fit: cover;
}

.lfl-product-card:hover .lfl-product-card-image img {
  transform: scale(1.055) translateY(-4px);
}

.lfl-product-card-body {
  min-height: 262px;
  padding: 24px 18px 18px;
}

.lfl-product-card h3 {
  font-size: clamp(1rem, 1.15vw, 1.3rem);
}

.lfl-about-grid {
  min-height: 600px;
}

.lfl-about h2 {
  max-width: 720px;
  font-size: clamp(3rem, 4.2vw, 5rem);
}

.lfl-about-copy p {
  font-size: 1.08rem;
  line-height: 1.65;
}

.lfl-about-visual {
  border-color: var(--lfl-border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.66), 0 0 50px rgba(185, 120, 18, 0.08);
}

.lfl-catalog-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.lfl-catalog-links button,
.lfl-catalog-arrows button {
  border: 0;
  background: transparent;
  color: var(--lfl-silver);
  cursor: pointer;
}

.lfl-catalog-links button {
  position: relative;
  padding: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lfl-catalog-links button::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 1px;
  background: var(--lfl-gold-light);
  content: "";
  transition: right 220ms ease, left 220ms ease;
}

.lfl-catalog-links button[aria-selected="true"],
.lfl-catalog-links button:hover {
  color: var(--lfl-gold-light);
}

.lfl-catalog-links button[aria-selected="true"]::after {
  right: 0;
  left: 0;
}

.lfl-catalog-arrows {
  display: flex;
  gap: 10px;
}

.lfl-catalog-arrows button {
  display: grid;
  width: 54px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--lfl-border);
  color: var(--lfl-gold-light);
  font-size: 1.15rem;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lfl-catalog-arrows button:hover {
  border-color: var(--lfl-gold-light);
  background: rgba(213, 165, 42, 0.1);
  transform: translateY(-2px);
}

.lfl-catalog-viewport {
  position: relative;
  overflow: hidden;
}

.lfl-catalog-track {
  display: grid;
  grid-auto-columns: minmax(260px, 82vw);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
}

.lfl-catalog-track::-webkit-scrollbar {
  display: none;
}

.lfl-catalog-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.lfl-catalog-card {
  position: relative;
  min-height: 188px;
  grid-template-columns: 126px 1fr;
  color: var(--lfl-white);
  scroll-snap-align: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, transform 220ms var(--lfl-ease), box-shadow 220ms ease;
}

.lfl-catalog-card:visited {
  color: var(--lfl-white);
}

.lfl-catalog-card:hover {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.5), 0 0 24px rgba(213, 165, 42, 0.07);
  transform: translateY(-3px);
}

.lfl-catalog-card > img {
  width: 126px;
  height: 188px;
  object-fit: cover;
  transition: transform 320ms var(--lfl-ease);
}

.lfl-catalog-card:hover > img {
  transform: scale(1.04);
}

.lfl-catalog-card-copy {
  padding: 18px 14px;
}

.lfl-catalog-card strong {
  font-size: 1rem;
}

.lfl-benefit-card {
  min-height: 260px;
  transition: border-color 240ms ease, background-color 240ms ease, transform 240ms var(--lfl-ease), box-shadow 240ms ease;
}

.lfl-benefit-card:hover {
  border-color: var(--lfl-gold-light);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(213, 165, 42, 0.05);
  transform: translateY(-5px);
}

.lfl-benefit-card img {
  transition: transform 260ms var(--lfl-ease), filter 260ms ease;
}

.lfl-benefit-card:hover img {
  filter: drop-shadow(0 0 13px rgba(241, 213, 106, 0.32));
  transform: translateY(-3px) scale(1.05);
}

.lfl-faq-grid {
  min-height: 560px;
  align-items: center;
}

.lfl-accordion-item {
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.lfl-accordion-item:has(button[aria-expanded="true"]) {
  border-color: rgba(241, 213, 106, 0.72);
  box-shadow: inset 0 0 30px rgba(213, 165, 42, 0.045);
}

.lfl-accordion-panel {
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: height 320ms var(--lfl-ease);
}

.lfl-accordion-panel > div {
  padding: 0 22px 22px;
}

.lfl-cta-inner,
.lfl-footer-promo-inner {
  transition: border-color 320ms ease, box-shadow 320ms ease;
}

.lfl-cta-inner:hover,
.lfl-footer-promo-inner:hover {
  border-color: var(--lfl-gold-light);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.74), 0 0 42px rgba(213, 165, 42, 0.08);
}

.lfl-footer-grid {
  padding-top: 78px;
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  .lfl-container {
    width: min(calc(100% - 80px), var(--lfl-container));
  }

  .lfl-catalog-track {
    grid-auto-columns: minmax(300px, calc((100% - 32px) / 3));
  }
}

@media (min-width: 1024px) {
  .lfl-header-inner {
    min-height: 108px;
    grid-template-columns: 280px minmax(0, 1fr) auto;
  }

  .lfl-brand {
    width: 280px;
  }

  .lfl-hero-grid {
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 510px;
  }

  .lfl-category-copy {
    padding: clamp(46px, 4vw, 72px);
  }

  .lfl-about-grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 64px;
  }

  .lfl-about h2 {
	font-size: clamp(3.5rem, 4vw, 4.4rem);
  }

  .lfl-faq-grid {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    gap: 100px;
  }
}

@media (min-width: 1200px) {
  .lfl-header-inner {
    grid-template-columns: 320px minmax(0, 1fr) auto;
  }

  .lfl-brand {
    width: 310px;
  }

  .lfl-menu {
    gap: clamp(18px, 1.7vw, 34px);
  }

  .lfl-menu a {
    font-size: 0.78rem;
  }

  .lfl-hero h1 {
    font-size: clamp(6.5rem, 7.2vw, 8.5rem);
  }

  .lfl-hero-grid {
	min-height: 700px;
  }

  .lfl-product-card-body {
    min-height: 276px;
  }

  .lfl-catalog-track {
    grid-auto-columns: minmax(250px, calc((100% - 80px) / 6));
  }

  .lfl-catalog-card {
    min-height: 172px;
    grid-template-columns: 104px 1fr;
  }

  .lfl-catalog-card > img {
    width: 104px;
    height: 172px;
  }

  .lfl-catalog-card-copy {
    padding-inline: 10px;
  }

  .lfl-catalog-card strong {
    font-size: 0.9rem;
  }

  .lfl-cta-inner,
  .lfl-cta-copy {
    min-height: 590px;
  }

  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 540px;
  }
}

@media (min-width: 1600px) {
  .lfl-hero-grid {
	min-height: 700px;
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 540px;
  }

  .lfl-product-card-body {
    min-height: 286px;
  }

  .lfl-benefit-card {
    min-height: 280px;
  }
}

@media (max-width: 1023px) {
  .lfl-site-header.is-compact .lfl-brand {
    width: min(190px, 100%);
  }

  .lfl-catalog-controls {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 782px) {
  .admin-bar .lfl-site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .lfl-container {
    width: min(calc(100% - 32px), var(--lfl-container));
  }

  .lfl-section {
    padding-block: 82px;
  }

  .lfl-hero-grid {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 0;
  }

  .lfl-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .lfl-hero-visual {
    width: calc(100% + 32px);
    margin-right: -16px;
    margin-left: -16px;
  }

  .lfl-hero-visual img {
    min-height: 400px;
    object-fit: cover;
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 390px;
  }

  .lfl-category-copy {
    width: min(68%, 300px);
    padding: 30px 24px;
  }

  .lfl-catalog-controls {
    align-items: flex-end;
    gap: 18px;
  }

  .lfl-catalog-links {
    gap: 15px;
  }

  .lfl-catalog-arrows button {
    width: 44px;
  }

  .lfl-cta-inner,
  .lfl-cta-copy,
  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 500px;
  }

  .lfl-cta-copy,
  .lfl-footer-promo-copy {
    width: 100%;
    padding: 38px 24px;
  }

  .lfl-search-panel .search-submit {
    min-width: 96px;
    padding-inline: 12px;
  }
}

@media (max-width: 479px) {
  .lfl-header-actions .lfl-icon-button:not(.lfl-cart-link) {
    display: none;
  }

  .lfl-product-grid {
    grid-template-columns: 1fr;
  }

  .lfl-product-card-image {
    aspect-ratio: 1 / 0.92;
  }

  .lfl-catalog-arrows {
    display: none;
  }

  .lfl-catalog-controls {
    display: block;
  }

  .lfl-catalog-links {
    justify-content: flex-start;
  }

  .lfl-catalog-track {
    grid-auto-columns: 88vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-copy] > *,
  [data-hero-visual],
  .lfl-motion-ready .lfl-reveal {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .lfl-hero-visual {
    transform: none !important;
  }
}

@media (min-width: 1024px) {
  .lfl-categories,
  .lfl-featured {
    padding-block: 64px;
  }

  .lfl-about,
  .lfl-catalog,
  .lfl-benefits,
  .lfl-faq {
    padding-block: 70px;
  }

  .lfl-categories .lfl-section-heading,
  .lfl-featured .lfl-section-heading {
	max-width: 1080px;
    margin-bottom: 38px;
  }

  .lfl-category-card,
  .lfl-category-copy {
    min-height: 390px;
  }

  .lfl-product-card-image {
    aspect-ratio: 1 / 0.8;
  }

  .lfl-product-card-body {
    min-height: 220px;
    padding: 20px 14px 15px;
  }

  .lfl-about-grid,
  .lfl-faq-grid {
    min-height: 0;
  }

  .lfl-benefit-card {
    min-height: 225px;
  }

  .lfl-cta-inner,
  .lfl-cta-copy {
    min-height: 420px;
  }

  .lfl-cta-copy {
	max-width: 800px;
  }

  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 430px;
  }
}

/* Final desktop sizing wins over the earlier responsive compatibility rules. */
@media (min-width: 1024px) {
  .lfl-header-inner { min-height: 116px; }
  .lfl-site-header.is-compact .lfl-header-inner { min-height: 78px; }
  .lfl-hero-grid { min-height: 700px; grid-template-columns: minmax(560px, 0.9fr) minmax(0, 1.1fr); }
  .lfl-hero-copy { padding-left: 28px; }
  .lfl-hero h1 { font-size: clamp(5.6rem, 6.2vw, 7.35rem); }
  .lfl-section-heading h2 { font-size: clamp(2.4rem, 2.7vw, 3.25rem); }
  .lfl-categories,
  .lfl-featured { padding-block: 54px; }
  .lfl-categories .lfl-section-heading,
  .lfl-featured .lfl-section-heading { margin-bottom: 32px; }
  .lfl-category-card,
  .lfl-category-copy { min-height: 340px; }
  .lfl-category-copy { width: min(52%, 330px); padding: 44px; }
  .lfl-product-card-image { aspect-ratio: 1 / 0.86; }
  .lfl-product-card-body { min-height: 188px; padding: 16px 14px 14px; }
  .lfl-about { padding-block: 0; }
  .lfl-about-grid { min-height: 505px; }
  .lfl-about-visual { height: 505px; }
  .lfl-catalog,
  .lfl-benefits { padding-block: 54px; }
  .lfl-benefit-card { min-height: 190px; }
  .lfl-faq { padding-block: 56px; }
  .lfl-faq-grid { min-height: 405px; }
  .lfl-cta-inner,
  .lfl-cta-copy { min-height: 260px; }
  .lfl-cta-copy { width: 66%; max-width: none; margin-left: 34%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.94fr); gap: 48px; padding: 28px 50px; }
  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy { min-height: 330px; }
  .lfl-footer-grid { grid-template-columns: minmax(300px, 1.35fr) repeat(4, minmax(145px, 0.72fr)); gap: 44px; padding-top: 52px; padding-bottom: 48px; }
}

/* Generated visual asset pass: responsive scenes based on the approved homepage mockups. */
.lfl-hero::before {
  display: none;
}

.lfl-value-item img,
.lfl-benefit-card img {
  object-fit: contain;
}

.lfl-category-card > picture,
.lfl-category-card > picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lfl-category-card > picture img {
  object-fit: cover;
  object-position: center;
}

.lfl-about-visual picture,
.lfl-about-visual picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.lfl-about-visual picture img {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.lfl-catalog,
.lfl-faq {
  background-image:
    linear-gradient(rgba(2, 2, 2, 0.9), rgba(2, 2, 2, 0.9)),
    url("../images/generated/backgrounds/geometric-content-background.webp");
  background-position: center;
  background-size: cover;
}

.lfl-cta-inner {
  background-image: url("../images/generated/cta/primary-cta-desktop.webp");
  background-position: center;
  background-size: cover;
}

.lfl-cta-inner::before {
  display: none;
}

.lfl-cta-inner::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 28%, rgba(0, 0, 0, 0.62) 56%, rgba(0, 0, 0, 0.34) 100%);
}

.lfl-footer-promo-inner > picture,
.lfl-footer-promo-inner > picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lfl-footer-promo-inner > picture img {
  object-fit: cover;
  object-position: center;
}

.lfl-site-footer {
  background-image:
    linear-gradient(rgba(7, 8, 8, 0.965), rgba(7, 8, 8, 0.985)),
    url("../images/generated/backgrounds/geometric-content-background.webp");
  background-position: center bottom;
  background-size: cover;
}

@media (min-width: 768px) {
  .lfl-hero-grid {
    isolation: isolate;
  }

  .lfl-hero-copy {
    z-index: 2;
    grid-column: 1 / -1;
    width: 44%;
    max-width: 720px;
  }

  .lfl-hero-visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
  }

  .lfl-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .lfl-about-grid {
    position: relative;
    isolation: isolate;
    display: block;
    overflow: hidden;
  }

  .lfl-about-copy {
    z-index: 2;
    width: 44%;
    padding-block: 48px;
  }

  .lfl-about-visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .lfl-hero-grid {
    min-height: 660px;
  }

  .lfl-hero-copy {
    width: 48%;
  }

  .lfl-hero h1 {
    font-size: clamp(4rem, 7.4vw, 5.2rem);
  }

  .lfl-cta-inner {
    background-image: url("../images/generated/cta/primary-cta-tablet.webp");
  }

  .lfl-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfl-footer-brand {
    grid-column: 1 / -1;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .lfl-hero-grid {
    display: grid;
  }

  .lfl-hero-copy {
    width: 100%;
  }

  .lfl-hero-visual {
    width: calc(100% + 36px);
    margin: 32px -18px 0;
  }

  .lfl-hero-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
  }

  .lfl-category-card > picture img {
    object-position: center;
  }

  .lfl-about-visual {
    height: auto;
  }

  .lfl-about-visual picture img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .lfl-cta-inner {
    min-height: 760px;
    background-image: url("../images/generated/cta/primary-cta-mobile.webp");
    background-position: center;
  }

  .lfl-cta-inner::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.82) 44%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.02) 100%);
  }

  .lfl-cta-copy {
    min-height: 760px;
    justify-content: flex-start;
    padding-top: 52px;
  }

  .lfl-footer-promo-inner,
  .lfl-footer-promo-copy {
    min-height: 680px;
  }

  .lfl-footer-promo-inner::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.02) 100%);
  }

  .lfl-footer-promo-copy {
    justify-content: flex-start;
    padding-top: 52px;
  }
}

/* Focused homepage refinement: approved hero, simplified accents, navigation, and CTA. */
.lfl-gold-rule {
  width: 64px;
  height: 2px;
  margin: 20px 0 26px;
  background: var(--lfl-gold);
  box-shadow: none;
}

.lfl-gold-rule::after {
  display: none;
}

.lfl-menu .sub-menu {
  display: grid;
  gap: 0;
  padding: 0 0 10px 18px;
  margin: 0;
  list-style: none;
}

.lfl-menu .sub-menu a {
  min-height: 44px;
  color: var(--lfl-silver);
  font-size: 0.76rem;
}

.lfl-menu .menu-item-has-children > a::before {
  width: 6px;
  height: 6px;
  margin-left: 0;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.lfl-menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
}

.lfl-hero-grid::after,
.lfl-about-grid::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 1, 1, 0.66) 0%, rgba(1, 1, 1, 0.42) 32%, rgba(1, 1, 1, 0.12) 48%, transparent 64%);
  content: "";
  pointer-events: none;
}

.lfl-hero-copy,
.lfl-about-copy {
  z-index: 3;
}

.lfl-hero-visual img,
.lfl-about-visual picture img {
  object-position: left center;
}

.lfl-cta {
  padding-top: 0;
  border-top: 0;
}

.lfl-cta-inner {
  width: min(calc(100% - 40px), 1880px);
  max-width: none;
}

.lfl-footer-social {
  gap: 20px;
}

.lfl-footer-social a {
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  line-height: 1;
}

.lfl-footer-social img {
  width: 26px;
  height: 26px;
}

@media (min-width: 768px) {
  .lfl-header-actions {
    gap: 8px;
    margin-left: auto;
  }

  .lfl-header-actions .lfl-icon-button {
    width: 44px;
    height: 44px;
    padding: 7px;
  }

  .lfl-header-actions .lfl-icon-button img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
  }
}

@media (min-width: 1024px) {
  .lfl-menu > .menu-item-has-children {
    position: relative;
  }

  .lfl-menu > .menu-item-has-children::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    content: "";
  }

  .lfl-menu > .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: auto;
    left: 0;
    display: grid;
    min-width: 176px;
    padding: 8px;
    border: 1px solid var(--lfl-border);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.56);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .lfl-menu > .menu-item-has-children:hover > .sub-menu,
  .lfl-menu > .menu-item-has-children:focus-within > .sub-menu,
  .lfl-menu > .menu-item-has-children.is-dropdown-open > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .lfl-menu .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lfl-menu .sub-menu li:last-child {
    border-bottom: 0;
  }

  .lfl-menu .sub-menu a {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .lfl-cta-copy {
    width: 66%;
    max-width: none;
    margin-left: 34%;
  }
}

@media (max-width: 767px) {
  .lfl-hero-grid::after,
  .lfl-about-grid::after {
    display: none;
  }
}

/* Final cascade lock for the focused homepage update. */
.lfl-category-card::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.24) 31%, rgba(0, 0, 0, 0.06) 47%, transparent 61%);
}

.lfl-category-card img,
.lfl-hero-visual img,
.lfl-about-visual picture img {
  object-position: right center;
}

.lfl-product-title {
  display: block;
  width: 100%;
  min-height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
}

.lfl-product-title span {
  display: inline-block;
  min-width: max-content;
}

.lfl-product-title.is-overflowing {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.lfl-product-title.is-overflowing span {
  padding-inline: 10px;
  animation: lfl-title-reveal 6s ease-in-out 1s infinite alternate;
}

.lfl-featured .lfl-button-card {
  width: auto;
  min-width: 132px;
  min-height: 34px;
  padding: 7px 14px;
  font-size: 0.62rem;
}

.lfl-catalog-viewport {
  margin-top: -12px;
  padding-top: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.lfl-catalog-track {
  padding: 14px 28px 18px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.lfl-catalog-card:hover strong,
.lfl-catalog-card:focus-visible strong {
  color: var(--lfl-gold-light) !important;
}

.lfl-faq-grid {
  align-items: start;
}

.lfl-faq-heading {
  align-self: start;
}

.lfl-accordion-panel > div {
  padding: 12px 22px 22px;
}

.lfl-footer-social a {
  color: var(--lfl-gold);
}

.lfl-footer-social svg {
  width: 23px;
  height: 23px;
}

.lfl-footer-social svg path {
  fill: currentColor;
}

.lfl-footer-social .lfl-social--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.lfl-footer-social .lfl-social--instagram .lfl-social-dot {
  fill: currentColor;
  stroke: none;
}

.lfl-footer-social a:hover,
.lfl-footer-social a:focus-visible {
  color: var(--lfl-gold-light) !important;
  border-color: var(--lfl-gold-light);
  background: rgba(213, 165, 42, 0.1);
}

@media (min-width: 1200px) {
  .lfl-featured .lfl-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfl-product-title.is-overflowing span {
    animation: none;
  }
}
