:root {
  --l3r-ink: #171514;
  --l3r-muted: #6f6863;
  --l3r-paper: #fff7fb;
  --l3r-surface: #ffffff;
  --l3r-soft: #f8e8f2;
  --l3r-plum: #d936a5;
  --l3r-plum-dark: #7b2b78;
  --l3r-sage: #f052ad;
  --l3r-coral: #ff72bd;
  --l3r-accent: #ff72bd;
  --l3r-line: rgba(217, 54, 165, 0.18);
  --l3r-shadow: 0 18px 45px rgba(217, 54, 165, 0.14);
  --l3r-radius: 8px;
  --l3r-max: 1180px;
  --l3r-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --l3r-serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--l3r-font);
  color: var(--l3r-ink);
  background: var(--l3r-paper);
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 12px 16px;
  clip: auto;
  background: var(--l3r-ink);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.l3r-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 247, 251, 0.94);
  border-bottom: 1px solid var(--l3r-line);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.l3r-topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  color: #fff;
  background: var(--l3r-plum);
  font-size: 13px;
  transition: max-height 180ms ease, min-height 180ms ease, padding 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.l3r-free-shipping-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--l3r-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.l3r-free-shipping-banner strong {
  color: var(--l3r-accent);
}

.l3r-topbar a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.l3r-mainbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  max-width: var(--l3r-max);
  margin: 0 auto;
  padding: 16px 22px;
  transition: max-height 180ms ease, padding 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.l3r-mainbar > *,
.l3r-header-actions,
.l3r-search {
  min-width: 0;
}

.l3r-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.l3r-logo-image {
  width: clamp(136px, 13vw, 188px);
  max-height: 74px;
  object-fit: contain;
}

.l3r-logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--l3r-line);
  border-radius: 50%;
  color: var(--l3r-plum-dark);
  background: #fff;
  font-family: var(--l3r-serif);
  font-size: 17px;
  font-weight: 700;
}

.l3r-logo strong {
  display: block;
  font-family: var(--l3r-serif);
  font-size: 25px;
  line-height: 1;
}

.l3r-logo small {
  display: block;
  margin-top: 4px;
  color: var(--l3r-muted);
  font-size: 12px;
}

.l3r-nav .menu {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.l3r-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--l3r-muted);
  font-size: 14px;
  font-weight: 750;
}

.l3r-nav a:hover,
.l3r-nav .current-menu-item > a {
  color: var(--l3r-plum-dark);
}

.l3r-quick-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: var(--l3r-max);
  margin: 0 auto;
  padding: 0 22px 12px;
}

.l3r-quick-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.l3r-quick-nav a:hover {
  border-color: var(--l3r-plum);
  color: #fff;
  background: var(--l3r-plum);
}

.l3r-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.l3r-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  background: var(--l3r-surface);
  font-size: 13px;
  font-weight: 800;
}

.l3r-cart-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--l3r-plum);
  font-size: 12px;
}

.l3r-menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-ink);
  font-weight: 800;
}

.l3r-search {
  position: relative;
  min-width: 320px;
}

.l3r-search-input {
  width: 100%;
  min-height: 44px;
  padding: 0 92px 0 16px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: var(--l3r-ink);
  font: inherit;
  font-size: 14px;
}

.l3r-search-input:focus {
  border-color: rgba(143, 63, 118, 0.65);
  box-shadow: 0 0 0 4px rgba(143, 63, 118, 0.12);
}

.l3r-search-submit {
  position: absolute;
  top: 5px;
  right: 5px;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--l3r-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

select,
.woocommerce select,
.l3r-filter-field select,
.l3r-access-card select,
.l3r-lead-form select,
.l3r-business-form select,
.woocommerce-ordering select,
.wc-block-components-select select,
.wc-block-components-select__select,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-combobox .wc-block-components-combobox-control input {
  appearance: none;
  padding-right: 42px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--l3r-plum-dark) 50%),
    linear-gradient(135deg, var(--l3r-plum-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select:focus,
.woocommerce select:focus,
.woocommerce-ordering select:focus,
.wc-block-components-select select:focus,
.wc-block-components-select__select:focus,
.wc-block-components-combobox .components-combobox-control__input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input:focus {
  border-color: rgba(143, 63, 118, 0.65);
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 63, 118, 0.12);
}

select option {
  background: #fff;
  color: var(--l3r-ink);
}

.wc-block-components-combobox .components-form-token-field__suggestions-list,
.wc-block-components-combobox .components-combobox-control__suggestions-container,
.wc-block-components-combobox-control__suggestions-container {
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--l3r-shadow);
}

.wc-block-components-combobox .components-form-token-field__suggestion,
.wc-block-components-combobox-control__suggestions-container li,
.wc-block-components-combobox-control__suggestions-container [role="option"] {
  padding: 10px 14px;
  color: var(--l3r-ink);
  font-weight: 800;
}

.wc-block-components-combobox .components-form-token-field__suggestion.is-selected,
.wc-block-components-combobox-control__suggestions-container [aria-selected="true"] {
  background: rgba(217, 54, 165, 0.1);
  color: var(--l3r-plum-dark);
}

.l3r-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 100;
  width: min(480px, 92vw);
  padding: 10px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
  box-shadow: var(--l3r-shadow);
}

.l3r-search-status {
  padding: 10px 12px;
  color: var(--l3r-muted);
  font-size: 14px;
}

.l3r-search-correction {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: var(--l3r-soft);
  color: var(--l3r-plum-dark);
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.l3r-search-result {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 8px;
  border-radius: 6px;
}

.l3r-search-result:hover,
.l3r-search-result:focus {
  background: var(--l3r-soft);
}

.l3r-search-related {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--l3r-line);
}

.l3r-search-related > p {
  margin: 2px 8px 8px;
  color: var(--l3r-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3r-search-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--l3r-soft);
}

.l3r-search-result strong {
  display: block;
  font-size: 14px;
}

.l3r-search-result span {
  display: block;
  color: var(--l3r-muted);
  font-size: 12px;
}

.l3r-search-result-action {
  color: var(--l3r-plum-dark);
  font-weight: 900;
}

.l3r-search-result-related {
  min-height: 58px;
}

.l3r-main {
  min-height: 60vh;
}

.l3r-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: end;
  max-width: var(--l3r-max);
  min-height: 610px;
  margin: 0 auto;
  padding: 92px 22px 54px;
  background:
    linear-gradient(90deg, rgba(255, 247, 251, 0.98) 0%, rgba(255, 247, 251, 0.78) 55%, rgba(255, 247, 251, 0.36) 100%),
    var(--l3r-hero-image, url("https://letrerosebeauty.com/wp-content/uploads/2024/05/BASE-1920x600-2.webp")) center/cover no-repeat;
}

.l3r-hero-copy {
  max-width: 700px;
}

.l3r-hero h1,
.l3r-page-hero h1,
.l3r-page-header h1 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.95;
}

.l3r-hero p,
.l3r-page-hero p {
  max-width: 640px;
  color: var(--l3r-muted);
  font-size: 18px;
}

.l3r-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.l3r-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--l3r-ink);
  border-radius: 999px;
  background: var(--l3r-ink);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.l3r-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--l3r-plum);
  border-color: var(--l3r-plum);
  color: #fff;
}

.l3r-button-secondary {
  background: #fff;
  color: var(--l3r-ink);
}

.l3r-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--l3r-ink);
}

.l3r-hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--l3r-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--l3r-shadow);
  backdrop-filter: blur(12px);
}

.l3r-hero-card span,
.l3r-hero-card strong {
  display: block;
}

.l3r-hero-card span {
  color: var(--l3r-sage);
  font-size: 13px;
  font-weight: 800;
}

.l3r-hero-card strong {
  margin-top: 8px;
  font-family: var(--l3r-serif);
  font-size: 30px;
  line-height: 1;
}

.l3r-section,
.l3r-page,
.l3r-woo-shell {
  max-width: var(--l3r-max);
  margin: 0 auto;
  padding: 64px 22px;
  scroll-margin-top: 200px;
}

.l3r-category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.l3r-category-strip a {
  position: relative;
  display: grid;
  min-height: 118px;
  place-items: end center;
  overflow: hidden;
  padding: 18px 10px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: var(--l3r-ink);
  color: #fff;
  font-weight: 850;
  isolation: isolate;
  box-shadow: 0 12px 28px rgba(217, 54, 165, 0.1);
}

.l3r-category-strip a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 21, 20, 0.1), rgba(23, 21, 20, 0.72)),
    linear-gradient(90deg, rgba(217, 54, 165, 0.28), rgba(255, 114, 189, 0.2));
}

.l3r-category-tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--l3r-soft);
}

.l3r-category-tile-media img,
.l3r-category-tile-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.l3r-category-tile-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74%;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(23, 21, 20, 0.58);
  color: #fff;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(8px);
}

.l3r-category-strip a:hover {
  border-color: var(--l3r-plum);
  box-shadow: 0 16px 30px rgba(143, 63, 118, 0.18);
}

.l3r-category-strip a:hover .l3r-category-tile-media img,
.l3r-category-strip a:hover .l3r-category-tile-media video {
  transform: scale(1.05);
}

.l3r-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.l3r-split h2,
.l3r-section-heading h2,
.l3r-course-band h2 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.l3r-split p {
  color: var(--l3r-muted);
  font-size: 17px;
}

.l3r-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.l3r-proof-grid div {
  padding: 22px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
}

.l3r-proof-grid strong {
  display: block;
  color: var(--l3r-plum-dark);
  font-family: var(--l3r-serif);
  font-size: 34px;
  line-height: 1;
}

.l3r-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--l3r-muted);
  font-size: 14px;
}

.l3r-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.l3r-section-heading a {
  color: var(--l3r-plum-dark);
  font-weight: 850;
}

