:root {
  --teb-accent: #b7f22b;
  --teb-ink: #0a0e0e;
  --teb-ink-2: #111717;
  --teb-ink-3: #1a2221;
  --teb-paper: #f3f6f1;
  --teb-white: #fff;
  --teb-muted: #6d7773;
  --teb-line: #d9dfd8;
  --teb-radius: 22px;
  --teb-shadow: 0 24px 80px rgba(5, 13, 10, .13);
  --teb-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--teb-paper);
  color: var(--teb-ink);
  font-family: var(--teb-font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.teb-menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; vertical-align: middle; }
.teb-container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
  z-index: 99999; top: 12px; left: 12px; width: auto; height: auto; padding: 12px 18px;
  clip: auto; background: var(--teb-accent); color: var(--teb-ink); font-weight: 800;
}

/* Announcement + header */
.teb-announcement { background: var(--teb-accent); color: var(--teb-ink); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.teb-announcement .teb-container { min-height: 34px; display: flex; justify-content: center; align-items: center; gap: 34px; }
.teb-announcement span + span::before, .teb-announcement a::before { content: ""; display: inline-block; width: 3px; height: 3px; margin: 0 20px 3px 0; border-radius: 50%; background: currentColor; }
.teb-header { position: sticky; z-index: 1000; top: 0; background: rgba(10, 14, 14, .97); color: white; border-bottom: 1px solid rgba(255, 255, 255, .08); transition: box-shadow .2s ease, background .2s ease; }
.teb-header.is-scrolled { background: rgba(10, 14, 14, .985); box-shadow: 0 12px 36px rgba(0, 0, 0, .22); }
.teb-header__inner { display: flex; min-height: 80px; align-items: center; gap: 34px; }
.teb-brand { display: inline-flex; flex: 0 0 245px; align-items: center; }
.teb-brand img, .teb-custom-logo { max-width: 245px; max-height: 52px; object-fit: contain; object-position: left center; }
.teb-nav { margin-left: auto; }
.teb-menu { display: flex; align-items: center; gap: clamp(15px, 1.55vw, 27px); margin: 0; padding: 0; list-style: none; }
.teb-menu li { position: relative; }
.teb-menu a { display: block; padding: 27px 0; color: rgba(255, 255, 255, .78); font-size: 13px; font-weight: 720; white-space: nowrap; transition: color .2s ease; }
.teb-menu a:hover, .teb-menu .current-menu-item > a { color: var(--teb-accent); }
.teb-menu .sub-menu { position: absolute; top: 100%; left: -20px; min-width: 210px; margin: 0; padding: 12px 20px; list-style: none; background: var(--teb-ink-2); border: 1px solid rgba(255,255,255,.09); box-shadow: var(--teb-shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s ease; }
.teb-menu li:hover > .sub-menu, .teb-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.teb-menu .sub-menu a { padding: 9px 0; }
.teb-header__actions { display: flex; align-items: center; gap: 15px; }
.teb-header__chat { padding: 10px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: white; font-size: 12px; font-weight: 800; }
.teb-header__chat:hover { border-color: var(--teb-accent); color: var(--teb-accent); }
.teb-cart { position: relative; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--teb-accent); color: var(--teb-ink); }
.teb-cart-count { position: absolute; top: -5px; right: -5px; display: grid; width: 19px; height: 19px; place-items: center; border: 2px solid var(--teb-ink); border-radius: 50%; background: white; font-size: 9px; font-weight: 900; }
.teb-menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: white; }
.teb-menu-close { display: none; }
.teb-menu-toggle[aria-expanded="true"] .teb-menu-open { display: none; }
.teb-menu-toggle[aria-expanded="true"] .teb-menu-close { display: inline; }

