/* Taili Packaging: Bosing-inspired, accessible B2B catalogue system. */
:root {
  --tlp-color-primary: #009944;
  --tlp-color-primary-strong: #007a37;
  --tlp-color-primary-soft: #e8f6ee;
  --tlp-color-accent: #009944;
  --tlp-color-accent-strong: #007a37;
  --tlp-color-accent-soft: #e8f6ee;
  --tlp-color-ink: #333333;
  --tlp-color-muted: #555555;
  --tlp-color-subtle: #777777;
  --tlp-color-surface: #fafafa;
  --tlp-color-surface-alt: #f7f7f7;
  --tlp-color-metrics: #f0f5f4;
  --tlp-color-paper: #fdfefd;
  --tlp-color-contact: #f5f5f5;
  --tlp-color-copyright: #e9e9e9;
  --tlp-color-border: #e5e5e5;
  --tlp-color-border-strong: #b8b8b8;
  --tlp-color-footer: #f5f5f5;
  --tlp-color-error: #a61b1b;
  --tlp-color-success: #007a37;
  --tlp-color-overlay: rgb(28 28 28 / 54%);
  --tlp-color-on-dark-muted: rgb(253 254 253 / 78%);
  --tlp-color-on-dark-border: rgb(253 254 253 / 24%);
  --tlp-font-body: "Poppins", Arial, system-ui, sans-serif;
  --tlp-font-heading: "Poppins", Arial, system-ui, sans-serif;
  --tlp-font-navigation: "Poppins", Arial, system-ui, sans-serif;
  --tlp-font-about-body: Arial, Helvetica, sans-serif;
  --tlp-font-about-heading: "Poppins", Arial, system-ui, sans-serif;
  --tlp-text-xs: 0.875rem;
  --tlp-text-sm: 0.8125rem;
  --tlp-text-base: 0.875rem;
  --tlp-text-lg: 1.25rem;
  --tlp-text-xl: 1.5625rem;
  --tlp-text-2xl: 1.953rem;
  --tlp-text-3xl: 2.441rem;
  --tlp-space-1: 0.25rem;
  --tlp-space-2: 0.5rem;
  --tlp-space-3: 0.75rem;
  --tlp-space-4: 1rem;
  --tlp-space-5: 1.5rem;
  --tlp-space-6: 2rem;
  --tlp-space-7: 3rem;
  --tlp-space-8: 4rem;
  --tlp-grid-gap: 1.875rem;
  --tlp-grid-gap-mobile: 0.9375rem;
  --tlp-metrics-gap: 1.25rem;
  --tlp-section-space: 5.5rem;
  --tlp-section-space-mobile: 3rem;
  --tlp-radius-sm: 2px;
  --tlp-radius-md: 4px;
  --tlp-radius-lg: 4px;
  --tlp-radius-image: 1.25rem;
  --tlp-radius-image-mobile: 0.625rem;
  --tlp-shadow-sm: 0 1px 3px rgb(51 51 51 / 7%);
  --tlp-shadow-md: 0 6px 18px rgb(51 51 51 / 9%);
  --tlp-content: 90rem;
  --tlp-copy: 70ch;
  --tlp-target: 2.75rem;
  --tlp-transition: 180ms cubic-bezier(0.22, 1, 0.36, 1);
  --tlp-carousel-ratio: 100 / 40.62;
  --tlp-carousel-min-height: 8rem;
  --tlp-carousel-fade: 500ms;
  --tlp-carousel-zoom: 2s;
  --tlp-carousel-dot: 0.625rem;
  --tlp-metric-media: 6.25rem;
  --tlp-metric-label: 1.25rem;
  --tlp-metric-copy: 14rem;
  --tlp-home-heading-width: 56rem;
  --tlp-home-h2: clamp(2.625rem, 4vw, 3.375rem);
  --tlp-home-h2-mobile: 1.625rem;
  --tlp-home-h3: clamp(1.25rem, 2vw, 1.625rem);
  --tlp-about-title: 2.625rem;
  --tlp-about-heading: 2.125rem;
  --tlp-about-heading-mobile: 1.875rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  font-family: var(--tlp-font-body);
  font-size: 15px;
  line-height: 1.7;
}

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

figcaption {
  font-family: var(--tlp-font-body);
}

img,
video {
  height: auto;
}

[hidden] {
  display: none !important;
}

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

button,
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
}

a {
  color: var(--tlp-color-primary-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--tlp-color-primary-strong);
  text-decoration-thickness: 0.12em;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--tlp-color-accent);
  outline-offset: 3px;
}

::selection {
  background: var(--tlp-color-primary-soft);
  color: var(--tlp-color-ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 var(--tlp-space-4);
  color: var(--tlp-color-ink);
  font-family: var(--tlp-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: var(--tlp-text-lg);
}

p,
ul,
ol,
dl,
blockquote,
pre,
table {
  margin-block: 0 var(--tlp-space-5);
}

p,
.entry-content > :where(ul, ol, blockquote),
.tlp-copy {
  max-width: var(--tlp-copy);
}

hr {
  margin-block: var(--tlp-space-7);
  border: 0;
  border-top: 1px solid var(--tlp-color-border);
}

blockquote {
  padding: var(--tlp-space-5);
  border: 1px solid var(--tlp-color-border);
  background: var(--tlp-color-paper);
  font-size: var(--tlp-text-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--tlp-color-paper);
}

th,
td {
  padding: var(--tlp-space-3) var(--tlp-space-4);
  border-bottom: 1px solid var(--tlp-color-border);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--tlp-color-ink);
  font-weight: 700;
}

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

.screen-reader-text:focus,
.sr-only:focus {
  position: fixed;
  z-index: 1000;
  top: var(--tlp-space-4);
  left: var(--tlp-space-4);
  width: auto;
  height: auto;
  padding: var(--tlp-space-3) var(--tlp-space-4);
  clip: auto;
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  white-space: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--tlp-space-3);
  left: var(--tlp-space-3);
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-4);
  transform: translateY(-200%);
  background: var(--tlp-color-ink);
  color: var(--tlp-color-paper);
}

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

.site,
.tlp-site {
  min-height: 100dvh;
}

.site-content,
.tlp-main {
  min-width: 0;
}

.tlp-container,
.site-header__inner,
.site-footer__inner,
.site-main > :where(:not(.alignfull):not(.site-hero):not(.tlp-hero)),
.entry-content > :where(:not(.alignfull):not(.alignwide)) {
  width: min(100% - 2rem, var(--tlp-content));
  margin-inline: auto;
}

.alignwide {
  width: min(100% - 2rem, calc(var(--tlp-content) + 8rem));
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

.tlp-section,
.site-main > section {
  padding-block: clamp(var(--tlp-space-7), 7vw, 5.5rem);
}

.tlp-main > .tlp-container {
  padding-block: var(--tlp-space-7);
}

.tlp-section--alt {
  background: var(--tlp-color-surface-alt);
}

.tlp-eyebrow,
.product-card__category,
.tlp-label {
  margin-bottom: var(--tlp-space-2);
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-xs);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.tlp-button,
.wp-block-button__link,
button,
input[type="submit"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tlp-target);
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-5);
  border: 1px solid var(--tlp-color-primary-strong);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-primary-strong);
  color: var(--tlp-color-paper);
  font-family: var(--tlp-font-body);
  font-size: var(--tlp-text-base);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--tlp-transition), border-color var(--tlp-transition), color var(--tlp-transition), box-shadow var(--tlp-transition);
}

.tlp-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  border-color: var(--tlp-color-primary);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-button--secondary,
.is-style-outline > .wp-block-button__link,
button.is-secondary {
  background: transparent;
  color: var(--tlp-color-primary-strong);
}

.tlp-button--secondary:hover,
.is-style-outline > .wp-block-button__link:hover,
button.is-secondary:hover {
  background: var(--tlp-color-primary-soft);
  color: var(--tlp-color-ink);
}

.tlp-button--accent {
  border-color: var(--tlp-color-accent);
  background: var(--tlp-color-accent);
  color: var(--tlp-color-paper);
}

.tlp-button--accent:hover {
  border-color: var(--tlp-color-accent-strong);
  background: var(--tlp-color-accent-strong);
  color: var(--tlp-color-paper);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.site-header,
.tlp-header {
  position: relative;
  z-index: 50;
  background: var(--tlp-color-paper);
  box-shadow: none;
}

.site-header__inner,
.tlp-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--tlp-space-3) var(--tlp-space-5);
  min-height: 5.25rem;
  padding-block: var(--tlp-space-3);
}

.tlp-brand-row {
  background: var(--tlp-color-paper);
}

.tlp-brand-row__inner {
  display: flex;
  min-height: 4.6875rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--tlp-space-3);
}

.site-branding,
.tlp-branding {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: var(--tlp-space-3);
}

.tlp-brand-row .tlp-branding {
  margin-right: auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--tlp-target);
}

.custom-logo {
  width: auto;
  height: auto;
  max-width: min(12rem, 58vw);
  max-height: 3rem;
}

.site-title {
  margin: 0;
  font-family: var(--tlp-font-heading);
  font-size: var(--tlp-text-lg);
  font-weight: 700;
  line-height: 1.2;
}

.site-title a {
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.site-description {
  margin: 0;
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
}

.tlp-header-call {
  display: none;
  gap: 0 var(--tlp-space-4);
  color: var(--tlp-color-subtle);
  font-size: var(--tlp-text-xs);
  line-height: 1.15;
  text-align: right;
}

.tlp-header-call > span {
  grid-column: 1 / -1;
}

.tlp-header-call a {
  display: inline-flex;
  min-width: 0;
  min-height: var(--tlp-target);
  align-items: center;
  color: var(--tlp-color-primary);
  font-size: var(--tlp-text-lg);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.tlp-primary-nav-band {
  min-height: 0;
  background: var(--tlp-color-primary);
}

.tlp-primary-nav-band__inner {
  display: grid;
  min-height: 0;
  align-items: center;
}

.menu-toggle,
.tlp-nav-toggle,
[data-nav-toggle] {
  display: none;
  flex: 0 0 var(--tlp-target);
  width: auto;
  padding: var(--tlp-space-2);
}

.tlp-brand-row .menu-toggle,
.tlp-brand-row .tlp-nav-toggle,
.tlp-brand-row [data-nav-toggle] {
  min-width: 4rem;
  min-height: var(--tlp-target);
  padding-inline: var(--tlp-space-4);
  border-color: var(--tlp-color-primary);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
  outline-color: var(--tlp-color-primary);
}

.tlp-brand-row .menu-toggle:hover,
.tlp-brand-row .tlp-nav-toggle:hover,
.tlp-brand-row [data-nav-toggle]:hover,
.tlp-brand-row [aria-expanded="true"] {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary-strong);
}

.site-navigation,
.main-navigation,
.tlp-navigation {
  min-width: 0;
  font-family: var(--tlp-font-navigation);
}

.site-navigation ul,
.main-navigation ul,
.tlp-navigation ul,
.site-navigation .menu,
.main-navigation .menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation li,
.main-navigation li,
.tlp-navigation li {
  min-width: 0;
}

.site-navigation a,
.main-navigation a,
.tlp-navigation a {
  display: flex;
  align-items: center;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-3);
  color: var(--tlp-color-paper);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-decoration: none;
  word-break: normal;
  transition: background-color var(--tlp-transition), color var(--tlp-transition);
}

