:root {
  --tlm-black: #070b0e;
  --tlm-ink: #101419;
  --tlm-panel: #0c1115;
  --tlm-panel-soft: #11171c;
  --tlm-yellow: #ffc400;
  --tlm-yellow-dark: #e2a700;
  --tlm-green: #1fba5f;
  --tlm-text: #101318;
  --tlm-muted: #6e7782;
  --tlm-line: #e5e8ec;
  --tlm-soft: #f4f6f8;
  --tlm-white: #ffffff;
  --tlm-shadow: 0 14px 36px rgba(8, 13, 18, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tlm-white);
  color: var(--tlm-text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}

body,
button,
input {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.tlm-container {
  width: min(100% - 44px, 1200px);
  margin-inline: auto;
}

.tlm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.tlm-button:hover {
  transform: translateY(-1px);
}

.tlm-button--primary {
  background: var(--tlm-yellow);
  color: #11150d;
}

.tlm-button--primary:hover {
  background: #ffd23a;
}

.tlm-button--outline {
  border-color: rgba(255, 196, 0, 0.72);
  color: var(--tlm-white);
  background: rgba(8, 12, 15, 0.52);
}

.tlm-button--dark {
  background: #11161b;
  color: var(--tlm-white);
}

.tlm-button--light {
  min-height: 40px;
  padding-inline: 20px;
  background: var(--tlm-white);
  color: var(--tlm-ink);
  border-color: #d9dee4;
}

.tlm-button--whatsapp {
  min-height: 38px;
  padding-inline: 16px;
  background: var(--tlm-green);
  color: var(--tlm-white);
}

.tlm-site-header {
  position: relative;
  z-index: 20;
  background: var(--tlm-black);
  color: var(--tlm-white);
}

.tlm-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #05090b;
  font-size: 12px;
  font-weight: 700;
}

.tlm-topbar__inner,
.tlm-topbar__items,
.tlm-topbar__contact,
.tlm-topbar__item,
.tlm-topbar__contact a {
  display: flex;
  align-items: center;
}

.tlm-topbar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 18px;
}

.tlm-topbar__items {
  gap: 0;
  min-width: 0;
}

.tlm-topbar__item {
  gap: 8px;
  padding-inline: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.tlm-topbar__item:first-child {
  padding-left: 0;
}

.tlm-topbar svg {
  width: 16px;
  height: 16px;
  color: var(--tlm-yellow);
}

.tlm-topbar__contact {
  gap: 14px;
  white-space: nowrap;
}

.tlm-topbar__contact a {
  gap: 5px;
}

.tlm-header-main {
  background: radial-gradient(circle at 10% 0, rgba(255, 196, 0, 0.07), transparent 34%), #070c0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tlm-header-main__inner {
  display: grid;
  grid-template-columns: 246px minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 112px;
}

.tlm-logo {
  display: inline-flex;
  align-items: center;
  width: 232px;
}

.tlm-logo img,
.tlm-custom-logo {
  width: 100%;
  max-height: 88px;
  height: auto;
  object-fit: contain;
}

.tlm-search {
  display: grid;
  grid-template-columns: 158px minmax(180px, 1fr) 58px;
  width: 100%;
  max-width: 600px;
  min-height: 64px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--tlm-white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.tlm-search__select,
.tlm-search input,
.tlm-search__submit {
  border: 0;
}

.tlm-search__select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 14px;
  background: #f7f8fa;
  color: #29313a;
  font-size: 13px;
  border-right: 1px solid #e1e4e8;
}

.tlm-search__select svg {
  width: 15px;
  height: 15px;
}

.tlm-search input {
  width: 100%;
  padding-inline: 18px;
  color: #20262e;
  outline: 0;
}

.tlm-search input::placeholder {
  color: #87909a;
}

.tlm-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tlm-yellow);
  color: #101010;
}

.tlm-search__submit svg {
  width: 26px;
  height: 26px;
}

.tlm-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.tlm-header-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  font-weight: 800;
  font-size: 13px;
}

.tlm-header-action svg {
  width: 29px;
  height: 29px;
  color: var(--tlm-yellow);
}

.tlm-header-action--whatsapp svg {
  color: #29cf68;
}

.tlm-header-action span {
  display: grid;
  line-height: 1.05;
}

.tlm-header-action small {
  margin-top: 4px;
  color: #d7dce1;
  font-size: 11px;
  font-weight: 700;
}

.tlm-nav {
  background: #060a0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tlm-nav__inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 48px;
}

.tlm-category-menu {
  position: relative;
  width: 230px;
  flex: 0 0 auto;
}

.tlm-category-trigger,
.tlm-mobile-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  border: 0;
  border-radius: 5px;
  background: var(--tlm-yellow);
  color: #11140f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-category-trigger {
  width: 100%;
  padding-inline: 18px;
}

.tlm-category-trigger svg:first-child {
  width: 18px;
  height: 18px;
}

.tlm-category-trigger svg:last-child {
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.tlm-category-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  display: none;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: var(--tlm-white);
  color: var(--tlm-text);
  box-shadow: var(--tlm-shadow);
}

.tlm-category-dropdown.is-open {
  display: grid;
}

.tlm-category-dropdown a {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.tlm-category-dropdown a:hover {
  background: #f4f6f8;
}

.tlm-mobile-menu {
  display: none;
  padding-inline: 16px;
}

.tlm-nav-links {
  min-width: 0;
  flex: 1;
}

.tlm-nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tlm-nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  color: var(--tlm-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-nav-menu .current-menu-item > a,
.tlm-nav-menu a:hover {
  color: var(--tlm-yellow);
}

.tlm-nav-menu .current-menu-item > a::after,
.tlm-nav-menu a:hover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--tlm-yellow);
}

.tlm-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #070c10;
  color: var(--tlm-white);
}

.tlm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  background-image: url("../images/hero-laser.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.tlm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 12, 16, 0.97) 0%, rgba(7, 12, 16, 0.9) 30%, rgba(7, 12, 16, 0.44) 58%, rgba(7, 12, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 12, 16, 0.04) 0%, rgba(7, 12, 16, 0.28) 100%);
}

.tlm-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 430px;
}

.tlm-hero__content {
  width: min(100%, 580px);
  padding: 58px 0 86px;
}

.tlm-hero h1 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 800;
}

.tlm-hero h1 span {
  display: block;
  color: var(--tlm-yellow);
}

.tlm-hero p {
  max-width: 520px;
  margin: 0;
  color: #eef2f5;
  font-size: 18px;
  line-height: 1.6;
}

.tlm-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 28px;
}

.tlm-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f3f6f8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.tlm-hero__features svg {
  width: 32px;
  height: 32px;
  color: var(--tlm-yellow);
}

.tlm-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.tlm-hero__buttons .tlm-button {
  min-width: 200px;
  min-height: 56px;
}

.tlm-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--tlm-white);
  transform: translateY(-50%);
}

.tlm-hero__arrow--left {
  left: 14px;
}

.tlm-hero__arrow--right {
  right: 14px;
}

.tlm-hero__dots {
  position: absolute;
  bottom: 52px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.tlm-hero__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.tlm-hero__dots .is-active {
  width: 13px;
  height: 13px;
  margin-top: -2px;
  background: var(--tlm-yellow);
}

.tlm-category-strip {
  position: relative;
  z-index: 5;
  margin-top: -35px;
}

.tlm-category-strip__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: var(--tlm-white);
  box-shadow: var(--tlm-shadow);
}

.tlm-category-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 168px;
  padding: 20px 18px 18px;
  border-right: 1px solid var(--tlm-line);
  text-align: center;
}

.tlm-category-card:last-child {
  border-right: 0;
}

.tlm-category-card img {
  width: 116px;
  height: 82px;
  object-fit: contain;
}

.tlm-category-card strong {
  display: block;
  width: 100%;
  min-height: 45px;
  margin-top: 8px;
  color: #11151a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.22;
}

.tlm-category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 6px;
  color: #1d252d;
  font-size: 12px;
  font-weight: 700;
}

.tlm-category-card span svg {
  width: 14px;
  height: 14px;
}

.tlm-trust {
  padding: 22px 0 30px;
}

.tlm-trust__panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, #070b0e, #11181d);
  color: var(--tlm-white);
  box-shadow: 0 10px 22px rgba(8, 13, 18, 0.12);
}

.tlm-trust__item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 96px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tlm-trust__item:last-child {
  border-right: 0;
}

.tlm-trust__item svg {
  width: 38px;
  height: 38px;
  color: var(--tlm-yellow);
}

.tlm-trust__item span {
  display: grid;
  gap: 2px;
  color: #dbe1e7;
  font-size: 12px;
  line-height: 1.4;
}

.tlm-trust__item strong {
  color: var(--tlm-white);
  font-size: 13px;
  font-weight: 900;
}

.tlm-products {
  padding: 0 0 32px;
}

.tlm-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.tlm-section-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: #171b20;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-section-heading h2::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--tlm-yellow);
}

.tlm-section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #272d35;
  font-size: 13px;
  font-weight: 700;
}

.tlm-section-heading a svg {
  width: 15px;
  height: 15px;
}

.tlm-products__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 28px;
}

.tlm-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.tlm-product-card {
  display: grid;
  min-height: 272px;
  padding: 16px 14px 14px;
  border: 1px solid #e3e7eb;
  border-radius: 8px;
  background: var(--tlm-white);
  box-shadow: 0 8px 18px rgba(8, 13, 18, 0.06);
}

.tlm-product-card__image {
  display: grid;
  place-items: center;
  height: 96px;
}

.tlm-product-card__image img {
  width: 116px;
  height: 96px;
  object-fit: contain;
}

.tlm-product-card h3 {
  margin: 7px 0 10px;
  color: #242a31;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.tlm-product-card__brand,
.tlm-product-card__category {
  display: block;
  overflow: hidden;
  color: #6b7480;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tlm-product-card__category {
  margin-top: 3px;
  color: #a17800;
}

.tlm-product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}

.tlm-product-card__price {
  color: #11151a;
  font-size: 15px;
  font-weight: 900;
}

.tlm-product-card__price-row del {
  color: #98a1ab;
  font-size: 12px;
  font-weight: 700;
}

