@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}

:root {
  --tlc-color-ink: var(--wp--preset--color--ink, #202020);
  --tlc-color-paper: var(--wp--preset--color--paper, #fff);
  --tlc-color-brand: var(--wp--preset--color--brand, #ffb91f);
  --tlc-color-brand-strong: var(--wp--preset--color--brand-strong, #d43811);
  --tlc-color-info: var(--wp--preset--color--info, #006799);
  --tlc-color-muted: var(--wp--preset--color--muted, #707070);
  --tlc-color-surface: var(--wp--preset--color--surface, #f3f3f3);
  --tlc-color-border: var(--wp--preset--color--border, #d9d9d9);
  --tlc-color-success: #207c3c;
  --tlc-color-error: #b42318;
  --tlc-shadow-sm: 0 2px 12px rgb(0 0 0 / 8%);
  --tlc-shadow-lg: 0 18px 50px rgb(0 0 0 / 16%);
  --tlc-radius-sm: 4px;
  --tlc-radius-md: 10px;
  --tlc-container: 1280px;
  --tlc-gutter: clamp(16px, 3vw, 32px);
  --tlc-transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tlc-color-ink);
  background: var(--tlc-color-paper);
  font-family: Jost, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizelegibility;
}

body.tlc-navigation-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--tlc-color-brand-strong);
}

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

:focus-visible {
  outline: 3px solid var(--tlc-color-info);
  outline-offset: 3px;
}

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

.tlc-skip-link:focus {
  position: fixed;
  z-index: 2147483647;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--tlc-color-paper);
  background: var(--tlc-color-ink);
}

.tlc-container {
  width: min(100% - (2 * var(--tlc-gutter)), var(--tlc-container));
  margin-inline: auto;
}

.tlc-native-page {
  padding-block: clamp(38px, 6vw, 80px);
}

.tlc-page-header {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.tlc-page-header h1 {
  margin-block: 4px 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

.tlc-article-grid,
.tlc-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.tlc-article-card,
.tlc-review-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-md);
  background: var(--tlc-color-paper);
}

.tlc-article-card__media,
.tlc-article-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tlc-article-card__body,
.tlc-review-card {
  padding: clamp(18px, 2.5vw, 28px);
}

.tlc-article-card__body h2 {
  font-size: 1.3rem;
  line-height: 1.25;
}

.tlc-article-card__meta,
.tlc-review-card cite {
  color: var(--tlc-color-muted);
  font-size: 0.88rem;
}

.tlc-native-section {
  margin-top: clamp(44px, 7vw, 88px);
}

@media (max-width: 850px) {
  .tlc-article-grid,
  .tlc-review-grid {
    grid-template-columns: 1fr;
  }
}

.tlc-announcement {
  padding-block: 7px;
  color: var(--tlc-color-paper);
  background: var(--tlc-color-ink);
  font-size: 0.85rem;
  text-align: center;
}

.tlc-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--tlc-color-paper);
  box-shadow: var(--tlc-shadow-sm);
}

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

.tlc-header-main {
  display: grid;
  grid-template-columns: minmax(150px, 230px) minmax(280px, 1fr) auto;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  min-height: 92px;
}

.tlc-brand,
.tlc-brand .custom-logo-link {
  display: flex;
  align-items: center;
}

.tlc-brand .custom-logo {
  width: auto;
  max-height: 64px;
}

.tlc-brand__text,
.tlc-footer-brand {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  text-decoration: none;
}

.tlc-header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.tlc-header-action {
  position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.tlc-header-action small {
  display: block;
  color: var(--tlc-color-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.tlc-cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 999px;
  color: var(--tlc-color-ink);
  background: var(--tlc-color-brand);
  font-size: 0.75rem;
}

.tlc-mini-cart-toggle,
.tlc-mini-cart__close {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--tlc-color-border);
  border-radius: 999px;
  background: var(--tlc-color-paper);
  cursor: pointer;
}

.tlc-mini-cart-toggle {
  margin-left: -12px;
}

.tlc-mini-cart {
  position: absolute;
  z-index: 1010;
  top: calc(100% + 8px);
  right: max(var(--tlc-gutter), calc((100vw - var(--tlc-container)) / 2));
  width: min(400px, calc(100vw - (2 * var(--tlc-gutter))));
  max-height: min(680px, calc(100vh - 150px));
  padding: 20px;
  overflow: auto;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-md);
  background: var(--tlc-color-paper);
  box-shadow: var(--tlc-shadow-lg);
}

.tlc-mini-cart[hidden] {
  display: none;
}

.tlc-mini-cart__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tlc-mini-cart__heading h2 {
  margin: 0;
  font-size: 1.25rem;
}

.tlc-mini-cart .woocommerce-mini-cart {
  padding: 0;
  list-style: none;
}

.tlc-mini-cart .woocommerce-mini-cart-item {
  padding-block: 12px;
  border-bottom: 1px solid var(--tlc-color-border);
}

.tlc-mini-cart .woocommerce-mini-cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.tlc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tlc-menu-toggle__icon,
.tlc-menu-toggle__icon::before,
.tlc-menu-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentcolor;
  transition: transform var(--tlc-transition);
}

.tlc-menu-toggle__icon {
  position: relative;
}

.tlc-menu-toggle__icon::before,
.tlc-menu-toggle__icon::after {
  position: absolute;
  content: "";
}

.tlc-menu-toggle__icon::before { transform: translateY(-7px); }
.tlc-menu-toggle__icon::after { transform: translateY(7px); }

.tlc-menu-toggle[aria-expanded="true"] .tlc-menu-toggle__icon { background: transparent; }
.tlc-menu-toggle[aria-expanded="true"] .tlc-menu-toggle__icon::before { transform: rotate(45deg); }
.tlc-menu-toggle[aria-expanded="true"] .tlc-menu-toggle__icon::after { transform: rotate(-45deg); }

.tlc-primary-navigation {
  color: var(--tlc-color-paper);
  background: var(--tlc-color-ink);
}

.tlc-navigation-inner {
  display: flex;
  min-height: 54px;
  align-items: stretch;
}

.tlc-primary-menu,
.tlc-primary-menu ul,
.tlc-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tlc-primary-menu {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.tlc-primary-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.tlc-primary-menu a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.tlc-primary-menu a:hover,
.tlc-primary-menu a:focus-visible,
.tlc-primary-menu .current-menu-item > a {
  color: var(--tlc-color-brand);
}

.tlc-primary-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  width: max(260px, 100%);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  color: var(--tlc-color-ink);
  background: var(--tlc-color-paper);
  border-radius: 0 0 var(--tlc-radius-md) var(--tlc-radius-md);
  box-shadow: var(--tlc-shadow-lg);
  transform: translateY(8px);
  transition: opacity var(--tlc-transition), transform var(--tlc-transition), visibility var(--tlc-transition);
}

.tlc-primary-menu li.tlc-submenu-open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.tlc-primary-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.tlc-submenu-toggle {
  align-self: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.tlc-search {
  position: relative;
  display: flex;
  width: 100%;
}

.tlc-search__input {
  width: 100%;
  min-height: 48px;
  padding: 10px 54px 10px 17px;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-md);
  background: var(--tlc-color-surface);
}

.tlc-search__input:focus {
  border-color: var(--tlc-color-info);
  background: var(--tlc-color-paper);
}

.tlc-search__submit {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: var(--tlc-color-ink);
  background: var(--tlc-color-brand);
  cursor: pointer;
}

.tlc-search-results {
  position: absolute;
  z-index: 1100;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: min(408px, 62vh);
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-md);
  background: var(--tlc-color-paper);
  box-shadow: var(--tlc-shadow-lg);
}