.site-navigation a:hover,
.main-navigation a:hover,
.tlp-navigation a:hover,
.current-menu-item > a,
.current_page_item > a {
  background: var(--tlp-color-primary-strong);
  color: var(--tlp-color-paper);
}

.js .site-navigation.is-enhanced:not(.is-open),
.js .main-navigation.is-enhanced:not(.is-open),
.js .tlp-navigation.is-enhanced:not(.is-open) {
  display: none;
}

.tlp-site-banner {
  position: relative;
  width: 100%;
  aspect-ratio: var(--tlp-carousel-ratio);
  min-height: var(--tlp-carousel-min-height);
  overflow: hidden;
  background: var(--tlp-color-surface-alt);
  isolation: isolate;
}

.tlp-site-banner__track,
.tlp-site-banner__slide {
  width: 100%;
  height: 100%;
}

.tlp-site-banner__track {
  position: relative;
}

.tlp-site-banner__slide {
  position: absolute;
  inset: 0;
}

.tlp-site-banner.is-enhanced .tlp-site-banner__slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tlp-carousel-fade) ease-in, visibility 0s linear var(--tlp-carousel-fade);
}

.tlp-site-banner.is-enhanced .tlp-site-banner__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--tlp-carousel-fade) ease-in;
}

.tlp-site-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tlp-site-banner.is-enhanced .tlp-site-banner__slide.is-active .tlp-site-banner__image {
  animation: tlp-banner-zoom var(--tlp-carousel-zoom) ease both;
}

.tlp-site-banner.is-enhanced .tlp-site-banner__dots {
  display: flex;
}

@keyframes tlp-banner-zoom {
  from {
    transform: scale(1.3);
  }

  to {
    transform: scale(1);
  }
}

.tlp-site-banner__dots {
  position: absolute;
  z-index: 3;
  bottom: 23px;
  left: 50%;
  display: none;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
}

.tlp-site-banner__dots button {
  width: var(--tlp-target);
  min-width: var(--tlp-target);
  height: var(--tlp-target);
  min-height: var(--tlp-target);
  margin-inline: -15px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tlp-site-banner__dots button:first-child {
  margin-left: 0;
}

.tlp-site-banner__dots button:last-child {
  margin-right: 0;
}

.tlp-site-banner__dots button::before {
  display: block;
  width: var(--tlp-carousel-dot);
  height: var(--tlp-carousel-dot);
  margin-inline: auto;
  border: 0;
  border-radius: 50%;
  background: #e6e6e6;
  content: "";
}

.tlp-site-banner__dots button[aria-pressed="true"]::before {
  background: var(--tlp-color-primary);
}

.tlp-breadcrumbs {
  width: min(100% - 2rem, var(--tlp-content));
  margin-inline: auto;
  padding-block: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
}

.tlp-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-1) var(--tlp-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: var(--tlp-space-2);
}

.tlp-breadcrumbs li:not(:last-child)::after {
  color: var(--tlp-color-border-strong);
  content: "/";
}

.tlp-breadcrumbs a {
  display: inline-flex;
  min-height: var(--tlp-target);
  align-items: center;
}

.site-hero,
.tlp-hero {
  position: relative;
  display: grid;
  min-height: clamp(29rem, 72dvh, 48rem);
  overflow: hidden;
  background: var(--tlp-color-primary-strong);
  color: var(--tlp-color-paper);
  isolation: isolate;
}

.site-hero > img,
.tlp-hero > img,
.site-hero__media,
.tlp-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-hero::after,
.tlp-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--tlp-color-overlay);
  content: "";
}

.site-hero__inner,
.tlp-hero__inner {
  display: flex;
  width: min(100% - 2rem, var(--tlp-content));
  margin-inline: auto;
  padding-block: var(--tlp-space-8);
  align-items: flex-end;
}

.site-hero__content,
.tlp-hero__content {
  max-width: 52rem;
}

.site-hero :where(h1, h2, h3),
.tlp-hero :where(h1, h2, h3) {
  color: var(--tlp-color-paper);
}

.site-hero p,
.tlp-hero p {
  max-width: 60ch;
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-lg);
}

.tlp-actions,
.product-actions,
.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-3);
  align-items: center;
}

.tlp-section-header {
  display: grid;
  gap: var(--tlp-space-3);
  margin-bottom: var(--tlp-space-6);
}

.tlp-section-header > :last-child {
  margin-bottom: 0;
}

.tlp-category-list,
.tlp-strength-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--tlp-space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-category-list a,
.tlp-strength-list li {
  display: flex;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-3) var(--tlp-space-4);
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.tlp-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--tlp-space-6);
}

.tlp-service-grid article {
  padding-top: var(--tlp-space-5);
  border-top: 2px solid var(--tlp-color-accent);
}

.tlp-proof-list {
  display: grid;
  gap: var(--tlp-space-7);
}

.tlp-proof {
  display: grid;
  gap: var(--tlp-space-5);
  padding-top: var(--tlp-space-5);
  border-top: 1px solid var(--tlp-color-border);
}

.tlp-proof__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-surface-alt);
}

.tlp-proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-filters,
.tlp-filters,
[data-product-filter] {
  display: grid;
  gap: var(--tlp-space-4);
  margin-bottom: var(--tlp-space-6);
  padding: var(--tlp-space-4);
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.product-filters__group,
.tlp-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2);
  align-items: end;
}

.product-filters__group > .tlp-field,
.tlp-filter-group > .tlp-field {
  min-width: 0;
  flex: 1 1 14rem;
  margin-bottom: 0;
}

.product-filters label,
.tlp-filters label {
  font-size: var(--tlp-text-sm);
  font-weight: 700;
}

.product-archive__products .product-filters {
  gap: var(--tlp-space-3);
  margin-bottom: var(--tlp-space-5);
  padding: var(--tlp-space-3) 0;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
}

.product-archive__products .product-filters__group > .tlp-field {
  flex-basis: 12rem;
}

.product-archive__products .product-filters label {
  font-size: var(--tlp-text-xs);
}

.product-archive__products .product-filters .tlp-actions {
  gap: var(--tlp-space-2);
}

.product-archive__products .product-filters .tlp-button {
  padding-inline: var(--tlp-space-4);
}

.product-filter-count,
[data-filter-count] {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
  font-variant-numeric: tabular-nums;
}

.product-grid,
.tlp-product-grid,
.products-grid,
.wp-block-post-template.is-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--tlp-space-5);
  align-items: stretch;
}

.product-card,
.tlp-product-card,
.type-product {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform var(--tlp-transition);
}

.product-card:hover,
.tlp-product-card:hover,
.type-product:hover {
  transform: translateY(-2px);
}

.product-card__media,
.tlp-product-card__media,
.type-product .post-thumbnail {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.product-card__media img,
.tlp-product-card__media img,
.type-product .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tlp-transition);
}

.product-card:hover .product-card__media img,
.tlp-product-card:hover .tlp-product-card__media img,
.type-product:hover .post-thumbnail img {
  transform: scale(1.02);
}

.product-card__content,
.tlp-product-card__content,
.type-product .entry-header,
.type-product .entry-summary {
  padding: var(--tlp-space-4) 0 0;
}

.product-card__content,
.tlp-product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card__title,
.tlp-product-card__title,
.type-product .entry-title {
  margin-bottom: var(--tlp-space-2);
  font-size: var(--tlp-text-xs);
  font-weight: 500;
  line-height: 1.3;
}

.product-card__title a,
.tlp-product-card__title a,
.type-product .entry-title a {
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.product-card__summary,
.tlp-product-card__summary {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
}

.product-card__actions,
.tlp-product-card__actions {
  display: flex;
  gap: var(--tlp-space-2);
  margin-top: auto;
  padding-top: var(--tlp-space-4);
}

.tlp-product-card__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--tlp-color-surface-alt);
}

.product-archive__products > .tlp-product-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tlp-space-5) var(--tlp-space-4);
}

.product-archive__products > .tlp-product-grid .tlp-product-card {
  transform: none;
}

.product-archive__products > .tlp-product-grid .tlp-product-card__media {
  aspect-ratio: 1;
}

.product-archive__products > .tlp-product-grid .tlp-product-card__content {
  padding-top: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-primary-soft);
}

.product-archive__products > .tlp-product-grid :where(.tlp-product-card__category, .tlp-product-card__summary, .tlp-product-card__actions) {
  display: none;
}

.product-archive__products > .tlp-product-grid :where(.tlp-product-card__title, .tlp-product-card__content h3) {
  margin-bottom: var(--tlp-space-3);
  font-size: var(--tlp-text-xs);
  font-weight: 500;
  line-height: 1.4;
}

.product-card[hidden],
.tlp-product-card[hidden],
[data-product-card][hidden] {
  display: none;
}

.product-detail,
.tlp-product-detail {
  display: grid;
  gap: var(--tlp-space-6);
  padding-block: var(--tlp-space-6);
}

.product-gallery,
.tlp-gallery,
[data-product-gallery] {
  min-width: 0;
}

.product-gallery__main,
.tlp-gallery__main,
[data-gallery-main] {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-paper);
}

.product-gallery__main img,
.tlp-gallery__main img,
[data-gallery-main] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbnails,
.tlp-gallery__thumbnails,
[data-gallery-thumbnails] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
  gap: var(--tlp-space-2);
  margin-top: var(--tlp-space-3);
}

.product-gallery__thumbnail,
.tlp-gallery__thumbnail,
[data-gallery-thumb] {
  display: grid;
  min-width: var(--tlp-target);
  min-height: var(--tlp-target);
  padding: var(--tlp-space-1);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-paper);
}

.product-gallery__thumbnail:hover,
.tlp-gallery__thumbnail:hover,
[data-gallery-thumb]:hover,
.product-gallery__thumbnail[aria-current="true"],
.tlp-gallery__thumbnail[aria-current="true"],
[data-gallery-thumb][aria-current="true"] {
  border-color: var(--tlp-color-primary-strong);
  box-shadow: inset 0 0 0 1px var(--tlp-color-primary-strong);
}