.tlm-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.tlm-product-card__footer span {
  margin-right: auto;
  color: #168445;
  font-size: 12px;
  font-weight: 800;
}

.tlm-product-card__footer a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d9dee4;
  border-radius: 5px;
  color: #151b22;
}

.tlm-product-card__footer svg {
  width: 17px;
  height: 17px;
}

.tlm-carousel-arrow {
  position: absolute;
  top: 116px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  border: 1px solid #e3e7eb;
  border-radius: 20px;
  background: var(--tlm-white);
  color: #7b838d;
  box-shadow: 0 8px 18px rgba(8, 13, 18, 0.08);
}

.tlm-carousel-arrow svg {
  width: 17px;
  height: 17px;
}

.tlm-carousel-arrow--left {
  left: -13px;
}

.tlm-carousel-arrow--right {
  right: 308px;
}

.tlm-quote-card {
  min-height: 300px;
  padding: 30px 26px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 196, 0, 0.16), transparent 34%),
    linear-gradient(155deg, #0a0f13, #151c21);
  color: var(--tlm-white);
  box-shadow: var(--tlm-shadow);
}

.tlm-quote-card h2 {
  margin: 0 0 24px;
  font-size: 23px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-quote-card p {
  max-width: 230px;
  margin: 0 0 22px;
  color: #e4e8ec;
  font-size: 14px;
  line-height: 1.7;
}

.tlm-quote-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.tlm-quote-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2f5f7;
  font-size: 13px;
  font-weight: 700;
}

.tlm-quote-card li svg {
  width: 17px;
  height: 17px;
  color: var(--tlm-yellow);
}

.tlm-quote-card .tlm-button {
  width: 100%;
}

.tlm-products-empty {
  display: grid;
  align-content: center;
  min-height: 250px;
  padding: 28px;
  border: 1px dashed #cfd6dd;
  border-radius: 8px;
  background: #f8fafb;
}

.tlm-products-empty h3 {
  margin: 0 0 8px;
  color: #151b22;
  font-size: 18px;
  font-weight: 900;
}

.tlm-products-empty p {
  max-width: 520px;
  margin: 0;
  color: #626c77;
  font-size: 14px;
}

.tlm-info-panels {
  padding: 0 0 30px;
}

.tlm-info-panels__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  gap: 18px;
}

.tlm-info-card {
  min-height: 256px;
  padding: 26px 24px;
  border: 1px solid #e7ebef;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f7f8fa);
}

.tlm-info-card h2 {
  margin: 0 0 22px;
  color: #20262d;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.tlm-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #38414b;
  font-size: 13px;
  font-weight: 600;
}

.tlm-check-list svg {
  width: 15px;
  height: 15px;
  color: var(--tlm-yellow-dark);
}

.tlm-newsletter p {
  max-width: 360px;
  margin: 0 0 22px;
  color: #333b45;
  font-size: 14px;
  line-height: 1.65;
}

.tlm-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  min-height: 49px;
  overflow: hidden;
  border: 1px solid #e0e4e9;
  border-radius: 5px;
  background: var(--tlm-white);
}

.tlm-newsletter input,
.tlm-newsletter button {
  border: 0;
}

.tlm-newsletter input {
  min-width: 0;
  padding-inline: 18px;
  color: var(--tlm-text);
  outline: 0;
}

.tlm-newsletter button {
  display: grid;
  place-items: center;
  background: var(--tlm-yellow);
  color: #11140f;
}

.tlm-newsletter button svg {
  width: 22px;
  height: 22px;
}

.tlm-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: #3b444e;
  font-size: 12px;
  line-height: 1.45;
}

.tlm-checkbox input {
  margin-top: 3px;
}

.tlm-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 16px;
  align-items: center;
}

.tlm-support-card strong {
  display: block;
  margin-bottom: 8px;
  color: #151a20;
  font-size: 13px;
  font-weight: 900;
}

.tlm-support-card p {
  margin: 0 0 16px;
  color: #333b45;
  font-size: 14px;
  line-height: 1.55;
}

.tlm-support-card .tlm-button {
  width: min(100%, 226px);
  margin: 0 0 10px;
}

.tlm-support-card img {
  width: 145px;
  height: 132px;
  object-fit: contain;
}

.tlm-brands {
  padding: 0 0 30px;
}

.tlm-brands__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 24px;
  align-items: center;
  padding: 12px 0 26px;
  border-bottom: 1px solid #dfe4e9;
}

.tlm-brands__row img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}

.tlm-brands__row .tlm-button {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 12px;
}

.tlm-guides {
  padding: 0 0 44px;
}

.tlm-guides__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.55fr;
  gap: 14px;
}

.tlm-video-card {
  position: relative;
  display: block;
  min-height: 208px;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1014;
  box-shadow: 0 10px 22px rgba(8, 13, 18, 0.08);
}

.tlm-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlm-video-card__play,
.tlm-video-card strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tlm-bulk-card {
  min-height: 208px;
  padding: 25px 25px 22px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(9, 13, 16, 0.96) 0%, rgba(9, 13, 16, 0.86) 56%, rgba(9, 13, 16, 0.42) 100%),
    url("../images/bulk-boxes.jpg") right bottom / 54% auto no-repeat,
    #0b1115;
  color: var(--tlm-white);
}

.tlm-bulk-card h2 {
  max-width: 330px;
  margin: 0 0 16px;
  color: var(--tlm-yellow);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.tlm-bulk-card p {
  max-width: 320px;
  margin: 0 0 20px;
  color: #f0f3f5;
  font-size: 14px;
  line-height: 1.65;
}

.tlm-bulk-card .tlm-button {
  min-height: 44px;
  padding-inline: 18px;
}

.tlm-footer {
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 196, 0, 0.08), transparent 28%),
    linear-gradient(130deg, #070b0d, #11181d);
  color: #d7dde3;
}

.tlm-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr 1fr 1.45fr;
  gap: 34px;
  padding: 50px 0 34px;
}

.tlm-footer__brand,
.tlm-footer__links,
.tlm-footer__contact {
  min-width: 0;
}

.tlm-footer__logo {
  display: block;
  width: 220px;
  margin-bottom: 18px;
}

.tlm-footer__logo img {
  width: 100%;
  max-height: 122px;
  height: auto;
  object-fit: contain;
}

.tlm-footer__brand p {
  max-width: 255px;
  margin: 0 0 18px;
  color: #bfc7cf;
  font-size: 13px;
  line-height: 1.65;
}

.tlm-social {
  display: flex;
  gap: 11px;
}

.tlm-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #174b78;
  color: var(--tlm-white);
}

.tlm-social svg {
  width: 15px;
  height: 15px;
}

.tlm-footer h2 {
  margin: 0 0 17px;
  color: var(--tlm-white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-footer__links,
.tlm-footer__contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.tlm-footer__links a,
.tlm-footer__contact a,
.tlm-footer__contact span {
  color: #c8d0d8;
  font-size: 13px;
  line-height: 1.45;
}

.tlm-footer__contact a,
.tlm-footer__contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tlm-footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--tlm-yellow);
}

.tlm-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 6px 0 30px;
  color: #dce2e7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tlm-footer__payments span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.tlm-footer__payments svg {
  width: 20px;
  height: 20px;
}

.tlm-footer__payments strong {
  font-size: 18px;
  font-weight: 900;
}

.tlm-footer__payments strong:nth-of-type(1) {
  color: #70a6e8;
}

.tlm-footer__payments strong:nth-of-type(2) {
  color: #ffc15c;
}

.tlm-footer__payments strong:nth-of-type(3) {
  color: #8dd1d8;
}

.tlm-footer__payments strong:nth-of-type(4) {
  color: #6cb1e6;
}

.tlm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tlm-footer__bottom p {
  margin: 0;
  padding: 18px 0;
  color: #9fa8b2;
  font-size: 12px;
}

.tlm-floating-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 28px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #31ce63;
  color: var(--tlm-white);
  box-shadow: 0 12px 28px rgba(22, 125, 57, 0.32);
}

.tlm-floating-whatsapp svg {
  width: 38px;
  height: 38px;
}

.tlm-inner-page,
.tlm-shop-page {
  padding: 34px 0 56px;
  background: #ffffff;
}

.tlm-builder-content {
  background: #ffffff;
}

.tlm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #6d7782;
  font-size: 13px;
  font-weight: 600;
}

.tlm-breadcrumb a {
  color: #6d7782;
}

.tlm-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.tlm-page-lead,
.tlm-simple-page-header {
  margin-bottom: 34px;
}

.tlm-page-lead h1,
.tlm-simple-page-header h1,
.tlm-shop-hero h1 {
  margin: 0 0 12px;
  color: #15191e;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
}

.tlm-page-lead p,
.tlm-shop-hero__description {
  max-width: 610px;
  margin: 0;
  color: #35404b;
  font-size: 17px;
  line-height: 1.62;
}

.tlm-page-lead p p,
.tlm-shop-hero__description p {
  margin: 0;
}

.tlm-page-content {
  color: #26313c;
}

.tlm-shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.tlm-shop-toolbar {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tlm-shop-sort select {
  width: 250px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #dfe4ea;
  border-radius: 7px;
  background: #ffffff;
  color: #26313c;
  font-size: 13px;
  font-weight: 600;
}

.tlm-shop-view-toggle {
  display: flex;
  gap: 12px;
}

.tlm-shop-view-toggle a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #dfe4ea;
  border-radius: 7px;
  background: #ffffff;
  color: #121820;
}

.tlm-shop-view-toggle a.is-active,
.tlm-shop-view-toggle a:hover {
  border-color: var(--tlm-yellow);
  background: var(--tlm-yellow);
}

.tlm-shop-view-toggle svg {
  width: 22px;
  height: 22px;
}

.tlm-shop-layout {
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.tlm-shop-sidebar {
  display: grid;
  gap: 22px;
}

.tlm-filter-card,
.tlm-blog-widget {
  padding: 24px 23px;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.035);
}

.tlm-filter-card h2,
.tlm-blog-widget h2,
.tlm-blog-newsletter h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #151a20;
  font-size: 18px;
  font-weight: 900;
}

.tlm-filter-card h2::after,
.tlm-blog-widget h2::after,
.tlm-blog-newsletter h2::after,
.tlm-contact-fast h2::after,
.tlm-map-card h2::after,
.tlm-about-intro h2::after,
.tlm-about-why h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 3px;
  background: var(--tlm-yellow);
}