.l3r-course-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: var(--l3r-radius);
  background: var(--l3r-sage);
  color: #fff;
}

.l3r-course-band .eyebrow,
.l3r-course-band p {
  color: rgba(255, 255, 255, 0.84);
}

.l3r-page-hero,
.l3r-page-header {
  max-width: var(--l3r-max);
  margin: 0 auto;
  padding: 86px 22px 54px;
}

.l3r-page-hero {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(255, 247, 251, 0.98), rgba(255, 247, 251, 0.7)),
    var(--l3r-page-image, url("https://letrerosebeauty.com/wp-content/themes/g5_helium/custom/images/GEC%202.png")) right center/contain no-repeat;
}

.l3r-page-hero-courses {
  --l3r-page-image: url("https://letrerosebeauty.com/wp-content/uploads/2023/05/Foto_internet_3Rose_Tavola-disegno-1-copia-22-1-768x768.jpg");
}

.l3r-course-grid,
.l3r-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.l3r-course-grid article,
.l3r-service-grid article,
.l3r-list-card {
  padding: 24px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
}

.l3r-course-grid article > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--l3r-soft);
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-weight: 800;
}

.l3r-course-grid h2,
.l3r-service-grid h2,
.l3r-list-card h2 {
  margin: 0 0 10px;
  font-family: var(--l3r-serif);
  font-size: 30px;
  line-height: 1;
}

.l3r-course-grid article > p,
.l3r-service-grid p,
.l3r-list-card p {
  color: var(--l3r-muted);
}

.l3r-course-meta {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.l3r-course-meta li {
  padding: 9px 11px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
  color: var(--l3r-ink);
  font-size: 13px;
  font-weight: 850;
}

.l3r-course-grid a {
  color: var(--l3r-plum-dark);
  font-weight: 850;
}

.l3r-course-booking {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--l3r-line);
}

.l3r-course-booking-form {
  display: grid;
  gap: 14px;
}

.l3r-course-alert {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(228, 106, 166, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.l3r-course-alert p {
  margin: 0;
}

.l3r-course-unavailable {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(228, 106, 166, 0.14);
  color: var(--l3r-plum-dark);
  font-size: 13px;
  font-weight: 900;
}

.l3r-course-alert-form {
  display: grid;
  gap: 12px;
}

.l3r-course-session-list {
  display: grid;
  gap: 8px;
}

.l3r-course-session {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
  cursor: pointer;
}

.l3r-course-session input {
  width: auto;
  min-height: 0;
}

.l3r-course-session strong,
.l3r-course-session small,
.l3r-course-session em {
  display: block;
}

.l3r-course-session small {
  color: var(--l3r-muted);
  font-size: 12px;
}

.l3r-course-session-price {
  color: var(--l3r-plum-dark);
  font-weight: 850;
}

.l3r-course-session em {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.l3r-course-session.is-full {
  opacity: 0.55;
  cursor: not-allowed;
}

.l3r-course-booking-history {
  display: grid;
  gap: 10px;
}

.l3r-course-booking-history article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
}

.l3r-course-booking-history span,
.l3r-course-booking-history small {
  color: var(--l3r-muted);
}

.l3r-course-cart-places {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  background: var(--l3r-paper);
  color: var(--l3r-plum-dark);
  font-weight: 900;
}

.l3r-course-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px !important;
}

.l3r-course-card-link {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.l3r-course-media {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--l3r-soft);
}

.l3r-course-media-card {
  aspect-ratio: 1 / 1;
}

.l3r-course-media-detail {
  min-height: 420px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
}

.l3r-course-media img,
.l3r-course-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l3r-course-media span {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: var(--l3r-plum-dark);
  font-family: var(--l3r-serif);
  font-size: 34px;
}

.l3r-course-card-content {
  display: grid;
  gap: 8px;
}

.l3r-course-level {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--l3r-soft);
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-weight: 850;
}

.l3r-course-card-content strong {
  color: var(--l3r-ink);
  font-family: var(--l3r-serif);
  font-size: 30px;
  line-height: 1;
}

.l3r-course-card-text {
  color: var(--l3r-muted);
  font-size: 14px;
  line-height: 1.45;
}

.l3r-course-card .l3r-course-meta {
  margin: 0;
}

.l3r-course-card .l3r-button {
  margin-top: auto;
}

.l3r-course-product-detail {
  display: grid;
  gap: 18px;
}

.l3r-course-back {
  width: fit-content;
  color: var(--l3r-plum-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.l3r-course-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.l3r-course-product-summary h1 {
  margin: 0 0 18px;
  font-family: var(--l3r-serif);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
}

.l3r-course-product-summary > p:not(.eyebrow) {
  color: var(--l3r-muted);
  font-size: 18px;
}

.l3r-course-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.l3r-course-description,
.l3r-course-booking-shell {
  padding: 28px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(217, 54, 165, 0.08);
}

.l3r-course-description h2,
.l3r-course-description h3 {
  margin-top: 28px;
  font-family: var(--l3r-serif);
  line-height: 1;
}

.l3r-course-description p,
.l3r-course-description li {
  color: var(--l3r-muted);
  font-size: 16px;
  line-height: 1.65;
}

.l3r-checklist {
  display: grid;
  gap: 10px;
}

.l3r-checklist span {
  padding: 14px 16px;
  border-left: 4px solid var(--l3r-coral);
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
}

.l3r-content {
  max-width: 820px;
}

.l3r-loyalty-rules-page {
  width: min(var(--l3r-max), calc(100vw - 44px));
}

.l3r-loyalty-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--l3r-shadow);
}

.l3r-loyalty-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l3r-loyalty-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 247, 251, 0.26), rgba(255, 247, 251, 0.26));
}

.l3r-loyalty-hero-copy,
.l3r-loyalty-hero-badge {
  position: relative;
  z-index: 1;
}

.l3r-loyalty-hero-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 650px;
  padding: clamp(34px, 7vw, 76px);
}

.l3r-loyalty-hero-copy h1,
.l3r-loyalty-intro h2,
.l3r-loyalty-redeem h2 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.l3r-loyalty-hero-copy p:not(.eyebrow),
.l3r-loyalty-intro > p,
.l3r-loyalty-redeem p,
.l3r-loyalty-redeem li {
  margin: 0;
  color: var(--l3r-muted);
  font-size: 17px;
  line-height: 1.6;
}

.l3r-loyalty-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.l3r-loyalty-hero-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100% - 68px));
  padding: 22px;
  border: 1px solid rgba(228, 106, 166, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(35, 24, 30, 0.12);
}

.l3r-loyalty-hero-badge span,
.l3r-loyalty-gift-note span {
  color: var(--l3r-coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.l3r-loyalty-hero-badge strong,
.l3r-loyalty-gift-note strong {
  color: var(--l3r-ink);
  font-family: var(--l3r-serif);
  font-size: 32px;
  line-height: 1;
}

.l3r-loyalty-hero-badge p,
.l3r-loyalty-gift-note p {
  margin: 0;
  color: var(--l3r-muted);
  font-size: 14px;
  line-height: 1.45;
}

.l3r-loyalty-intro,
.l3r-loyalty-redeem {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
}

.l3r-loyalty-steps,
.l3r-loyalty-rules-grid,
.l3r-loyalty-tables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.l3r-loyalty-rules-grid,
.l3r-loyalty-tables {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l3r-loyalty-steps article,
.l3r-loyalty-rule-card,
.l3r-loyalty-table-panel,
.l3r-loyalty-terms,
.l3r-loyalty-redeem {
  min-width: 0;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(35, 24, 30, 0.06);
}

.l3r-loyalty-steps article {
  overflow: hidden;
}

.l3r-loyalty-steps article img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.l3r-loyalty-steps article div,
.l3r-loyalty-rule-card,
.l3r-loyalty-table-panel,
.l3r-loyalty-terms {
  padding: 26px;
}

.l3r-loyalty-steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--l3r-plum-dark);
  color: #fff;
  font-weight: 950;
}

.l3r-loyalty-steps strong,
.l3r-loyalty-rule-card h2,
.l3r-loyalty-tables h2,
.l3r-loyalty-terms h2 {
  display: block;
  margin: 0 0 12px;
  color: var(--l3r-ink);
  font-family: var(--l3r-serif);
  font-size: 30px;
  line-height: 1;
}

.l3r-loyalty-steps p,
.l3r-loyalty-rule-card p,
.l3r-loyalty-table-panel p,
.l3r-loyalty-terms li,
.l3r-loyalty-terms p {
  margin: 0;
  color: var(--l3r-muted);
  font-size: 15px;
  line-height: 1.65;
}

.l3r-loyalty-rule-card p + p,
.l3r-loyalty-table-panel p + table {
  margin-top: 12px;
}

.l3r-loyalty-tables table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
}

.l3r-loyalty-tables th,
.l3r-loyalty-tables td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--l3r-line);
  text-align: left;
  vertical-align: top;
}

.l3r-loyalty-tables th {
  background: var(--l3r-soft);
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.l3r-loyalty-tables tr:last-child td {
  border-bottom: 0;
}

.l3r-loyalty-redeem {
  overflow: hidden;
  padding: 0;
}

.l3r-loyalty-redeem > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.l3r-loyalty-redeem > div {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 58px);
}