.product-gallery__thumbnail img,
.tlp-gallery__thumbnail img,
[data-gallery-thumb] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary,
.tlp-product-summary {
  align-self: start;
}

.tlp-product-single__content {
  min-width: 0;
}

.tlp-product-single__content .tlp-product-detail {
  padding-block: 0 var(--tlp-space-6);
}

.tlp-product-single__content .tlp-gallery__main {
  aspect-ratio: 1;
}

.tlp-product-single__content .tlp-gallery__thumbnails {
  display: flex;
  overflow-x: auto;
  padding-bottom: var(--tlp-space-1);
}

.tlp-product-single__content .tlp-gallery__thumbnail {
  width: 4.5rem;
  flex: 0 0 4.5rem;
}

.tlp-product-single__content .tlp-gallery__thumbnail img {
  object-fit: cover;
}

.tlp-product-single__content .tlp-product-summary h1 {
  font-size: var(--tlp-text-2xl);
}

.tlp-product-single__content .tlp-product-summary > :last-child {
  margin-bottom: 0;
}

.tlp-product-single__content > .tlp-section {
  padding-block: var(--tlp-space-6);
}

.tlp-product-single__content > .tlp-section > h2,
.tlp-product-single__content .tlp-inquiry__intro h2 {
  padding-bottom: var(--tlp-space-2);
  border-bottom: 1px solid var(--tlp-color-primary);
  font-size: var(--tlp-text-xl);
}

.tlp-product-single__content .entry-content > :where(:not(.alignfull):not(.alignwide)) {
  width: auto;
  margin-inline: 0;
}

.product-specifications,
.tlp-specifications {
  margin-block: var(--tlp-space-6);
  border-top: 1px solid var(--tlp-color-border);
}

.product-specifications > div,
.tlp-specifications > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.4fr) 1fr;
  gap: var(--tlp-space-4);
  padding-block: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
}

.product-specifications dt,
.tlp-specifications dt {
  font-weight: 700;
}

.product-specifications dd,
.tlp-specifications dd {
  margin: 0;
}

label,
legend {
  color: var(--tlp-color-ink);
  font-weight: 700;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: var(--tlp-space-4);
  border: 1px solid var(--tlp-color-border);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
select,
textarea {
  width: 100%;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-3);
  border: 1px solid var(--tlp-color-border-strong);
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  line-height: 1.4;
  transition: border-color var(--tlp-transition), box-shadow var(--tlp-transition);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--tlp-color-muted);
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--tlp-color-primary-strong);
  box-shadow: 0 0 0 3px var(--tlp-color-primary-soft);
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: var(--tlp-color-primary-strong);
}

.inquiry-form,
.tlp-inquiry-form,
.wpcf7-form {
  display: grid;
  max-width: 52rem;
  gap: var(--tlp-space-4);
}

.tlp-inquiry {
  display: grid;
  gap: var(--tlp-space-6);
  padding-inline: clamp(var(--tlp-space-4), 4vw, var(--tlp-space-7));
  background: var(--tlp-color-surface-alt);
}

.inquiry-form__grid,
.tlp-form-grid {
  display: grid;
  gap: var(--tlp-space-4);
}

.inquiry-form__field,
.tlp-field,
.wpcf7-form-control-wrap {
  display: grid;
  gap: var(--tlp-space-2);
}

.inquiry-form__help,
.tlp-field-help {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
}

.inquiry-form__error,
.tlp-field-error,
.wpcf7-not-valid-tip {
  color: var(--tlp-color-error);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
}

.inquiry-notice,
.tlp-notice,
.wpcf7-response-output {
  padding: var(--tlp-space-4);
  border: 1px solid var(--tlp-color-border-strong);
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-paper);
}

.inquiry-notice--success,
.tlp-notice--success {
  border-color: var(--tlp-color-success);
  background: var(--tlp-color-primary-soft);
}

.inquiry-notice--error,
.tlp-notice--error {
  border-color: var(--tlp-color-error);
}

.tlp-video,
.product-video,
.wp-block-video,
.wp-block-embed__wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-primary-strong);
}

.tlp-video,
.product-video,
.wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}

.tlp-video :where(video, iframe),
.product-video :where(video, iframe),
.wp-block-embed__wrapper :where(video, iframe) {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

/* External poster cards (Facebook/YouTube fallback) inside .tlp-video keep the
   16:9 media box; the play button floats center and the CTA floats at the bottom. */
.tlp-video .tlp-video-external-poster {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.tlp-video .tlp-video-external-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tlp-video .tlp-video-external-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tlp-video .tlp-video-external-poster:hover .tlp-video-external-poster__play,
.tlp-video .tlp-video-external-poster:focus-visible .tlp-video-external-poster__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.tlp-video .tlp-video-external-poster__cta {
  position: absolute;
  right: var(--tlp-space-3);
  bottom: var(--tlp-space-3);
  display: inline-flex;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-4);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tlp-color-paper);
  border-radius: 999px;
  background: rgb(0 0 0 / 55%);
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background-color var(--tlp-transition), color var(--tlp-transition), border-color var(--tlp-transition);
}

.tlp-video .tlp-video-external-poster:hover .tlp-video-external-poster__cta,
.tlp-video .tlp-video-external-poster:focus-visible .tlp-video-external-poster__cta {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.gallery,
.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: var(--tlp-space-4);
}

.gallery-item,
.wp-block-image {
  margin: 0;
}

.gallery-item img,
.wp-block-image img {
  border-radius: var(--tlp-radius-sm);
}

.wp-caption,
.gallery-caption,
.wp-element-caption {
  max-width: 100%;
  margin-top: var(--tlp-space-2);
  color: var(--tlp-color-muted);
  font-family: var(--tlp-font-body);
  font-size: var(--tlp-text-xs);
}

.pagination,
.nav-links,
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2);
  align-items: center;
}

.nav-links a,
.nav-links .current,
a.page-numbers,
span.page-numbers {
  display: inline-flex;
  min-width: var(--tlp-target);
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.nav-links a:hover,
a.page-numbers:hover,
.nav-links .current,
span.page-numbers.current {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary-soft);
}

.site-footer,
.tlp-footer {
  margin-top: var(--tlp-space-8);
  background: var(--tlp-color-footer);
  color: var(--tlp-color-ink);
}

.site-footer__inner,
.tlp-footer__inner {
  display: grid;
  gap: var(--tlp-space-6);
  padding-block: var(--tlp-space-8);
}

.tlp-footer-contact {
  background: var(--tlp-color-contact);
}

.tlp-footer-contact__inner {
  padding-block: var(--tlp-space-7);
}

.footer-contact {
  min-width: 0;
}

.footer-contact h2 {
  width: fit-content;
  margin-bottom: var(--tlp-space-5);
  padding-bottom: var(--tlp-space-2);
  border-bottom: 2px solid var(--tlp-color-primary);
}

.footer-contact__layout,
.footer-contact__details {
  display: grid;
  min-width: 0;
  gap: var(--tlp-space-5);
}

.footer-contact__details {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  color: var(--tlp-color-muted);
  font-style: normal;
}

.footer-contact__address,
.footer-contact__list {
  min-width: 0;
  margin: 0;
}

.footer-contact__address p {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-contact__label,
.footer-contact__list dt {
  color: var(--tlp-color-subtle);
  font-size: var(--tlp-text-xs);
  font-style: normal;
  font-weight: 700;
}

.footer-contact__label {
  display: block;
  margin-bottom: var(--tlp-space-2);
}

.footer-contact__list > div {
  display: grid;
  min-height: var(--tlp-target);
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: var(--tlp-space-3);
  align-items: center;
  border-bottom: 1px solid var(--tlp-color-border);
}

.footer-contact__list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-contact__whatsapp-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2) var(--tlp-space-4);
  align-items: center;
}

.footer-contact a {
  color: var(--tlp-color-primary-strong);
}

.footer-contact .footer-contact__whatsapp {
  justify-self: start;
  color: var(--tlp-color-paper);
  white-space: nowrap;
}

.tlp-footer-copyright {
  background: var(--tlp-color-copyright);
  color: var(--tlp-color-subtle);
}

.tlp-footer-copyright__inner {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tlp-footer-copyright .site-info {
  margin: 0;
  font-size: var(--tlp-text-xs);
}

.site-footer :where(h2, h3, h4),
.tlp-footer :where(h2, h3, h4) {
  color: var(--tlp-color-ink);
  font-size: var(--tlp-text-lg);
}

.site-footer a,
.tlp-footer a {
  color: var(--tlp-color-primary-strong);
}

.site-footer ul,
.tlp-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  display: inline-flex;
  min-height: var(--tlp-target);
  align-items: center;
}

.entry-content {
  overflow-wrap: break-word;
}

.entry-content > * + * {
  margin-top: var(--tlp-space-5);
}

.entry-meta,
.post-meta {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
}

.page-header {
  margin-bottom: var(--tlp-space-6);
  padding-bottom: var(--tlp-space-5);
  border-bottom: 1px solid var(--tlp-color-border);
}

.page-header > :last-child {
  margin-bottom: 0;
}

.news-item--single,
.news-item.news-item--single {
  display: block;
  width: 100%;
  max-width: var(--tlp-content);
  margin-inline: auto;
  padding-block: var(--tlp-space-7) var(--tlp-space-8);
}

.news-item.news-item--single.news-item--has-thumbnail {
  grid-template-columns: none;
}