.tlc-search-results[hidden] { display: none; }

.tlc-search-result {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 7px 8px;
  border-bottom: 1px solid #efefef;
  border-radius: 6px;
  text-decoration: none;
}

.tlc-search-result:hover,
.tlc-search-result[aria-selected="true"] {
  color: var(--tlc-color-ink);
  background: var(--tlc-color-surface);
}

.tlc-search-result img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tlc-search-result__title { display: -webkit-box; overflow: hidden; font-size: 0.84rem; font-weight: 650; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.tlc-search-result__sku { display: block; overflow: hidden; color: var(--tlc-color-muted); font-size: 0.7rem; text-overflow: ellipsis; white-space: nowrap; }
.tlc-search-result__price { color: #2457a7; font-size: 0.84rem; font-weight: 750; white-space: nowrap; }
.tlc-search-message { padding: 16px; text-align: center; }

.tlc-main {
  min-height: 45vh;
  padding-block: clamp(32px, 5vw, 72px);
}

.home .tlc-main {
  padding-block: 0;
}

.tlc-entry-header h1,
.tlc-archive-header h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.tlc-entry-content > :where(*:not(.alignwide, .alignfull)) {
  max-width: 800px;
  margin-inline: auto;
}

.tlc-entry-content > .alignwide { max-width: var(--tlc-container); margin-inline: auto; }
.tlc-entry-content > .alignfull { width: 100%; max-width: none; }

.tlc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.tlc-card {
  overflow: hidden;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-md);
  background: var(--tlc-color-paper);
}

.tlc-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.tlc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.tlc-card:hover .tlc-card__media img { transform: scale(1.03); }
.tlc-card__body { padding: 22px; }
.tlc-entry-title { margin-block: 0 12px; font-size: 1.3rem; }
.tlc-entry-title a { text-decoration: none; }

.tlc-empty-state {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.tlc-empty-state__code {
  margin: 0;
  color: var(--tlc-color-brand);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
}

.tlc-button,
button.tlc-button {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tlc-color-brand);
  border-radius: var(--tlc-radius-sm);
  color: var(--tlc-color-ink);
  background: var(--tlc-color-brand);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.tlc-button--secondary {
  color: var(--tlc-color-paper);
  background: transparent;
  border-color: rgb(255 255 255 / 65%);
}

.tlc-eyebrow {
  margin: 0 0 8px;
  color: var(--tlc-color-error);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tlc-hero {
  position: relative;
  overflow: hidden;
  color: var(--tlc-color-paper);
  background:
    radial-gradient(circle at 84% 15%, rgb(255 185 31 / 24%), transparent 30%),
    linear-gradient(125deg, #101820, #233744 62%, #0b4f72);
}

.tlc-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
}

.tlc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  min-height: 560px;
  padding-block: clamp(64px, 10vw, 120px);
}

.tlc-hero__content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.tlc-hero__content > p:not(.tlc-eyebrow) {
  max-width: 660px;
  margin-block: 26px;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.tlc-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tlc-hero__panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 18px;
  background: rgb(255 255 255 / 10%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 22%);
  backdrop-filter: blur(12px);
}

.tlc-hero__panel h2 { margin-top: 0; font-size: 1.75rem; }

.tlc-guided-search {
  display: grid;
  gap: 10px;
}

.tlc-guided-search label { font-size: 0.84rem; font-weight: 700; }

.tlc-guided-search select {
  width: 100%;
  min-height: 48px;
  padding-inline: 12px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: var(--tlc-radius-sm);
  color: var(--tlc-color-ink);
  background: var(--tlc-color-paper);
}

.tlc-guided-search .tlc-button { margin-top: 8px; }

.tlc-home-section {
  padding-block: clamp(56px, 8vw, 104px);
}

.tlc-home-section:nth-of-type(odd) { background: var(--tlc-color-surface); }

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

.tlc-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.tlc-section-heading > a { font-weight: 750; }

.tlc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tlc-category-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 2px 16px;
  align-items: center;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-md);
  background: var(--tlc-color-paper);
  text-decoration: none;
  transition: transform var(--tlc-transition), box-shadow var(--tlc-transition);
}

.tlc-category-card:hover { color: inherit; box-shadow: var(--tlc-shadow-lg); transform: translateY(-3px); }
.tlc-category-card__media { grid-row: 1 / 3; }
.tlc-category-card__media img { width: 82px; height: 82px; object-fit: contain; }
.tlc-category-card__placeholder { display: grid; width: 82px; height: 82px; place-items: center; border-radius: 50%; background: var(--tlc-color-surface); font-size: 2rem; }
.tlc-category-card__name { align-self: end; font-weight: 800; line-height: 1.2; }
.tlc-category-card__count { align-self: start; color: var(--tlc-color-muted); font-size: 0.82rem; }

.tlc-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tlc-value-grid article {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--tlc-radius-md);
  color: var(--tlc-color-paper);
  background: var(--tlc-color-ink);
}

.tlc-value-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--tlc-color-ink);
  background: var(--tlc-color-brand);
  font-size: 1.35rem;
  font-weight: 900;
}

.tlc-value-grid h3 { margin-block: 0 8px; font-size: 1.3rem; }
.tlc-value-grid p { margin: 0; color: rgb(255 255 255 / 72%); }