.tlm-filter-list {
  display: grid;
}

.tlm-filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 39px;
  border-bottom: 1px solid #eef1f4;
  color: #2d3742;
  font-size: 13px;
  font-weight: 600;
}

.tlm-filter-list a:last-child {
  border-bottom: 0;
}

.tlm-filter-list a.is-active,
.tlm-filter-list a:hover {
  color: #ba8900;
}

.tlm-filter-list svg {
  width: 14px;
  height: 14px;
}

.tlm-price-filter {
  display: grid;
  gap: 18px;
}

.tlm-price-slider {
  position: relative;
  height: 28px;
}

.tlm-price-slider::before,
.tlm-price-slider span {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 4px;
}

.tlm-price-slider::before {
  content: "";
  background: #dde3e9;
}

.tlm-price-slider span {
  background: var(--tlm-yellow);
}

.tlm-price-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
}

.tlm-price-slider input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--tlm-yellow);
  pointer-events: auto;
  appearance: none;
}

.tlm-price-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--tlm-yellow);
  pointer-events: auto;
}

.tlm-price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tlm-price-inputs input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
  color: #2d3742;
  outline: 0;
}

.tlm-price-filter button,
.tlm-contact-form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  border: 0;
  border-radius: 5px;
  background: var(--tlm-yellow);
  color: #151911;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-checkbox-filter {
  display: grid;
  gap: 13px;
}

.tlm-checkbox-filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3c4651;
  font-size: 13px;
  font-weight: 600;
}

.tlm-filter-note {
  margin: 0;
  color: #68737e;
  font-size: 13px;
  line-height: 1.55;
}

.tlm-shop-support,
.tlm-blog-newsletter,
.tlm-contact-fast {
  padding: 28px 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 196, 0, 0.12), transparent 34%),
    linear-gradient(145deg, #070c10, #131a1f);
  color: #ffffff;
  box-shadow: var(--tlm-shadow);
}

.tlm-shop-support > svg,
.tlm-blog-newsletter > svg {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--tlm-yellow);
}

.tlm-shop-support h2,
.tlm-contact-fast h2 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.tlm-shop-support h2 {
  color: var(--tlm-yellow);
  text-transform: uppercase;
}

.tlm-shop-support p,
.tlm-blog-newsletter p,
.tlm-contact-fast p {
  margin: 0 0 20px;
  color: #eef3f5;
  font-size: 14px;
  line-height: 1.65;
}

.tlm-shop-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 196, 0, 0.8);
  border-radius: 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-shop-count {
  margin: 0 0 20px;
  color: #4a5560;
  font-size: 14px;
  font-weight: 700;
}

.tlm-shop-products {
  display: grid;
  gap: 22px 14px;
}

.tlm-shop-products--grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tlm-shop-card {
  display: grid;
  grid-template-rows: 164px 1fr auto;
  min-height: 304px;
  padding: 14px;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.04);
}

.tlm-shop-card__image {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 164px;
}

.tlm-shop-card__image img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.tlm-shop-card__body {
  display: grid;
  align-content: start;
}

.tlm-shop-card h2 {
  margin: 0 0 12px;
  color: #1d252d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.tlm-shop-card__price {
  color: #11161b;
  font-size: 15px;
  font-weight: 900;
}

.tlm-shop-card__price del {
  color: #939ca6;
  font-size: 12px;
}

.tlm-shop-card__price ins {
  color: inherit;
  text-decoration: none;
}

.tlm-shop-card__stock {
  margin-top: 12px;
  color: #007a3b;
  font-size: 13px;
  font-weight: 700;
}

.tlm-shop-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.tlm-shop-card__action {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e0e5ea;
  border-radius: 50%;
  background: #ffffff;
  color: #121820;
}

button.tlm-shop-card__action {
  padding: 0;
}

.tlm-shop-card__action.is-active {
  border-color: rgba(255, 196, 0, 0.78);
  background: rgba(255, 196, 0, 0.14);
  color: #b17e00;
}

.tlm-shop-card__action:hover {
  border-color: var(--tlm-yellow);
  background: #fff7d2;
}

.tlm-shop-card__action svg {
  width: 18px;
  height: 18px;
}

.tlm-shop-products--list {
  grid-template-columns: 1fr;
}

.tlm-shop-products--list .tlm-shop-card {
  grid-template-columns: 190px minmax(0, 1fr) auto;
  grid-template-rows: auto;
  align-items: center;
  min-height: 170px;
}

.tlm-shop-products--list .tlm-shop-card__image {
  height: 140px;
}

.tlm-shop-products--list .tlm-shop-card__image img {
  height: 130px;
}

.tlm-shop-products--list .tlm-shop-card__actions {
  align-self: end;
}

.tlm-shop-pagination {
  margin-top: 34px;
}

.tlm-shop-pagination ul {
  display: flex;
  justify-content: center;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tlm-shop-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 12px;
  border: 1px solid #e1e6eb;
  border-radius: 7px;
  background: #ffffff;
  color: #1a222a;
  font-size: 13px;
  font-weight: 800;
}

.tlm-shop-pagination .current {
  border-color: var(--tlm-yellow);
  background: var(--tlm-yellow);
}

.tlm-shop-pagination svg {
  width: 16px;
  height: 16px;
}

.tlm-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 38px;
}

.tlm-about-intro h2,
.tlm-about-why h2,
.tlm-map-card h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  color: #151a20;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.tlm-about-intro p,
.tlm-about-why li,
.tlm-map-card p {
  color: #2d3742;
  font-size: 15px;
  line-height: 1.72;
}

.tlm-about-intro p {
  margin: 0 0 17px;
}

.tlm-about-intro img,
.tlm-about-why img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 13, 18, 0.12);
}

.tlm-about-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.tlm-about-features article {
  min-height: 190px;
  padding: 28px 20px;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.04);
}

.tlm-about-features svg {
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
  color: var(--tlm-yellow);
}

.tlm-about-features h3 {
  margin: 0 0 12px;
  color: #151a20;
  font-size: 15px;
  font-weight: 900;
}

.tlm-about-features p {
  margin: 0;
  color: #38434f;
  font-size: 13px;
  line-height: 1.58;
}

.tlm-about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 42px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 196, 0, 0.1), transparent 28%),
    linear-gradient(135deg, #070c10, #11181d);
  color: #ffffff;
}

.tlm-about-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon value" "icon label";
  column-gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.tlm-about-stats div:last-child {
  border-right: 0;
}

.tlm-about-stats svg {
  grid-area: icon;
  width: 45px;
  height: 45px;
  color: var(--tlm-yellow);
}

.tlm-about-stats strong {
  grid-area: value;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.tlm-about-stats span {
  grid-area: label;
  color: #eef2f5;
  font-size: 14px;
  font-weight: 700;
}

.tlm-about-why {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.tlm-about-why ul,
.tlm-contact-fast ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tlm-about-why li,
.tlm-contact-fast li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tlm-about-why li svg,
.tlm-contact-fast li svg {
  width: 19px;
  height: 19px;
  color: var(--tlm-yellow);
}

.tlm-contact-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 38px;
}

.tlm-contact-cards article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 176px;
  padding: 24px 18px;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.04);
}

.tlm-contact-cards svg {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  color: var(--tlm-yellow);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.2));
}

.tlm-contact-cards h2 {
  margin: 0 0 13px;
  color: #151a20;
  font-size: 16px;
  font-weight: 900;
}

.tlm-contact-cards strong,
.tlm-contact-cards p {
  margin: 0;
  color: #27313b;
  font-size: 13px;
  line-height: 1.58;
}

.tlm-contact-cards p {
  margin-top: 8px;
  color: #59636e;
}

.tlm-contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  margin-bottom: 38px;
}

.tlm-contact-form-card {
  padding: 30px;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.04);
}

.tlm-contact-form-card h2 {
  margin: 0 0 10px;
  color: #151a20;
  font-size: 25px;
  font-weight: 900;
}

.tlm-contact-form-card p {
  margin: 0 0 24px;
  color: #38434f;
  font-size: 15px;
}

.tlm-contact-form-card form {
  display: grid;
  gap: 14px;
}

.tlm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tlm-contact-form-card input,
.tlm-contact-form-card select,
.tlm-contact-form-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
  background: #ffffff;
  color: #26313c;
  outline: 0;
}

.tlm-contact-form-card textarea {
  min-height: 96px;
  padding-block: 15px;
  resize: vertical;
}

.tlm-contact-form-card .tlm-checkbox {
  margin-top: 0;
}

.tlm-contact-form-card button {
  min-height: 48px;
}

.tlm-contact-fast {
  padding: 34px 30px;
}

.tlm-contact-fast .tlm-button {
  width: max-content;
  min-height: 48px;
  margin-bottom: 18px;
  padding-inline: 22px;
}

.tlm-contact-social {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.tlm-contact-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tlm-contact-social a:hover,
.tlm-contact-social a:focus {
  background: var(--tlm-yellow);
  color: #151911;
  transform: translateY(-2px);
}

.tlm-contact-social svg {
  width: 18px;
  height: 18px;
}

.tlm-contact-fast li {
  color: #eef2f5;
  font-size: 15px;
  font-weight: 700;
}

.tlm-map-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.04);
}

.tlm-map-card > div {
  padding: 30px;
}

.tlm-map-card p {
  margin: 0 0 24px;
}

.tlm-map-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.tlm-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
}

.tlm-blog-main {
  min-width: 0;
}

.tlm-blog-featured {
  margin-bottom: 32px;
}

.tlm-blog-featured a {
  position: relative;
  display: block;
  min-height: 365px;
  overflow: hidden;
  border-radius: 8px;
  background: #070c10;
  color: #ffffff;
  box-shadow: var(--tlm-shadow);
}

.tlm-blog-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.tlm-blog-featured a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 16, 0.03), rgba(7, 12, 16, 0.84));
}