.news-item--single .post-thumbnail {
  max-width: 52rem !important;
  margin-inline: auto !important;
  margin-bottom: var(--tlp-space-7);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.news-item--single .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item--single .entry-header {
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: var(--tlp-space-6);
}

.news-item--single .entry-title {
  margin-bottom: var(--tlp-space-3);
  color: var(--tlp-color-ink);
  font-family: var(--tlp-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.news-item--single .entry-meta {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
  text-align: right;
}

.news-item--single .entry-content {
  max-width: 52rem;
  margin-inline: auto;
  color: var(--tlp-color-ink);
  font-size: var(--tlp-text-base);
  line-height: 1.7;
}

.news-item--single .entry-content > :where(:not(.alignfull):not(.alignwide)) {
  width: auto;
}

.news-item--single .entry-content h2,
.news-item--single .entry-content h3 {
  margin-top: var(--tlp-space-7);
  color: var(--tlp-color-primary-strong);
}

.news-item--single .entry-content a {
  color: var(--tlp-color-primary-strong);
}

.news-item--single .entry-content img {
  height: auto;
  border-radius: var(--tlp-radius-sm);
}

@media (max-width: 47.99rem) {
  .news-item--single {
    padding-block: var(--tlp-space-5) var(--tlp-space-6);
  }

  .news-item--single .entry-title {
    font-size: 1.5rem;
  }
}

.news-list,
.tlp-main .search-results {
  display: grid;
  gap: 0;
  margin-bottom: var(--tlp-space-6);
  border-top: 1px solid var(--tlp-color-border);
}

.news-item,
.search-result {
  display: grid;
  gap: var(--tlp-space-4);
  padding-block: var(--tlp-space-6);
  border-bottom: 1px solid var(--tlp-color-border);
}

.news-item .post-thumbnail {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.news-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item .entry-title,
.search-result .entry-title {
  font-size: var(--tlp-text-xl);
}

.tlp-product-card__content h3 {
  font-size: var(--tlp-text-xs);
  font-weight: 500;
  line-height: 1.3;
}

.news-item .entry-title a,
.search-result .entry-title a {
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--tlp-space-2);
  max-width: 42rem;
  margin-bottom: var(--tlp-space-6);
}

.search-form label {
  min-width: 0;
}

.error-404 {
  min-height: 55dvh;
}

.entry-header,
.tlp-video-archive > .entry-content {
  margin-bottom: var(--tlp-space-6);
}

.tlp-container > article > .post-thumbnail {
  aspect-ratio: 16 / 9;
  margin-bottom: var(--tlp-space-6);
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.tlp-container > article > .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-archive__layout {
  display: grid;
  min-width: 0;
  gap: var(--tlp-space-6);
  align-items: start;
}

.product-archive__sidebar,
.product-archive__products {
  min-width: 0;
}

.product-archive__sidebar {
  overflow: hidden;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-paper);
}

.product-archive__sidebar h2 {
  display: flex;
  min-height: var(--tlp-target);
  margin: 0;
  padding: var(--tlp-space-3) var(--tlp-space-4);
  align-items: center;
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-lg);
}

.tlp-product-navigation,
.tlp-product-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-product-navigation ul {
  padding-left: var(--tlp-space-3);
  background: var(--tlp-color-surface-alt);
}

.tlp-product-navigation__toggle,
.tlp-product-navigation a {
  display: flex;
  width: 100%;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-3);
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--tlp-color-border);
  border-radius: 0;
  background: transparent;
  color: var(--tlp-color-ink);
  font-weight: 500;
  overflow-wrap: anywhere;
  text-align: left;
  text-decoration: none;
  transition: color var(--tlp-transition);
}

.tlp-product-navigation__toggle::after {
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 1.125rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--tlp-color-muted);
  content: "›";
  font-family: Tahoma, Arial, sans-serif;
  font-size: var(--tlp-text-sm);
  font-weight: 400;
  line-height: 1;
  padding-bottom: 1px;
  text-indent: 1px;
  transform: rotate(0);
  transition: color var(--tlp-transition), transform var(--tlp-transition);
}

.tlp-product-navigation__toggle.is-expanded::after {
  transform: rotate(90deg);
}

.tlp-product-navigation__children a {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
  font-weight: 500;
}

.tlp-product-navigation__toggle:hover,
.tlp-product-navigation__toggle.is-expanded,
.tlp-product-navigation a:hover,
.tlp-product-navigation a[aria-current="page"] {
  background: var(--tlp-color-primary-soft);
  color: var(--tlp-color-primary-strong);
}

.tlp-product-navigation__toggle:hover::after,
.tlp-product-navigation__toggle.is-expanded::after {
  color: var(--tlp-color-primary-strong);
}

.tlp-product-navigation__toggle:focus-visible,
.tlp-product-navigation a:focus-visible {
  outline-offset: -3px;
}

.tlp-product-navigation a:hover,
.tlp-product-navigation a[aria-current="page"] {
  width: calc(100% + var(--tlp-space-3));
  margin-left: calc(-1 * var(--tlp-space-3));
  padding-left: calc(var(--tlp-space-3) * 2);
  padding-right: var(--tlp-space-3);
  font-weight: 700;
}

.product-archive__header {
  display: block;
  margin-bottom: var(--tlp-space-4);
  padding-bottom: var(--tlp-space-3);
  border-bottom-color: var(--tlp-color-primary);
}

.product-archive__header h1 {
  margin-bottom: 0;
  font-size: var(--tlp-text-2xl);
}

.product-archive__header .archive-description {
  margin-top: var(--tlp-space-3);
}

.product-archive__header .archive-description > :last-child {
  margin-bottom: 0;
}

.product-archive__products .navigation {
  margin-top: var(--tlp-space-7);
}

.product-archive__products .pagination,
.product-archive__products .pagination .nav-links {
  justify-content: center;
}

.sticky {
  border-color: var(--tlp-color-accent);
}

.bypostauthor {
  font-weight: inherit;
}

.wp-block-group,
.wp-block-columns {
  min-width: 0;
}

/* Inner pages and contact */
.tlp-contact-layout,
.tlp-main > .tlp-container:has(> .tlp-inquiry) {
  display: grid;
  min-width: 0;
  gap: var(--tlp-space-6);
  align-items: start;
}

.tlp-inner-content,
.tlp-contact-content {
  min-width: 0;
}

.tlp-inner-header {
  margin-bottom: var(--tlp-space-6);
  padding-bottom: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
  box-shadow: inset 0 -3px 0 var(--tlp-color-primary);
}

.tlp-inner-header h1 {
  margin: 0;
  font-size: var(--tlp-text-2xl);
}

.tlp-inner-header .tlp-eyebrow {
  margin-bottom: var(--tlp-space-2);
}

.tlp-inner-content .entry-content > :where(:not(.alignfull):not(.alignwide)),
.tlp-contact-content .entry-content > :where(:not(.alignfull):not(.alignwide)) {
  width: auto;
  margin-inline: 0;
}

.tlp-inner-content > .post-thumbnail,
.tlp-contact-content > .post-thumbnail {
  aspect-ratio: 16 / 9;
  margin-bottom: var(--tlp-space-6);
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.tlp-inner-content > .post-thumbnail img,
.tlp-contact-content > .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlp-inner-content .gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tlp-inner-content .gallery-item {
  width: auto;
  max-width: none;
  min-width: 0;
}

.tlp-inner-content .gallery-icon,
.tlp-inner-content .gallery-icon a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tlp-color-surface-alt);
}

.tlp-inner-content .gallery-item img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.tlp-inner-content--qualifications-honor .gallery-item img,
.tlp-inner-content--partners .gallery-item img {
  object-fit: contain;
}

.news-item__content {
  min-width: 0;
}

.news-item__content > :last-child {
  margin-bottom: 0;
}

.tlp-news-more {
  display: inline-flex;
  min-height: var(--tlp-target);
  align-items: center;
  font-weight: 700;
}

.tlp-contact-layout > .tlp-inquiry,
.tlp-main > .tlp-container:has(> .tlp-inquiry) > .tlp-inquiry {
  padding-block: var(--tlp-space-6);
}

.tlp-contact-layout .tlp-inquiry-form,
.tlp-main > .tlp-container:has(> .tlp-inquiry) .tlp-inquiry-form {
  max-width: none;
}

@media (min-width: 42rem) {
  .tlp-container,
  .site-header__inner,
  .site-footer__inner,
  .site-main > :where(:not(.alignfull):not(.site-hero):not(.tlp-hero)),
  .entry-content > :where(:not(.alignfull):not(.alignwide)),
  .alignwide,
  .site-hero__inner,
  .tlp-hero__inner,
  .tlp-breadcrumbs {
    width: min(100% - 3rem, var(--tlp-content));
  }

  .tlp-section,
  .site-main > section {
    padding-block: var(--tlp-space-8);
  }

  .tlp-section-header {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.65fr);
    align-items: end;
  }

  .product-filters,
  .tlp-filters,
  [data-product-filter] {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .inquiry-form__grid,
  .tlp-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-form__field--full,
  .tlp-field--full {
    grid-column: 1 / -1;
  }

  .site-footer__inner,
  .tlp-footer__inner {
    grid-template-columns: minmax(14rem, 1.4fr) repeat(2, minmax(10rem, 1fr));
  }

  .footer-contact__layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .footer-contact .footer-contact__whatsapp {
    justify-self: end;
  }

  .news-item:has(.post-thumbnail) {
    grid-template-columns: minmax(12rem, 0.4fr) minmax(0, 1fr);
  }

  .tlp-proof {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

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

@media (max-width: 51.99rem) {
  .product-archive__sidebar {
    position: static;
    width: 100%;
  }

  .tlp-inner-content .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 71.99rem) {
  .js .menu-toggle.is-enhanced,
  .js .tlp-nav-toggle.is-enhanced,
  .js [data-nav-toggle].is-enhanced {
    display: inline-flex;
  }

  .site-navigation,
  .main-navigation,
  .tlp-navigation {
    width: 100%;
    overflow-x: hidden;
  }

  .site-navigation ul,
  .main-navigation ul,
  .tlp-navigation ul,
  .site-navigation .menu,
  .main-navigation .menu {
    padding-block: var(--tlp-space-2);
  }

  .site-navigation a,
  .main-navigation a,
  .tlp-navigation a {
    justify-content: center;
    border-top: 1px solid rgb(253 254 253 / 20%);
    text-align: center;
  }

  .tlp-site-banner__dots {
    bottom: 3%;
  }
}

@media (min-width: 52rem) {
  .site-header__inner,
  .tlp-header__inner {
    flex-wrap: nowrap;
  }

  .news-item--has-thumbnail {
    grid-template-columns: minmax(15rem, 18.75rem) minmax(0, 1fr);
  }

  .tlp-contact-layout,
  .tlp-main > .tlp-container:has(> .tlp-inquiry) {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
    gap: var(--tlp-space-7);
    align-items: start;
  }

  .tlp-contact-layout > .tlp-inquiry,
  .tlp-main > .tlp-container:has(> .tlp-inquiry) > .tlp-inquiry {
    padding-top: 0;
  }

  .tlp-inquiry {
    grid-template-columns: minmax(13rem, 0.45fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 72rem) {
  .tlp-brand-row__inner {
    min-height: 5rem;
  }

  .custom-logo {
    max-width: 12.5rem;
    max-height: 3.125rem;
  }

  .tlp-header-call {
    display: grid;
    grid-template-columns: repeat(2, auto);
    margin-left: auto;
  }

  .menu-toggle,
  .tlp-nav-toggle,
  [data-nav-toggle] {
    display: none;
  }

  .tlp-primary-nav-band,
  .tlp-primary-nav-band__inner {
    min-height: 3.375rem;
  }

  .site-navigation,
  .main-navigation,
  .tlp-navigation,
  .js .site-navigation.is-enhanced:not(.is-open),
  .js .main-navigation.is-enhanced:not(.is-open),
  .js .tlp-navigation.is-enhanced:not(.is-open) {
    display: block;
    width: 100%;
  }

  .site-navigation ul,
  .main-navigation ul,
  .tlp-navigation ul,
  .site-navigation .menu,
  .main-navigation .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 1.25rem;
    padding: 0;
  }

  .site-navigation a,
  .main-navigation a,
  .tlp-navigation a {
    min-height: 3.375rem;
    padding-inline: var(--tlp-space-3);
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
}

@media (min-width: 52.01rem) {
  .product-archive__layout {
    grid-template-columns: 17.3125rem minmax(0, 1fr);
    gap: var(--tlp-space-6);
  }

  .product-archive__sidebar {
    position: sticky;
    top: var(--tlp-space-5);
  }

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

  .tlp-product-single__content .tlp-product-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--tlp-space-5);
  }

  .tlp-product-single__content .tlp-product-summary {
    position: sticky;
    top: var(--tlp-space-5);
  }
}

@media (max-width: 36rem) {
  .tlp-inner-content .gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-specifications > div,
  .tlp-specifications > div {
    grid-template-columns: 1fr;
    gap: var(--tlp-space-1);
  }

  .tlp-actions > *,
  .product-actions > *,
  .inquiry-actions > *,
  .product-card__actions > *,
  .tlp-product-card__actions > * {
    flex: 1 1 100%;
  }

  .table-scroll,
  .wp-block-table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

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

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

  .tlp-site-banner__slide,
  .tlp-site-banner__image,
  .tlp-site-banner__dots button {
    animation: none !important;
    transition: none !important;
  }
}

@media (forced-colors: active) {
  :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline-color: Highlight;
  }

  .tlp-product-navigation a[aria-current="page"] {
    outline: 2px solid Highlight;
    outline-offset: -2px;
  }

  .tlp-site-banner__dots button[aria-pressed="true"] {
    border: 2px solid ButtonText;
    forced-color-adjust: auto;
  }

  .product-card,
  .tlp-product-card,
  .type-product {
    border: 1px solid CanvasText;
  }
}

/* Homepage */
.home .tlp-footer {
  margin-top: 0;
}

.home .tlp-main :where(h1, h2, h3) {
  letter-spacing: 0;
  text-wrap: balance;
}

.tlp-home-carousel {
  overflow: hidden;
  background: var(--tlp-color-paper);
}

.tlp-home-advantages,
.tlp-home-process,
.tlp-home-honor,
.tlp-home-products,
.tlp-home-environment {
  padding-block: var(--tlp-space-8);
  background: var(--tlp-color-paper);
}

.tlp-home-advantages {
  padding-block: var(--tlp-space-5) var(--tlp-space-8);
}

.tlp-home-process,
.tlp-home-products {
  background: var(--tlp-color-surface-alt);
}

.tlp-home-environment {
  background: var(--tlp-color-paper);
}

.tlp-home-section-header {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.65fr);
  gap: var(--tlp-space-5);
  margin-bottom: var(--tlp-space-6);
  padding-bottom: var(--tlp-space-5);
  align-items: end;
  border-bottom: 1px solid var(--tlp-color-border-strong);
}