.tlc-brand-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tlc-brand-list a {
  display: grid;
  min-height: 72px;
  padding: 12px;
  place-items: center;
  border: 1px solid var(--tlc-color-border);
  border-radius: var(--tlc-radius-sm);
  background: var(--tlc-color-paper);
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.tlc-site-footer {
  border-top: 4px solid var(--tlc-color-brand);
  color: #d4d4d4;
  background: linear-gradient(115deg, #111, #171717 55%, #101010);
  font-size: 13px;
}

.tlc-footer-grid {
  display: grid;
  padding-block: clamp(48px, 5.5vw, 66px);
  grid-template-columns: minmax(200px, 1.25fr) minmax(150px, 0.8fr) minmax(160px, 0.9fr) minmax(200px, 1.05fr) minmax(220px, 1.1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
}

.tlc-footer-column {
  min-width: 0;
}

.tlc-footer-column a {
  color: inherit;
  text-decoration: none;
}

.tlc-footer-heading,
.tlc-footer-widget__title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tlc-color-brand);
  color: #fff;
}

.tlc-footer-accordion {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  text-align: left;
  cursor: default;
}

.tlc-footer-accordion__icon {
  display: none;
}

.tlc-footer-panel {
  display: grid;
}

.tlc-footer-column--brand > a:first-child {
  display: inline-flex;
}

.tlc-footer-logo {
  display: block;
  width: min(100%, 190px);
  height: auto;
}

.tlc-footer-column .custom-logo {
  width: 150px;
  max-height: 68px;
  object-fit: contain;
}

.tlc-footer-column--brand > p {
  max-width: 280px;
  margin: 18px 0 22px;
  color: #c9c9c9;
  font-size: 13.5px;
  line-height: 1.55;
}

.tlc-footer-payment {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tlc-footer-payment img {
  width: auto;
  height: 110px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.tlc-footer-column--brand .grc-site-rating {
  min-height: 20px;
  margin-top: 13px;
}

.tlc-footer-socials,
.tlc-footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tlc-footer-socials {
  display: flex;
  margin-top: 20px;
  gap: 7px;
}

.tlc-footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color var(--tlc-transition), border-color var(--tlc-transition), background-color var(--tlc-transition);
}

.tlc-footer-social a:hover,
.tlc-footer-social a:focus-visible {
  border-color: var(--tlc-color-brand);
  color: #191919;
  background: var(--tlc-color-brand);
}

.tlc-footer-social--mobile,
.tlc-footer-viewport--mobile {
  display: none;
}

.tlc-footer-navigation {
  display: contents;
}

.tlc-footer-links {
  display: grid;
  gap: 8px;
}

.tlc-footer-links li {
  min-width: 0;
}

.tlc-footer-links a {
  display: inline-block;
  padding-block: 3px;
  color: #d7d7d7;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color var(--tlc-transition), text-decoration-color var(--tlc-transition);
}

.tlc-footer-links a:hover,
.tlc-footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--tlc-color-brand);
}

.tlc-footer-column--support {
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 2px solid var(--tlc-color-brand);
}

.tlc-footer-support-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tlc-footer-support-heading img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tlc-footer-column .tlc-footer-heading--support {
  margin: 0 0 2px;
  padding-bottom: 0;
  border-bottom: 0;
}

.tlc-footer-phone {
  display: inline-block;
  margin-top: 4px;
  color: var(--tlc-color-brand) !important;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .tlc-footer-phone {
    max-width: 100%;
    font-size: clamp(14px, 1.12vw, 17px);
  }
}

.tlc-footer-support-details {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 11%);
}

.tlc-footer-support-details p {
  margin: 0 0 10px;
  color: #bbb;
  font-size: 12px;
  line-height: 1.55;
}

.tlc-footer-support-details p:last-child {
  margin-bottom: 0;
}

.tlc-footer-support-details strong {
  color: #fff;
}

.tlc-footer-email {
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.tlc-footer-trust {
  color: #fff;
}

.tlc-footer-column--commitments {
  display: grid;
  gap: 16px;
  align-content: start;
}

.tlc-footer-column--commitments .tlc-footer-heading {
  margin-bottom: 4px;
}

.tlc-footer-promise {
  display: grid;
  min-width: 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.tlc-footer-promise img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.tlc-footer-promise p,
.tlc-footer-promise strong,
.tlc-footer-promise p > span {
  display: block;
}

.tlc-footer-promise p {
  margin: 0;
}

.tlc-footer-promise strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}

.tlc-footer-promise p > span {
  color: #aaa;
  font-size: 11.5px;
  line-height: 1.45;
}

.tlc-footer-savelys {
  width: 150px;
  max-height: 62px;
  margin-top: 4px;
  object-fit: contain;
  object-position: left;
}

.tlc-footer-legal {
  padding-block: 22px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  background: #0c0c0c;
}

.tlc-footer-legal .tlc-container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.tlc-footer-legal p,
.tlc-footer-legal p span {
  display: block;
}

.tlc-footer-legal p {
  margin: 0;
  color: #9a9a9a;
  font-size: 11px;
  line-height: 1.65;
}

.tlc-footer-legal img {
  width: min(100%, 286px);
  height: auto;
}

@media (max-width: 1100px) {
  .tlc-header-main { grid-template-columns: auto minmax(130px, 200px) 1fr auto; min-height: 80px; }
  .tlc-menu-toggle { display: block; }
  .tlc-header-action--support { display: none; }
  .tlc-primary-navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(88vw, 400px);
    padding-top: 24px;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(-102%);
    transition: transform var(--tlc-transition), visibility var(--tlc-transition);
  }
  .tlc-primary-navigation.tlc-navigation-open { visibility: visible; transform: translateX(0); }
  .tlc-navigation-inner,
  .tlc-primary-menu,
  .tlc-primary-menu > li { display: block; }
  .tlc-navigation-inner { width: 100%; }
  .tlc-primary-menu a { min-height: 48px; border-bottom: 1px solid rgb(255 255 255 / 12%); }
  .tlc-primary-menu .menu-item-has-children { position: relative; }
  .tlc-primary-menu .sub-menu,
  .tlc-primary-menu .sub-menu .sub-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 0 0 0 16px;
    visibility: visible;
    opacity: 1;
    color: inherit;
    background: rgb(255 255 255 / 5%);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  .tlc-primary-menu li.tlc-submenu-open > .sub-menu { display: block; }
  .tlc-submenu-toggle { position: absolute; top: 7px; right: 8px; color: var(--tlc-color-paper); }
  .tlc-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tlc-brand-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tlc-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .admin-bar .tlc-site-header { top: 46px; }
  .tlc-header-main { grid-template-columns: auto 1fr auto; gap: 10px; padding-block: 10px; }
  .tlc-brand .custom-logo { max-height: 46px; }
  .tlc-header-search { grid-column: 1 / -1; grid-row: 2; }
  .tlc-header-action { font-size: 0; gap: 4px; }
  .tlc-header-action > span[aria-hidden] { font-size: 1.25rem; }
  .tlc-cart-count { font-size: 0.72rem; }
  .tlc-post-grid { grid-template-columns: 1fr; }
  .tlc-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 42px;
  }
  .tlc-footer-column--support {
    order: 1;
    padding: 18px 20px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-left: 3px solid var(--tlc-color-brand);
    border-radius: var(--tlc-radius-md);
    background: rgb(255 255 255 / 4%);
    text-align: center;
  }
  .tlc-footer-support-heading { justify-content: center; }
  .tlc-footer-navigation .tlc-footer-column--links { order: 2; }
  .tlc-footer-column--commitments { order: 3; }
  .tlc-footer-column--brand { order: 4; text-align: center; }
  .tlc-footer-column--brand > p { margin-inline: auto; }
  .tlc-footer-logo { margin-inline: auto; }
  .tlc-footer-payment,
  .tlc-footer-socials { justify-content: center; }
  .tlc-footer-viewport--desktop,
  .tlc-footer-social--desktop { display: none; }
  .tlc-footer-viewport--mobile,
  .tlc-footer-social--mobile { display: inline; }
  .tlc-footer-column--links .tlc-footer-heading {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .tlc-footer-accordion {
    min-height: 48px;
    padding-block: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    cursor: pointer;
  }
  .tlc-footer-accordion__icon {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--tlc-transition);
  }
  .tlc-footer-accordion[aria-expanded="true"] .tlc-footer-accordion__icon {
    transform: rotate(-135deg);
  }
  .tlc-footer-panel {
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--tlc-transition);
  }
  .tlc-footer-panel > .tlc-footer-links {
    min-height: 0;
    overflow: hidden;
  }
  .tlc-footer-panel--open {
    grid-template-rows: 1fr;
  }
  .tlc-footer-links {
    gap: 0;
    padding-top: 6px;
  }
  .tlc-footer-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding-block: 4px;
    font-size: 13.5px;
  }
  .tlc-footer-savelys { margin-inline: auto; object-position: center; }
  .tlc-footer-legal .tlc-container { flex-direction: column; gap: 14px; text-align: center; }
  .tlc-search-result { grid-template-columns: 52px 1fr; }
  .tlc-search-result img { width: 52px; height: 52px; }
  .tlc-search-result__price { grid-column: 2; }
  .tlc-hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .tlc-hero__content h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .tlc-section-heading { align-items: start; flex-direction: column; }
  .tlc-value-grid { grid-template-columns: 1fr; }
  .tlc-brand-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .tlc-announcement { font-size: 0.75rem; }
  .tlc-footer-grid { padding-block: 36px; }
  .tlc-category-grid { grid-template-columns: 1fr; }
  .tlc-brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