.tlm-blog-ribbon {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 4px;
  background: var(--tlm-yellow);
  color: #11150d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-blog-featured div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.tlm-blog-featured span,
.tlm-blog-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--tlm-yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-blog-featured small,
.tlm-blog-card small {
  color: #aeb7c0;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.tlm-blog-featured h2 {
  margin: 10px 0 12px;
  font-size: 25px;
  line-height: 1.24;
  font-weight: 900;
}

.tlm-blog-featured p {
  max-width: 650px;
  margin: 0 0 22px;
  color: #f0f3f5;
  font-size: 14px;
  line-height: 1.58;
}

.tlm-blog-featured strong,
.tlm-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--tlm-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-blog-featured svg,
.tlm-read-more svg {
  width: 15px;
  height: 15px;
}

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

.tlm-blog-card {
  overflow: hidden;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 13, 18, 0.04);
}

.tlm-blog-card__image img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.tlm-blog-card > div {
  display: grid;
  min-height: 210px;
  padding: 18px 18px 20px;
}

.tlm-blog-card h2 {
  margin: 10px 0;
  color: #141a20;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.tlm-blog-card p {
  margin: 0 0 18px;
  color: #3d4853;
  font-size: 13px;
  line-height: 1.58;
}

.tlm-read-more {
  align-self: end;
}

.tlm-blog-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
}

.tlm-blog-category-list {
  display: grid;
  gap: 15px;
}

.tlm-blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #303a45;
  font-size: 13px;
  font-weight: 700;
}

.tlm-blog-category-list strong {
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 22px;
  border-radius: 20px;
  background: var(--tlm-yellow);
  color: #151911;
  font-size: 11px;
  font-weight: 900;
}

.tlm-popular-posts {
  display: grid;
  gap: 20px;
}

.tlm-popular-posts a {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.tlm-popular-posts img {
  width: 80px;
  height: 64px;
  border-radius: 5px;
  object-fit: cover;
}

.tlm-popular-posts span {
  display: grid;
  gap: 5px;
}

.tlm-popular-posts strong {
  color: #151a20;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.tlm-popular-posts small {
  color: #77818c;
  font-size: 12px;
}

.tlm-blog-newsletter {
  padding: 31px 28px;
}

.tlm-blog-newsletter h2 {
  color: #ffffff;
  font-size: 24px;
}

.tlm-blog-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  min-height: 48px;
  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;
}

.tlm-blog-newsletter input,
.tlm-blog-newsletter button {
  border: 0;
}

.tlm-blog-newsletter input {
  min-width: 0;
  padding-inline: 15px;
  outline: 0;
}

.tlm-blog-newsletter button {
  display: grid;
  place-items: center;
  background: var(--tlm-yellow);
}

.tlm-single-post__article {
  max-width: 860px;
  margin-inline: auto;
}

.tlm-single-post__image {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: var(--tlm-shadow);
}

.tlm-single-post__image img {
  width: 100%;
  height: auto;
}

.tlm-page-content {
  color: #26313c;
  font-size: 16px;
  line-height: 1.75;
}

.tlm-page-content h2,
.tlm-page-content h3 {
  color: #151a20;
  line-height: 1.25;
}

.tlm-page-content a {
  color: #b88800;
  font-weight: 800;
}

.tlm-page {
  padding: 48px 0;
  background: #f7f8fa;
}

.tlm-post-list {
  display: grid;
  gap: 18px;
}

.tlm-post-card,
.tlm-empty-state {
  padding: 28px;
  border: 1px solid var(--tlm-line);
  border-radius: 8px;
  background: var(--tlm-white);
}

.tlm-post-card h1,
.tlm-empty-state h1 {
  margin: 0 0 12px;
  font-size: 26px;
}

@media (max-width: 1180px) {
  .tlm-header-main__inner {
    grid-template-columns: 210px minmax(320px, 1fr);
  }

  .tlm-header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 18px;
  }

  .tlm-topbar__items {
    overflow-x: auto;
  }

  .tlm-nav__inner {
    gap: 24px;
  }

  .tlm-nav-menu {
    gap: 24px;
  }

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

  .tlm-carousel-arrow {
    display: none;
  }

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

  .tlm-bulk-card {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .tlm-container {
    width: min(100% - 28px, 1200px);
  }

  .tlm-topbar__inner {
    min-height: auto;
    padding: 10px 0;
  }

  .tlm-topbar__contact {
    display: none;
  }

  .tlm-header-main__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .tlm-logo {
    width: 205px;
  }

  .tlm-logo img,
  .tlm-custom-logo {
    max-height: 82px;
  }

  .tlm-search {
    max-width: none;
  }

  .tlm-header-actions {
    grid-column: auto;
    padding-bottom: 0;
    gap: 12px;
    overflow-x: auto;
  }

  .tlm-header-action {
    padding-right: 10px;
  }

  .tlm-nav__inner {
    position: relative;
    justify-content: space-between;
    min-height: 62px;
  }

  .tlm-category-menu {
    width: min(54vw, 230px);
  }

  .tlm-mobile-menu {
    display: inline-flex;
  }

  .tlm-nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 30;
    display: none;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    background: #080d10;
    box-shadow: var(--tlm-shadow);
  }

  .tlm-nav-links.is-open {
    display: block;
  }

  .tlm-nav-menu {
    display: grid;
    gap: 0;
  }

  .tlm-nav-menu a {
    min-height: 44px;
  }

  .tlm-nav-menu .current-menu-item > a::after,
  .tlm-nav-menu a:hover::after {
    display: none;
  }

  .tlm-hero,
  .tlm-hero__inner {
    min-height: 520px;
  }

  .tlm-hero::after {
    width: 100%;
    opacity: 0.82;
    background-position: center right;
  }

  .tlm-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 12, 16, 0.96), rgba(7, 12, 16, 0.68)),
      linear-gradient(180deg, rgba(7, 12, 16, 0.08), rgba(7, 12, 16, 0.52));
  }

  .tlm-hero__content {
    padding-top: 50px;
  }

  .tlm-hero h1 {
    font-size: 42px;
  }

  .tlm-category-strip__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .tlm-products__layout {
    grid-template-columns: 1fr;
  }

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

  .tlm-quote-card {
    min-height: auto;
  }

  .tlm-info-panels__grid {
    grid-template-columns: 1fr;
  }

  .tlm-brands__row {
    grid-template-columns: 1fr;
  }

  .tlm-brands__row .tlm-button {
    width: max-content;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .tlm-topbar__item {
    padding-inline: 12px;
  }

  .tlm-search {
    grid-template-columns: 1fr 52px;
    min-height: 54px;
  }

  .tlm-search__select {
    display: none;
  }

  .tlm-header-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .tlm-header-action {
    min-width: 0;
    gap: 6px;
    font-size: 11px;
  }

  .tlm-header-action svg {
    width: 24px;
    height: 24px;
  }

  .tlm-header-action small {
    font-size: 10px;
  }

  .tlm-category-menu {
    width: 58vw;
  }

  .tlm-category-trigger,
  .tlm-mobile-menu {
    min-height: 45px;
    font-size: 11px;
  }

  .tlm-hero,
  .tlm-hero__inner {
    min-height: 560px;
  }

  .tlm-hero__arrow {
    display: none;
  }

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

  .tlm-hero p {
    font-size: 16px;
  }

  .tlm-hero__features {
    gap: 18px;
  }

  .tlm-hero__buttons {
    display: grid;
  }

  .tlm-hero__buttons .tlm-button {
    min-width: 0;
    width: 100%;
  }

  .tlm-category-strip {
    margin-top: -26px;
  }

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

  .tlm-category-card {
    min-height: 150px;
    padding: 16px 12px;
  }

  .tlm-trust__panel,
  .tlm-product-grid,
  .tlm-guides__grid,
  .tlm-footer__grid {
    grid-template-columns: 1fr;
  }

  .tlm-trust__item {
    min-height: 80px;
  }

  .tlm-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tlm-product-card {
    min-height: auto;
  }

  .tlm-support-card {
    grid-template-columns: 1fr;
  }

  .tlm-support-card img {
    justify-self: end;
  }

  .tlm-floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 60px;
    height: 60px;
  }

  .tlm-floating-whatsapp svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 1180px) {
  .tlm-shop-products--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlm-about-features,
  .tlm-contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlm-blog-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
  }

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