.tlp-home-section-header > :last-child {
  margin-bottom: 0;
}

.tlp-home-section-header h2 {
  margin-bottom: 0;
  color: var(--tlp-color-primary-strong);
  font-size: clamp(2rem, 3vw, 3rem);
}

.tlp-home-section-header > p {
  color: var(--tlp-color-ink);
  font-size: var(--tlp-text-base);
}

.tlp-home-section-header .tlp-link {
  display: inline-flex;
  min-height: var(--tlp-target);
  align-items: center;
  justify-self: end;
  font-weight: 700;
}

.tlp-home-advantages__timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-home-advantages__header {
  position: relative;
  display: grid;
  min-height: 12.5rem;
  margin-bottom: 0;
  padding-block: var(--tlp-space-7);
  place-items: center;
  background: var(--tlp-color-primary-strong);
  color: var(--tlp-color-paper);
  text-align: center;
}

.tlp-home-advantages__header::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: var(--tlp-space-8);
  height: var(--tlp-space-6);
  transform: translateX(-50%);
  background: var(--tlp-color-primary-strong);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.tlp-home-advantages__header h2 {
  margin-bottom: var(--tlp-space-3);
  color: var(--tlp-color-paper);
  font-size: clamp(2rem, 3vw, 3rem);
}

.tlp-home-advantages__header p {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-base);
  line-height: 1.7;
}

.tlp-home-advantages__timeline::before {
  position: absolute;
  top: calc(var(--tlp-space-6) - 1px);
  bottom: var(--tlp-space-6);
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: var(--tlp-color-primary);
  content: "";
}

.tlp-home-advantage {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 16rem;
  grid-template-columns: minmax(0, 1fr) 4.375rem minmax(0, 1fr);
  gap: var(--tlp-space-5);
  padding-block: var(--tlp-space-5);
  align-items: center;
}

.tlp-home-advantage__media {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  margin: 0;
}

.tlp-home-advantage__copy {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
}

.tlp-home-advantage--reverse .tlp-home-advantage__media {
  grid-column: 3;
}

.tlp-home-advantage--reverse .tlp-home-advantage__copy {
  grid-column: 1;
}

.tlp-home-advantage__marker {
  z-index: 1;
  display: grid;
  width: 4.375rem;
  min-width: 4.375rem;
  height: 3.75rem;
  min-height: 3.75rem;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
}

.tlp-home-advantage__marker span {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--tlp-color-primary);
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-lg);
  font-weight: 700;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.tlp-home-advantage__marker span::before {
  position: absolute;
  z-index: -1;
  inset: 2px;
  background: var(--tlp-color-paper);
  clip-path: inherit;
  content: "";
}

.tlp-home-advantage__image-frame,
.tlp-home-process__media,
.tlp-home-honor__media,
.tlp-home-environment__media {
  overflow: hidden;
  border: 1px solid var(--tlp-color-border);
  background: var(--tlp-color-paper);
}

.tlp-home-advantage__image-frame {
  aspect-ratio: 2 / 1;
  border: 0;
}

.tlp-home-advantage__image-frame img,
.tlp-home-process__media img,
.tlp-home-honor__media img,
.tlp-home-environment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlp-home-process__media img,
.tlp-home-honor__media img {
  object-fit: cover;
}

.tlp-home-advantage__copy h3 {
  margin-bottom: var(--tlp-space-4);
  padding-bottom: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border-strong);
  color: var(--tlp-color-primary-strong);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
}

.tlp-home-advantage__copy > p,
.tlp-home-honor__notice,
.tlp-home-environment__notice {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-base);
}

.tlp-home-advantage__copy > p {
  max-width: 68ch;
  margin-bottom: 0;
  line-height: 1.7;
}

.tlp-home-process__grid,
.tlp-home-honor__grid,
.tlp-home-product-grid,
.tlp-home-environment__grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--tlp-space-5) var(--tlp-space-4);
}

.tlp-home-process__item,
.tlp-home-honor__item,
.tlp-home-environment__item {
  min-width: 0;
  margin: 0;
}

.tlp-home-process__item a,
.tlp-home-honor__item a,
.tlp-home-environment__item a {
  display: block;
  min-height: var(--tlp-target);
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.tlp-home-process__media,
.tlp-home-honor__media,
.tlp-home-environment__media {
  aspect-ratio: 4 / 3;
}

.tlp-home-process__item figcaption,
.tlp-home-honor__item figcaption,
.tlp-home-environment__item figcaption {
  min-height: var(--tlp-target);
  padding-block: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
  font-size: var(--tlp-text-base);
  font-weight: 700;
}

.tlp-home-honor__notice,
.tlp-home-environment__notice {
  max-width: var(--tlp-copy);
  margin-top: calc(var(--tlp-space-2) * -1);
  margin-bottom: var(--tlp-space-6);
  font-size: var(--tlp-text-base);
}

.tlp-home-product-grid .tlp-product-card {
  transform: none;
}

.tlp-home-product-grid .tlp-product-card__media {
  aspect-ratio: 1;
}

.tlp-home-product-grid .tlp-product-card__content {
  padding-block: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-primary-soft);
}

.tlp-home-product-grid .tlp-product-card__category,
.tlp-home-product-grid .tlp-product-card__summary,
.tlp-home-product-grid .tlp-product-card__actions {
  display: none;
}

.tlp-home-product-grid .tlp-product-card__title,
.tlp-home-product-grid .tlp-product-card__content h3 {
  margin: 0;
  font-size: var(--tlp-text-base);
  line-height: 1.4;
}

.tlp-home-environment__item--lead {
  grid-column: span 2;
}

.tlp-home-environment__item--lead .tlp-home-environment__media {
  aspect-ratio: 8 / 3;
}

@media (min-width: 72rem) {
  .tlp-home-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 71.99rem) {
  .tlp-home-process__grid,
  .tlp-home-honor__grid,
  .tlp-home-product-grid,
  .tlp-home-environment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlp-home-section-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 51.99rem) {
  .tlp-home-advantage {
    min-height: 0;
    grid-template-columns: 3.1875rem minmax(0, 1fr);
    gap: var(--tlp-space-4);
    padding-block: var(--tlp-space-6);
  }

  .tlp-home-advantages__timeline::before {
    top: calc(var(--tlp-space-6) - 1px);
    bottom: var(--tlp-space-6);
    left: 1.59375rem;
  }

  .tlp-home-advantage__marker,
  .tlp-home-advantage--reverse .tlp-home-advantage__marker {
    width: 3.1875rem;
    min-width: 3.1875rem;
    height: 2.75rem;
    min-height: 2.75rem;
    grid-column: 1;
    grid-row: 1;
  }

  .tlp-home-advantage__media,
  .tlp-home-advantage--reverse .tlp-home-advantage__media {
    grid-column: 2;
    grid-row: 1;
  }

  .tlp-home-advantage__copy,
  .tlp-home-advantage--reverse .tlp-home-advantage__copy {
    grid-column: 2;
    grid-row: 2;
  }

  .tlp-home-advantage__copy h3 {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
  }
}