.l3r-loyalty-redeem ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.l3r-loyalty-rule-card-photo {
  display: grid;
  grid-template-columns: minmax(120px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.l3r-loyalty-rule-card-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.l3r-loyalty-rule-card-photo > div {
  padding: 26px 26px 26px 0;
}

.l3r-loyalty-terms {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(240px, 0.28fr);
  gap: 22px;
  align-items: start;
}

.l3r-loyalty-terms-heading,
.l3r-loyalty-terms ol,
.l3r-loyalty-updated {
  grid-column: 1;
}

.l3r-loyalty-gift-note {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(228, 106, 166, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, rgba(248, 232, 242, 0.86));
}

.l3r-loyalty-terms ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.l3r-loyalty-updated {
  font-weight: 800;
}

.woocommerce-cart .l3r-page > .l3r-page-header {
  display: none;
}

.woocommerce-cart .l3r-content,
.woocommerce-checkout .l3r-content {
  width: 100%;
  max-width: none;
}

.woocommerce-cart .l3r-page,
.woocommerce-checkout .l3r-page {
  width: min(var(--l3r-max), calc(100vw - 44px));
}

.l3r-cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 24px;
  align-items: start;
}

.l3r-cart-hero {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 114, 189, 0.2), transparent 34%),
    #fff;
  box-shadow: var(--l3r-shadow);
}

.l3r-cart-hero h1,
.l3r-cart-empty h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.95;
}

.l3r-cart-hero p:not(.eyebrow),
.l3r-cart-empty p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--l3r-muted);
  font-size: 17px;
}

.l3r-cart-form,
.l3r-cart-summary-shell,
.l3r-cart-empty {
  min-width: 0;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--l3r-shadow);
}

.l3r-cart-form {
  overflow: hidden;
}

.l3r-cart-items {
  display: grid;
}

.l3r-cart-head,
.l3r-cart-item {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px 130px 130px;
  gap: 16px;
  align-items: center;
}

.l3r-cart-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--l3r-line);
  color: var(--l3r-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3r-cart-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--l3r-line);
}

.l3r-cart-product {
  display: grid;
  grid-template-columns: 34px 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.l3r-cart-remove.remove {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(217, 54, 165, 0.22);
  border-radius: 50%;
  background: #fff;
  color: #b40040 !important;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.l3r-cart-remove.remove:hover {
  background: #b40040;
  color: #fff !important;
}

.l3r-cart-thumb {
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
}

.l3r-cart-thumb img {
  width: 86px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.l3r-cart-product-copy {
  min-width: 0;
}

.l3r-cart-product-copy h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
}

.l3r-cart-product-copy dl,
.l3r-cart-product-copy p {
  margin: 8px 0 0;
  color: var(--l3r-muted);
  font-size: 13px;
}

.l3r-cart-price,
.l3r-cart-subtotal {
  font-weight: 900;
}

.l3r-cart-quantity .quantity {
  display: inline-flex;
}

.l3r-cart-quantity .qty {
  width: 76px;
  min-height: 42px;
  text-align: center;
}

.l3r-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.l3r-cart-coupon {
  display: flex;
  flex: 1 1 420px;
  gap: 10px;
  min-width: min(100%, 320px);
}

.l3r-cart-coupon input {
  min-width: 0;
  flex: 1;
}

.l3r-cart-actions .button,
.l3r-cart-summary-shell .button,
.l3r-cart-empty .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--l3r-ink);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.l3r-cart-actions .button:hover,
.l3r-cart-summary-shell .button:hover,
.l3r-cart-empty .button:hover {
  background: var(--l3r-plum);
  color: #fff;
}

.l3r-cart-update:disabled,
.l3r-cart-update[disabled] {
  opacity: 0.48;
}

.l3r-cart-summary-shell {
  position: sticky;
  top: 128px;
  overflow: hidden;
  padding: 22px;
}

.l3r-cart-summary-shell .cart_totals {
  float: none;
  width: 100%;
}

.l3r-cart-summary-shell .cart_totals h2 {
  margin: 0 0 16px;
  font-family: var(--l3r-serif);
  font-size: 34px;
  line-height: 1;
}

.l3r-cart-summary-shell table {
  width: 100%;
  border-collapse: collapse;
}

.l3r-cart-summary-shell th,
.l3r-cart-summary-shell td {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: 0;
  text-align: left;
}

.l3r-cart-summary-shell tr + tr th {
  border-top: 1px solid var(--l3r-line);
}

.l3r-cart-summary-shell td {
  padding-top: 0;
  color: var(--l3r-muted);
}

.l3r-cart-summary-shell .order-total td,
.l3r-cart-summary-shell .order-total th {
  color: var(--l3r-ink);
  font-size: 20px;
  font-weight: 900;
}

.l3r-cart-summary-shell .wc-proceed-to-checkout {
  padding: 18px 0 0;
}

.l3r-cart-summary-shell .checkout-button {
  width: 100%;
}

.woocommerce-cart .woocommerce-shipping-calculator {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.woocommerce-cart .shipping-calculator-form,
.woocommerce-cart .woocommerce-shipping-destination {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
}

.woocommerce-cart .shipping-calculator-form p {
  margin: 0;
}

.woocommerce-cart select,
.woocommerce-cart .select2-container,
.woocommerce-cart .select2-selection,
.woocommerce-cart .select2-selection__rendered,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .select2-selection,
.woocommerce-checkout .select2-selection__rendered {
  width: 100% !important;
  max-width: 100%;
}

.woocommerce-cart select:not(.select2-hidden-accessible),
.woocommerce-checkout select:not(.select2-hidden-accessible) {
  display: block;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  white-space: nowrap;
}

.woocommerce .select2-hidden-accessible,
.woocommerce-page .select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.select2-container--open .select2-dropdown {
  border-color: var(--l3r-line);
  border-radius: 8px;
}

.select2-container--default .select2-selection--single {
  min-height: 48px;
  background: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 10px 42px 10px 14px;
  color: var(--l3r-ink);
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 11px;
  right: 12px;
}

.select2-results__option {
  padding: 10px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: var(--l3r-plum);
  color: #fff;
}

.woocommerce form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce form .form-row label {
  margin: 0 0 7px;
  color: var(--l3r-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.woocommerce form .form-row .required {
  color: var(--l3r-plum);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select:not(.select2-hidden-accessible),
.woocommerce-checkout .input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select:not(.select2-hidden-accessible) {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  color: var(--l3r-ink);
  font: 600 15px/1.25 var(--l3r-font);
  box-shadow: 0 10px 26px rgba(217, 54, 165, 0.05);
}

.woocommerce form .form-row textarea,
.woocommerce-checkout textarea {
  min-height: 124px;
  resize: vertical;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:not(.select2-hidden-accessible):focus,
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:not(.select2-hidden-accessible):focus,
.woocommerce-checkout .select2-container--open .select2-selection--single {
  border-color: var(--l3r-plum);
  outline: none;
  box-shadow: 0 0 0 4px rgba(217, 54, 165, 0.12);
}

.woocommerce form.checkout,
.woocommerce-checkout-review-order,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  min-width: 0;
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px);
}

.woocommerce-checkout .woocommerce-input-wrapper {
  display: block;
  min-width: 0;
}

.woocommerce-checkout #payment,
.woocommerce-checkout .wc-block-checkout__payment-method {
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 24, 30, 0.06);
}

.woocommerce-checkout #payment {
  padding: 0;
}

.l3r-checkout-loyalty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 16px;
  padding: 18px;
  border: 1px solid rgba(17, 126, 88, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(218, 247, 232, 0.96), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: 0 12px 30px rgba(17, 126, 88, 0.08);
}

.l3r-checkout-loyalty-badge {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #117e58;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.l3r-checkout-loyalty strong {
  display: block;
  color: var(--l3r-ink);
  font-size: 16px;
  line-height: 1.25;
}

.l3r-checkout-loyalty p {
  margin: 5px 0 0;
  color: var(--l3r-muted);
  font-size: 13px;
  line-height: 1.45;
}

.l3r-checkout-loyalty a {
  display: inline-block;
  margin-top: 8px;
  color: #117e58;
  font-size: 13px;
  font-weight: 900;
}

.l3r-checkout-loyalty-cart {
  margin: 0 0 18px;
}

.woocommerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method,
.woocommerce-checkout #payment ul.payment_methods li.payment_method,
.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-payment-methods__payment-method {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 15px 16px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
  color: var(--l3r-ink);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked),
.woocommerce-checkout #payment ul.payment_methods li.payment_method:has(input:checked),
.woocommerce-checkout .wc-block-components-radio-control__option-checked,
.woocommerce-checkout .wc-block-components-radio-control__option--checked,
.woocommerce-checkout .wc-block-components-radio-control__option[aria-checked="true"] {
  border-color: rgba(217, 54, 165, 0.62);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 54, 165, 0.1);
}

.woocommerce-checkout #payment ul.payment_methods li label,
.woocommerce-checkout .wc-block-components-payment-method-label,
.woocommerce-checkout .wc-block-components-radio-control__label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--l3r-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"],
.woocommerce-checkout .wc-block-components-radio-control__input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--l3r-plum);
}

.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout .wc-block-components-payment-method__content,
.woocommerce-checkout .wc-block-components-radio-control__description {
  margin: 2px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(217, 54, 165, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--l3r-muted);
  font-size: 13px;
  line-height: 1.45;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment div.payment_box p,
.woocommerce-checkout .wc-block-components-payment-method__content p,
.woocommerce-checkout .wc-block-components-radio-control__description p {
  margin: 0;
}

.woocommerce-checkout #payment .payment_method_stripe img,
.woocommerce-checkout #payment ul.payment_methods li img,
.woocommerce-checkout .wc-block-components-payment-method-icons img {
  display: inline-block;
  max-height: 24px;
  width: auto;
  margin: 0 4px;
  vertical-align: middle;
}

.woocommerce-checkout #payment .place-order {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--l3r-line);
  background: rgba(255, 247, 251, 0.7);
}

.woocommerce-checkout #payment .place-order .button,
.woocommerce-checkout #place_order,
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 950;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text,
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .wc-block-components-checkout-place-order-button + div {
  color: var(--l3r-muted);
  font-size: 12px;
  line-height: 1.45;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods,
.woocommerce-checkout #payment .woocommerce-SavedPaymentMethods {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.l3r-cart-empty {
  display: grid;
  gap: 16px;
  place-items: start;
  padding: 34px;
}