@media (max-width: 980px) {
  .tlm-shop-hero {
    grid-template-columns: 1fr;
  }

  .tlm-shop-toolbar {
    justify-content: space-between;
  }

  .tlm-shop-layout,
  .tlm-about-intro,
  .tlm-about-why,
  .tlm-contact-main,
  .tlm-map-card,
  .tlm-blog-layout {
    grid-template-columns: 1fr;
  }

  .tlm-shop-sidebar {
    order: 2;
  }

  .tlm-shop-content {
    order: 1;
  }

  .tlm-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlm-about-stats div:nth-child(2) {
    border-right: 0;
  }

  .tlm-map-card img {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .tlm-inner-page,
  .tlm-shop-page {
    padding-top: 26px;
  }

  .tlm-page-lead h1,
  .tlm-simple-page-header h1,
  .tlm-shop-hero h1 {
    font-size: 36px;
  }

  .tlm-page-lead p,
  .tlm-shop-hero__description {
    font-size: 15px;
  }

  .tlm-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .tlm-shop-sort select {
    width: 100%;
  }

  .tlm-shop-view-toggle {
    justify-content: flex-end;
  }

  .tlm-shop-products--grid,
  .tlm-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlm-shop-products--list .tlm-shop-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .tlm-shop-products--list .tlm-shop-card__actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .tlm-about-features,
  .tlm-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlm-form-row {
    grid-template-columns: 1fr;
  }

  .tlm-blog-featured a {
    min-height: 330px;
  }
}

@media (max-width: 520px) {
  .tlm-page-lead h1,
  .tlm-simple-page-header h1,
  .tlm-shop-hero h1 {
    font-size: 32px;
  }

  .tlm-shop-products--grid,
  .tlm-shop-products--list,
  .tlm-blog-grid,
  .tlm-about-features,
  .tlm-about-stats,
  .tlm-contact-cards {
    grid-template-columns: 1fr;
  }

  .tlm-shop-card,
  .tlm-shop-products--list .tlm-shop-card {
    grid-template-columns: 1fr;
    grid-template-rows: 150px 1fr auto;
  }

  .tlm-shop-card__image,
  .tlm-shop-products--list .tlm-shop-card__image {
    height: 150px;
  }

  .tlm-shop-products--list .tlm-shop-card__actions {
    grid-column: auto;
    justify-content: flex-end;
  }

  .tlm-about-stats div,
  .tlm-about-stats div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tlm-about-stats div:last-child {
    border-bottom: 0;
  }

  .tlm-contact-form-card,
  .tlm-contact-fast,
  .tlm-map-card > div {
    padding: 24px 20px;
  }

  .tlm-blog-featured h2 {
    font-size: 21px;
  }

  .tlm-popular-posts a {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .tlm-popular-posts img {
    width: 70px;
  }
}

@media (max-width: 760px) {
  .tlm-topbar {
    overflow: hidden;
  }

  .tlm-topbar__inner {
    width: 100%;
    padding: 0;
  }

  .tlm-topbar__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    overflow: visible;
  }

  .tlm-topbar__item {
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tlm-topbar__item:nth-child(n+3) {
    display: none;
  }

  .tlm-topbar__item:first-child {
    padding-left: 8px;
  }

  .tlm-header-main__inner {
    gap: 14px;
    padding: 16px 0 18px;
  }

  .tlm-logo {
    justify-self: center;
    width: min(72vw, 245px);
  }

  .tlm-logo img,
  .tlm-custom-logo {
    width: 100%;
    max-height: 92px;
  }

  .tlm-search {
    grid-template-columns: minmax(0, 1fr) 64px;
    min-height: 58px;
    border-radius: 8px;
  }

  .tlm-search__select {
    display: none;
  }

  .tlm-search input {
    min-width: 0;
    padding-inline: 18px;
    font-size: 15px;
  }

  .tlm-search__submit svg {
    width: 28px;
    height: 28px;
  }

  .tlm-header-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    overflow: visible;
  }

  .tlm-header-action {
    justify-content: center;
    min-width: 0;
    padding: 0;
    font-size: 12px;
  }

  .tlm-header-action svg {
    width: 29px;
    height: 29px;
  }

  .tlm-header-action span {
    min-width: 0;
  }

  .tlm-header-action small {
    font-size: 10px;
  }

  .tlm-nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 10px;
    min-height: 78px;
  }

  .tlm-category-menu {
    width: auto;
  }

  .tlm-category-trigger,
  .tlm-mobile-menu {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    border-radius: 8px;
    font-size: 12px;
  }

  .tlm-category-trigger span,
  .tlm-mobile-menu span {
    white-space: nowrap;
  }

  .tlm-category-trigger svg:last-child {
    margin-left: auto;
  }

  .tlm-nav-links {
    top: 100%;
  }
}

@media (max-width: 430px) {
  .tlm-container {
    width: min(100% - 24px, 1200px);
  }

  .tlm-topbar__items {
    grid-template-columns: 1fr;
  }

  .tlm-topbar__item:nth-child(n+2) {
    display: none;
  }

  .tlm-header-actions {
    gap: 4px;
  }

  .tlm-header-action {
    display: grid;
    justify-items: center;
    text-align: center;
    font-size: 11px;
  }

  .tlm-header-action svg {
    width: 27px;
    height: 27px;
  }

  .tlm-nav__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .tlm-mobile-menu {
    justify-self: stretch;
  }

  .tlm-category-trigger,
  .tlm-mobile-menu {
    justify-content: flex-start;
  }

  .tlm-mobile-menu svg:first-child {
    margin-right: 2px;
  }
}

/* Homepage motion and richer storefront refresh */
@keyframes tlmFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tlmMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tlmProductFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(1.5deg);
  }
}

.tlm-header-main {
  background: #070c0f;
}

.tlm-logo,
.tlm-logo img,
.tlm-custom-logo {
  background: transparent;
}

.tlm-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(6, 10, 13, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.admin-bar .tlm-nav {
  top: 32px;
}

.tlm-hero {
  min-height: clamp(560px, 68vh, 760px);
  isolation: isolate;
}

.tlm-hero::after {
  content: none;
}

.tlm-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 12, 0.96) 0%, rgba(5, 9, 12, 0.84) 34%, rgba(5, 9, 12, 0.36) 64%, rgba(5, 9, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 9, 12, 0.14) 0%, rgba(5, 9, 12, 0.44) 100%);
}

.tlm-hero__slides,
.tlm-hero__slide {
  position: absolute;
  inset: 0;
}

.tlm-hero__slides {
  z-index: 0;
  overflow: hidden;
}

.tlm-hero__slide {
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5600ms ease;
}

.tlm-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.tlm-hero__inner {
  min-height: clamp(560px, 68vh, 760px);
}

.tlm-hero__content {
  width: min(100%, 620px);
  padding: 76px 0 112px;
  animation: tlmFadeUp 800ms ease both;
}

.tlm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-left: 3px solid var(--tlm-yellow);
  background: rgba(255, 196, 0, 0.08);
  color: #ffd657;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tlm-hero h1,
.tlm-hero p,
.tlm-hero__features {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.tlm-hero__dots {
  bottom: 42px;
}

.tlm-hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition: width 180ms ease, background-color 180ms ease;
}

.tlm-hero__dots button.is-active {
  width: 28px;
  background: var(--tlm-yellow);
}

.tlm-hero__arrow {
  background: rgba(8, 13, 18, 0.58);
  transition: background-color 180ms ease, transform 180ms ease;
}

.tlm-hero__arrow:hover {
  background: rgba(255, 196, 0, 0.88);
  color: #080d12;
}

.tlm-products {
  padding: 8px 0 36px;
}

.tlm-product-block,
.tlm-category-showcases,
.tlm-product-rail-section {
  padding: 20px 0 42px;
}

.tlm-product-grid {
  gap: 14px;
}

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

.tlm-product-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tlm-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 196, 0, 0.14) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.tlm-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 18px 34px rgba(8, 13, 18, 0.13);
}

.tlm-product-card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.tlm-product-card:hover .tlm-product-card__image img {
  animation: tlmProductFloat 1.8s ease-in-out infinite;
}

.tlm-product-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  min-height: 36px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tlm-product-card--compact,
.tlm-product-card--mini {
  min-height: 252px;
}

.tlm-product-card--rail {
  flex: 0 0 220px;
  min-height: 276px;
}

.tlm-product-rail {
  overflow: hidden;
  padding: 2px max(22px, calc((100vw - 1200px) / 2)) 12px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.tlm-product-rail__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: tlmMarquee 46s linear infinite;
}

.tlm-product-rail:hover .tlm-product-rail__track {
  animation-play-state: paused;
}

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

.tlm-category-showcase {
  min-width: 0;
}

.tlm-category-showcase header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--tlm-line);
}

.tlm-category-showcase h3 {
  margin: 0;
  color: #151a20;
  font-size: 18px;
  font-weight: 900;
}

.tlm-category-showcase header a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a6500;
  font-size: 13px;
  font-weight: 900;
}

.tlm-category-showcase header svg {
  width: 15px;
  height: 15px;
}

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

html.tlm-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

html.tlm-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.tlm-motion-ready .tlm-product-rail [data-reveal] {
  opacity: 1;
  transform: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

html.tlm-motion-ready .tlm-product-grid [data-reveal]:nth-child(2n),
html.tlm-motion-ready .tlm-mini-product-grid [data-reveal]:nth-child(2n) {
  transition-delay: 70ms;
}

html.tlm-motion-ready .tlm-product-grid [data-reveal]:nth-child(3n) {
  transition-delay: 140ms;
}

@media (max-width: 1180px) {
  .tlm-product-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tlm-hero,
  .tlm-hero__inner {
    min-height: 580px;
  }

  .tlm-hero__content {
    padding: 66px 0 106px;
  }

  .tlm-hero__slide {
    background-position: center right;
  }

  .tlm-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 9, 12, 0.94), rgba(5, 9, 12, 0.66)),
      linear-gradient(180deg, rgba(5, 9, 12, 0.12), rgba(5, 9, 12, 0.58));
  }

  .tlm-category-showcases__grid,
  .tlm-mini-product-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 782px) {
  .admin-bar .tlm-nav {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .tlm-hero,
  .tlm-hero__inner {
    min-height: 620px;
  }

  .tlm-hero__slide {
    background-position: 64% center;
  }

  .tlm-hero__content {
    padding: 54px 0 96px;
  }

  .tlm-hero__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tlm-product-grid--wide,
  .tlm-product-grid,
  .tlm-mini-product-grid {
    grid-template-columns: 1fr;
  }

  .tlm-product-card--rail {
    flex-basis: 205px;
  }
}

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

  .tlm-product-rail__track {
    animation: none;
  }
}

/* Product detail, favorites and cart/favorite interactions */
.tlm-product-card__footer button,
.tlm-favorite-card .tlm-product-card__footer button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #d9dee4;
  border-radius: 5px;
  background: var(--tlm-white);
  color: #151b22;
}

.tlm-product-card__footer button.is-active,
.tlm-single-favorite.is-active {
  border-color: rgba(255, 196, 0, 0.78);
  background: rgba(255, 196, 0, 0.14);
  color: #b17e00;
}

body.home .tlm-product-grid > .tlm-product-card:nth-child(4n),
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 196, 0, 0.18), transparent 36%),
    linear-gradient(150deg, #0b1014, #161d22);
  color: var(--tlm-white);
}

body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) h3,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) h3,
body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) h3 a,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) h3 a,
body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) .tlm-product-card__price,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) .tlm-product-card__price {
  color: var(--tlm-white);
}

body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) .tlm-product-card__brand,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) .tlm-product-card__brand {
  color: #ffd85c;
}

.tlm-category-showcase__body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
}

.tlm-category-showcase__image {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #edf0f3;
}

.tlm-category-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 326px;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 260ms ease, opacity 260ms ease;
}

.tlm-category-showcase__image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 5px;
  background: rgba(255, 196, 0, 0.94);
  color: #10140f;
  font-weight: 900;
}

.tlm-category-showcase__image:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.tlm-cart-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tlm-cart-toast {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 9999;
  width: min(360px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 8px;
  background: #0b1115;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.tlm-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tlm-cart-toast strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.tlm-cart-toast div {
  display: flex;
  gap: 10px;
}

.tlm-cart-toast .tlm-button {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 12px;
}

.woocommerce-message .tlm-button,
.woocommerce-error .tlm-button,
.woocommerce-info .tlm-button {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 12px;
}

.tlm-single-product {
  padding: 34px 0 58px;
  background: #ffffff;
}

.tlm-single-product__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 42px;
}