@media (max-width: 36rem) {
  .tlp-home-advantages,
  .tlp-home-process,
  .tlp-home-honor,
  .tlp-home-products,
  .tlp-home-environment {
    padding-block: var(--tlp-space-7);
  }

  .tlp-home-advantages {
    padding-top: var(--tlp-space-5);
  }

  .tlp-home-advantages__header {
    min-height: 10rem;
    margin-bottom: 0;
    padding-block: var(--tlp-space-6);
  }

  .tlp-home-section-header {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--tlp-space-3);
    align-items: start;
  }

  .tlp-home-section-header .tlp-link {
    justify-self: start;
  }

  .tlp-home-process__grid,
  .tlp-home-honor__grid,
  .tlp-home-product-grid,
  .tlp-home-environment__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlp-home-environment__item--lead {
    grid-column: span 1;
  }

  .tlp-home-environment__item--lead .tlp-home-environment__media {
    aspect-ratio: 4 / 3;
  }

}

.home .tlp-home-metrics {
  padding-block: 2.5rem;
  background: var(--tlp-color-metrics);
}

.tlp-home-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tlp-grid-gap-mobile);
}

.tlp-home-metric {
  display: grid;
  min-width: 0;
  gap: 1.5rem;
  margin: 0;
  padding: 1.25rem 5%;
  justify-items: center;
  background: var(--tlp-color-paper);
  text-align: center;
}

.tlp-home-metric--last {
  grid-column: 1 / -1;
}

.tlp-home-metric__media {
  width: var(--tlp-metric-media);
  height: var(--tlp-metric-media);
  overflow: hidden;
  background: transparent;
}

.tlp-home-metric__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlp-home-metric figcaption {
  max-width: var(--tlp-metric-copy);
  font-family: var(--tlp-font-body);
  font-size: var(--tlp-metric-label);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tlp-home-metrics__note {
  margin: var(--tlp-space-5) auto 0;
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-xs);
  text-align: center;
}

.home .tlp-home-advantages {
  padding-block: 0 var(--tlp-section-space-mobile);
  background: var(--tlp-color-paper);
}

.home .tlp-home-process,
.home .tlp-home-honor,
.home .tlp-home-products,
.home .tlp-home-environment {
  padding-block: var(--tlp-section-space-mobile);
}

.home .tlp-home-process,
.home .tlp-home-products {
  background: var(--tlp-color-metrics);
}

.home .tlp-home-honor,
.home .tlp-home-environment {
  background: var(--tlp-color-paper);
}

.home .tlp-home-section-header {
  display: grid;
  max-width: var(--tlp-home-heading-width);
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tlp-space-3);
  margin: 0 auto var(--tlp-space-7);
  padding: 0;
  justify-items: center;
  border: 0;
  text-align: center;
}

.home .tlp-home-section-header h2,
.home .tlp-home-advantages__header h2 {
  margin-bottom: 0;
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-home-h2-mobile);
}

.home .tlp-home-advantages__header h2 {
  color: var(--tlp-color-paper);
}

.home .tlp-home-section-header > p,
.home .tlp-home-section-header .tlp-link {
  justify-self: center;
}

.home .tlp-home-section-header > p {
  margin-inline: auto;
  color: var(--tlp-color-muted);
}

.home .tlp-home-advantages__header {
  min-height: 0;
  padding-block: var(--tlp-section-space-mobile);
}

.home .tlp-home-advantage {
  gap: var(--tlp-grid-gap-mobile);
}

.home .tlp-home-advantage__copy h3 {
  font-size: var(--tlp-home-h3);
}

.home .tlp-home-process__grid,
.home .tlp-home-honor__grid,
.home .tlp-home-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tlp-grid-gap-mobile);
}

.home .tlp-home-environment__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tlp-grid-gap-mobile);
}

.home .tlp-home-process__media,
.home .tlp-home-product-grid .tlp-product-card__media,
.home .tlp-home-environment__media {
  aspect-ratio: 1;
}

.home .tlp-home-process__item figcaption,
.home .tlp-home-honor__item figcaption,
.home .tlp-home-product-grid :where(.tlp-product-card__title, .tlp-product-card__content h3),
.home .tlp-home-environment__item figcaption {
  font-size: var(--tlp-text-xs);
  font-weight: 500;
}

.home .tlp-home-process__item figcaption,
.home .tlp-home-honor__item figcaption {
  border-bottom-color: var(--tlp-color-border);
  text-align: center;
}

.home .tlp-home-honor__notice,
.home .tlp-home-environment__notice {
  margin: calc(var(--tlp-space-5) * -1) auto var(--tlp-space-6);
  text-align: center;
}

.home .tlp-home-product-grid .tlp-product-card__content {
  padding-top: var(--tlp-space-3);
}

.home .tlp-home-product-grid :where(.tlp-product-card__title, .tlp-product-card__content h3) {
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.home .tlp-home-environment__item--lead {
  grid-column: span 1;
}

.home .tlp-home-environment__item a {
  position: relative;
  overflow: hidden;
  background: var(--tlp-color-ink);
}

.home .tlp-home-environment__item--lead .tlp-home-environment__media {
  aspect-ratio: 1;
}

.home .tlp-home-environment__item figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  margin: 0;
  padding: var(--tlp-space-3) var(--tlp-space-4);
  align-items: center;
  border: 0;
  background: var(--tlp-color-overlay);
  color: var(--tlp-color-paper);
}

@media (min-width: 42rem) {
  .home .tlp-home-environment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 52rem) {
  .home .tlp-home-section-header h2,
  .home .tlp-home-advantages__header h2 {
    font-size: var(--tlp-home-h2);
  }
}

@media (min-width: 72rem) {
  .home .tlp-home-metrics {
    padding-block: 1.25rem var(--tlp-section-space);
  }

  .home .tlp-home-process,
  .home .tlp-home-honor,
  .home .tlp-home-products,
  .home .tlp-home-environment {
    padding-block: var(--tlp-section-space);
  }

  .home .tlp-home-advantages {
    padding-bottom: var(--tlp-section-space);
  }

  .home .tlp-home-advantages__header {
    padding-block: var(--tlp-space-7);
  }

  .tlp-home-metrics__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--tlp-metrics-gap);
  }

  .tlp-home-metric--last {
    grid-column: auto;
  }

  .home .tlp-home-process__grid,
  .home .tlp-home-product-grid,
  .home .tlp-home-environment__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--tlp-grid-gap);
  }

  .home .tlp-home-product-grid > :nth-child(5):nth-last-child(2),
  .home .tlp-home-environment__grid > :nth-child(5):nth-last-child(2) {
    grid-column: 2;
  }

  .home .tlp-home-honor__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--tlp-grid-gap);
  }

  .home .tlp-home-advantage {
    gap: var(--tlp-grid-gap);
  }
}

/* Dedicated About and Contact pages */
.tlp-about {
  font-family: var(--tlp-font-about-body);
  letter-spacing: 0;
}

.tlp-about .tlp-container {
  width: min(92%, var(--tlp-content));
}

.tlp-about :where(h1, h2, h3) {
  font-family: var(--tlp-font-about-heading);
  letter-spacing: 0;
}

.tlp-about h1 {
  font-size: var(--tlp-about-title);
}

.tlp-about h2 {
  font-size: var(--tlp-about-heading);
}

.tlp-about h3 {
  font-size: var(--tlp-text-lg);
}

.tlp-about__section {
  padding-block: var(--tlp-space-8);
}

.tlp-about__section:nth-of-type(even) {
  background: var(--tlp-color-metrics);
}

.tlp-about__section:nth-of-type(odd) {
  background: var(--tlp-color-paper);
}

.tlp-about__story-layout {
  display: grid;
  gap: var(--tlp-space-7);
}

.tlp-about__split,
.tlp-about__quality-layout,
.tlp-about__mission-layout {
  display: grid;
  min-width: 0;
  gap: var(--tlp-space-8);
  align-items: center;
}

.tlp-about__media,
.tlp-about__quality-media,
.tlp-about__factory-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--tlp-radius-image);
  background: var(--tlp-color-surface-alt);
}

.tlp-about__media {
  aspect-ratio: 4 / 3;
  box-shadow: var(--tlp-space-3) var(--tlp-space-3) 0 var(--tlp-color-primary-soft);
}

.tlp-about__story-media {
  width: 100%;
  aspect-ratio: 2 / 1;
}

.tlp-about__media img,
.tlp-about__factory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlp-about__copy {
  min-width: 0;
}

.tlp-about__copy > :last-child,
.tlp-about__section-heading > :last-child,
.tlp-about__factory-heading > :last-child,
.tlp-about__factory-heading > div > :last-child {
  margin-bottom: 0;
}

.tlp-about__lead {
  color: var(--tlp-color-ink);
  font-size: var(--tlp-text-lg);
  line-height: 1.7;
}

.tlp-about__story .tlp-about__lead p {
  max-width: none;
  font-size: 1.375rem;
  letter-spacing: 0;
  line-height: 1.875rem;
}

.tlp-about__story .tlp-about__lead p:last-child {
  margin-bottom: 0;
}

.tlp-about__section-heading {
  max-width: var(--tlp-copy);
  margin-bottom: var(--tlp-space-7);
}

.tlp-about__quality {
  background: var(--tlp-color-metrics);
  color: var(--tlp-color-ink);
}

.tlp-about__quality :where(h2, .tlp-eyebrow) {
  color: var(--tlp-color-primary-strong);
}

.tlp-about__quality p {
  color: var(--tlp-color-muted);
}

.tlp-about__quality-media {
  background: var(--tlp-color-paper);
}

.tlp-about__quality-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tlp-about__quality-media figcaption {
  padding: var(--tlp-space-3) var(--tlp-space-4);
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-xs);
}

.tlp-about__light-button {
  border-color: var(--tlp-color-primary);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-about__light-button:hover,
.tlp-about__light-button:focus-visible {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary-strong);
  color: var(--tlp-color-paper);
}

.tlp-about__reason-list,
.tlp-about__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-about__reason-list li,
.tlp-about__timeline li {
  display: grid;
  min-width: 0;
  gap: var(--tlp-space-5);
  padding-block: var(--tlp-space-5);
  border-top: 1px solid var(--tlp-color-border);
}

.tlp-about__reason-list li {
  grid-template-columns: var(--tlp-space-8) minmax(0, 1fr);
}

.tlp-about__reason-list li:last-child,
.tlp-about__timeline li:last-child {
  border-bottom: 1px solid var(--tlp-color-border);
}

.tlp-about__reason-list li > span,
.tlp-about__timeline :where(time, li > span) {
  color: var(--tlp-color-primary-strong);
  font-family: var(--tlp-font-about-heading);
  font-size: var(--tlp-text-lg);
  font-weight: 700;
}

.tlp-about__reason-list h3,
.tlp-about__timeline h3 {
  margin-bottom: var(--tlp-space-2);
}