.l3r-post-list {
  display: grid;
  gap: 14px;
}

.l3r-search-page-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.l3r-search-page-card {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
}

.l3r-search-page-thumb {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--l3r-paper);
}

.l3r-search-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l3r-search-page-card h2,
.l3r-search-page-empty h2,
.l3r-search-page-related h2 {
  margin: 0 0 8px;
  font-family: var(--l3r-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.l3r-search-page-card h2 a {
  color: inherit;
}

.l3r-search-page-card .eyebrow {
  margin-bottom: 8px;
}

.l3r-search-page-link {
  color: var(--l3r-plum-dark);
  font-size: 13px;
  font-weight: 900;
}

.l3r-search-page-empty {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-soft);
}

.l3r-search-page-empty p {
  margin: 0;
  color: var(--l3r-muted);
}

.l3r-search-page-related {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 560px) {
  .l3r-search-page-results {
    grid-template-columns: 1fr;
  }

  .l3r-search-page-card {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 12px;
  }

  .l3r-search-page-card h2,
  .l3r-search-page-empty h2,
  .l3r-search-page-related h2 {
    font-size: 24px;
  }
}

.l3r-footer {
  margin-top: 42px;
  background: #211d1f;
  color: #fff;
}

.l3r-footer-cta,
.l3r-footer-grid {
  max-width: var(--l3r-max);
  margin: 0 auto;
  padding: 44px 22px;
}

.l3r-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.l3r-footer-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.l3r-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 28px;
}

.l3r-footer h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.l3r-footer p,
.l3r-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.l3r-footer .l3r-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--l3r-ink);
}

.l3r-footer .l3r-button-light:hover {
  border-color: var(--l3r-coral);
  background: var(--l3r-coral);
  color: #fff;
}

.l3r-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.l3r-footer li + li {
  margin-top: 8px;
}

.l3r-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: var(--l3r-max);
  margin: 0 auto;
  padding: 0 22px 34px;
  font-size: 13px;
}

.l3r-footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.l3r-footer-legal a:hover {
  color: #fff;
}

.l3r-shop-intro {
  margin-bottom: 24px;
  padding: 30px;
  border-radius: var(--l3r-radius);
  background: #fff;
}

.l3r-shop-featured-image {
  overflow: hidden;
  margin: 0 0 26px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 24, 30, 0.06);
}

.l3r-shop-intro .l3r-shop-featured-image {
  margin: -30px -30px 24px;
  border-width: 0 0 1px;
  border-radius: var(--l3r-radius) var(--l3r-radius) 0 0;
  box-shadow: none;
}

.l3r-shop-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

.l3r-shop-intro h1 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.l3r-shop-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 14px;
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 24, 30, 0.06);
}

.l3r-filter-field,
.l3r-filter-actions,
.l3r-filter-toggles {
  display: grid;
  gap: 8px;
  align-content: end;
}

.l3r-filter-title {
  align-content: center;
}

.l3r-filter-title h2 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: 40px;
  line-height: 1;
}

.l3r-filter-field label {
  color: var(--l3r-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.l3r-filter-field input,
.l3r-filter-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  color: var(--l3r-ink);
  font: inherit;
}

.l3r-filter-field input:focus,
.l3r-filter-field select:focus {
  border-color: rgba(143, 63, 118, 0.65);
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 63, 118, 0.12);
}

.l3r-filter-prices div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.l3r-filter-toggles {
  grid-column: 1 / 4;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.l3r-filter-toggles label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  color: var(--l3r-muted);
  font-size: 13px;
  font-weight: 800;
}

.l3r-filter-actions {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: end;
}

.l3r-filter-actions a {
  color: var(--l3r-plum-dark);
  font-weight: 850;
}

.woocommerce ul.products {
  display: grid !important;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 12px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
  justify-self: stretch;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  color: inherit;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.woocommerce-loop-product__title {
  min-height: 44px;
  color: var(--l3r-ink);
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.woocommerce ul.products li.product .price {
  display: block;
  margin-top: 0;
  color: var(--l3r-plum-dark);
  font-weight: 850;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  text-align: center;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce-page ul.products li.product a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  line-height: 1.1;
}

.woocommerce nav.woocommerce-pagination,
.l3r-pagination {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.woocommerce nav.woocommerce-pagination ul,
.l3r-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li,
.l3r-pagination li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination a,
.woocommerce nav.woocommerce-pagination span,
.l3r-pagination a,
.l3r-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-plum-dark);
  font-weight: 900;
}

.woocommerce nav.woocommerce-pagination span.current,
.l3r-pagination span.current {
  border-color: var(--l3r-plum);
  background: var(--l3r-plum);
  color: #fff;
}

.l3r-product-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
  max-width: calc(100% - 24px);
  padding: 0;
  pointer-events: none;
}

.l3r-product-badges span {
  max-width: 100%;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-plum-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.l3r-product-badges .l3r-sale-badge,
.woocommerce span.onsale {
  background: var(--l3r-plum);
  color: #fff;
}

.l3r-product-meta-line {
  min-height: 20px;
  color: var(--l3r-muted);
  font-size: 12px;
  line-height: 1.35;
}

.l3r-cart-promo-panel {
  max-width: var(--l3r-max);
  margin: 0 auto 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: linear-gradient(135deg, #fff, var(--l3r-soft));
  box-shadow: var(--l3r-shadow);
}

.l3r-cart-promo-panel h2 {
  margin: 0 0 8px;
  font-family: var(--l3r-serif);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
}

.l3r-cart-promo-panel p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--l3r-muted);
}

.l3r-cart-promo-limit {
  font-weight: 800;
}

.l3r-cart-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.l3r-cart-promo-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--l3r-line);
  border-radius: var(--l3r-radius);
  background: #fff;
}

.l3r-cart-promo-image {
  display: block;
  overflow: hidden;
  border-radius: var(--l3r-radius);
  background: var(--l3r-paper);
}

.l3r-cart-promo-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.l3r-cart-promo-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.l3r-cart-promo-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 14px;
}

.l3r-cart-promo-card strong {
  color: var(--l3r-plum-dark);
}

@media (max-width: 1080px) {
  .l3r-mainbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .l3r-menu-toggle {
    display: inline-flex;
  }

  .l3r-nav {
    display: none;
    grid-column: 1 / -1;
  }

  .l3r-nav.is-open {
    display: block;
  }

  .l3r-nav .menu {
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding-top: 14px;
  }

  .l3r-nav a {
    min-height: 44px;
    border-bottom: 1px solid var(--l3r-line);
  }
}