body {
  font-family: Outfit, Jost, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

:root {
  --tlc-container: 1230px;
  --tlc-radius-sm: 3px;
  --tlc-radius-md: 5px;
  --tlc-shadow-sm: 0 1px 0 rgb(0 0 0 / 8%);
}

.tlc-announcement {
  display: flex;
  min-height: 34px;
  padding-block: 5px;
  align-items: center;
  color: var(--tlc-color-ink);
  background: var(--tlc-color-brand);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

.tlc-announcement .tlc-container {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tlc-site-header {
  box-shadow: none;
  border-bottom: 1px solid #ececec;
}

.tlc-header-main {
  grid-template-columns: 150px minmax(460px, 1fr) auto;
  gap: 22px;
  min-height: 94px;
}

.tlc-brand .custom-logo {
  max-width: 150px;
  max-height: 62px;
}

.tlc-header-actions {
  gap: 16px;
}

.tlc-header-action {
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
}

.tlc-header-action--support {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
}

.tlc-header-action small {
  color: #444;
  font-size: 11px;
}

.tlc-search {
  min-height: 54px;
}

.tlc-search__category {
  width: 210px;
  min-width: 210px;
  padding: 0 36px 0 18px;
  border: 1px solid #e5e5e5;
  border-right: 0;
  border-radius: 28px 0 0 28px;
  color: #222;
  background: #f8f8f8;
  font-size: 13px;
}

.tlc-search__input {
  min-height: 54px;
  padding-left: 20px;
  border-color: #e5e5e5;
  border-radius: 0 28px 28px 0;
  background: #f8f8f8;
  font-size: 13px;
}

.tlc-search__submit {
  top: 6px;
  right: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 17px;
}

.tlc-primary-navigation {
  color: var(--tlc-color-ink);
  background: var(--tlc-color-paper);
  border-top: 1px solid #ececec;
}

.tlc-navigation-inner {
  min-height: 56px;
}

.tlc-primary-menu a {
  padding-inline: 16px;
  color: var(--tlc-color-ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.tlc-primary-menu a:hover,
.tlc-primary-menu a:focus-visible,
.tlc-primary-menu .current-menu-item > a {
  color: #805600;
}

.tlc-submenu-toggle {
  color: var(--tlc-color-ink);
}

.tlc-main {
  padding-block: 42px 74px;
}

.tlc-home-section {
  padding-block: 44px;
}

.tlc-home-section:nth-of-type(odd) {
  background: transparent;
}

.tlc-home-showcase {
  padding-top: 28px;
}

.tlc-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tlc-showcase-card {
  position: relative;
  display: grid;
  min-height: 235px;
  overflow: hidden;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.tlc-showcase-card:nth-child(n + 5) {
  grid-column: span 1;
}

.tlc-showcase-card:nth-child(5) {
  grid-column-start: 2;
}

.tlc-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.tlc-showcase-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 12%), rgb(0 0 0 / 55%));
}

.tlc-showcase-card strong,
.tlc-showcase-card__button {
  position: relative;
  z-index: 1;
}

.tlc-showcase-card strong {
  align-self: end;
  max-width: 90%;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.08;
}

.tlc-showcase-card__button {
  align-self: start;
  min-width: 76px;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #202020;
  background: #fff;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.tlc-showcase-card:hover {
  color: #fff;
}

.tlc-showcase-card:hover img {
  transform: scale(1.025);
}

.tlc-section-heading {
  margin-bottom: 24px;
}

.tlc-section-heading h2,
.tlc-home-reviews h2,
.tlc-brands h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.tlc-section-heading > a {
  font-size: 13px;
  font-weight: 500;
}

.tlc-home-products ul.products,
.woocommerce.tlc-home-products ul.products.columns-4 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.tlc-home-promotions,
.tlc-home-services {
  padding-block: 24px;
}

.tlc-promotion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tlc-promotion-card,
.tlc-promotion-card img {
  display: block;
  width: 100%;
}

.tlc-promotion-card {
  overflow: hidden;
  border-radius: 5px;
}

.tlc-promotion-card img {
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.tlc-promotion-card--editorial {
  position: relative;
  color: #fff;
  background: #171717;
  isolation: isolate;
}

.tlc-home-promotions .tlc-promotion-card--editorial {
  aspect-ratio: 2 / 1;
}

.tlc-home-services .tlc-promotion-card--editorial {
  height: clamp(330px, 19vw, 360px);
  aspect-ratio: auto;
}

.tlc-promotion-card--editorial::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(8 8 8 / 68%) 0%, rgb(8 8 8 / 30%) 52%, transparent 82%);
  content: "";
}

.tlc-promotion-card--editorial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform var(--tlc-transition);
}

.tlc-promotion-card--editorial:hover img,
.tlc-promotion-card--editorial:focus-within img {
  transform: scale(1.025);
}

.tlc-promotion-card__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(24px, 5vw, 64px);
  display: flex;
  width: min(62%, 540px);
  align-items: flex-start;
  flex-direction: column;
  transform: translateY(-50%);
}