.tlp-about__reason-list p,
.tlp-about__timeline p {
  margin: 0;
  color: var(--tlp-color-muted);
}

.tlp-about__timeline li {
  grid-template-columns: var(--tlp-space-8) minmax(0, 1fr);
}

.tlp-about__mission {
  padding-block: var(--tlp-space-8);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-about__mission :where(h2, .tlp-eyebrow) {
  color: var(--tlp-color-paper);
}

.tlp-about__mission-layout > div:last-child {
  padding-top: var(--tlp-space-5);
  border-top: 1px solid var(--tlp-color-on-dark-border);
}

.tlp-about__values {
  margin: 0;
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-lg);
  font-weight: 700;
}

.tlp-about__factory-heading {
  display: flex;
  gap: var(--tlp-space-6);
  margin-bottom: var(--tlp-space-7);
  align-items: end;
  justify-content: space-between;
}

.tlp-about__factory-heading > div {
  max-width: var(--tlp-copy);
}

.tlp-about__factory-heading > .tlp-link {
  flex: 0 0 auto;
}

.tlp-about__factory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tlp-space-5);
}

.tlp-about__factory-image {
  aspect-ratio: 4 / 3;
}

.tlp-contact-page > .tlp-container {
  padding-block: var(--tlp-space-8);
}

.tlp-contact-page__intro {
  margin-bottom: var(--tlp-space-7);
  padding-bottom: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
  box-shadow: inset 0 -3px 0 var(--tlp-color-primary);
}

.tlp-contact-page__intro h1 {
  font-size: var(--tlp-about-title);
}

.tlp-contact-page__intro > :last-child {
  margin-bottom: 0;
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-lg);
}

.tlp-contact-page__layout {
  display: grid;
  min-width: 0;
  gap: var(--tlp-space-7);
  align-items: start;
}

.tlp-contact-panel {
  min-width: 0;
  padding: var(--tlp-space-7);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-primary-strong);
  color: var(--tlp-color-paper);
}

.tlp-contact-panel :where(h2, .tlp-eyebrow) {
  color: var(--tlp-color-paper);
}

.tlp-contact-panel > p:not(.tlp-eyebrow) {
  color: var(--tlp-color-on-dark-muted);
}

.tlp-contact-panel__address {
  margin-top: var(--tlp-space-6);
  font-style: normal;
}

.tlp-contact-panel__list {
  margin: 0;
}

.tlp-contact-panel__list > div {
  display: grid;
  gap: var(--tlp-space-1);
  padding-block: var(--tlp-space-4);
  border-top: 1px solid var(--tlp-color-on-dark-border);
}

.tlp-contact-panel__list > div:last-child {
  padding-bottom: 0;
}

.tlp-contact-panel__list dt {
  color: var(--tlp-color-on-dark-muted);
  font-size: var(--tlp-text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.tlp-contact-panel__list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.tlp-contact-panel__whatsapp-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2) var(--tlp-space-3);
  align-items: center;
}

.tlp-contact-panel__list a {
  color: var(--tlp-color-paper);
}

.tlp-contact-page__form {
  min-width: 0;
}

.tlp-contact-page__form > .tlp-inquiry {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tlp-space-5);
  padding: var(--tlp-space-7);
  border-radius: var(--tlp-radius-md);
}

.tlp-contact-page__form .tlp-inquiry-form {
  max-width: none;
}

body.page-id-19 .tlp-footer {
  margin-top: 0;
}

body.page-id-12 .tlp-footer {
  margin-top: 0;
}

/* Enterprise Album */
.tlp-album__hero {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: var(--tlp-carousel-ratio);
  min-height: var(--tlp-carousel-min-height);
  overflow: hidden;
  background: var(--tlp-color-ink);
  color: var(--tlp-color-paper);
  isolation: isolate;
}

.tlp-album__hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--tlp-color-overlay);
  content: "";
}

.tlp-album__hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlp-album__hero-inner {
  display: flex;
  padding-block: var(--tlp-space-8);
  align-items: end;
}

.tlp-album__hero-copy {
  max-width: var(--tlp-copy);
}

.tlp-album__hero-copy > :last-child {
  margin-bottom: 0;
}

.tlp-album__hero :where(h1, .tlp-eyebrow),
.tlp-album__hero p {
  color: var(--tlp-color-paper);
}

.tlp-album__hero h1 {
  font-size: var(--tlp-text-3xl);
}

.tlp-album__hero p:not(.tlp-eyebrow) {
  font-size: var(--tlp-text-lg);
}

@media (max-width: 47.99rem) {
  .tlp-album__hero-inner {
    padding-block: var(--tlp-space-3);
  }

  .tlp-album__hero-copy .tlp-eyebrow {
    margin-bottom: var(--tlp-space-1);
    font-size: var(--tlp-text-xs);
    line-height: 1.2;
  }

  .tlp-album__hero h1 {
    margin-bottom: var(--tlp-space-1);
    font-size: var(--tlp-home-h2-mobile);
    line-height: 1.1;
  }

  .tlp-album__hero p:not(.tlp-eyebrow) {
    margin-bottom: 0;
    font-size: var(--tlp-text-sm);
    line-height: 1.35;
  }
}

.tlp-album__archive {
  padding-block: var(--tlp-space-8);
}

.tlp-album__intro {
  display: grid;
  gap: var(--tlp-space-5);
  margin-bottom: var(--tlp-space-7);
  padding-bottom: var(--tlp-space-6);
  border-bottom: 1px solid var(--tlp-color-border-strong);
}

.tlp-album__intro > :last-child,
.tlp-album__intro > div > :last-child {
  margin-bottom: 0;
}

.tlp-album__intro > p {
  color: var(--tlp-color-muted);
}

.tlp-album__filters {
  display: none;
}

.js .tlp-album__filters {
  display: block;
  margin-bottom: var(--tlp-space-6);
  padding: 0;
  border: 0;
  background: transparent;
}

.tlp-album__filters fieldset {
  padding: 0;
  border: 0;
}

.tlp-album__filters legend {
  margin-bottom: var(--tlp-space-3);
  font-size: var(--tlp-text-sm);
}

.tlp-album__filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2);
}

.tlp-album__filter-options label {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  cursor: pointer;
}

.tlp-album__filter-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.tlp-album__filter-options span {
  display: inline-flex;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-5);
  align-items: center;
  border: 1px solid var(--tlp-color-primary);
  border-radius: 999px;
  background: var(--tlp-color-paper);
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
  transition: border-color var(--tlp-transition), background-color var(--tlp-transition), color var(--tlp-transition);
}

.tlp-album__filter-options label:hover span {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-album__filter-options input:checked + span {
  border-color: var(--tlp-color-primary);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
  font-weight: 700;
}

.tlp-album__filter-options label:focus-within span {
  outline: none;
}

.tlp-album__count {
  margin-bottom: var(--tlp-space-4);
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-sm);
  font-variant-numeric: tabular-nums;
}

.tlp-album__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tlp-space-5);
  align-items: stretch;
}

.tlp-album-card {
  min-width: 0;
  height: 100%;
  scroll-margin-top: var(--tlp-space-6);
}

.tlp-album-card a {
  display: block;
  height: 100%;
  color: var(--tlp-color-ink);
  text-decoration: none;
}

.tlp-album-card figure {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  margin: 0;
}

.tlp-album-card__media {
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-surface-alt);
}

.tlp-album-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--tlp-transition);
}

.tlp-album-card figcaption {
  display: grid;
  gap: var(--tlp-space-1);
  padding-block: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
}

.tlp-album-card figcaption strong {
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-xs);
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.tlp-album-card figcaption span {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-xs);
  line-height: 1.55;
}

.tlp-album-card a:hover .tlp-album-card__media img {
  transform: scale(1.02);
}

.tlp-album-card--video {
  display: grid;
  grid-template-rows: auto 1fr;
}

.tlp-album-card--video .tlp-album-card__video-player {
  display: grid;
  width: 100%;
  place-items: center;
  background: #000;
}

.tlp-album-card--video .tlp-album-card__video-player video,
.tlp-album-card--video .tlp-album-card__video-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
}

.tlp-album-card--video .tlp-album-card__video-player video {
  object-fit: cover;
}

.tlp-album-card--video .tlp-video-external-poster {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.tlp-album-card--video .tlp-video-external-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tlp-album-card--video .tlp-video-external-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tlp-album-card--video .tlp-video-external-poster:hover .tlp-video-external-poster__play,
.tlp-album-card--video .tlp-video-external-poster:focus-visible .tlp-video-external-poster__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.tlp-album-card--video .tlp-video-external-poster__cta {
  position: absolute;
  right: var(--tlp-space-3);
  bottom: var(--tlp-space-3);
  display: inline-flex;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-4);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tlp-color-paper);
  border-radius: 999px;
  background: rgb(0 0 0 / 55%);
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background-color var(--tlp-transition), color var(--tlp-transition), border-color var(--tlp-transition);
}