@media (max-width: 900px) {
  .l3r-topbar:not(.l3r-shop-menu) {
    display: none;
  }

  .l3r-shop-menu.l3r-topbar {
    display: flex;
  }

  .l3r-mainbar,
  .l3r-hero,
  .l3r-split,
  .l3r-footer-cta,
  .l3r-footer-grid,
  .l3r-about-page,
  .l3r-about-gallery {
    grid-template-columns: 1fr;
  }

  .l3r-about-card {
    position: static;
  }

  .l3r-header-actions {
    grid-column: 1 / -1;
  }

  .l3r-search {
    width: 100%;
    min-width: 0;
  }

  .l3r-hero {
    min-height: 0;
    padding-top: 58px;
    background-position: center bottom;
  }

  .l3r-category-strip,
  .l3r-course-grid,
  .l3r-service-grid,
  .l3r-shop-filters,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l3r-filter-field-wide,
  .l3r-filter-toggles,
  .l3r-filter-actions {
    grid-column: 1 / -1;
  }

  .l3r-course-band,
  .l3r-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .l3r-loyalty-rewards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .l3r-about-copy,
  .l3r-about-card {
    padding: 22px;
  }

  .l3r-about-card h2 {
    font-size: 30px;
  }

  .l3r-mainbar {
    gap: 8px;
    padding: 8px 10px 10px;
  }

  .l3r-logo {
    justify-content: center;
    min-width: 0;
  }

  .l3r-logo-image {
    width: 102px;
    max-height: 48px;
  }

  .l3r-logo strong {
    font-size: 20px;
  }

  .l3r-header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .l3r-search,
  .l3r-search-input {
    max-width: 100%;
    min-width: 0;
  }

  .l3r-search {
    grid-column: 1 / -1;
  }

  .l3r-search-input {
    min-height: 38px;
    padding-right: 78px;
    font-size: 13px;
  }

  .l3r-search-submit {
    top: 4px;
    right: 4px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .l3r-icon-link {
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.1;
  }

  .l3r-cart-count {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .l3r-course-grid,
  .l3r-service-grid,
  .l3r-proof-grid,
  .l3r-shop-filters,
  .l3r-filter-toggles,
  .l3r-filter-actions {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    display: -webkit-box;
    min-height: calc(1.18em * 4);
    max-height: calc(1.18em * 4);
    font-size: 12px;
    line-height: 1.18;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
    min-width: 0;
    max-width: none;
    gap: 7px;
    margin: 0 !important;
    padding: 7px;
  }

  .l3r-product-badges {
    top: 9px;
    right: 9px;
    left: 9px;
    gap: 4px;
    max-width: calc(100% - 18px);
  }

  .l3r-product-badges span {
    padding: 3px 5px;
    font-size: 10px;
  }

  .l3r-product-meta-line {
    display: -webkit-box;
    min-height: calc(1.3em * 2);
    max-height: calc(1.3em * 2);
    overflow: hidden;
    font-size: 11px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }

  .l3r-course-session {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .l3r-course-session em {
    grid-column: 2;
    justify-self: start;
  }

  .l3r-hero,
  .l3r-page,
  .l3r-page-hero,
  .l3r-page-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .l3r-shop-featured-image img {
    aspect-ratio: 4 / 3;
  }

  .l3r-section,
  .l3r-woo-shell {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.l3r-topbar {
  background: linear-gradient(90deg, var(--l3r-plum), var(--l3r-sage), var(--l3r-coral));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3r-shop-menu {
  align-items: center;
  justify-content: center;
  max-height: 90px;
  min-height: 48px;
  padding: 0 22px;
}

.l3r-shop-menu-toggle {
  position: relative;
  z-index: 4;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.l3r-shop-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.l3r-shop-menu-toggle.is-open span:not(.screen-reader-text):nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.l3r-shop-menu-toggle.is-open span:not(.screen-reader-text):nth-child(2) {
  opacity: 0;
}

.l3r-shop-menu-toggle.is-open span:not(.screen-reader-text):nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.l3r-shop-menu-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.l3r-shop-menu-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.l3r-about-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.l3r-about-copy,
.l3r-about-card {
  padding: 32px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
}

.l3r-about-copy p {
  margin: 0;
  color: var(--l3r-ink);
  font-size: 18px;
}

.l3r-about-copy p + p {
  margin-top: 18px;
}

.l3r-about-card {
  position: sticky;
  top: 190px;
  display: grid;
  gap: 16px;
  background: linear-gradient(140deg, #fff, var(--l3r-soft));
}

.l3r-about-card h2 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: 36px;
  line-height: 1;
}

.l3r-about-card p {
  margin: 0;
  color: var(--l3r-muted);
}

.l3r-about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.l3r-about-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  object-fit: cover;
}

.l3r-site-header {
  background: rgba(255, 247, 251, 0.96);
}

.l3r-mainbar {
  max-width: 1280px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--l3r-line);
}

.l3r-logo-mark {
  color: var(--l3r-plum-dark);
  border-color: rgba(228, 106, 166, 0.65);
}

.l3r-logo strong {
  color: var(--l3r-plum-dark);
}

.l3r-nav a {
  color: #141414;
  text-transform: uppercase;
}

.l3r-icon-link {
  min-width: 48px;
  justify-content: center;
  border-radius: 999px;
  color: var(--l3r-plum-dark);
}

.l3r-account-link {
  padding-inline: 18px;
}

.l3r-account-link span {
  overflow-wrap: anywhere;
}

.l3r-hero-slider {
  position: relative;
  max-width: 1280px;
  margin: 30px auto 0;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.l3r-hero-track {
  position: relative;
  min-height: 548px;
}

.l3r-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.46fr);
  align-items: end;
  gap: 40px;
  min-height: 548px;
  padding: 82px 54px 58px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.l3r-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.l3r-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #eee;
}

.l3r-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.2) 100%);
}

.l3r-hero-slide-photo {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  gap: 0;
  padding: 0;
  background: #fff;
}

.l3r-hero-slide-photo .l3r-hero-media {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  min-height: 468px;
}

.l3r-hero-slide-photo .l3r-hero-media::after {
  display: none;
}

.l3r-hero-media img,
.l3r-hero-media video,
.l3r-home-block-media img,
.l3r-home-block-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l3r-hero-copy,
.l3r-hero-card {
  position: relative;
  z-index: 1;
}

.l3r-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 800;
  line-height: 0.96;
}

.l3r-hero-copy p {
  max-width: 560px;
  color: #55504d;
  font-size: 18px;
}

.l3r-hero-copy .l3r-button {
  margin-top: 18px;
}

.l3r-hero-card {
  align-self: end;
  max-width: 300px;
  justify-self: end;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.l3r-hero-card span {
  color: var(--l3r-coral);
  font-size: 12px;
  font-weight: 900;
}

.l3r-hero-card strong {
  display: block;
  margin: 8px 0 8px;
  font-family: var(--l3r-serif);
  font-size: 30px;
  line-height: 1;
}

.l3r-hero-card p {
  margin: 0;
  color: var(--l3r-muted);
  font-size: 14px;
}

.l3r-slider-controls {
  position: absolute;
  top: 30px;
  right: 28px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.l3r-slider-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--l3r-plum-dark);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.l3r-slider-dots {
  position: absolute;
  top: 90px;
  right: 34px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.l3r-slider-dots span {
  width: 34px;
  height: 4px;
  background: rgba(0, 0, 0, 0.18);
}

.l3r-slider-dots span.is-active {
  background: var(--l3r-plum);
}

.l3r-home-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--l3r-line);
}

.l3r-home-block:nth-of-type(even) .l3r-home-block-copy {
  order: 2;
}

.l3r-home-block-copy h2,
.l3r-business-band h2,
.l3r-newsletter-band h2,
.l3r-contact-band h2 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.l3r-home-block-copy p {
  color: var(--l3r-muted);
  font-size: 17px;
}

.l3r-home-block-copy {
  position: relative;
  z-index: 2;
}

.l3r-home-block-media {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #eee;
}

.l3r-home-block-has-background {
  min-height: 500px;
  padding: clamp(42px, 6vw, 74px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #1d151d;
  color: #fff;
}

.l3r-home-block-has-background::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.76) 0%, rgba(217, 54, 165, 0.5) 48%, rgba(255, 114, 189, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.l3r-home-block-has-background:nth-of-type(even) .l3r-home-block-copy {
  order: initial;
}

.l3r-home-block-has-background .l3r-home-block-copy {
  max-width: 620px;
}

.l3r-home-block-has-background .eyebrow {
  color: var(--l3r-accent);
}

.l3r-home-block-has-background .l3r-home-block-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

.l3r-home-block-has-background .l3r-home-block-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border: 0;
  border-radius: inherit;
  opacity: 0.95;
}

.l3r-home-block-has-background .l3r-button-secondary {
  border-color: #fff;
  background: #fff;
  color: var(--l3r-ink);
}

.l3r-home-block-photo-only {
  display: block;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--l3r-line);
}

.l3r-home-block-photo-only .l3r-home-block-media {
  min-height: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.l3r-home-block-photo-only .l3r-home-block-media img,
.l3r-home-block-photo-only .l3r-home-block-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 8px;
}

.l3r-photo-action {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  background: #fff;
}

.l3r-hero-photo-action {
  flex: 0 0 auto;
  padding: 18px;
  border-top: 1px solid var(--l3r-line);
}

.l3r-home-block-products {
  padding-top: 34px;
  border-top: 0;
}

.l3r-home-block-products .l3r-section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.l3r-business-band,
.l3r-newsletter-band,
.l3r-contact-band {
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--l3r-plum), var(--l3r-sage) 56%, var(--l3r-coral));
  color: #fff;
}

.l3r-business-band .eyebrow,
.l3r-business-band p,
.l3r-newsletter-band .eyebrow,
.l3r-contact-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.l3r-newsletter-band,
.l3r-contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: 28px;
}

.l3r-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.l3r-review-card {
  padding: 24px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
}

.l3r-review-rating {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--l3r-accent);
  font-weight: 900;
  letter-spacing: 0;
}

.l3r-review-card p {
  color: var(--l3r-muted);
}

.l3r-access-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
}

.l3r-access-card {
  padding: 36px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
}

.l3r-access-card-muted {
  background: linear-gradient(120deg, #fff, var(--l3r-soft));
}

.l3r-access-card h2,
.l3r-business-form h2 {
  margin: 0 0 18px;
  font-family: var(--l3r-serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
}

.l3r-access-card h3 {
  margin-top: 28px;
}

.l3r-access-card input,
.l3r-access-card select,
.l3r-access-card textarea,
.l3r-lead-form input,
.l3r-lead-form select,
.l3r-lead-form textarea,
.l3r-course-booking-form input,
.l3r-course-alert-form input,
.l3r-business-form input,
.l3r-business-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 6px;
  background: #fff;
  color: #101010;
  font: inherit;
}

.l3r-access-card textarea,
.l3r-lead-form textarea {
  padding-top: 12px;
}

.l3r-access-card .login-submit input,
.l3r-access-card button,
.l3r-lead-form button,
.l3r-course-booking-form button,
.l3r-course-alert-form button,
.l3r-business-form button {
  width: 100%;
  margin-top: 12px;
}

.l3r-account-login-form,
.l3r-client-register form,
.l3r-newsletter-form,
.l3r-contact-form,
.l3r-business-form {
  display: grid;
  gap: 12px;
}

.l3r-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.l3r-form-wide {
  grid-column: 1 / -1;
}

.l3r-checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.l3r-checkbox-line input {
  width: auto;
  min-height: 0;
}

.l3r-form-message {
  padding: 12px 14px;
  border: 1px solid rgba(228, 106, 166, 0.42);
  border-radius: 6px;
  background: #fff8e8;
  color: #6e4912;
  font-weight: 800;
}

.l3r-account-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.l3r-account-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(217, 54, 165, 0.08);
}