.tlc-promotion-card__title {
  display: block;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 4.25rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.tlc-promotion-card--electric .tlc-promotion-card__title {
  max-width: 7ch;
}

.tlc-home-services .tlc-promotion-card__title {
  font-size: clamp(1.65rem, 1.8vw, 2.25rem);
  line-height: 1.05;
}

.tlc-promotion-card--clearance .tlc-promotion-card__title {
  text-transform: uppercase;
}

.tlc-home-services .tlc-promotion-card__content {
  top: 0;
  bottom: 0;
  width: min(72%, 600px);
  justify-content: center;
  transform: none;
}

.tlc-home-services .tlc-promotion-card__description {
  max-width: 34rem;
  margin-top: clamp(14px, 1.2vw, 20px);
  font-size: clamp(0.95rem, 1.05vw, 1.18rem);
  line-height: 1.35;
}

.tlc-home-services .tlc-promotion-card__button {
  box-sizing: border-box;
  min-height: 52px;
  margin-top: clamp(22px, 2vw, 30px);
}

.tlc-promotion-card__description {
  display: block;
  max-width: 28rem;
  margin-top: clamp(12px, 1.4vw, 22px);
  font-size: clamp(0.95rem, 1.25vw, 1.35rem);
  line-height: 1.22;
}

.tlc-promotion-card__description span {
  color: var(--tlc-color-brand);
}

.tlc-promotion-card__copy {
  display: inline-flex;
  min-height: 38px;
  padding: 4px;
  margin-top: 12px;
  align-items: center;
  gap: 4px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 8px;
  color: #fff;
  background: rgb(10 10 10 / 48%);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.tlc-promotion-card__code,
.tlc-promotion-card__copy-state {
  padding: 6px 10px;
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 800;
  line-height: 1;
}

.tlc-promotion-card__code {
  color: var(--tlc-color-brand);
  letter-spacing: 0.06em;
}

.tlc-promotion-card__copy-state {
  border-radius: 5px;
  color: #171717;
  background: var(--tlc-color-brand);
}

.tlc-promotion-card__copy:hover,
.tlc-promotion-card__copy:focus-visible,
.tlc-promotion-card__copy.is-copied {
  border-color: var(--tlc-color-brand);
  outline: 0;
}

.tlc-promotion-card__button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px clamp(22px, 2.4vw, 38px);
  margin-top: clamp(22px, 3vw, 42px);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #171717;
  background: var(--tlc-color-brand);
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--tlc-transition), transform var(--tlc-transition);
}

.tlc-promotion-card__copy + .tlc-promotion-card__button {
  margin-top: 14px;
}

.tlc-promotion-card--editorial:hover .tlc-promotion-card__button,
.tlc-promotion-card--editorial:focus-within .tlc-promotion-card__button {
  background: #ffd269;
  transform: translateY(-2px);
}

.tlc-shipping-banner {
  padding: 13px 20px;
  border: 2px dotted var(--tlc-color-brand);
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
}

.tlc-shipping-banner strong {
  margin-right: 5px;
}

.tlc-home-reviews {
  margin-top: 34px;
  padding-block: clamp(52px, 7vw, 88px);
  color: var(--tlc-color-ink);
  background: #f1f1f1 !important;
}

.tlc-home-reviews h2 {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.tlc-home-reviews__widget,
.tlc-home-reviews__widget .grc-site-iframe {
  width: 100%;
  min-height: 230px;
}

.tlc-brands {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 7vw, 96px);
  border-top: 1px solid #eee8dc;
  background: linear-gradient(135deg, #fff 0%, #fbf8f1 100%);
}

.tlc-brands__heading {
  display: grid;
  margin-bottom: clamp(32px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.tlc-brands__eyebrow {
  margin: 0 0 12px;
  color: #7b5200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tlc-brands__summary {
  max-width: 460px;
  margin: 0;
  color: #5f5c55;
  font-size: 15px;
  line-height: 1.65;
}

.tlc-brand-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.tlc-brand-list li {
  min-width: 0;
}

.tlc-brand-card {
  position: relative;
  display: grid;
  min-height: 154px;
  height: 100%;
  padding: 22px 18px 16px;
  overflow: hidden;
  grid-template-rows: minmax(72px, 1fr) auto;
  gap: 14px;
  border: 1px solid #e7e2d8;
  border-radius: 16px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 12px 30px rgb(35 31 23 / 6%);
  text-decoration: none;
}

.tlc-brand-card__logo {
  display: grid;
  place-items: center;
}

.tlc-brand-card__logo img {
  width: min(100%, 132px);
  max-width: 132px;
  max-height: 62px;
  object-fit: contain;
}

.tlc-brand-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: #4f4c46;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .tlc-header-main {
    grid-template-columns: auto 150px minmax(220px, 1fr) auto;
  }

  .tlc-search__category {
    display: none;
  }

  .tlc-search__input {
    border-radius: 28px;
  }

  .tlc-primary-navigation {
    color: #fff;
    background: #202020;
  }

  .tlc-primary-menu a,
  .tlc-submenu-toggle {
    color: #fff;
  }
}

@media (max-width: 780px) {
  .tlc-announcement {
    min-height: 38px;
    font-size: 10px;
  }

  .tlc-announcement .tlc-container {
    display: block;
  }

  .tlc-header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
    min-width: 0;
  }

  .tlc-header-main > *,
  .tlc-header-search,
  .tlc-search,
  .tlc-search__input {
    min-width: 0;
  }

  .tlc-brand .custom-logo {
    max-width: 125px;
  }

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

  .tlc-header-action {
    width: 32px;
    min-width: 32px;
    justify-content: center;
  }

  .tlc-header-action > span:not([aria-hidden="true"]):not(.tlc-cart-count) {
    display: none;
  }

  .tlc-mini-cart-toggle {
    margin-left: 0;
  }

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

  .tlc-showcase-card,
  .tlc-showcase-card:nth-child(5) {
    grid-column: auto;
    min-height: 210px;
  }

  .tlc-showcase-card strong {
    font-size: 19px;
  }

  .tlc-home-products ul.products,
  .woocommerce.tlc-home-products ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlc-promotion-grid {
    grid-template-columns: 1fr;
  }

  .tlc-promotion-card--editorial {
    min-height: clamp(260px, 62vw, 420px);
    aspect-ratio: auto;
  }

  .tlc-promotion-card__content {
    left: clamp(24px, 7vw, 52px);
    width: min(72%, 480px);
  }

  .tlc-promotion-card__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .tlc-promotion-card__description {
    font-size: clamp(0.95rem, 3.4vw, 1.2rem);
  }

  .tlc-brand-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .tlc-home-services .tlc-promotion-grid {
    grid-template-columns: 1fr;
  }

  .tlc-home-services .tlc-promotion-card--editorial {
    height: clamp(330px, 52vw, 420px);
  }

  .tlc-home-services .tlc-promotion-card__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
}