.tlp-album-card--video .tlp-video-external-poster:hover .tlp-video-external-poster__cta,
.tlp-album-card--video .tlp-video-external-poster:focus-visible .tlp-video-external-poster__cta {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-album-card--video figcaption {
  display: grid;
  gap: var(--tlp-space-1);
  padding-block: var(--tlp-space-3);
  border-bottom: 1px solid var(--tlp-color-border);
}

.tlp-album-card--video figcaption strong {
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-xs);
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.tlp-album-card--video figcaption span {
  color: var(--tlp-color-muted);
  font-size: var(--tlp-text-xs);
  line-height: 1.55;
}

.tlp-album__results > .tlp-empty-state {
  padding-block: var(--tlp-space-7);
  border-block: 1px solid var(--tlp-color-border);
}

body.page-id-13 .tlp-footer {
  margin-top: 0;
}

@media (min-width: 42rem) {
  .tlp-album__intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
    align-items: end;
  }

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

@media (min-width: 72rem) {
  .js .tlp-album__filters {
    position: sticky;
    z-index: 40;
    top: 0;
    padding-block: var(--tlp-space-3);
    border-bottom: 1px solid var(--tlp-color-border);
    background: var(--tlp-color-paper);
  }

  .tlp-album__filters fieldset {
    display: flex;
    gap: var(--tlp-space-4);
    align-items: center;
  }

  .tlp-album__filters legend {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

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

@media (min-width: 48rem) {
  .tlp-about__split,
  .tlp-about__quality-layout,
  .tlp-about__mission-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlp-about__split--reverse .tlp-about__media {
    order: 2;
  }

  .tlp-contact-page__layout {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  }
}

@media (max-width: 47.99rem) {
  .tlp-about h1,
  .tlp-about h2,
  .tlp-contact-page__intro h1 {
    font-size: var(--tlp-about-heading-mobile);
  }

  .tlp-about__story .tlp-about__lead p {
    font-size: var(--tlp-text-base);
    line-height: 1.375rem;
  }

  .tlp-about__section,
  .tlp-about__mission,
  .tlp-contact-page > .tlp-container {
    padding-block: var(--tlp-space-7);
  }

  .tlp-about__split,
  .tlp-about__quality-layout,
  .tlp-about__mission-layout,
  .tlp-contact-page__layout {
    gap: var(--tlp-space-6);
  }

  .tlp-about__media,
  .tlp-about__quality-media,
  .tlp-about__factory-image {
    border-radius: var(--tlp-radius-image-mobile);
  }

  .tlp-about__media {
    box-shadow: var(--tlp-space-2) var(--tlp-space-2) 0 var(--tlp-color-primary-soft);
  }

  .tlp-about__timeline li {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--tlp-space-2);
  }

  .tlp-about__factory-heading {
    display: grid;
    align-items: start;
  }

  .tlp-about__factory-heading > .tlp-link {
    justify-self: start;
  }

  .tlp-about__factory-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlp-contact-panel,
  .tlp-contact-page__form > .tlp-inquiry {
    padding: var(--tlp-space-5);
  }
}

/* Qualifications & Honor */
.tlp-honor__intro {
  padding-block: var(--tlp-space-7);
  border-bottom: 1px solid var(--tlp-color-border-strong);
  background: var(--tlp-color-surface);
}

.tlp-honor__intro-copy {
  max-width: var(--tlp-copy);
}

.tlp-honor__index {
  margin-top: var(--tlp-space-6);
}

.tlp-honor__index ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tlp-honor__index a {
  display: inline-flex;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-5);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tlp-color-primary);
  border-radius: 999px;
  background: var(--tlp-color-paper);
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--tlp-transition), color var(--tlp-transition), border-color var(--tlp-transition);
}

.tlp-honor__index a:hover,
.tlp-honor__index a:focus-visible {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-honor__group {
  padding-block: var(--tlp-space-7);
  scroll-margin-top: var(--tlp-space-6);
}

.tlp-honor__group + .tlp-honor__group {
  border-top: 1px solid var(--tlp-color-border);
}

.tlp-honor__group:nth-of-type(even) {
  background: var(--tlp-color-metrics);
}

.tlp-honor__group-header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tlp-space-2) var(--tlp-space-3);
  margin-bottom: var(--tlp-space-6);
  align-items: baseline;
}

.tlp-honor__group-header h2 {
  display: inline-flex;
  margin-bottom: 0;
  align-items: center;
  gap: var(--tlp-space-4);
}

.tlp-honor__group-number {
  display: inline-flex;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: var(--tlp-space-2);
  align-items: center;
  justify-content: center;
  border-radius: var(--tlp-radius-sm);
  background: var(--tlp-color-primary-soft);
  color: var(--tlp-color-primary-strong);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}



/* Group A: five-around (1 center + 4 corners) */
.tlp-honor__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--tlp-space-5);
}

.tlp-honor-record {
  min-width: 0;
  margin: 0;
}

.tlp-honor-record a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--tlp-color-border);
  border-radius: var(--tlp-radius-md);
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  text-decoration: none;
  transition: border-color var(--tlp-transition), box-shadow var(--tlp-transition), transform var(--tlp-transition);
}

.tlp-honor-record a:hover {
  border-color: var(--tlp-color-primary-strong);
  box-shadow: var(--tlp-shadow-md);
  transform: translateY(-4px);
}

.tlp-honor-record__media {
  display: grid;
  aspect-ratio: 4 / 3;
  padding: var(--tlp-space-4);
  place-items: center;
  overflow: hidden;
  background: var(--tlp-color-surface-alt);
}

.tlp-honor-record__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--tlp-transition);
}

.tlp-honor-record a:hover .tlp-honor-record__media img {
  transform: scale(1.03);
}

.tlp-honor-record figcaption {
  display: grid;
  gap: var(--tlp-space-2);
  padding: var(--tlp-space-4);
  border-top: 1px solid var(--tlp-color-border);
}

.tlp-honor-record figcaption strong {
  font-size: var(--tlp-text-base);
}

.tlp-honor-record figcaption span {
  display: inline-flex;
  min-height: var(--tlp-target);
  align-items: center;
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 47.99rem) {
  .tlp-honor__intro {
    padding-block: var(--tlp-space-6);
  }

  .tlp-honor__intro-copy > p:not(.tlp-eyebrow) {
    font-size: var(--tlp-text-base);
  }

  .tlp-honor__index {
    margin-top: var(--tlp-space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tlp-honor-record a,
  .tlp-honor-record__media img {
    transition: none;
    transform: none;
  }
}

body.page-id-15 .tlp-footer {
  margin-top: 0;
}

@media (max-width: 47.99rem) {
  .tlp-honor__intro {
    padding-block: var(--tlp-space-6);
  }

  .tlp-honor__intro-copy > p:not(.tlp-eyebrow) {
    font-size: var(--tlp-text-base);
  }

  .tlp-honor__index {
    margin-top: var(--tlp-space-4);
  }

  .tlp-honor__index > p {
    display: none;
  }

  .tlp-honor__index ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlp-honor__index li:last-child {
    grid-column: 1 / -1;
  }

  .tlp-honor__index a {
    width: 100%;
    min-height: var(--tlp-target);
    padding: var(--tlp-space-2) var(--tlp-space-3);
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
    text-align: center;
  }
}

@media (min-width: 42rem) {
  .tlp-honor__group-header {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.8fr);
    align-items: end;
  }

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

@media (min-width: 72rem) {
  .tlp-honor__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tlp-video-external-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tlp-radius-md);
}

.tlp-video-external-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.tlp-video-external-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: var(--tlp-target);
  height: var(--tlp-target);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  background: rgb(0 153 68 / 90%);
  color: var(--tlp-color-paper);
  font-size: 1.125rem;
  line-height: 1;
  padding-left: 0.1875rem;
  box-shadow: var(--tlp-shadow-md);
  transition: background-color var(--tlp-transition), transform var(--tlp-transition);
}

.tlp-video-external-poster:hover .tlp-video-external-poster__play,
.tlp-video-external-poster:focus-visible .tlp-video-external-poster__play {
  background: var(--tlp-color-primary-strong);
  transform: translate(-50%, -50%) scale(1.08);
}

.tlp-video-external {
  display: inline-flex;
  min-height: var(--tlp-target);
  padding: var(--tlp-space-2) var(--tlp-space-4);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tlp-color-primary);
  border-radius: 999px;
  background: var(--tlp-color-paper);
  color: var(--tlp-color-primary-strong);
  font-size: var(--tlp-text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--tlp-transition), color var(--tlp-transition), border-color var(--tlp-transition);
}

.tlp-video-external:hover,
.tlp-video-external:focus-visible {
  border-color: var(--tlp-color-primary-strong);
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
}

.tlp-album-card__video-player {
  display: grid;
  gap: var(--tlp-space-3);
  justify-items: center;
}

.tlp-album-card__video-player .tlp-video-external {
  margin-block: var(--tlp-space-3);
}

.tlp-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: var(--tlp-space-5);
  place-items: center;
}

.tlp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 88%);
  cursor: zoom-out;
}

.tlp-lightbox__content {
  position: relative;
  display: grid;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  margin: 0;
  gap: var(--tlp-space-3);
  place-items: center;
}

.tlp-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--tlp-radius-sm);
  box-shadow: var(--tlp-shadow-md);
}

.tlp-lightbox__caption {
  color: var(--tlp-color-paper);
  font-size: var(--tlp-text-sm);
  text-align: center;
}

.tlp-lightbox__close {
  position: absolute;
  top: calc(-1 * var(--tlp-space-6));
  right: 0;
  display: grid;
  width: var(--tlp-target);
  height: var(--tlp-target);
  padding: 0;
  border: 0;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  background: var(--tlp-color-paper);
  color: var(--tlp-color-ink);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--tlp-shadow-md);
}

.tlp-lightbox__close:hover,
.tlp-lightbox__close:focus-visible {
  background: var(--tlp-color-primary-soft);
  color: var(--tlp-color-primary-strong);
}

body.tlp-lightbox-open {
  overflow: hidden;
}

@media (max-width: 47.99rem) {
  .tlp-lightbox {
    padding: var(--tlp-space-3);
  }

  .tlp-lightbox__close {
    top: calc(-1 * var(--tlp-space-5));
  }
}

.tlp-whatsapp-float {
  position: fixed;
  right: var(--tlp-space-5);
  bottom: calc(var(--tlp-space-5) + var(--tlp-target) + var(--tlp-space-3));
  z-index: 998;
  display: grid;
  width: var(--tlp-target);
  height: var(--tlp-target);
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: var(--tlp-shadow-md);
  transition: transform 200ms ease, background-color 200ms ease;
}

.tlp-whatsapp-float:hover,
.tlp-whatsapp-float:focus-visible {
  background: #1eb857;
  transform: translateY(-2px);
}

.tlp-whatsapp-float__icon {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .tlp-whatsapp-float {
    transition: none;
  }
}

@media print {
  .tlp-whatsapp-float {
    display: none !important;
  }
}

.tlp-back-to-top {
  position: fixed;
  right: var(--tlp-space-5);
  bottom: var(--tlp-space-5);
  z-index: 999;
  display: grid;
  width: var(--tlp-target);
  height: var(--tlp-target);
  padding: 0;
  border: 0;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  background: var(--tlp-color-primary);
  color: var(--tlp-color-paper);
  cursor: pointer;
  box-shadow: var(--tlp-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease, background-color 200ms ease;
}

.tlp-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tlp-back-to-top:hover,
.tlp-back-to-top:focus-visible {
  background: var(--tlp-color-primary-strong);
}

.tlp-back-to-top__icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .tlp-back-to-top {
    transition: none;
  }
}

@media print {
  .tlp-back-to-top {
    display: none !important;
  }
}

@media print {
  .tlp-lightbox,
  .site-header,
  .site-footer,
  .tlp-header,
  .tlp-footer,
  .menu-toggle,
  .tlp-nav-toggle,
  [data-nav-toggle],
  .tlp-actions,
  .product-actions,
  .inquiry-actions,
  .tlp-site-banner__dots {
    display: none !important;
  }

  body {
    background: var(--tlp-color-paper);
    color: var(--tlp-color-ink);
  }

  a {
    color: inherit;
  }
}