.l3r-account-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.l3r-account-card h2 {
  margin: 0;
  font-family: var(--l3r-serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.l3r-account-card p {
  margin: 0;
  color: var(--l3r-muted);
}

.l3r-account-actions,
.l3r-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.l3r-account-form {
  display: grid;
  gap: 14px;
}

.l3r-account-form input,
.l3r-inline-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 6px;
  background: #fff;
  color: var(--l3r-ink);
  font: inherit;
}

.l3r-inline-form label {
  display: grid;
  gap: 6px;
  min-width: 190px;
  color: var(--l3r-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3r-account-orders,
.l3r-account-history {
  display: grid;
  gap: 10px;
}

.l3r-account-orders article,
.l3r-account-history div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--l3r-line);
  border-radius: 6px;
  background: var(--l3r-paper);
  font-size: 13px;
}

.l3r-account-history div {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.l3r-account-history strong {
  color: var(--l3r-coral);
  font-size: 18px;
}

.l3r-account-payments {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.l3r-payment-methods-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.l3r-payment-methods-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 13px;
}

.l3r-payment-methods-table th {
  color: var(--l3r-muted);
  font-size: 11px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.l3r-payment-methods-table td {
  padding: 12px;
  border-top: 1px solid var(--l3r-line);
  border-bottom: 1px solid var(--l3r-line);
  background: var(--l3r-paper);
  vertical-align: middle;
}

.l3r-payment-methods-table td:first-child {
  border-left: 1px solid var(--l3r-line);
  border-radius: 6px 0 0 6px;
  font-weight: 850;
}

.l3r-payment-methods-table td:last-child {
  border-right: 1px solid var(--l3r-line);
  border-radius: 0 6px 6px 0;
}

.l3r-payment-methods-table span {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-plum-dark);
  font-size: 11px;
  font-weight: 900;
}

.l3r-payment-action {
  display: inline-flex;
  margin: 2px 8px 2px 0;
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.l3r-payment-action-delete {
  color: #a12b66;
}

.l3r-login-help {
  margin: 6px 0 0;
  color: var(--l3r-plum-dark);
  font-weight: 850;
}

.l3r-button:disabled,
.l3r-inline-form input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.l3r-newsletter-form label span,
.l3r-contact-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3r-newsletter-band .l3r-newsletter-form input,
.l3r-newsletter-band .l3r-newsletter-form button,
.l3r-contact-band .l3r-contact-form input,
.l3r-contact-band .l3r-contact-form textarea,
.l3r-contact-band .l3r-contact-form button {
  border-color: rgba(255, 255, 255, 0.24);
}

.l3r-newsletter-band .l3r-newsletter-form label span,
.l3r-contact-band .l3r-contact-form label span,
.l3r-newsletter-band .l3r-newsletter-form p,
.l3r-contact-band .l3r-contact-form p {
  color: rgba(255, 255, 255, 0.78);
}

.l3r-newsletter-band .l3r-button,
.l3r-contact-band .l3r-button {
  border-color: #fff;
  background: #fff;
  color: var(--l3r-plum-dark);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 48px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product .product_title {
  margin: 0 0 18px;
  font-family: var(--l3r-serif);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #0b0b0b;
  font-size: 26px;
  font-weight: 900;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
}

.woocommerce .quantity .qty {
  min-height: 52px;
  border: 1px solid var(--l3r-line);
  border-radius: 6px;
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 6px;
  background: #fff;
}

.l3r-product-video-shell {
  position: relative;
  grid-column: 1 / -1;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #050505;
}

.l3r-product-video-shell video {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.l3r-product-video-shell.has-video-error {
  display: none;
}

.l3r-video-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.l3r-video-controls button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.woocommerce ul.products li.product .l3r-loop-video {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  z-index: 4;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.woocommerce ul.products li.product:hover .l3r-loop-video,
.woocommerce ul.products li.product:focus-within .l3r-loop-video,
.woocommerce ul.products li.product .l3r-loop-video.is-visible {
  opacity: 1;
}

.woocommerce ul.products li.product .l3r-loop-video.has-video-error {
  display: none;
}

.l3r-loop-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l3r-loop-video span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-coral);
  font-size: 11px;
  font-weight: 900;
}

@media (hover: none), (pointer: coarse) {
  .woocommerce ul.products li.product .l3r-loop-video {
    opacity: 1;
  }
}

.l3r-business-price-label {
  display: block;
  margin-bottom: 4px;
  color: var(--l3r-coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.l3r-product-loyalty {
  margin: 6px 0 0;
  padding: 8px 10px;
  border: 1px solid rgba(143, 63, 118, 0.18);
  border-radius: 6px;
  background: rgba(248, 232, 242, 0.72);
  color: var(--l3r-plum-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.l3r-product-loyalty-single {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: 14px;
}

.l3r-loyalty-callout {
  padding: 14px 16px;
  border: 1px solid rgba(217, 54, 165, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, rgba(248, 232, 242, 0.82));
  color: var(--l3r-plum-dark);
  font-weight: 900;
}

.l3r-loyalty-rewards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.l3r-loyalty-reward {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
}

.l3r-loyalty-reward strong {
  color: var(--l3r-ink);
  font-family: var(--l3r-serif);
  font-size: 24px;
  line-height: 1;
}

.l3r-loyalty-reward span {
  color: var(--l3r-muted);
  font-size: 13px;
  font-weight: 850;
}

.l3r-loyalty-reward.is-locked {
  opacity: 0.72;
}

.l3r-loyalty-coupons {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(143, 63, 118, 0.18);
  border-radius: 8px;
  background: #fff;
}

.l3r-loyalty-coupons h3 {
  margin: 0 0 6px;
  font-family: var(--l3r-serif);
  font-size: 28px;
  line-height: 1.05;
}

.l3r-loyalty-coupons p {
  margin: 0;
  color: var(--l3r-muted);
}

.l3r-loyalty-coupon-list {
  display: grid;
  gap: 10px;
}

.l3r-loyalty-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: var(--l3r-paper);
}

.l3r-loyalty-coupon strong,
.l3r-loyalty-coupon span,
.l3r-loyalty-coupon small {
  display: block;
}

.l3r-loyalty-coupon span {
  color: var(--l3r-plum-dark);
  font-weight: 900;
}

.l3r-loyalty-coupon small {
  margin-top: 4px;
  color: var(--l3r-muted);
}

.l3r-loyalty-coupon-code-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.l3r-loyalty-coupon-code,
.l3r-account-history code {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px dashed rgba(143, 63, 118, 0.32);
  border-radius: 6px;
  background: #fff;
  color: var(--l3r-ink);
  font: 900 13px/1.2 var(--l3r-sans);
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .l3r-loyalty-coupon {
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-loyalty-coupon-code-wrap {
    justify-content: stretch;
  }

  .l3r-loyalty-coupon-code-wrap .l3r-button,
  .l3r-loyalty-coupon-code {
    width: 100%;
    justify-content: center;
  }
}

.l3r-newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.l3r-newsletter-popup[hidden] {
  display: none;
}

.l3r-newsletter-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l3r-newsletter-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 21, 20, 0.48);
  backdrop-filter: blur(8px);
}

.l3r-newsletter-popup-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(680px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(23, 21, 20, 0.32);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.l3r-newsletter-popup.is-open .l3r-newsletter-popup-card {
  transform: translateY(0) scale(1);
}

.l3r-newsletter-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--l3r-soft);
  color: var(--l3r-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(23, 21, 20, 0.14);
}

.l3r-newsletter-popup-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--l3r-soft);
}

.l3r-newsletter-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l3r-newsletter-popup-copy {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
}

.l3r-newsletter-popup-copy h2 {
  margin: 0;
  color: var(--l3r-plum-dark);
  font-family: var(--l3r-serif);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
}

.l3r-newsletter-popup-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 auto;
  color: var(--l3r-muted);
  font-size: 17px;
}

.l3r-newsletter-form-popup {
  width: min(520px, 100%);
  margin: 6px auto 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  text-align: left;
}

.l3r-newsletter-form-popup label,
.l3r-newsletter-form-popup .l3r-form-message,
.l3r-newsletter-form-popup .l3r-recaptcha {
  grid-column: 1 / -1;
}

.l3r-newsletter-form-popup button {
  grid-column: 1 / -1;
}

.l3r-newsletter-popup-code {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 16px;
  border: 1px dashed var(--l3r-plum);
  border-radius: 8px;
  background: var(--l3r-paper);
  color: var(--l3r-plum-dark);
  font-size: 18px;
  font-weight: 950;
}

.l3r-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--l3r-ink);
  font-weight: 950;
  text-decoration: none;
}

.l3r-whatsapp-float:hover {
  color: var(--l3r-ink);
  transform: translateY(-1px);
}

.l3r-whatsapp-float-icon-only {
  width: 56px;
  justify-content: center;
}

.l3r-whatsapp-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(18, 140, 75, 0.34);
}

.l3r-whatsapp-icon svg {
  display: block;
  width: 31px;
  height: 31px;
  fill: #fff;
}

.l3r-whatsapp-label {
  max-width: min(220px, calc(100vw - 104px));
  padding: 12px 14px;
  border: 1px solid var(--l3r-line);
  border-radius: 999px;
  background: #fff;
  color: var(--l3r-ink);
  box-shadow: 0 12px 28px rgba(33, 23, 32, 0.14);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1080px) {
  .l3r-hero-slide,
  .l3r-home-block,
  .l3r-access-grid,
  .l3r-account-dashboard,
  .l3r-account-card-wide,
  .l3r-newsletter-band,
  .l3r-contact-band,
  .l3r-course-product-layout,
  .l3r-course-detail-body,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .l3r-home-block:nth-of-type(even) .l3r-home-block-copy {
    order: initial;
  }

  .l3r-hero-card {
    justify-self: start;
  }

  .l3r-hero-track,
  .l3r-hero-slide {
    min-height: 720px;
  }
}