@media (max-width: 480px) {
  .tlc-home-section {
    padding-block: 34px;
  }

  .tlc-section-heading h2,
  .tlc-home-reviews h2,
  .tlc-brands h2 {
    font-size: 23px;
  }

  .tlc-brands__heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tlc-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tlc-brand-card {
    min-height: 128px;
    padding: 16px 12px 12px;
  }

  .tlc-promotion-card__content {
    width: calc(100% - 48px);
  }

  .tlc-promotion-card__button {
    min-height: 44px;
    margin-top: 18px;
  }

  .tlc-home-services .tlc-promotion-card__title {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .tlc-home-services .tlc-promotion-card--editorial {
    height: clamp(300px, 92vw, 380px);
  }

  .tlc-home-services .tlc-promotion-card__content {
    left: 24px;
    width: calc(100% - 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.tlc-theme .cmplz-cookiebanner {
  width: 100% !important;
  max-width: 100vw !important;
}

.tlc-theme .cmplz-cookiebanner.cmplz-show {
  opacity: 1 !important;
  transition: none !important;
}

.tlc-theme .cmplz-cookiebanner :is(.cmplz-accept, .cmplz-deny, .cmplz-view-preferences) {
  color: var(--tlc-color-ink) !important;
}

.tlc-theme .cmplz-cookiebanner .cmplz-accept {
  background: var(--tlc-color-brand) !important;
}

.tlc-theme .cmplz-cookiebanner :is(.cmplz-link, .cmplz-documents a) {
  color: #6b4800 !important;
}

.tlc-theme a.page-numbers {
  display: inline-flex;
  min-width: 32px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
}

@media print {
  .tlc-announcement,
  .tlc-site-header,
  .tlc-site-footer,
  .tlc-search { display: none !important; }
  .tlc-main { padding: 0; }
}

:root {
  --tlc-radius-sm: 6px;
  --tlc-radius-md: 12px;
  --tlc-shadow-sm: 0 1px 2px rgb(0 0 0 / 5%), 0 8px 24px rgb(0 0 0 / 5%);
}

.tlc-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tlc-announcement {
  min-height: 38px;
  padding-block: 6px;
  font-size: 11.5px;
}

.tlc-announcement .tlc-container {
  gap: 20px;
  justify-content: space-between;
}

.tlc-announcement__message,
.tlc-announcement__highlight {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.tlc-announcement__message {
  min-width: 0;
}

.tlc-announcement__highlight {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--tlc-color-paper);
  background: var(--tlc-color-ink);
  font-weight: 700;
  white-space: nowrap;
}

.tlc-announcement__highlight .tlc-icon {
  width: 13px;
  height: 13px;
  fill: var(--tlc-color-brand);
  stroke: var(--tlc-color-brand);
}

.tlc-site-header {
  border-bottom-color: color-mix(in srgb, var(--tlc-color-border) 72%, transparent);
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 4%);
}

.tlc-mini-cart {
  right: 69px;
}

.tlc-header-main {
  width: 100%;
  max-width: none;
  padding-inline: 40px;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  justify-content: start;
  min-height: 104px;
}

.tlc-brand .custom-logo {
  max-width: 150px;
  max-height: 62px;
}

.tlc-header-search {
  position: relative; z-index: 2;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.tlc-search {
  min-height: 60px;
  filter: drop-shadow(0 9px 22px rgb(0 0 0 / 4%));
}

.tlc-search__category,
.tlc-search__input {
  border-color: #d9d9d9;
  background: #fbfbfb;
}

.tlc-search__category {
  width: 260px;
  min-width: 260px;
  padding-left: 24px;
  border-radius: 32px 0 0 32px;
  font-weight: 650;
}

.tlc-search__input {
  min-height: 60px;
  padding-right: 72px;
  padding-left: 30px;
  border-radius: 0 32px 32px 0;
}

.tlc-search__input:focus {
  border-color: var(--tlc-color-brand);
  background: var(--tlc-color-paper);
  box-shadow: 0 0 0 3px rgb(255 185 31 / 18%);
  outline: 0;
}

.tlc-search__submit {
  top: 6px;
  right: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background-color var(--tlc-transition), transform var(--tlc-transition);
}

.tlc-search__submit:hover,
.tlc-search__submit:focus-visible {
  background: #f2ae19;
  transform: scale(1.035);
}

.tlc-search__submit .tlc-icon {
  width: 23px;
  height: 23px;
}

.tlc-header-actions {
  gap: 0;
  margin-right: 29px;
  justify-self: start;
}

.tlc-header-action {
  gap: 12px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  font-size: 14px;
  transition: color var(--tlc-transition), transform var(--tlc-transition);
}

.tlc-header-action:hover,
.tlc-header-action:focus-visible {
  color: var(--tlc-color-ink);
  background: transparent;
  transform: translateY(-1px);
}

.tlc-header-action--support {
  min-width: 213px;
  margin-right: 50px;
  border-radius: 0;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.02;
}

.tlc-header-action__content {
  display: block;
}

.tlc-header-action__icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  stroke-width: 1.65;
}

.tlc-header-action--support .tlc-header-action__icon {
  width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 0;
  color: var(--tlc-color-ink);
  background: transparent;
  stroke-width: 1.6;
}

.tlc-header-action--support small {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.tlc-header-action--account,
.tlc-header-action--cart {
  display: inline-grid;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--tlc-color-ink);
  background: transparent;
}

.tlc-header-action--account {
  width: 44px;
  min-width: 44px;
}

.tlc-header-action--cart {
  width: 41px;
  min-width: 41px;
}

button.tlc-header-action {
  font: inherit;
  cursor: pointer;
}

.tlc-header-action--account:hover,
.tlc-header-action--account:focus-visible,
.tlc-header-action--cart:hover,
.tlc-header-action--cart:focus-visible {
  background: #f6f6f6;
}

.tlc-cart-count {
  position: absolute;
  top: -5px;
  right: -3px;
  min-width: 21px;
  height: 21px;
  border: 2px solid var(--tlc-color-paper);
  font-size: 11px;
}

.tlc-mini-cart-toggle {
  display: none;
}

.tlc-mini-cart-toggle .tlc-icon {
  width: 15px;
  height: 15px;
}

@media (min-width: 1600px) {
  .tlc-header-main {
    padding-inline: 150px;
    gap: 32px;
  }

  .tlc-header-actions {
    margin-right: 37px;
  }

  .tlc-header-action--support {
    margin-right: 56px;
  }

  .tlc-header-action--account {
    width: 51px;
    min-width: 51px;
  }

  .tlc-header-action--cart {
    width: 48px;
    min-width: 48px;
  }

  .tlc-mini-cart {
    right: 187px;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .tlc-header-main {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-inline: 0;
    grid-template-columns: 158px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .tlc-brand .custom-logo {
    max-width: 154px;
    max-height: 62px;
  }

  .tlc-search__category {
    width: 200px;
    min-width: 200px;
    padding-left: 18px;
  }

  .tlc-header-actions {
    gap: 7px;
    margin-right: 0;
  }

  .tlc-header-action--support {
    min-width: 190px;
    margin-right: 0;
    gap: 9px;
    font-size: 18px;
  }

  .tlc-header-action--support .tlc-header-action__icon {
    width: 38px;
    height: 38px;
  }
}

.tlc-primary-navigation {
  border-top-color: #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.tlc-navigation-inner {
  min-height: 52px;
}

.tlc-primary-menu {
  justify-content: center;
}

.tlc-primary-menu a {
  position: relative;
  padding-inline: 15px;
  font-size: 12px;
  letter-spacing: 0.015em;
}

.tlc-primary-menu > li > a::after {
  position: absolute;
  right: 15px;
  bottom: -1px;
  left: 15px;
  height: 2px;
  background: var(--tlc-color-brand);
  content: "";
  transform: scaleX(0);
  transition: transform var(--tlc-transition);
}

.tlc-primary-menu > li:hover > a::after,
.tlc-primary-menu > li:focus-within > a::after,
.tlc-primary-menu > .current-menu-item > a::after {
  transform: scaleX(1);
}

.tlc-primary-menu .sub-menu {
  width: max(290px, 100%);
  padding: 12px;
  border: 1px solid #e7e7e7;
  border-top: 3px solid var(--tlc-color-brand);
  border-radius: 0 0 12px 12px;
}

.tlc-primary-menu .sub-menu a {
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 550;
  text-transform: none;
}

.tlc-primary-menu .sub-menu a:hover,
.tlc-primary-menu .sub-menu a:focus-visible {
  color: var(--tlc-color-ink);
  background: color-mix(in srgb, var(--tlc-color-brand) 15%, white);
}

.tlc-home-section {
  padding-block: 52px;
}

.tlc-home-showcase {
  padding-block: 30px 52px;
}

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

.tlc-showcase-card,
.tlc-showcase-card:nth-child(5) {
  grid-column: auto;
  min-height: 218px;
  border-radius: var(--tlc-radius-md);
  box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
}

.tlc-showcase-card__shade {
  background: linear-gradient(180deg, rgb(0 0 0 / 2%) 20%, rgb(0 0 0 / 68%) 100%);
}

.tlc-showcase-card strong {
  max-width: calc(100% - 40px);
  font-size: clamp(20px, 2vw, 25px);
  text-shadow: 0 2px 16px rgb(0 0 0 / 35%);
}

.tlc-showcase-card__button {
  min-width: 82px;
  border: 1px solid rgb(255 255 255 / 65%);
  transition: background-color var(--tlc-transition), transform var(--tlc-transition);
}

.tlc-showcase-card:hover {
  transform: translateY(-3px);
}

.tlc-showcase-card:hover .tlc-showcase-card__button {
  background: var(--tlc-color-brand);
  transform: translateY(-2px);
}

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

.tlc-section-heading h2,
.tlc-home-reviews h2,
.tlc-brands h2 {
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.tlc-section-heading > a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.tlc-section-heading > a::after {
  content: "→";
}

.tlc-section-heading > a:hover {
  color: var(--tlc-color-ink);
  background: var(--tlc-color-surface);
}

.tlc-home-products ul.products,
.woocommerce.tlc-home-products ul.products.columns-4 {
  gap: 0;
}

.woocommerce.tlc-home-products ul.products li.product {
  padding: 16px;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  background: var(--tlc-color-paper);
  box-shadow: 0 1px 0 rgb(0 0 0 / 3%);
}

.woocommerce.tlc-home-products ul.products li.product:hover {
  border-color: color-mix(in srgb, var(--tlc-color-brand) 60%, #e9e9e9);
  box-shadow: var(--tlc-shadow-sm);
  transform: translateY(-3px);
}

.woocommerce.tlc-home-products ul.products li.product a img {
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  background: #fbfbfb;
}

.woocommerce.tlc-home-products ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.75em;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.25;
}

.woocommerce.tlc-home-products ul.products li.product .price {
  font-size: 15px;
  font-weight: 750;
}

.tlc-home-promotions,
.tlc-home-services {
  padding-block: 28px;
}

.tlc-promotion-grid {
  gap: 18px;
}

.tlc-promotion-card {
  border-radius: var(--tlc-radius-md);
  box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
  transition: box-shadow var(--tlc-transition), transform var(--tlc-transition);
}

.tlc-promotion-card:hover {
  box-shadow: 0 16px 38px rgb(0 0 0 / 12%);
  transform: translateY(-3px);
}

.tlc-shipping-banner {
  display: flex;
  gap: 8px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--tlc-radius-md);
  color: var(--tlc-color-paper);
  background: var(--tlc-color-ink);
  box-shadow: inset 4px 0 0 var(--tlc-color-brand);
}

.tlc-shipping-banner strong {
  color: var(--tlc-color-brand);
}

.tlc-home-reviews {
  min-height: 0;
  margin-top: 42px;
  padding-block: clamp(52px, 7vw, 88px);
  color: var(--tlc-color-ink);
  background: #f1f1f1 !important;
}

.tlc-home-reviews .tlc-container {
  display: block;
}

.tlc-home-reviews h2 {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.tlc-home-reviews__widget,
.tlc-home-reviews__widget .grc-site-iframe {
  width: 100%;
  min-height: 230px;
}

.tlc-brands {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 7vw, 96px);
  border-top: 1px solid #eee8dc;
  background: linear-gradient(135deg, #fff 0%, #fbf8f1 100%);
}

.tlc-brands::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 185 31 / 14%) 0%, rgb(255 185 31 / 0%) 70%);
  content: "";
  pointer-events: none;
  right: -120px;
  top: -160px;
}

.tlc-brands .tlc-container {
  position: relative;
}

.tlc-brands__heading {
  display: grid;
  margin-bottom: clamp(32px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.tlc-brands h2 {
  max-width: 760px;
  margin: 0;
}

.tlc-brands__eyebrow {
  margin: 0 0 12px;
  color: #7b5200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tlc-brands__summary {
  max-width: 460px;
  margin: 0;
  color: #5f5c55;
  font-size: 15px;
  line-height: 1.65;
}

.tlc-brand-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.tlc-brand-list li {
  min-width: 0;
}

.tlc-brand-card {
  position: relative;
  display: grid;
  min-height: 154px;
  height: 100%;
  padding: 22px 18px 16px;
  overflow: hidden;
  grid-template-rows: minmax(72px, 1fr) auto;
  gap: 14px;
  border: 1px solid #e7e2d8;
  border-radius: 16px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 12px 30px rgb(35 31 23 / 6%);
  text-decoration: none;
  transition: border-color var(--tlc-transition), box-shadow var(--tlc-transition), transform var(--tlc-transition);
}

.tlc-brand-card::before {
  position: absolute;
  height: 3px;
  background: var(--tlc-color-brand);
  content: "";
  inset: 0 0 auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tlc-transition);
}

.tlc-brand-card__logo {
  display: grid;
  place-items: center;
}

.tlc-brand-card__logo img {
  width: min(100%, 132px);
  max-width: 132px;
  max-height: 62px;
  object-fit: contain;
  transition: transform var(--tlc-transition);
}

.tlc-brand-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: #4f4c46;
  font-size: 12px;
}

.tlc-brand-card__meta strong {
  overflow: hidden;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-brand-card__meta span {
  color: #8a5b00;
  font-size: 17px;
  line-height: 1;
  transition: transform var(--tlc-transition);
}

@media (hover: hover) {
  .tlc-brand-card:hover {
    color: inherit;
    border-color: rgb(255 185 31 / 65%);
    box-shadow: 0 18px 40px rgb(35 31 23 / 12%);
    transform: translateY(-4px);
  }

  .tlc-brand-card:hover::before {
    transform: scaleX(1);
  }

  .tlc-brand-card:hover .tlc-brand-card__logo img {
    transform: scale(1.05);
  }

  .tlc-brand-card:hover .tlc-brand-card__meta span {
    transform: translateX(3px);
  }
}

@media (max-width: 1100px) {
  .tlc-header-main {
    width: min(calc(100% - (2 * var(--tlc-gutter))), var(--tlc-container));
    max-width: var(--tlc-container);
    padding-inline: 0;
    grid-template-columns: auto 145px minmax(220px, 1fr) auto;
    gap: 16px;
  }

  .tlc-header-search {
    width: 100%;
  }

  .tlc-header-actions {
    margin-right: 0;
  }

  .tlc-mini-cart {
    right: 16px;
  }

  .tlc-primary-navigation {
    z-index: 3;
    border: 0;
    background: var(--tlc-color-ink);
    box-shadow: var(--tlc-shadow-lg);
  }

  body.tlc-navigation-open .tlc-menu-toggle {
    position: fixed; z-index: 4; top: 24px;
    left: calc(min(88vw,400px) - 54px);
    color: #fff;
  }

  .tlc-navigation-inner {
    padding-inline: 16px;
  }

  .tlc-primary-menu {
    justify-content: initial;
  }

  .tlc-primary-menu > li > a::after {
    display: none;
  }

  .tlc-primary-menu .sub-menu {
    border: 0;
    border-radius: 0;
  }
}

@media (max-width: 780px) {
  .tlc-announcement {
    min-height: 42px;
    font-size: 9.5px;
  }

  .tlc-announcement .tlc-container {
    gap: 8px;
    justify-content: center;
  }

  .tlc-announcement__message {
    display: none;
  }

  .tlc-announcement__highlight {
    padding: 5px 10px;
  }

  .tlc-header-main {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 0;
    gap: 10px;
    padding-block: 9px 10px;
  }

  .tlc-header-search {
    width: 100%;
    max-width: 100%;
  }

  .tlc-header-main--compact-search {
    grid-template-columns: 44px minmax(0, 1fr) 44px auto;
  }

  .tlc-header-main--compact-search .tlc-header-search {
    width: 44px;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .tlc-header-actions {
    width: auto;
    justify-self: end;
  }

  .tlc-brand .custom-logo {
    max-width: 118px;
    max-height: 43px;
  }

  .tlc-header-actions {
    gap: 2px;
  }

  .tlc-header-action {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .tlc-header-action--account .tlc-header-action__icon {
    width: 27px;
    height: 27px;
  }

  .tlc-header-action--cart .tlc-header-action__icon {
    width: 24px;
    height: 24px;
  }

  .tlc-header-main--compact-search .tlc-search__mobile-trigger {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .tlc-header-main--compact-search .tlc-search__mobile-trigger .tlc-search__icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .tlc-cart-count {
    top: -2px;
    right: -2px;
  }

  .tlc-mini-cart-toggle {
    display: none;
  }

  .tlc-search {
    min-height: 44px;
  }

  .tlc-search__input {
    min-height: 44px;
    border-radius: 9px;
    font-size: 12px;
  }

  .tlc-search__submit {
    top: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
  }

  .tlc-home-section {
    padding-block: 44px;
  }

  .tlc-home-showcase {
    padding-block: 20px 42px;
  }

  .tlc-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tlc-showcase-card,
  .tlc-showcase-card:nth-child(5) {
    min-height: 190px;
  }

  .tlc-showcase-card strong {
    max-width: calc(100% - 20px);
    font-size: 18px;
  }

  .tlc-home-products ul.products,
  .woocommerce.tlc-home-products ul.products.columns-4 {
    display: grid;
    width: 100%;
    max-width: 100%;
    padding: 2px 2px 14px;
    grid-template-columns: none;
    grid-auto-columns: min(78vw, 300px);
    grid-auto-flow: column;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--tlc-color-brand) #ececec;
    scrollbar-width: thin;
  }

  .woocommerce.tlc-home-products ul.products li.product {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 11px;
    scroll-snap-align: start;
  }

  .woocommerce.tlc-home-products ul.products li.product .button {
    min-height: 38px;
    padding: 8px;
    border-radius: 7px;
    font-size: 10.5px;
  }

  .tlc-home-reviews__widget,
  .tlc-home-reviews__widget .grc-site-iframe {
    min-height: 280px;
  }

  .tlc-brand-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .tlc-brand-card {
    min-height: 142px;
  }
}

@media (max-width: 480px) {
  .tlc-section-heading {
    gap: 8px;
  }

  .tlc-section-heading h2,
  .tlc-home-reviews h2,
  .tlc-brands h2 {
    font-size: 23px;
  }

  .tlc-brands__heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tlc-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tlc-brand-card {
    min-height: 128px;
    padding: 16px 12px 12px;
  }

  .tlc-shipping-banner {
    min-height: 56px;
    padding-inline: 14px;
    flex-wrap: wrap;
    line-height: 1.25;
  }
}

:root {
  --tlc-font-sans: Jost, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tlc-type-body: 16px;
  --tlc-type-small: 13px;
  --tlc-type-control: 14px;
  --tlc-leading-body: 1.5;
  --tlc-leading-tight: 1.12;
  --tlc-tracking-heading: -0.035em;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--tlc-font-sans);
}

body {
  font-size: var(--tlc-type-body);
  font-weight: 400;
  line-height: var(--tlc-leading-body);
  letter-spacing: 0;
  font-synthesis: none;
}

.tlc-page-header h1,
.tlc-entry-header h1,
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title,
.tlc-section-heading h2,
.tlc-home-reviews h2,
.tlc-brands h2 {
  line-height: var(--tlc-leading-tight);
  letter-spacing: var(--tlc-tracking-heading);
  text-wrap: balance;
}

.tlc-announcement {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.tlc-header-action {
  font-size: var(--tlc-type-control);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.tlc-header-action small {
  font-size: 12px;
  font-weight: 500;
}

.tlc-header-action--support {
  font-size: 22px;
  font-weight: 750;
  line-height: 1.02;
}

.tlc-search__category,
.tlc-search__input {
  font-size: var(--tlc-type-control);
  font-weight: 400;
  letter-spacing: 0;
}

.tlc-search__category {
  width: 260px;
  min-width: 260px;
  font-weight: 650;
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .tlc-header-action--support {
    font-size: 18px;
  }

  .tlc-search__category {
    width: 200px;
    min-width: 200px;
  }
}

.tlc-primary-menu > li > a {
  font-size: var(--tlc-type-control);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 1101px) {
  .tlc-menu-shop > .sub-menu > .tlc-mega-group > a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.012em;
  }

  .tlc-menu-shop .tlc-mega-entry > a {
    min-height: 44px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .tlc-menu-shop > .sub-menu > .tlc-mega-promo > a {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
}

.tlc-section-heading h2,
.tlc-home-reviews h2,
.tlc-brands h2 {
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 650;
}

.tlc-section-heading > a,
.tlc-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-size: var(--tlc-type-control);
  font-weight: 700;
  letter-spacing: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce.tlc-home-products ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.woocommerce ul.products li.product .price,
.woocommerce.tlc-home-products ul.products li.product .price {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tlc-catalog-filters h2,
.tlc-filter-group h3 {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.tlc-filter-list a,
.tlc-filter-list label,
.tlc-catalog-filters :is(select, input),
.tlc-catalog-results .woocommerce-result-count,
.tlc-catalog-results .woocommerce-ordering select {
  font-size: var(--tlc-type-control);
  line-height: 1.4;
}

.tlc-site-footer {
  font-size: var(--tlc-type-small);
  line-height: 1.5;
}

.tlc-footer-column h2,
.tlc-footer-widget__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