.tlm-single-gallery {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
}

.tlm-single-gallery__thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.tlm-single-gallery__thumbs button {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding: 8px;
  border: 1px solid #e1e6eb;
  border-radius: 6px;
  background: #ffffff;
}

.tlm-single-gallery__thumbs button.is-active {
  border-color: var(--tlm-yellow);
  box-shadow: 0 0 0 2px rgba(255, 196, 0, 0.16);
}

.tlm-single-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tlm-single-gallery__main {
  display: grid;
  place-items: center;
  min-height: 470px;
  padding: 28px;
  border: 1px solid #e4e8ed;
  border-radius: 8px;
  background: #ffffff;
}

.tlm-single-gallery__main img {
  max-height: 390px;
  object-fit: contain;
}

.tlm-single-gallery__main span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #1d252e;
  font-size: 13px;
  font-weight: 700;
}

.tlm-single-summary {
  padding-top: 8px;
}

.tlm-single-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tlm-single-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 5px;
  background: #10161b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.tlm-single-badge--stock {
  background: #d8f6e1;
  color: #087234;
}

.tlm-single-summary h1 {
  margin: 0 0 16px;
  color: #11161c;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 900;
}

.tlm-single-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 0 0 24px;
}

.tlm-single-meta div {
  display: flex;
  gap: 5px;
  min-width: 0;
  color: #4d5864;
  font-size: 13px;
}

.tlm-single-meta dt {
  margin: 0;
  color: #11161c;
  font-weight: 900;
}

.tlm-single-meta dd {
  margin: 0;
}

.tlm-single-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #11161c;
  font-size: 34px;
  font-weight: 900;
}

.tlm-single-price del {
  order: 2;
  color: #8d96a0;
  font-size: 16px;
  font-weight: 700;
}

.tlm-single-price ins {
  text-decoration: none;
}

.tlm-single-price span {
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--tlm-yellow);
  color: #11140f;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.tlm-single-note {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  color: #68727d;
  font-size: 13px;
  font-weight: 800;
}

.tlm-single-cart {
  display: grid;
  grid-template-columns: 130px 1fr 130px 140px;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.tlm-qty {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 5px;
  background: #ffffff;
}

.tlm-qty button,
.tlm-qty input {
  border: 0;
  background: transparent;
  text-align: center;
}

.tlm-qty input {
  width: 100%;
  outline: 0;
}

.tlm-single-promises {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tlm-single-promises span {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: #121820;
  font-size: 12px;
  font-weight: 800;
}

.tlm-single-promises svg {
  width: 31px;
  height: 31px;
  color: #101820;
}

.tlm-single-promises small {
  color: #68727d;
  font-size: 11px;
  line-height: 1.35;
}

.tlm-single-tabs {
  margin-bottom: 42px;
  border-top: 1px solid #e5e9ee;
}

.tlm-single-tabs__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #e5e9ee;
}

.tlm-single-tabs__nav button {
  min-height: 62px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #161c23;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-single-tabs__nav button.is-active {
  border-bottom-color: var(--tlm-yellow);
}

.tlm-single-tab {
  display: none;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 44px;
  align-items: center;
  padding: 26px 0 0;
}

.tlm-single-tab.is-active {
  display: grid;
}

.tlm-single-tab p {
  color: #26313c;
  line-height: 1.8;
}

.tlm-single-tab > img {
  width: 100%;
  border-radius: 8px;
}

.tlm-single-checks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tlm-single-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #303a45;
  font-weight: 700;
}

.tlm-single-checks svg {
  width: 18px;
  height: 18px;
  color: var(--tlm-yellow-dark);
}

.tlm-spec-table {
  display: grid;
  gap: 10px;
}

.tlm-spec-table div {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f5f7f9;
}

.tlm-single-related {
  overflow: hidden;
}

.tlm-favorites-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tlm-favorites-page .tlm-products-empty[hidden] {
  display: none;
}