/* Buttons and small patterns */
.teb-button, button.teb-button, .wp-block-button__link, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 18px; padding: 0 24px;
  border: 1px solid var(--teb-accent); border-radius: 999px; background: var(--teb-accent); color: var(--teb-ink);
  font-size: 13px; font-weight: 850; letter-spacing: .015em; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.teb-button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { transform: translateY(-2px); background: #c9ff43; border-color: #c9ff43; color: var(--teb-ink); }
.teb-button--dark { border-color: var(--teb-ink); background: var(--teb-ink); color: white; }
.teb-button--dark:hover { border-color: var(--teb-ink-3); background: var(--teb-ink-3); color: white; }
.teb-text-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }
.teb-text-link svg { width: 17px; }
.teb-kicker, .teb-eyebrow { color: #698f10; font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.teb-center { margin-top: 48px; text-align: center; }

/* Home hero */
.teb-hero { position: relative; min-height: 720px; overflow: hidden; background: var(--teb-ink); color: white; }
.teb-hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, black, transparent 70%); }
.teb-hero__glow { position: absolute; width: 680px; height: 680px; right: -150px; top: -170px; border-radius: 50%; background: rgba(183, 242, 43, .2); filter: blur(120px); }
.teb-hero__grid { position: relative; z-index: 1; display: grid; min-height: 720px; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 20px; }
.teb-hero__copy { max-width: 610px; padding: 85px 0 95px; }
.teb-eyebrow { display: flex; align-items: center; gap: 12px; color: var(--teb-accent); }
.teb-eyebrow i { width: 26px; height: 2px; background: var(--teb-accent); }
.teb-hero h1 { max-width: 760px; margin: 24px 0 24px; font-size: clamp(54px, 5.7vw, 88px); line-height: .96; letter-spacing: -.058em; }
.teb-hero__copy > p { max-width: 570px; margin: 0 0 34px; color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.65; }
.teb-hero__buttons { display: flex; align-items: center; gap: 25px; }
.teb-hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 70px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.12); }
.teb-hero__proof div { display: flex; flex-direction: column; }
.teb-hero__proof strong { color: white; font-size: 22px; line-height: 1.1; }
.teb-hero__proof span { margin-top: 5px; color: rgba(255,255,255,.43); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.teb-hero__visual { position: relative; align-self: stretch; display: grid; min-width: 0; place-items: center; }
.teb-hero__visual::before { content: ""; position: absolute; width: 610px; height: 610px; border: 1px solid rgba(183,242,43,.2); border-radius: 50%; box-shadow: inset 0 0 0 95px rgba(255,255,255,.018), inset 0 0 0 190px rgba(255,255,255,.018); }
.teb-hero__visual > img { position: relative; z-index: 2; width: min(720px, 57vw); max-height: 610px; object-fit: contain; filter: drop-shadow(0 45px 38px rgba(0,0,0,.48)); mix-blend-mode: normal; }
.teb-hero__badge { position: absolute; z-index: 4; top: 72px; right: 0; display: flex; flex-direction: column; width: 126px; height: 126px; align-items: center; justify-content: center; border-radius: 50%; background: var(--teb-accent); color: var(--teb-ink); transform: rotate(7deg); }
.teb-hero__badge span, .teb-hero__badge small { font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.teb-hero__badge strong { margin: 2px 0; font-size: 21px; }
.teb-hero__spec { position: absolute; z-index: 4; min-width: 175px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.15); background: rgba(10,14,14,.76); backdrop-filter: blur(9px); }
.teb-hero__spec span, .teb-hero__spec strong { display: block; }
.teb-hero__spec span { color: var(--teb-accent); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.teb-hero__spec strong { margin-top: 3px; font-size: 12px; }
.teb-hero__spec--one { bottom: 114px; left: 30px; }
.teb-hero__spec--two { right: 0; bottom: 205px; }

.teb-marquee { overflow: hidden; border-bottom: 1px solid #d4dad3; background: white; }
.teb-marquee > div { display: flex; min-width: max-content; min-height: 61px; align-items: center; justify-content: center; gap: 36px; padding: 0 24px; }
.teb-marquee span { font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.teb-marquee i { width: 6px; height: 6px; border-radius: 50%; background: var(--teb-accent); box-shadow: 0 0 0 3px #dff5a9; }

/* Sections */
.teb-section { padding: 110px 0; }
.teb-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }
.teb-section-heading h2 { max-width: 720px; margin: 9px 0 0; font-size: clamp(38px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
.teb-section-heading > p { max-width: 480px; margin: 0 0 7px; color: var(--teb-muted); }

/* WooCommerce catalogue */
.woocommerce .products ul, .woocommerce ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { display: flex; float: none !important; width: 100% !important; min-width: 0; height: 100%; flex-direction: column; margin: 0 !important; padding: 0; overflow: hidden; border: 1px solid #d7ddd6; border-radius: 18px; background: white; box-shadow: 0 3px 0 rgba(11,15,15,.025); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.woocommerce ul.products li.product:hover { z-index: 2; transform: translateY(-6px); border-color: #b3c28f; box-shadow: 0 22px 50px rgba(15,31,22,.12); }
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link { display: flex; flex: 1; flex-direction: column; }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1.16; margin: 0 0 18px; padding: 22px; object-fit: contain; background: linear-gradient(145deg, #fbfcfa, #f2f5f0); transition: transform .3s ease; }
.woocommerce ul.products li.product:hover a img { transform: scale(1.025); }
.teb-product-category { display: block; margin: 0 18px 7px; color: #6a8e13; font-size: 9px; font-weight: 900; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 51px; margin: 0; padding: 0 18px; overflow-wrap: anywhere; color: var(--teb-ink); font-size: 16px; line-height: 1.35; letter-spacing: -.012em; }
.woocommerce ul.products li.product .price { margin: 11px 18px 7px; color: var(--teb-ink); font-size: 18px; font-weight: 900; }
.woocommerce ul.products li.product .price del { color: #8c9691; font-size: 12px; font-weight: 600; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.teb-card-stock { display: flex; align-items: center; gap: 7px; margin: 0 18px 16px; color: #6f7c76; font-size: 9px; font-weight: 700; }
.teb-card-stock i { width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: #6da51d; box-shadow: 0 0 0 3px #e5f2d2; }
.woocommerce ul.products li.product .button { display: flex !important; width: calc(100% - 36px); min-height: 43px; align-items: center !important; justify-content: center !important; margin: auto 18px 18px; padding: 0 17px; box-sizing: border-box; font-size: 11px; line-height: 1.2; text-align: center !important; }
.woocommerce ul.products li.product .added_to_cart { margin: -8px 18px 15px; font-size: 11px; font-weight: 800; text-align: center; }
.woocommerce span.onsale { top: 13px; right: 13px; left: auto; z-index: 3; min-width: 0; min-height: 0; margin: 0; padding: 8px 11px; border-radius: 999px; background: var(--teb-ink); color: white; font-size: 9px; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.star-rating, .woocommerce .star-rating { color: #88b719; }
.woocommerce .products .star-rating { margin: 7px 18px 0; }
.teb-commerce { min-height: 70vh; padding: 0 0 100px; }

/* Elementor canvas compatibility */
.teb-elementor-page { overflow: hidden; }
.teb-elementor-page .elementor-section.elementor-section-boxed > .elementor-container { max-width: none; }
.teb-elementor-page .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.teb-elementor-page .elementor-column-gap-no > .elementor-column > .elementor-element-populated { padding: 0; }
.teb-elementor-page .elementor-widget:not(:last-child) { margin-bottom: 0; }
.teb-elementor-page .elementor-widget-container > .teb-hero,
.teb-elementor-page .elementor-widget-container > .teb-section,
.teb-elementor-page .elementor-widget-container > .teb-models,
.teb-elementor-page .elementor-widget-container > .teb-komodo,
.teb-elementor-page .elementor-widget-container > .teb-dealer-cta { width: 100%; }

/* Premium catalogue layout */
.teb-catalog { background: #f1f4ef; }
.teb-catalog-hero { position: relative; overflow: hidden; margin-bottom: 54px; padding: 78px 0 70px; background: var(--teb-ink); color: white; }
.teb-catalog-hero::before { content: ""; position: absolute; top: -260px; right: -170px; width: 690px; height: 690px; border: 1px solid rgba(183,242,43,.16); border-radius: 50%; box-shadow: inset 0 0 0 105px rgba(183,242,43,.025), inset 0 0 0 210px rgba(183,242,43,.025); }
.teb-catalog-hero::after { content: ""; position: absolute; right: 12%; bottom: -140px; width: 350px; height: 350px; border-radius: 50%; background: rgba(183,242,43,.13); filter: blur(80px); }
.teb-catalog-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; }
.teb-catalog-hero h1 { max-width: 820px; margin: 18px 0; font-size: clamp(48px, 5.2vw, 76px); line-height: .98; letter-spacing: -.052em; }
.teb-catalog-hero p { max-width: 670px; margin: 0; color: rgba(255,255,255,.59); font-size: 16px; }
.teb-catalog-hero__stats { display: grid; min-width: 370px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.teb-catalog-hero__stats div { min-width: 120px; padding: 18px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.teb-catalog-hero__stats strong, .teb-catalog-hero__stats span { display: block; }
.teb-catalog-hero__stats strong { color: var(--teb-accent); font-size: 20px; line-height: 1.2; }
.teb-catalog-hero__stats span { margin-top: 4px; color: rgba(255,255,255,.45); font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.teb-shop-layout { display: grid; grid-template-columns: 255px minmax(0, 1fr); align-items: start; gap: 38px; }
.teb-shop-results { min-width: 0; }
.teb-shop-results .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.teb-shop-toolbar { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; padding: 12px 15px 12px 22px; border: 1px solid #d8ded6; border-radius: 14px; background: white; }
.teb-shop-toolbar::before { content: "Available now"; padding-right: 20px; border-right: 1px solid var(--teb-line); color: var(--teb-ink); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.teb-shop-toolbar .woocommerce-result-count { margin: 0 auto 0 0; color: var(--teb-muted); font-size: 12px; }
.teb-shop-toolbar .woocommerce-ordering { margin: 0; }
.teb-shop-toolbar .woocommerce-ordering select { min-width: 205px; padding: 11px 38px 11px 15px; border: 1px solid var(--teb-line); border-radius: 9px; outline: 0; background: #f8faf7; color: var(--teb-ink); font-size: 12px; font-weight: 700; }

/* Catalogue sidebar */
.teb-shop-sidebar { position: sticky; top: 135px; display: grid; gap: 16px; }
.teb-sidebar-mobile-head { display: none; }
.teb-filter-block { margin: 0; padding: 23px; border: 1px solid #d8ded6; border-radius: 15px; background: white; }
.teb-filter-title { margin: 0 0 17px; padding-bottom: 13px; border-bottom: 1px solid #e4e8e2; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.teb-filter-search form { position: relative; }
.teb-filter-search input { width: 100%; height: 45px; padding: 0 43px 0 12px; border: 1px solid #d9ded8; border-radius: 9px; outline: 0; background: #f7f9f6; font-size: 11px; }
.teb-filter-search input:focus { border-color: #8daa4b; box-shadow: 0 0 0 3px rgba(183,242,43,.16); }
.teb-filter-search button { position: absolute; top: 4px; right: 4px; display: grid; width: 37px; height: 37px; place-items: center; border: 0; border-radius: 7px; background: var(--teb-accent); }
.teb-category-list { display: grid; gap: 3px; margin: 0; padding: 0; list-style: none; }
.teb-category-list a { display: flex; min-height: 40px; align-items: center; justify-content: space-between; gap: 10px; padding: 0 10px; border-radius: 8px; color: #4f5b56; font-size: 12px; font-weight: 650; }
.teb-category-list a:hover, .teb-category-list .is-active a { background: #eaf5d8; color: var(--teb-ink); }
.teb-category-list b { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: #edf0eb; color: #68716d; font-size: 9px; }
.teb-category-list .is-active b { background: var(--teb-accent); color: var(--teb-ink); }
.teb-price-filter > div { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.teb-price-filter label span { display: block; margin-bottom: 5px; color: #77817c; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.teb-price-filter input { width: 100%; height: 41px; padding: 0 8px; border: 1px solid #d9ded8; border-radius: 8px; background: #f7f9f6; font-size: 11px; }
.teb-price-filter button { display: flex; width: 100%; min-height: 42px; align-items: center; justify-content: space-between; margin-top: 11px; padding: 0 13px; border: 0; border-radius: 8px; background: var(--teb-ink); color: white; font-size: 10px; font-weight: 850; }
.teb-price-filter button:hover { background: #1e2926; }
.teb-sidebar-help { position: relative; overflow: hidden; padding: 25px; border-radius: 15px; background: var(--teb-ink); color: white; }
.teb-sidebar-help::after { content: ""; position: absolute; right: -43px; bottom: -45px; width: 120px; height: 120px; border: 20px solid rgba(183,242,43,.1); border-radius: 50%; }
.teb-sidebar-help > span { color: var(--teb-accent); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.teb-sidebar-help h2 { position: relative; z-index: 1; margin: 24px 0 17px; font-size: 22px; line-height: 1.05; letter-spacing: -.03em; }
.teb-sidebar-help a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--teb-accent); color: var(--teb-accent); font-size: 10px; font-weight: 850; }
.teb-filter-toggle, .teb-filter-overlay { display: none; }
.woocommerce nav.woocommerce-pagination { margin-top: 50px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; margin: 4px; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { display: grid; width: 40px; height: 40px; place-items: center; padding: 0; border-radius: 50%; background: white; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--teb-ink); color: white; }

/* Product page */
.single-product .teb-commerce { padding-top: 70px; }
.woocommerce div.product { display: flow-root; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { margin-bottom: 70px; }
.woocommerce div.product div.images img { border-radius: var(--teb-radius); background: white; }
.woocommerce div.product .product_title { font-size: clamp(34px, 4vw, 58px); line-height: 1.03; letter-spacing: -.045em; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--teb-ink); font-size: 28px; font-weight: 900; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--teb-muted); font-size: 17px; }
.woocommerce .quantity .qty { min-height: 50px; border: 1px solid var(--teb-line); border-radius: 999px; background: white; }
.woocommerce div.product form.cart .button { min-height: 50px; }
.woocommerce div.product .product_meta { display: grid; gap: 7px; margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--teb-line); color: var(--teb-muted); font-size: 12px; }
.teb-product-support { clear: both; margin-top: 20px; padding: 15px 17px; border-left: 3px solid var(--teb-accent); background: #e9f5d3; font-size: 13px; }
.teb-product-support a { text-decoration: underline; }
.woocommerce div.product .woocommerce-tabs { clear: both; padding-top: 40px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--teb-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { margin: 0 5px 0 0; border-color: var(--teb-line); background: #e8ece6; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: white; }
.woocommerce div.product .woocommerce-tabs .panel { max-width: 900px; padding: 35px 0; }
.woocommerce div.product .woocommerce-tabs .panel h2, .woocommerce div.product .woocommerce-tabs .panel h3 { margin-top: 1.6em; }
.woocommerce table.shop_attributes { border: 1px solid var(--teb-line); }
.woocommerce table.shop_attributes td, .woocommerce table.shop_attributes th { padding: 10px 14px; border-color: var(--teb-line); }
.woocommerce table.shop_attributes tr:nth-child(even) td, .woocommerce table.shop_attributes tr:nth-child(even) th { background: #eef1ec; }
.woocommerce div.product form.cart .variations select { min-width: 220px; padding: 10px; border: 1px solid var(--teb-line); border-radius: 10px; background: white; }
.related.products { clear: both; padding-top: 60px; }
.related.products > h2 { margin-bottom: 35px; font-size: 34px; }

/* Model cards */
.teb-models { padding: 0 0 110px; }
.teb-models__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.teb-model-card { position: relative; display: grid; min-height: 530px; grid-template-rows: auto 1fr; overflow: hidden; border-radius: 28px; }
.teb-model-card > div { position: relative; z-index: 2; max-width: 450px; padding: 45px; }
.teb-model-card span { font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.teb-model-card h2 { margin: 12px 0; font-size: clamp(34px, 3.5vw, 50px); line-height: 1; letter-spacing: -.04em; }
.teb-model-card p { color: inherit; opacity: .65; }
.teb-model-card b { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; border-bottom: 1px solid currentColor; font-size: 12px; }
.teb-model-card img { position: absolute; right: -2%; bottom: -9%; width: 70%; height: 65%; object-fit: contain; transition: transform .4s ease; }
.teb-model-card:hover img { transform: translate(-8px, -4px) scale(1.035); }
.teb-model-card--light { background: var(--teb-accent); color: var(--teb-ink); }
.teb-model-card--dark { background: var(--teb-ink-2); color: white; }

/* Komodo feature */
.teb-komodo { padding: 105px 0; overflow: hidden; background: var(--teb-ink); color: white; }
.teb-komodo__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 80px; }
.teb-komodo__image { position: relative; display: grid; min-height: 560px; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 30px; background: radial-gradient(circle at 50% 50%, rgba(183,242,43,.13), transparent 55%); }
.teb-komodo__image::before, .teb-komodo__image::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.teb-komodo__image::after { width: 280px; height: 280px; }
.teb-komodo__image span { position: absolute; top: 25px; left: 25px; color: var(--teb-accent); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.teb-komodo__image img { position: relative; z-index: 2; width: 92%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 30px 30px rgba(0,0,0,.6)); }
.teb-komodo__copy h2 { margin: 14px 0 25px; font-size: clamp(40px, 4vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.teb-komodo__copy > p { max-width: 560px; color: rgba(255,255,255,.6); font-size: 17px; }
.teb-spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 42px 0; border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.12); }
.teb-spec-grid div { padding: 20px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.teb-spec-grid strong, .teb-spec-grid span { display: block; }
.teb-spec-grid strong { color: var(--teb-accent); font-size: 22px; }
.teb-spec-grid span { color: rgba(255,255,255,.48); font-size: 10px; text-transform: uppercase; }

/* Support + CTA */
.teb-support__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--teb-line); border-left: 1px solid var(--teb-line); }
.teb-support__grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--teb-line); border-bottom: 1px solid var(--teb-line); }
.teb-support__grid article > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--teb-accent); font-size: 10px; font-weight: 900; }
.teb-support__grid h3 { margin: 55px 0 8px; font-size: 20px; }
.teb-support__grid p { margin: 0; color: var(--teb-muted); font-size: 14px; }
.teb-dealer-cta { padding: 95px 0; background: var(--teb-accent); }
.teb-dealer-cta__inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.teb-dealer-cta .teb-kicker { color: var(--teb-ink); }
.teb-dealer-cta h2 { max-width: 760px; margin: 10px 0 0; font-size: clamp(42px, 5vw, 70px); line-height: .98; letter-spacing: -.05em; }
.teb-dealer-cta p { font-weight: 620; }
.teb-dealer-cta .teb-button { border-color: var(--teb-ink); background: var(--teb-ink); color: white; }

/* Pages + prose */
.teb-page { min-height: 60vh; }
.teb-page-hero, .teb-article-hero { padding: 80px 0 58px; overflow: hidden; background: var(--teb-ink); color: white; }
.teb-page-hero .teb-container, .teb-article-hero .teb-container { position: relative; }
.teb-page-hero .teb-container::after { content: "TEB"; position: absolute; right: 0; bottom: -90px; color: rgba(255,255,255,.035); font-size: 230px; font-weight: 950; line-height: 1; }
.teb-page-hero span, .teb-article-hero span { color: var(--teb-accent); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.teb-page-hero h1, .teb-article-hero h1 { position: relative; z-index: 1; max-width: 950px; margin: 9px 0 0; font-size: clamp(48px, 6vw, 82px); line-height: 1; letter-spacing: -.052em; }
.teb-page-hero p { position: relative; z-index: 1; max-width: 620px; margin: 18px 0 0; color: rgba(255,255,255,.58); }
.teb-prose { padding-top: 82px; padding-bottom: 110px; }
.teb-prose > * { max-width: 850px; margin-right: auto; margin-left: auto; }
.teb-prose > .alignwide { max-width: 1120px; }
.teb-prose > .alignfull { max-width: none; }
.teb-prose h2 { margin-top: 2em; margin-bottom: .55em; font-size: clamp(30px, 3vw, 44px); line-height: 1.12; letter-spacing: -.035em; }
.teb-prose h2:first-child { margin-top: 0; }
.teb-prose h3 { margin-top: 1.7em; font-size: 23px; }
.teb-prose p, .teb-prose li { color: #4f5b56; }
.teb-prose a { text-decoration: underline; text-decoration-color: #92bb35; text-underline-offset: 3px; }
.teb-prose hr { margin-top: 42px; margin-bottom: 42px; border: 0; border-top: 1px solid var(--teb-line); }
.teb-prose ul, .teb-prose ol { padding-left: 24px; }
.teb-prose table { width: 100%; border-collapse: collapse; }
.teb-prose th, .teb-prose td { padding: 12px; border: 1px solid var(--teb-line); text-align: left; }
.teb-prose > .teb-values, .teb-prose > .teb-contact-cards, .teb-prose > .teb-document-grid, .teb-prose > .teb-form, .teb-prose > .teb-alert, .teb-prose > .teb-hours { max-width: 1120px; }
.teb-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; margin-bottom: 50px; }
.teb-values > div { padding: 28px; border: 1px solid var(--teb-line); border-radius: 18px; background: white; }
.teb-values span { color: #719714; font-size: 11px; font-weight: 900; }
.teb-values h3 { margin: 28px 0 8px; }
.teb-values p { margin: 0; font-size: 14px; }
.teb-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 !important; list-style: none; }
.teb-check-list li { padding: 17px 19px 17px 44px; border-radius: 12px; background: #eaf5d8; }
.teb-check-list li::before { content: "✓"; margin-left: -25px; margin-right: 10px; color: #5d8210; font-weight: 900; }

/* Forms + contacts */
.teb-form { margin-top: 30px; padding: 36px; border-radius: 22px; background: var(--teb-ink-2); color: white; }
.teb-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.teb-form label { display: grid; gap: 7px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.teb-form input, .teb-form select, .teb-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 9px; outline: 0; background: rgba(255,255,255,.06); color: white; text-transform: none; }
.teb-form textarea { resize: vertical; }
.teb-form select option { color: var(--teb-ink); }
.teb-form input:focus, .teb-form select:focus, .teb-form textarea:focus { border-color: var(--teb-accent); box-shadow: 0 0 0 3px rgba(183,242,43,.13); }
.teb-form__wide { grid-column: 1 / -1; }
.teb-form .teb-button { margin-top: 25px; }
.teb-honeypot { position: absolute !important; left: -9999px !important; }
.teb-alert { margin-top: 24px; padding: 16px 18px; border-left: 4px solid #d99e2c; background: #fff6de; }
.teb-alert--success { border-color: #75a918; background: #edf8dc; }
.teb-alert--error { border-color: #c84c4c; background: #fff0f0; }
.teb-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 36px 0; }
.teb-contact-card { min-height: 260px; padding: 28px; border: 1px solid var(--teb-line); border-radius: 18px; background: white; }
.teb-contact-card > span { color: #6f9515; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.teb-contact-card h3 { margin: 58px 0 8px; font-size: 24px; }
.teb-contact-card p { margin: 0; font-size: 14px; }
.teb-hours { padding: 15px 19px; border-radius: 10px; background: #e8edde; }
.teb-document-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 35px; }
.teb-document-card { padding: 30px; border: 1px solid var(--teb-line); border-radius: 18px; background: white; }
.teb-document-card > span { color: #709612; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.teb-document-card h3 { margin: 28px 0 8px; }
.teb-document-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 12px; font-weight: 850; }

/* Blog */
.teb-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; padding-top: 80px; padding-bottom: 50px; }
.teb-post-card { overflow: hidden; border: 1px solid var(--teb-line); border-radius: 20px; background: white; }
.teb-post-card__image { display: grid; aspect-ratio: 1.65; place-items: center; overflow: hidden; background: var(--teb-ink-2); color: var(--teb-accent); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.teb-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.teb-post-card:hover .teb-post-card__image img { transform: scale(1.03); }
.teb-post-card > div { padding: 25px; }
.teb-post-card > div > span { color: #759a18; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.teb-post-card h2 { margin: 10px 0; font-size: 23px; line-height: 1.2; }
.teb-post-card p { color: var(--teb-muted); font-size: 14px; }
.teb-pagination { padding-bottom: 90px; }
.teb-pagination .nav-links { display: flex; gap: 8px; }
.teb-pagination .page-numbers { padding: 8px 14px; border-radius: 30px; background: white; }
.teb-pagination .current { background: var(--teb-ink); color: white; }
.teb-article-hero { padding-bottom: 75px; }
.teb-article { max-width: 860px; }
.teb-article__image { width: 100%; margin: -30px 0 50px; border-radius: 22px; }
.teb-post-nav { padding-bottom: 100px; }

/* Cart, checkout, account */
.woocommerce table.shop_table { overflow: hidden; border-color: var(--teb-line); border-radius: 14px; background: white; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 15px; }
.woocommerce table.shop_table img { width: 75px; border-radius: 8px; }
.woocommerce-cart .cart-collaterals .cart_totals, .woocommerce-checkout .woocommerce-checkout-review-order { padding: 25px; border-radius: 16px; background: white; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container--default .select2-selection--single { min-height: 48px; padding: 9px 12px; border: 1px solid var(--teb-line); border-radius: 8px; background: white; }
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register { border-color: var(--teb-line); border-radius: 14px; background: white; }
.woocommerce-info, .woocommerce-message { border-top-color: #7ca719; background: white; }
.woocommerce-info::before, .woocommerce-message::before { color: #7ca719; }

/* Footer */
.teb-footer { padding: 85px 0 25px; background: #080c0c; color: white; }
.teb-footer__top { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1.25fr; gap: 60px; }
.teb-footer__brand img { max-width: 250px; }
.teb-footer__brand > p { max-width: 370px; color: rgba(255,255,255,.48); font-size: 14px; }
.teb-footer__brand > .teb-footer__tagline { margin: 22px 0 8px; color: var(--teb-accent); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.teb-footer__tagline + p { margin-top: 0; }
.teb-footer__whatsapp { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; color: var(--teb-accent); font-size: 13px; font-weight: 800; }
.teb-footer h2 { margin: 3px 0 20px; color: var(--teb-accent); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.teb-footer ul { margin: 0; padding: 0; list-style: none; }
.teb-footer li { margin: 9px 0; }
.teb-footer li a { color: rgba(255,255,255,.65); font-size: 13px; }
.teb-footer li a:hover, .teb-footer a:hover { color: var(--teb-accent); }
.teb-footer__contact p { color: rgba(255,255,255,.53); font-size: 12px; line-height: 1.65; }
.teb-footer__contact strong { color: white; }
.teb-footer__bottom { display: flex; justify-content: space-between; margin-top: 65px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.teb-floating-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: inline-flex; min-height: 50px; align-items: center; gap: 8px; padding: 0 18px; border: 3px solid white; border-radius: 999px; background: #25d366; color: #072c14; box-shadow: 0 12px 35px rgba(0,0,0,.2); font-size: 12px; font-weight: 850; }
.teb-floating-whatsapp svg { width: 21px; height: 21px; }
.teb-not-found { display: grid; min-height: 70vh; place-items: center; background: var(--teb-ink); color: white; text-align: center; }
.teb-not-found span { color: var(--teb-accent); font-size: 120px; font-weight: 950; line-height: .9; }
.teb-not-found h1 { margin: 15px 0; font-size: 50px; }
.teb-not-found p { color: rgba(255,255,255,.55); }

/* WordPress utility classes */
.alignleft { float: left; margin: 0 25px 20px 0; }
.alignright { float: right; margin: 0 0 20px 25px; }
.aligncenter { display: block; margin-right: auto; margin-left: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--teb-muted); font-size: 12px; }
.bypostauthor { outline: 0; }

@media (max-width: 1080px) {
  .teb-announcement span:nth-child(2) { display: none; }
  .teb-nav { position: fixed; top: 114px; right: 0; bottom: 0; left: 0; display: none; margin: 0; padding: 20px 25px 45px; overflow-y: auto; background: var(--teb-ink); }
  .teb-nav.is-open { display: block; }
  .teb-menu { display: block; }
  .teb-menu a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 17px; }
  .teb-menu .sub-menu { position: static; display: block; padding: 0 0 0 20px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .teb-menu .sub-menu a { font-size: 14px; }
  .teb-menu-toggle { display: grid; place-items: center; }
  .teb-header__actions { flex: 0 0 auto; margin-left: auto; }
  .teb-header__chat { display: none; }
  .teb-hero__grid { min-height: 680px; grid-template-columns: 1fr 1fr; }
  .teb-hero__visual > img { width: 58vw; }
  .teb-hero__spec { display: none; }
  .teb-hero__badge { top: 90px; right: 10px; width: 100px; height: 100px; }
  .teb-hero__badge strong { font-size: 17px; }
  .woocommerce .products ul, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .teb-catalog-hero__inner { gap: 35px; }
  .teb-catalog-hero__stats { min-width: 320px; }
  .teb-catalog-hero__stats div { min-width: 0; padding: 15px 13px; }
  .teb-shop-layout { grid-template-columns: 225px minmax(0, 1fr); gap: 24px; }
  .teb-shop-results .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teb-support__grid { grid-template-columns: 1fr 1fr; }
  .teb-komodo__grid { gap: 45px; }
  .teb-footer__top { grid-template-columns: 1.3fr .7fr .8fr; }
  .teb-footer__contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 920px) {
  body.teb-filter-is-open { overflow: hidden; }
  .teb-catalog-hero { margin-bottom: 30px; padding: 62px 0 58px; }
  .teb-catalog-hero__inner { grid-template-columns: 1fr; align-items: start; }
  .teb-catalog-hero__stats { width: min(100%, 470px); min-width: 0; }
  .teb-filter-toggle { display: flex; width: 100%; min-height: 65px; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 22px; padding: 12px 16px; border: 1px solid #d8ded6; border-radius: 13px; background: white; color: var(--teb-ink); text-align: left; }
  .teb-filter-toggle span { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
  .teb-filter-toggle b { color: var(--teb-muted); font-size: 9px; font-weight: 700; letter-spacing: .05em; }
  .teb-filter-toggle svg { width: 19px; stroke-width: 1.8; }
  .teb-shop-layout { display: block; }
  .teb-shop-results .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .teb-shop-sidebar { position: fixed; z-index: 1300; top: 0; right: auto; bottom: 0; left: 0; display: block; width: min(350px, calc(100% - 34px)); padding: 0 18px 35px; overflow-y: auto; border-radius: 0 18px 18px 0; background: #f1f4ef; box-shadow: 25px 0 65px rgba(4,12,8,.28); transform: translateX(-110%); transition: transform .3s ease; }
  .teb-shop-sidebar.is-open { transform: translateX(0); }
  .teb-shop-sidebar > section { margin-bottom: 15px; }
  .teb-sidebar-mobile-head { position: sticky; z-index: 2; top: 0; display: flex; min-height: 76px; align-items: center; justify-content: space-between; margin: 0 -18px 18px; padding: 0 18px; border-bottom: 1px solid #d8ded6; background: #f1f4ef; }
  .teb-sidebar-mobile-head strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
  .teb-sidebar-mobile-head button { display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; background: var(--teb-ink); color: white; font-size: 24px; line-height: 1; }
  .teb-filter-overlay { position: fixed; z-index: 1250; inset: 0; display: block; background: rgba(4,10,8,.62); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .teb-filter-overlay.is-open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 780px) {
  .teb-container { width: min(100% - 32px, 1240px); }
  .teb-announcement .teb-container { justify-content: space-between; gap: 10px; font-size: 9px; }
  .teb-announcement a::before { display: none; }
  .teb-header .teb-container { width: calc(100% - 24px); }
  .teb-header__inner { min-height: 70px; gap: 12px; }
  .teb-brand { flex-basis: 205px; }
  .teb-brand img, .teb-custom-logo { max-width: 200px; }
  .teb-nav { top: 104px; }
  .teb-hero { min-height: auto; }
  .teb-hero__grid { display: flex; min-height: auto; flex-direction: column; }
  .teb-hero__copy { max-width: none; padding: 68px 0 15px; }
  .teb-hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .teb-hero__copy > p { font-size: 16px; }
  .teb-hero__proof { margin-top: 42px; }
  .teb-hero__visual { width: 100%; min-height: 430px; }
  .teb-hero__visual::before { width: 390px; height: 390px; }
  .teb-hero__visual > img { width: min(590px, 105vw); max-width: none; max-height: 420px; }
  .teb-hero__badge { top: 30px; right: 0; }
  .teb-marquee > div { justify-content: flex-start; }
  .teb-section { padding: 78px 0; }
  .teb-section-heading { display: block; margin-bottom: 38px; }
  .teb-section-heading > p { margin-top: 20px; }
  .woocommerce .products ul, .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 14px; }
  .teb-shop-results .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teb-shop-toolbar { min-height: 62px; gap: 10px; padding: 10px 12px; }
  .teb-shop-toolbar::before { display: none; }
  .teb-shop-toolbar .woocommerce-result-count { font-size: 10px; }
  .teb-shop-toolbar .woocommerce-ordering select { min-width: 170px; padding: 10px 32px 10px 11px; font-size: 10px; }
  .woocommerce ul.products li.product a img { padding: 10px; }
  .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 57px; padding: 0 13px; font-size: 14px; }
  .woocommerce ul.products li.product .price { margin: 8px 13px 12px; font-size: 15px; }
  .woocommerce ul.products li.product .button { min-height: 36px; margin: 0 13px; padding: 0 12px; font-size: 9px; }
  .woocommerce .products .star-rating { margin-left: 13px; }
  .teb-models { padding-bottom: 78px; }
  .teb-models__grid { grid-template-columns: 1fr; }
  .teb-model-card { display: flex; min-height: 0; flex-direction: column; }
  .teb-model-card > div { width: 100%; max-width: none; padding: 32px 32px 23px; }
  .teb-model-card img { position: relative; right: auto; bottom: auto; width: calc(100% - 32px); height: 300px; margin: 0 16px 16px; padding: 10px; border-radius: 20px; background: white; object-fit: contain; }
  .teb-model-card:hover img { transform: scale(1.015); }
  .teb-komodo { padding: 78px 0; }
  .teb-komodo__grid { grid-template-columns: 1fr; }
  .teb-komodo__image { min-height: 400px; }
  .teb-komodo__image::before { width: 310px; height: 310px; }
  .teb-komodo__image::after { width: 210px; height: 210px; }
  .teb-support__grid { grid-template-columns: 1fr 1fr; }
  .teb-support__grid article { min-height: 235px; padding: 22px; }
  .teb-support__grid h3 { margin-top: 38px; }
  .teb-dealer-cta { padding: 75px 0; }
  .teb-dealer-cta__inner { grid-template-columns: 1fr; gap: 25px; }
  .teb-page-hero, .teb-article-hero { padding: 65px 0 46px; }
  .teb-page-hero .teb-container::after { right: -30px; font-size: 150px; }
  .teb-prose { padding-top: 58px; padding-bottom: 80px; }
  .teb-values, .teb-contact-cards { grid-template-columns: 1fr; }
  .teb-contact-card { min-height: 210px; }
  .teb-contact-card h3 { margin-top: 35px; }
  .teb-form { padding: 24px; }
  .teb-document-grid, .teb-form__grid, .teb-check-list { grid-template-columns: 1fr; }
  .teb-form__wide { grid-column: auto; }
  .teb-post-grid { grid-template-columns: 1fr; padding-top: 55px; }
  .teb-footer { padding-top: 65px; }
  .teb-footer__top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .teb-footer__brand { grid-column: 1 / -1; }
  .teb-footer__contact { display: block; }
  .teb-footer__bottom { display: block; }
  .teb-floating-whatsapp span { display: none; }
  .teb-floating-whatsapp { width: 53px; padding: 0; justify-content: center; }
  .woocommerce div.product div.images, .woocommerce div.product div.summary { float: none; width: 100%; }
  .woocommerce div.product .product_title { font-size: 39px; }
}

@media (max-width: 480px) {
  .teb-brand { flex-basis: min(175px, 53vw); }
  .teb-brand img, .teb-custom-logo { max-width: 172px; }
  .teb-header__actions { gap: 10px; }
  .teb-cart, .teb-menu-toggle { width: 40px; height: 40px; }
  .teb-catalog-hero { padding: 48px 0 45px; }
  .teb-catalog-hero h1 { margin: 12px 0 15px; font-size: 43px; }
  .teb-catalog-hero p { font-size: 13px; }
  .teb-catalog-hero__stats { gap: 0; }
  .teb-catalog-hero__stats div { padding: 12px 9px; }
  .teb-catalog-hero__stats strong { font-size: 15px; }
  .teb-filter-toggle { min-height: 57px; margin-bottom: 15px; }
  .teb-filter-toggle b { display: none; }
  .teb-shop-toolbar { flex-wrap: wrap; margin-bottom: 15px; }
  .teb-shop-toolbar .woocommerce-result-count { flex: 1; }
  .teb-shop-toolbar .woocommerce-ordering { flex: 0 0 auto; }
  .teb-shop-toolbar .woocommerce-ordering select { width: 154px; min-width: 0; }
  .teb-shop-results .woocommerce ul.products { gap: 10px; }
  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { border-radius: 14px; }
  .woocommerce ul.products li.product a img { aspect-ratio: 1.05; margin-bottom: 13px; padding: 8px; }
  .teb-product-category { margin: 0 11px 5px; font-size: 7px; letter-spacing: .08em; }
  .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 54px; padding: 0 11px; font-size: 13px; line-height: 1.35; }
  .woocommerce ul.products li.product .price { margin: 8px 11px 6px; font-size: 14px; }
  .woocommerce ul.products li.product .price del { display: block; font-size: 9px; }
  .teb-card-stock { margin: 0 11px 12px; font-size: 7px; }
  .woocommerce ul.products li.product .button { width: calc(100% - 22px); min-height: 37px; margin: auto 11px 11px; padding: 0 8px; font-size: 8px; }
  .teb-hero__buttons { align-items: flex-start; flex-direction: column; }
  .teb-hero__proof { gap: 10px; }
  .teb-hero__proof strong { font-size: 18px; }
  .teb-hero__proof span { font-size: 8px; }
  .teb-model-card > div { padding: 27px 24px 19px; }
  .teb-model-card h2 { font-size: 36px; }
  .teb-model-card p { margin-bottom: 10px; font-size: 14px; }
  .teb-model-card img { width: calc(100% - 24px); height: 245px; margin: 0 12px 12px; padding: 7px; border-radius: 16px; }
  .teb-support__grid { grid-template-columns: 1fr; }
  .teb-support__grid article { min-height: 210px; }
  .teb-spec-grid { grid-template-columns: 1fr; border-left: 0; }
  .teb-spec-grid div { border-left: 1px solid rgba(255,255,255,.12); }
  .teb-footer__top { grid-template-columns: 1fr; }
  .teb-footer__brand { grid-column: auto; }
}

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