@media (max-width: 720px) {
  .l3r-shop-menu.l3r-topbar {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 4px 10px;
  }

  .l3r-free-shipping-banner {
    padding: 6px 10px;
    font-size: 11px;
    line-height: 1.2;
  }

  .l3r-mainbar {
    gap: 8px;
    padding: 8px 10px 10px;
  }

  .l3r-header-actions {
    gap: 8px;
  }

  .l3r-site-header.is-scrolled-down {
    transform: translateY(calc(-100% - 2px));
    pointer-events: none;
  }

  .l3r-shop-menu-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 10px;
    left: 10px;
    z-index: 90;
    display: none;
    max-height: min(360px, 58vh);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(217, 54, 165, 0.96);
    box-shadow: 0 18px 38px rgba(23, 21, 20, 0.28);
    backdrop-filter: blur(14px);
  }

  .l3r-shop-menu-links.is-open {
    display: grid;
  }

  .l3r-shop-menu-links a {
    justify-content: center;
    min-height: 42px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
  }

  .l3r-quick-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-right: 16px;
    padding-left: 16px;
    scrollbar-width: none;
  }

  .l3r-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .l3r-category-strip {
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .l3r-category-strip a {
    min-height: 94px;
    padding: 12px 8px;
  }

  .l3r-category-tile-label {
    min-width: 82%;
    min-height: 30px;
    font-size: 12px;
  }

  .l3r-hero-slider {
    margin-top: 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .l3r-hero-track,
  .l3r-hero-slide {
    min-height: 700px;
  }

  .l3r-hero-slide {
    padding: 96px 18px 58px;
  }

  .l3r-hero-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
  }

  .l3r-hero-copy h1 {
    max-width: 310px;
    font-size: 42px;
    overflow-wrap: break-word;
  }

  .l3r-slider-controls {
    top: 18px;
    right: 18px;
  }

  .l3r-slider-dots {
    top: 76px;
    right: 18px;
    left: auto;
  }

  .l3r-form-grid,
  .l3r-reviews-grid,
  .l3r-account-orders article,
  .l3r-account-history div {
    grid-template-columns: 1fr;
  }

  .l3r-payment-methods-table,
  .l3r-payment-methods-table thead,
  .l3r-payment-methods-table tbody,
  .l3r-payment-methods-table tr,
  .l3r-payment-methods-table td {
    display: block;
  }

  .l3r-payment-methods-table thead {
    display: none;
  }

  .l3r-payment-methods-table tr {
    padding: 12px;
    border: 1px solid var(--l3r-line);
    border-radius: 6px;
    background: var(--l3r-paper);
  }

  .l3r-payment-methods-table td,
  .l3r-payment-methods-table td:first-child,
  .l3r-payment-methods-table td:last-child {
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .l3r-payment-methods-table td::before {
    content: attr(data-title);
    display: block;
    color: var(--l3r-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .woocommerce div.product form.cart {
    display: grid;
  }

  .l3r-course-media-detail {
    min-height: 280px;
  }

  .l3r-course-description,
  .l3r-course-booking-shell,
  .l3r-newsletter-popup-copy {
    padding: 22px;
  }

  .l3r-newsletter-popup {
    padding: 12px;
  }

  .l3r-newsletter-popup-card {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .l3r-newsletter-popup-close {
    top: 12px;
    right: 12px;
  }

  .l3r-whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
  }

  .l3r-whatsapp-icon {
    width: 52px;
    height: 52px;
  }

  .l3r-whatsapp-icon svg {
    width: 29px;
    height: 29px;
  }

  .l3r-whatsapp-label {
    max-width: min(150px, calc(100vw - 96px));
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.l3r-review-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: start;
}

.l3r-review-submit-panel,
.l3r-review-list-panel,
.l3r-not-found-search,
.l3r-checkout-notice {
  border: 1px solid var(--l3r-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(217, 54, 165, 0.08);
}

.l3r-review-submit-panel,
.l3r-not-found-search,
.l3r-checkout-notice {
  padding: 28px;
}

.l3r-review-list-panel {
  padding: 28px;
}

.l3r-review-submit-panel {
  position: sticky;
  top: 160px;
}

.l3r-review-submit-panel h2,
.l3r-not-found-search h2,
.l3r-checkout-notice h2 {
  margin: 0 0 12px;
  font-family: var(--l3r-serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.l3r-review-form {
  margin-top: 20px;
}

.l3r-recaptcha {
  max-width: 100%;
  overflow-x: auto;
}

.l3r-not-found {
  min-height: 520px;
  background:
    radial-gradient(circle at 78% 22%, rgba(228, 106, 166, 0.18), transparent 32%),
    linear-gradient(135deg, #fff, var(--l3r-soft));
}

.l3r-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.l3r-checkout-notice {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.l3r-checkout-notice p {
  margin: 0;
  color: var(--l3r-muted);
}

.l3r-checkout-shipping {
  border-color: rgba(228, 106, 166, 0.34);
  background: linear-gradient(135deg, #fff, rgba(248, 232, 242, 0.86));
}

.l3r-free-shipping-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(217, 54, 165, 0.12);
}

.l3r-free-shipping-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--l3r-plum), var(--l3r-accent));
}

.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--l3r-line);
}

.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 {
  margin: 0 0 22px;
  font-family: var(--l3r-serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.woocommerce div.product .related ul.products,
.woocommerce div.product .upsells ul.products {
  gap: 24px;
}

@media (max-width: 1080px) {
  .l3r-cart-page {
    grid-template-columns: 1fr;
  }

  .l3r-cart-summary-shell {
    position: static;
  }
}

@media (max-width: 1080px) {
  .l3r-review-page {
    grid-template-columns: 1fr;
  }

  .l3r-review-submit-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .l3r-slider-controls {
    right: auto;
    left: 18px;
  }

  .l3r-hero-copy p {
    max-width: 310px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .l3r-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 6px;
    padding-bottom: 14px;
  }

  .l3r-quick-nav a {
    width: 100%;
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  body.woocommerce,
  body.woocommerce-page {
    overflow-x: hidden;
  }

  .woocommerce-cart .l3r-page,
  .woocommerce-checkout .l3r-page {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .l3r-cart-hero,
  .l3r-cart-empty {
    padding: 22px;
  }

  .l3r-cart-hero h1,
  .l3r-cart-empty h1 {
    font-size: 40px;
  }

  .l3r-cart-head {
    display: none;
  }

  .l3r-cart-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .l3r-cart-product {
    grid-template-columns: 28px 74px minmax(0, 1fr);
    gap: 10px;
  }

  .l3r-cart-thumb img {
    width: 74px;
  }

  .l3r-cart-price,
  .l3r-cart-quantity,
  .l3r-cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-left: 112px;
    font-size: 15px;
  }

  .l3r-cart-price::before,
  .l3r-cart-quantity::before,
  .l3r-cart-subtotal::before {
    content: attr(data-title);
    color: var(--l3r-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .l3r-cart-actions,
  .l3r-cart-coupon {
    display: grid;
    grid-template-columns: 1fr;
  }

  .l3r-cart-actions .button,
  .l3r-cart-summary-shell .button {
    width: 100%;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    float: none;
    width: 100%;
  }

  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce form .form-row select:not(.select2-hidden-accessible),
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    min-height: 48px;
  }

  .woocommerce .l3r-woo-shell,
  .woocommerce-page .l3r-woo-shell,
  .woocommerce .l3r-section,
  .woocommerce-page .l3r-section {
    width: 100%;
    max-width: 100%;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .l3r-home-block-products .woocommerce ul.products {
    display: grid !important;
    width: 100% !important;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 10px;
    row-gap: 14px;
    padding: 0 !important;
    margin: 0 !important;
  }

  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .l3r-logo-image {
    width: 90px;
    max-height: 40px;
  }

  .l3r-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .l3r-search-input {
    min-width: 0;
    max-width: 100%;
    min-height: 38px;
    padding-right: 12px;
  }

  .l3r-search-submit {
    position: static;
    min-height: 38px;
    padding: 0;
  }

  .l3r-section,
  .l3r-page,
  .l3r-woo-shell,
  .l3r-page-hero,
  .l3r-page-header {
    scroll-margin-top: 430px;
  }

  .woocommerce ul.products li.product .button {
    width: 100%;
    margin-top: 12px;
  }

  .l3r-about-page {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
    overflow: hidden;
  }

  .l3r-about-copy,
  .l3r-about-card {
    width: auto;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 20px;
  }

  .l3r-about-card h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }
}

/* Responsive layout hardening. */
html,
body {
  max-width: 100%;
}

.l3r-main,
.l3r-section,
.l3r-page,
.l3r-woo-shell,
.l3r-hero-slider,
.l3r-home-block,
.l3r-course-product-layout,
.l3r-course-detail-body,
.woocommerce div.product,
.woocommerce ul.products li.product {
  min-width: 0;
}

.l3r-section > *,
.l3r-page > *,
.l3r-woo-shell > *,
.l3r-home-block > *,
.l3r-course-product-layout > *,
.l3r-course-detail-body > *,
.woocommerce div.product > * {
  min-width: 0;
  max-width: 100%;
}

.l3r-hero-media img,
.l3r-hero-media video,
.l3r-home-block-media img,
.l3r-home-block-media video,
.l3r-course-media img,
.l3r-course-media video {
  object-position: center;
}

.l3r-product-video-shell,
.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.l3r-product-video-shell {
  overflow: hidden;
}

.l3r-product-video-shell video {
  width: 100%;
  height: auto;
  max-height: min(520px, 68vh);
}

.woocommerce div.product div.images {
  overflow: hidden;
}

.woocommerce div.product div.images .flex-viewport {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  overflow: hidden !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  max-width: none;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: block;
  max-width: 100%;
}

.woocommerce div.product div.images img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

.woocommerce div.product div.images .flex-control-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
}

.woocommerce div.product form.cart {
  flex-wrap: wrap;
}

.woocommerce div.product form.cart .button {
  min-width: min(100%, 240px);
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  width: 100%;
  max-width: 100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-page table.shop_table th,
.woocommerce-page table.shop_table td {
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .l3r-hero-slider {
    width: min(100%, calc(100vw - 28px));
  }

  .l3r-hero-track,
  .l3r-hero-slide {
    min-height: 620px;
  }

  .l3r-course-product-layout,
  .l3r-course-detail-body,
  .woocommerce div.product {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .l3r-hero-slider {
    width: 100%;
    margin-top: 10px;
  }

  .l3r-hero-track,
  .l3r-hero-slide {
    min-height: min(620px, 72svh);
  }

  .l3r-hero-slide {
    align-content: end;
    gap: 16px;
    padding: 82px 16px 46px;
  }

  .l3r-hero-slide-photo {
    min-height: auto;
  }

  .l3r-hero-slide-photo .l3r-hero-media {
    min-height: 0;
  }

  .l3r-hero-copy,
  .l3r-hero-card {
    max-width: 100%;
  }

  .l3r-hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1;
  }

  .l3r-hero-card {
    padding: 16px;
  }

  .l3r-hero-card strong {
    font-size: 24px;
  }

  .l3r-hero-photo-action {
    padding: 14px 16px;
  }

  .l3r-page-hero {
    min-height: 0;
    background-size: cover;
    background-position: center;
  }

  .l3r-home-block {
    gap: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .l3r-home-block-copy h2,
  .l3r-business-band h2,
  .l3r-newsletter-band h2,
  .l3r-contact-band h2 {
    font-size: 38px;
    line-height: 1;
  }

  .l3r-home-block-media {
    min-height: 260px;
  }

  .l3r-home-block-has-background {
    min-height: min(520px, 70svh);
    padding: 32px 18px;
  }

  .l3r-home-block-photo-only .l3r-home-block-media img,
  .l3r-home-block-photo-only .l3r-home-block-media video {
    aspect-ratio: 4 / 3;
    max-height: 70vh;
  }

  .l3r-course-media-detail {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .l3r-course-product-summary h1,
  .woocommerce div.product .product_title {
    font-size: 38px;
    line-height: 1;
  }

  .woocommerce div.product p.price,
  .woocommerce div.product span.price {
    font-size: 22px;
  }

  .woocommerce div.product form.cart,
  .woocommerce div.product form.cart .quantity,
  .woocommerce div.product form.cart .button,
  .woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100%;
  }

  .woocommerce .quantity .qty {
    width: 100%;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: grid;
    gap: 8px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 100%;
    margin: 0;
  }

  .woocommerce div.product .related,
  .woocommerce div.product .upsells {
    margin-top: 34px;
    padding-top: 24px;
  }

  .woocommerce-checkout-review-order-table,
  .woocommerce table.shop_table_responsive,
  .woocommerce-page table.shop_table_responsive {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .l3r-loyalty-steps,
  .l3r-loyalty-rules-grid,
  .l3r-loyalty-tables {
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-loyalty-intro,
  .l3r-loyalty-redeem,
  .l3r-loyalty-terms,
  .l3r-loyalty-rule-card-photo {
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-loyalty-hero {
    min-height: 460px;
  }

  .l3r-loyalty-hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 clamp(24px, 6vw, 56px) clamp(24px, 6vw, 56px);
  }

  .l3r-loyalty-steps article div,
  .l3r-loyalty-rule-card,
  .l3r-loyalty-table-panel,
  .l3r-loyalty-terms {
    padding: 20px;
  }

  .l3r-loyalty-rule-card-photo > div {
    padding: 24px;
  }

  .l3r-checkout-loyalty {
    align-items: start;
  }

  .l3r-loyalty-hero {
    min-height: 0;
  }

  .l3r-loyalty-hero > img {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .l3r-loyalty-hero::after {
    display: none;
  }

  .l3r-loyalty-hero-copy {
    padding: 24px;
  }

  .l3r-loyalty-hero-copy h1,
  .l3r-loyalty-intro h2,
  .l3r-loyalty-redeem h2 {
    font-size: 38px;
  }

  .l3r-loyalty-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-loyalty-redeem > img,
  .l3r-loyalty-rule-card-photo img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .l3r-loyalty-gift-note,
  .l3r-loyalty-terms-heading,
  .l3r-loyalty-terms ol,
  .l3r-loyalty-updated {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .l3r-hero-track,
  .l3r-hero-slide {
    min-height: min(560px, 70svh);
  }

  .l3r-hero-slide {
    padding: 72px 14px 38px;
  }

  .l3r-hero-copy h1 {
    font-size: 36px;
  }

  .l3r-hero-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .l3r-slider-controls button {
    width: 40px;
    height: 40px;
  }

  .l3r-slider-dots span {
    width: 24px;
  }

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

  .l3r-course-card {
    padding: 10px !important;
  }

  .l3r-course-card-content strong {
    font-size: 24px;
  }

  .l3r-course-meta li {
    font-size: 12px;
    line-height: 1.25;
  }

  .l3r-product-video-shell {
    margin-bottom: 14px;
  }

  .l3r-video-controls {
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }

  .l3r-video-controls button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.images .flex-viewport {
    width: 100% !important;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    right: 10px;
  }

  .l3r-checkout-loyalty {
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-checkout-loyalty-badge {
    width: auto;
    height: auto;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    justify-self: start;
  }

  .woocommerce ul.products li.product .price {
    font-size: 13px;
    line-height: 1.25;
  }

  .l3r-product-loyalty-loop {
    display: block;
    max-height: none;
    overflow: visible;
    font-size: 11px;
    line-height: 1.35;
    -webkit-line-clamp: unset;
  }

  .l3r-cart-price,
  .l3r-cart-quantity,
  .l3r-cart-subtotal {
    padding-left: 0;
  }

  .l3r-footer-cta,
  .l3r-footer-grid {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 340px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .l3r-home-block-products .woocommerce ul.products,
  .l3r-category-strip {
    grid-template-columns: 1fr !important;
  }

  .l3r-header-actions {
    grid-template-columns: 1fr;
  }

  .l3r-quick-nav {
    grid-template-columns: 1fr;
  }
}

/* Account area and mobile homepage media refinements. */
.l3r-access-grid,
.l3r-access-card,
.l3r-client-register,
.l3r-client-register form,
.l3r-business-form,
.l3r-account-dashboard,
.l3r-account-card,
.l3r-account-card-wide,
.l3r-account-payments,
.l3r-payment-methods-panel,
.l3r-payment-methods-table,
.l3r-loyalty-panel,
.l3r-loyalty-rewards,
.l3r-loyalty-reward,
.l3r-course-booking-history,
.woocommerce-account .woocommerce,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.l3r-access-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.l3r-access-card,
.l3r-account-card,
.l3r-loyalty-reward,
.l3r-payment-methods-panel,
.woocommerce-MyAccount-content {
  overflow-wrap: anywhere;
}

.l3r-access-card *,
.l3r-account-card *,
.woocommerce-MyAccount-content * {
  box-sizing: border-box;
  max-width: 100%;
}

.l3r-access-card input,
.l3r-access-card select,
.l3r-access-card textarea,
.l3r-account-form input,
.l3r-inline-form input,
.l3r-business-form input,
.l3r-business-form select {
  min-width: 0;
}

.l3r-account-actions .l3r-button,
.l3r-inline-form .l3r-button,
.l3r-loyalty-reward .l3r-button,
.l3r-payment-methods-panel .l3r-button,
.l3r-access-card .l3r-button,
.l3r-access-card button,
.l3r-account-card button {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.l3r-payment-methods-panel,
.l3r-account-orders,
.l3r-account-history,
.l3r-course-booking-history {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.l3r-account-orders article > *,
.l3r-account-history div > *,
.l3r-course-booking-history article > * {
  min-width: 0;
}

@media (max-width: 1080px) {
  .l3r-account-card-wide,
  .l3r-account-payments {
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-loyalty-rewards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .l3r-access-grid,
  .l3r-account-dashboard,
  .l3r-loyalty-rewards {
    grid-template-columns: minmax(0, 1fr);
  }

  .l3r-access-card,
  .l3r-account-card {
    padding: 22px;
  }

  .l3r-access-card h2,
  .l3r-business-form h2,
  .l3r-account-card h2 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1;
  }

  .l3r-account-actions,
  .l3r-inline-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .l3r-inline-form label {
    min-width: 0;
  }

  .l3r-hero-media,
  .l3r-home-block-media {
    background: #fff;
  }

  .l3r-hero-media img,
  .l3r-hero-media video,
  .l3r-home-block-media img,
  .l3r-home-block-media video {
    object-fit: contain;
  }

  .l3r-home-block:not(.l3r-home-block-has-background) .l3r-home-block-media,
  .l3r-home-block-photo-only .l3r-home-block-media {
    display: block;
    min-height: 0;
    overflow: visible;
    aspect-ratio: auto;
  }

  .l3r-home-block:not(.l3r-home-block-has-background) .l3r-home-block-media img,
  .l3r-home-block:not(.l3r-home-block-has-background) .l3r-home-block-media video,
  .l3r-home-block-photo-only .l3r-home-block-media img,
  .l3r-home-block-photo-only .l3r-home-block-media video {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain !important;
  }

  .l3r-home-block-has-background {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 36px 16px;
    background: #fff;
    color: var(--l3r-ink);
  }

  .l3r-home-block-has-background::after {
    display: none;
  }

  .l3r-home-block-has-background .l3r-home-block-copy {
    order: 2;
    max-width: 100%;
    color: var(--l3r-ink);
  }

  .l3r-home-block-has-background .l3r-home-block-copy p {
    color: var(--l3r-muted);
  }

  .l3r-home-block-has-background .eyebrow {
    color: var(--l3r-coral);
  }

  .l3r-home-block-has-background .l3r-home-block-media {
    position: relative;
    inset: auto;
    order: 1;
    min-height: 0;
    overflow: visible;
    aspect-ratio: auto;
    border-radius: 8px;
    opacity: 1;
  }

  .l3r-home-block-has-background .l3r-home-block-media img,
  .l3r-home-block-has-background .l3r-home-block-media video {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain !important;
  }

  .l3r-home-block-has-background .l3r-button-secondary {
    border-color: var(--l3r-ink);
    background: var(--l3r-ink);
    color: #fff;
  }
}