.tlm-favorites-page .tlm-products-empty .tlm-button {
  width: max-content;
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .tlm-single-product__hero {
    grid-template-columns: 1fr;
  }

  .tlm-single-cart {
    grid-template-columns: 130px 1fr 140px;
  }

  .tlm-single-favorite {
    grid-column: 2 / 3;
  }

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

@media (max-width: 900px) {
  .tlm-category-showcase__body {
    grid-template-columns: 1fr;
  }

  .tlm-category-showcase__image img {
    min-height: 260px;
  }

  .tlm-single-tab {
    grid-template-columns: 1fr;
  }

  .tlm-single-promises {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tlm-header-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tlm-single-gallery {
    grid-template-columns: 1fr;
  }

  .tlm-single-gallery__thumbs {
    display: flex;
    overflow-x: auto;
  }

  .tlm-single-cart,
  .tlm-single-tabs__nav,
  .tlm-favorites-grid {
    grid-template-columns: 1fr;
  }

  .tlm-single-favorite {
    grid-column: auto;
  }
}

/* Larger storefront cards and category-image product rows */
.tlm-category-showcases__grid {
  grid-template-columns: 1fr;
  gap: 34px;
}

.tlm-category-showcase__body {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
}

.tlm-mini-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tlm-product-grid,
.tlm-product-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tlm-product-card {
  min-height: 326px;
  padding: 20px 18px 18px;
  border-color: #dce2e8;
  box-shadow: 0 12px 28px rgba(8, 13, 18, 0.09);
}

.tlm-product-card__image {
  height: 136px;
}

.tlm-product-card__image img {
  width: 158px;
  height: 126px;
}

.tlm-product-card h3 {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.35;
}

.tlm-product-card__price {
  font-size: 18px;
}

.tlm-product-card__footer {
  margin-top: 16px;
}

.tlm-product-card__footer a,
.tlm-product-card__footer button,
.tlm-favorite-card .tlm-product-card__footer button {
  width: 36px;
  height: 36px;
}

.tlm-product-card__footer svg {
  width: 19px;
  height: 19px;
}

.tlm-product-card--rail {
  flex-basis: 250px;
  min-height: 326px;
}

.tlm-category-showcase__image img {
  min-height: 360px;
}

@media (max-width: 1180px) {
  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlm-category-showcase__body {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlm-category-showcase__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Stronger, larger product cards across home, category rows and shop pages */
.tlm-product-grid,
.tlm-product-grid--wide {
  gap: 22px;
}

.tlm-product-card {
  min-height: 372px;
  padding: 22px 20px 20px;
  border: 1px solid #cfd7df;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(8, 13, 18, 0.12);
}

.tlm-product-card__image {
  height: 166px;
  margin: -4px -2px 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfcfd, #eef2f5);
}

.tlm-product-card__image img {
  width: 184px;
  height: 146px;
}

.tlm-product-card h3 {
  min-height: 42px;
  font-size: 16px;
  line-height: 1.34;
}

.tlm-product-card__brand,
.tlm-product-card__category {
  font-size: 11px;
}

.tlm-product-card__price {
  font-size: 20px;
}

.tlm-product-card__footer {
  gap: 10px;
}

.tlm-product-card__footer span {
  font-size: 13px;
}

.tlm-product-card__footer a,
.tlm-product-card__footer button,
.tlm-favorite-card .tlm-product-card__footer button {
  width: 40px;
  height: 40px;
  border-color: #cfd7df;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(8, 13, 18, 0.08);
}

.tlm-product-card__footer svg {
  width: 20px;
  height: 20px;
}

.tlm-product-card--mini,
.tlm-product-card--compact {
  min-height: 354px;
}

.tlm-product-card--rail {
  flex-basis: 282px;
  min-height: 366px;
}

.tlm-mini-product-grid {
  gap: 18px;
}

.tlm-shop-products {
  gap: 26px 22px;
}

.tlm-shop-products--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlm-shop-card {
  grid-template-rows: 196px 1fr auto;
  min-height: 382px;
  padding: 18px;
  border-color: #cfd7df;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(8, 13, 18, 0.11);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tlm-shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 196, 0, 0.74);
  box-shadow: 0 22px 42px rgba(8, 13, 18, 0.16);
}

.tlm-shop-card__image {
  height: 196px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfcfd, #eef2f5);
}

.tlm-shop-card__image img {
  height: 176px;
}

.tlm-shop-card h2 {
  min-height: 42px;
  font-size: 17px;
  font-weight: 800;
}

.tlm-shop-card__price {
  font-size: 20px;
}

.tlm-shop-card__stock {
  font-size: 14px;
}

.tlm-shop-card__actions {
  gap: 12px;
  margin-top: 16px;
}

.tlm-shop-card__action {
  width: 42px;
  height: 42px;
  border-color: #cfd7df;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(8, 13, 18, 0.08);
}

.tlm-shop-card__action svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1180px) {
  .tlm-shop-products--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .tlm-shop-products--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlm-product-card {
    min-height: 348px;
  }

  .tlm-product-card__image {
    height: 148px;
  }

  .tlm-product-card__image img {
    width: 164px;
    height: 130px;
  }

  .tlm-shop-card,
  .tlm-shop-products--list .tlm-shop-card {
    grid-template-rows: 180px 1fr auto;
    min-height: 356px;
  }

  .tlm-shop-card__image,
  .tlm-shop-products--list .tlm-shop-card__image {
    height: 180px;
  }

  .tlm-shop-card__image img,
  .tlm-shop-products--list .tlm-shop-card__image img {
    height: 160px;
  }
}

@media (max-width: 520px) {
  .tlm-shop-products--grid,
  .tlm-shop-products--list {
    grid-template-columns: 1fr;
  }
}

/* Final overrides: mobile filters first, about animations and fixed WhatsApp */
.tlm-about-feature-clone {
  display: none;
}

.tlm-trust--after-products {
  padding: 0 0 28px;
}

@media (max-width: 980px) {
  .tlm-shop-layout {
    grid-template-columns: 1fr !important;
  }

  .tlm-shop-sidebar {
    order: 1 !important;
  }

  .tlm-shop-content {
    order: 2 !important;
  }
}

@media (max-width: 760px) {
  .tlm-shop-sidebar {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
  }

  .tlm-shop-content {
    min-width: 0;
  }

  .tlm-shop-products--grid,
  .tlm-shop-products--list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid,
  .tlm-favorites-grid,
  .tlm-blog-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tlm-about-features {
    display: flex !important;
    width: max-content;
    gap: 12px;
    overflow: visible;
    margin-bottom: 24px;
    animation: tlmMarquee 38s linear infinite;
    will-change: transform;
  }

  .tlm-about-features:hover {
    animation-play-state: paused;
  }

  .tlm-about-features article,
  .tlm-about-feature-clone {
    display: grid;
    flex: 0 0 220px;
    width: 220px;
    min-height: 180px;
    padding: 22px 16px;
  }

  .tlm-about-features svg {
    width: 40px;
    height: 40px;
    justify-self: center;
  }

  .tlm-about-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(132px, 1fr)) !important;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
  }

  .tlm-about-stats div,
  .tlm-about-stats div:nth-child(2),
  .tlm-about-stats div:last-child {
    min-width: 132px;
    min-height: 108px;
    padding: 18px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .tlm-about-stats svg {
    width: 34px;
    height: 34px;
  }

  .tlm-about-stats strong {
    font-size: 22px;
  }

  .tlm-about-stats span {
    font-size: 11px;
  }

  .tlm-floating-whatsapp {
    position: fixed !important;
    right: auto !important;
    left: 16px !important;
    bottom: 18px !important;
    z-index: 9999 !important;
    display: grid !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.34) !important;
  }

  .tlm-floating-whatsapp .tlm-icon-whatsapp,
  .tlm-floating-whatsapp svg {
    width: 32px !important;
    height: 32px !important;
  }
}

@media (max-width: 430px) {
  .tlm-shop-products--grid,
  .tlm-shop-products--list,
  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid,
  .tlm-favorites-grid,
  .tlm-blog-catalog-grid {
    gap: 9px !important;
  }

  .tlm-about-features article,
  .tlm-about-feature-clone {
    flex-basis: 196px;
    width: 196px;
  }

  .tlm-floating-whatsapp {
    left: 14px !important;
    bottom: 14px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

/* Final mobile polish: two-card product grids, lighter scrolling and clean WhatsApp icon */
.tlm-category-card--clone {
  display: none;
}

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

.tlm-trust__item:nth-child(3n) {
  border-right: 0;
}

.tlm-trust__item:nth-last-child(-n+3) {
  border-bottom: 0;
}

.tlm-icon-whatsapp {
  display: block;
  flex: 0 0 auto;
}

.tlm-header-action--whatsapp .tlm-icon-whatsapp,
.tlm-footer__contact .tlm-icon-whatsapp {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
}

.tlm-button--whatsapp .tlm-icon-whatsapp {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.tlm-floating-whatsapp {
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.32);
}

.tlm-floating-whatsapp .tlm-icon-whatsapp {
  width: 34px;
  height: 34px;
}

@keyframes tlmImagePair {
  0%,
  42% {
    transform: translateX(0);
  }

  50%,
  92% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.tlm-wide-image-slider {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 42px;
}

.tlm-wide-image-slider__viewport {
  overflow: hidden;
  background: #070b0e;
}

.tlm-wide-image-slider__track {
  display: flex;
  width: 200%;
  animation: tlmImagePair 13s ease-in-out infinite;
  will-change: transform;
}

.tlm-wide-image-slider__slide {
  flex: 0 0 50%;
  height: clamp(230px, 34vw, 430px);
}

.tlm-wide-image-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.tlm-blog-catalog-card__image {
  display: grid;
  place-items: center;
  height: 220px;
  background: #f6f8fa;
}

.tlm-blog-catalog-card__image img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 760px) {
  .tlm-category-strip,
  .tlm-category-strip .tlm-container {
    overflow: hidden;
  }

  .tlm-category-strip__panel {
    display: flex;
    width: max-content;
    min-width: max-content;
    grid-template-columns: none !important;
    animation: tlmMarquee 34s linear infinite;
    will-change: transform;
  }

  .tlm-category-strip__panel:hover {
    animation-play-state: paused;
  }

  .tlm-category-card,
  .tlm-category-card--clone {
    display: grid;
    flex: 0 0 166px;
    width: 166px;
    min-height: 154px;
    padding: 15px 10px;
  }

  .tlm-category-card img {
    width: 104px;
    height: 74px;
  }

  .tlm-category-card strong {
    min-height: 36px;
    font-size: 13px;
    line-height: 1.25;
  }

  .tlm-category-card span {
    font-size: 11px;
  }

  .tlm-trust__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .tlm-trust__item {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    min-height: 118px;
    padding: 12px 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .tlm-trust__item svg {
    width: 32px;
    height: 32px;
  }

  .tlm-trust__item span {
    gap: 4px;
    font-size: 9px;
    line-height: 1.3;
  }

  .tlm-trust__item strong {
    font-size: 10px;
    line-height: 1.25;
  }

  .tlm-section-heading {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .tlm-section-heading h2 {
    font-size: 21px;
  }

  .tlm-section-heading a {
    margin-left: auto;
    white-space: nowrap;
  }

  .tlm-products,
  .tlm-product-block,
  .tlm-category-showcases,
  .tlm-info-panels,
  .tlm-brands {
    padding-block: 18px 26px;
  }

  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid,
  .tlm-favorites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .tlm-shop-products--grid,
  .tlm-shop-products--list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .tlm-product-card,
  .tlm-product-card--mini,
  .tlm-product-card--compact {
    min-height: 246px;
    padding: 11px 9px 10px;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(8, 13, 18, 0.07);
  }

  .tlm-product-card::before {
    display: none;
  }

  .tlm-product-card__image {
    height: 88px;
  }

  .tlm-product-card__image img {
    width: auto;
    max-width: 96px;
    height: 82px;
  }

  .tlm-product-card__brand,
  .tlm-product-card__category {
    font-size: 9px;
  }

  .tlm-product-card h3 {
    margin: 7px 0 8px;
    font-size: 12px;
    line-height: 1.28;
  }

  .tlm-product-card h3 a {
    min-height: 31px;
  }

  .tlm-product-card__price {
    font-size: 14px;
  }

  .tlm-product-card__footer {
    gap: 5px;
    margin-top: 8px;
  }

  .tlm-product-card__footer span {
    font-size: 10px;
  }

  .tlm-product-card__footer a,
  .tlm-product-card__footer button,
  .tlm-favorite-card .tlm-product-card__footer button {
    width: 29px;
    height: 29px;
  }

  .tlm-product-card__footer svg {
    width: 16px;
    height: 16px;
  }

  .tlm-shop-card,
  .tlm-shop-products--list .tlm-shop-card {
    grid-template-columns: 1fr;
    grid-template-rows: 108px auto auto !important;
    min-height: 254px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(8, 13, 18, 0.07);
  }

  .tlm-shop-card__image,
  .tlm-shop-products--list .tlm-shop-card__image {
    height: 108px !important;
  }

  .tlm-shop-card__image img,
  .tlm-shop-products--list .tlm-shop-card__image img {
    max-width: 100%;
    height: 94px !important;
  }

  .tlm-shop-card h2 {
    min-height: 32px;
    font-size: 12px;
    line-height: 1.28;
  }

  .tlm-shop-card__price {
    font-size: 14px;
  }

  .tlm-shop-card__stock {
    font-size: 11px;
  }

  .tlm-shop-card__actions,
  .tlm-shop-products--list .tlm-shop-card__actions {
    grid-column: auto;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 8px;
  }

  .tlm-shop-card__action {
    width: 31px;
    height: 31px;
  }

  .tlm-blog-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .tlm-blog-catalog-card__image {
    height: 116px;
  }

  .tlm-blog-catalog-card__body {
    min-height: 132px;
    padding: 12px 10px;
  }

  .tlm-blog-catalog-card__body span {
    font-size: 9px;
  }

  .tlm-blog-catalog-card__body h2 {
    margin: 6px 0 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .tlm-blog-catalog-card__body small {
    font-size: 10px;
  }

  .tlm-blog-catalog-card__body footer a {
    width: 24px;
    height: 24px;
  }

  .tlm-category-showcases__grid,
  .tlm-category-showcase__body,
  .tlm-info-panels__grid,
  .tlm-brands__row,
  .tlm-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .tlm-category-showcase header {
    gap: 10px;
  }

  .tlm-category-showcase__image {
    min-height: 156px;
  }

  .tlm-category-showcase__image img {
    width: auto;
    max-width: 88%;
    height: auto;
    max-height: 132px;
    min-height: 0;
    object-fit: contain;
    opacity: 1;
  }

  .tlm-category-showcase__image span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .tlm-info-card {
    min-height: auto;
    padding: 20px 16px;
  }

  .tlm-newsletter form {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .tlm-support-card {
    grid-template-columns: minmax(0, 1fr) 92px !important;
    gap: 10px;
  }

  .tlm-support-card .tlm-button {
    width: 100%;
  }

  .tlm-support-card img {
    width: 92px;
    height: 86px;
    align-self: end;
    justify-self: end;
  }

  .tlm-footer {
    padding-top: 28px;
  }

  .tlm-footer__grid {
    gap: 22px;
  }

  .tlm-product-block,
  .tlm-category-showcases,
  .tlm-info-panels,
  .tlm-brands,
  .tlm-footer,
  .tlm-wide-image-slider {
    content-visibility: auto;
    contain-intrinsic-size: 1px 560px;
  }

  html.tlm-motion-ready [data-reveal],
  html.tlm-motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tlm-product-card:hover,
  .tlm-shop-card:hover,
  .tlm-blog-catalog-card:hover {
    transform: none;
  }

  .tlm-product-card:hover .tlm-product-card__image img {
    animation: none;
  }

  .tlm-product-rail__track {
    animation-duration: 72s;
  }

  .tlm-wide-image-slider {
    padding-bottom: 26px;
  }

  .tlm-wide-image-slider__slide {
    height: 210px;
  }
}

@media (max-width: 430px) {
  .tlm-category-card,
  .tlm-category-card--clone {
    flex-basis: 152px;
    width: 152px;
  }

  .tlm-product-grid,
  .tlm-product-grid--wide,
  .tlm-mini-product-grid,
  .tlm-favorites-grid {
    gap: 8px !important;
  }

  .tlm-product-card,
  .tlm-product-card--mini,
  .tlm-product-card--compact {
    min-height: 236px;
    padding: 10px 8px;
  }

  .tlm-product-card__image {
    height: 82px;
  }

  .tlm-product-card__image img {
    max-width: 86px;
    height: 76px;
  }

  .tlm-shop-products--grid,
  .tlm-shop-products--list,
  .tlm-blog-catalog-grid {
    gap: 9px !important;
  }

  .tlm-shop-card,
  .tlm-shop-products--list .tlm-shop-card {
    min-height: 244px;
  }

  .tlm-trust__item {
    min-height: 110px;
    padding-inline: 5px;
  }

  .tlm-trust__item span {
    font-size: 8.5px;
  }
}

/* Restore original card design; keep only a small size increase */
body.home .tlm-product-grid > .tlm-product-card:nth-child(4n),
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) {
  background: var(--tlm-white);
  color: inherit;
}

body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) h3,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) h3,
body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) h3 a,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) h3 a {
  color: #242a31;
}

body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) .tlm-product-card__price,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) .tlm-product-card__price {
  color: #11151a;
}

body.home .tlm-product-grid > .tlm-product-card:nth-child(4n) .tlm-product-card__brand,
body.home .tlm-product-grid > .tlm-product-card:nth-child(9n) .tlm-product-card__brand {
  color: #6b7480;
}

.tlm-product-grid,
.tlm-product-grid--wide {
  gap: 16px;
}

.tlm-mini-product-grid {
  gap: 14px;
}

.tlm-product-card {
  min-height: 292px;
  padding: 17px 15px 15px;
  border: 1px solid #e3e7eb;
  border-radius: 8px;
  background: var(--tlm-white);
  box-shadow: 0 9px 20px rgba(8, 13, 18, 0.07);
}

.tlm-product-card__image {
  height: 108px;
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.tlm-product-card__image img {
  width: 128px;
  height: 104px;
  object-fit: contain;
}

.tlm-product-card h3 {
  min-height: auto;
  margin: 8px 0 10px;
  font-size: 14px;
  line-height: 1.35;
}

.tlm-product-card__brand,
.tlm-product-card__category {
  font-size: 10px;
}

.tlm-product-card__price {
  font-size: 16px;
}

.tlm-product-card__footer {
  gap: 8px;
  margin-top: 13px;
}

.tlm-product-card__footer span {
  font-size: 12px;
}

.tlm-product-card__footer a,
.tlm-product-card__footer button,
.tlm-favorite-card .tlm-product-card__footer button {
  width: 32px;
  height: 32px;
  border-color: #d9dee4;
  border-radius: 5px;
  box-shadow: none;
}

.tlm-product-card__footer svg {
  width: 17px;
  height: 17px;
}

.tlm-product-card--mini,
.tlm-product-card--compact {
  min-height: 292px;
}

.tlm-product-card--rail {
  flex-basis: 230px;
  min-height: 294px;
}

.tlm-shop-products {
  gap: 22px 16px;
}

.tlm-shop-products--grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tlm-shop-card {
  grid-template-rows: 170px 1fr auto;
  min-height: 318px;
  padding: 15px;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 9px 22px rgba(8, 13, 18, 0.055);
}

.tlm-shop-card:hover {
  transform: translateY(-3px);
  border-color: #d8e0e7;
  box-shadow: 0 12px 26px rgba(8, 13, 18, 0.08);
}

.tlm-shop-card__image {
  height: 170px;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
}

.tlm-shop-card__image img {
  height: 154px;
  object-fit: contain;
}

.tlm-shop-card h2 {
  min-height: auto;
  font-size: 15px;
  font-weight: 700;
}

.tlm-shop-card__price {
  font-size: 16px;
}

.tlm-shop-card__stock {
  font-size: 13px;
}

.tlm-shop-card__actions {
  gap: 10px;
  margin-top: 11px;
}

.tlm-shop-card__action {
  width: 37px;
  height: 37px;
  border-color: #e0e5ea;
  border-radius: 50%;
  box-shadow: none;
}

.tlm-shop-card__action svg {
  width: 18px;
  height: 18px;
}

.tlm-category-showcase__image {
  min-height: 260px;
  border: 1px solid #e3e7eb;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(8, 13, 18, 0.04);
}

.tlm-category-showcase__image img {
  align-self: center;
  justify-self: center;
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 210px;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  opacity: 1;
}

.tlm-category-showcase__image:hover img {
  transform: scale(1.015);
}

.tlm-products__layout {
  grid-template-columns: 1fr;
}

.tlm-shop-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: auto;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.tlm-shop-pagination li {
  display: block;
  margin: 0;
}

.tlm-shop-pagination a.page-numbers,
.tlm-shop-pagination span.page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 12px;
}

.tlm-product-card__footer .added_to_cart.wc-forward,
.tlm-shop-card__actions .added_to_cart.wc-forward {
  display: none !important;
}

/* Cleaner mobile header */
@media (max-width: 760px) {
  .tlm-topbar {
    display: none;
  }

  .tlm-header-main__inner {
    gap: 12px;
    min-height: auto;
    padding: 12px 0 14px;
  }

  .tlm-logo {
    width: min(48vw, 176px);
  }

  .tlm-logo img,
  .tlm-custom-logo {
    max-height: 68px;
  }

  .tlm-search {
    min-height: 52px;
    border-radius: 7px;
  }

  .tlm-search input {
    padding-inline: 16px;
    font-size: 14px;
  }

  .tlm-search__submit {
    width: 58px;
  }

  .tlm-search__submit svg {
    width: 25px;
    height: 25px;
  }

  .tlm-header-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .tlm-header-action {
    display: grid;
    justify-items: center;
    gap: 4px;
    min-width: 0;
    padding: 6px 2px;
    text-align: center;
    font-size: 0;
  }

  .tlm-header-action svg {
    width: 27px;
    height: 27px;
  }

  .tlm-header-action span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tlm-header-action small {
    display: none;
  }

  .tlm-nav__inner {
    grid-template-columns: 1fr 92px;
    gap: 8px;
    min-height: auto;
    padding: 9px 0;
  }

  .tlm-category-trigger,
  .tlm-mobile-menu {
    min-height: 48px;
    padding-inline: 12px;
    gap: 8px;
    border-radius: 7px;
    font-size: 11px;
  }

  .tlm-mobile-menu {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .tlm-logo {
    width: min(54vw, 160px);
  }

  .tlm-header-action span {
    font-size: 10px;
  }

  .tlm-nav__inner {
    grid-template-columns: 1fr 78px;
  }

  .tlm-category-trigger,
  .tlm-mobile-menu {
    min-height: 46px;
    font-size: 10px;
  }

  .tlm-mobile-menu span {
    display: none;
  }
}

/* Contact checkbox, rail promos and catalog blog layout */
.tlm-checkbox {
  align-items: flex-start;
}

.tlm-checkbox input[type="checkbox"],
.tlm-contact-form-card input[type="checkbox"],
.tlm-newsletter input[type="checkbox"],
.tlm-blog-newsletter input[type="checkbox"] {
  flex: 0 0 16px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 3px;
}

.tlm-contact-form-card .tlm-checkbox {
  display: flex;
  justify-content: flex-start;
  max-width: 360px;
  margin-top: 2px;
  line-height: 1.45;
}

.tlm-blog-page--catalog .tlm-breadcrumb {
  margin-bottom: 22px;
}

.tlm-blog-catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.tlm-blog-catalog-hero .tlm-page-lead {
  margin-bottom: 0;
}

.tlm-blog-category-select select {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #dfe4ea;
  border-radius: 7px;
  background: #ffffff;
  color: #26313c;
  font-size: 13px;
  font-weight: 700;
}

.tlm-blog-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tlm-blog-catalog-card {
  overflow: hidden;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 9px 22px rgba(8, 13, 18, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tlm-blog-catalog-card:hover {
  transform: translateY(-3px);
  border-color: #d8e0e7;
  box-shadow: 0 12px 28px rgba(8, 13, 18, 0.08);
}

.tlm-blog-catalog-card__image {
  display: block;
  overflow: hidden;
  background: #f4f6f8;
}

.tlm-blog-catalog-card__image img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tlm-blog-catalog-card:hover .tlm-blog-catalog-card__image img {
  transform: scale(1.035);
}

.tlm-blog-catalog-card__body {
  display: grid;
  min-height: 150px;
  padding: 18px 18px 16px;
}

.tlm-blog-catalog-card__body span {
  color: #c89100;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tlm-blog-catalog-card__body h2 {
  margin: 8px 0 16px;
  color: #151a20;
  font-size: 17px;
  line-height: 1.34;
  font-weight: 900;
}

.tlm-blog-catalog-card__body footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  align-self: end;
}

.tlm-blog-catalog-card__body small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #59636e;
  font-size: 12px;
  font-weight: 700;
}

.tlm-blog-catalog-card__body footer svg {
  width: 15px;
  height: 15px;
}

.tlm-blog-catalog-card__body footer a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #151a20;
}

.tlm-product-card__footer a.add_to_cart_button:hover,
.tlm-product-card__footer a.ajax_add_to_cart:hover,
.tlm-shop-card__cart:hover {
  border-color: var(--tlm-yellow);
  background: var(--tlm-yellow);
  color: #11140f;
}

@media (max-width: 1180px) {
  .tlm-blog-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .tlm-blog-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlm-blog-catalog-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .tlm-blog-catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .tlm-shop-products--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .tlm-shop-products--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tlm-product-card__image {
    height: 104px;
  }

  .tlm-product-card__image img {
    width: 122px;
    height: 100px;
  }

  .tlm-shop-card,
  .tlm-shop-products--list .tlm-shop-card {
    grid-template-rows: 160px 1fr auto;
    min-height: 304px;
  }

  .tlm-shop-card__image,
  .tlm-shop-products--list .tlm-shop-card__image {
    height: 160px;
  }

  .tlm-shop-card__image img,
  .tlm-shop-products--list .tlm-shop-card__image img {
    height: 146px;
  }
}

@media (max-width: 520px) {
  .tlm-shop-products--grid,
  .tlm-shop-products--list {
    grid-template-columns: 1fr;
  }
}
