:root {
  --tm-navy: #10233f;
  --tm-navy-2: #173b64;
  --tm-blue: #0f9fe8;
  --tm-blue-soft: #eaf7ff;
  --tm-green: #31bd62;
  --tm-green-dark: #239d4c;
  --tm-amber: #f5aa18;
  --tm-text: #334155;
  --tm-muted: #64748b;
  --tm-line: #dce7f1;
  --tm-surface: #f5f9fc;
  --tm-white: #fff;
  --tm-radius: 18px;
  --tm-shadow: 0 18px 55px rgba(16, 35, 63, .09);
  --tm-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--tm-text);
  background: var(--tm-white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--tm-blue); text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--tm-navy); }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { margin-top: 0; color: var(--tm-navy); line-height: 1.2; letter-spacing: -.025em; }
p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--tm-container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.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 { z-index: 100000; top: 8px; left: 8px; width: auto; height: auto; clip: auto; padding: 12px 18px; background: #fff; color: #000; }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,231,241,.9); backdrop-filter: blur(14px); }
.site-header__inner { width: min(calc(100% - 40px), var(--tm-container)); min-height: 76px; margin: 0 auto; display: flex; align-items: center; gap: 36px; }
.site-branding { display: flex; align-items: center; margin-right: auto; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 46px;
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
}
.text-logo, .footer-logo { font-size: 22px; font-weight: 800; letter-spacing: -.045em; }
.text-logo { color: var(--tm-navy); }
.text-logo span { color: var(--tm-blue); }
.primary-navigation ul { display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; list-style: none; }
.primary-navigation a { color: var(--tm-text); font-size: 14px; font-weight: 600; }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a { color: var(--tm-blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.search-toggle, .menu-toggle { display: grid; place-items: center; border: 0; background: transparent; color: var(--tm-navy); cursor: pointer; }
.search-toggle { width: 42px; height: 42px; border-radius: 12px; }
.search-toggle:hover { background: var(--tm-blue-soft); }
.search-toggle svg, .cart-link svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cart-link { position: relative; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 14px; border: 1px solid var(--tm-line); border-radius: 12px; color: var(--tm-navy); font-size: 14px; font-weight: 650; }
.cart-link:hover { border-color: var(--tm-blue); color: var(--tm-blue); }
.cart-count { display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--tm-blue); color: #fff; font-size: 11px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; gap: 5px; }
.menu-toggle > span:not(.screen-reader-text) { width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.header-search { border-top: 1px solid var(--tm-line); padding: 14px 0; background: #fff; }
.header-search .search-form { display: flex; max-width: 720px; margin: auto; }
.header-search input { width: 100%; min-height: 46px; padding: 0 16px; border: 1px solid var(--tm-line); border-radius: 12px 0 0 12px; }
.header-search button, .header-search .search-submit { padding: 0 22px; border: 0; border-radius: 0 12px 12px 0; background: var(--tm-blue); color: #fff; }

/* Global content */
.site-content { min-height: 65vh; }
.content-shell, .woocommerce-shell { padding-top: 64px; padding-bottom: 88px; }
.single-product .woocommerce-shell { padding-top: 30px; }
.content-card { padding: clamp(26px, 5vw, 64px); border: 1px solid var(--tm-line); border-radius: var(--tm-radius); background: #fff; box-shadow: var(--tm-shadow); }
body.page:not(.home) .content-card,
body.single-post .content-card { padding-right: 0; padding-left: 0; border: 0; border-radius: 0; box-shadow: none; }
body.single-product.woocommerce div.product { padding-right: 0; padding-left: 0; }
body.woocommerce-cart .content-shell,
body.woocommerce-checkout .content-shell { padding-top: 30px; }
body.woocommerce-cart .content-card,
body.woocommerce-checkout .content-card { padding: clamp(20px, 4vw, 46px) 0; border: 0; border-radius: 0; background: #fff; box-shadow: none; }
.entry-title { font-size: clamp(34px, 5vw, 56px); }
.entry-content > *:last-child { margin-bottom: 0; }
.compact-headings-page .entry-title {
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 800;
}
.compact-headings-page.content-shell { padding-top: 30px; }
.compact-headings-page .content-card { padding-top: 46px; }
.compact-headings-page .entry-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
}
.compact-headings-page .entry-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
}
.guide-cta-page .entry-content > :is(h2, h3):has(+ p > a[href]),
.guide-cta-page .entry-content > :is(h2, h3) + p:has(> a[href]) {
  display: none;
}
.guide-page-cta {
  margin-top: 34px;
}
.guide-page-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
}
.guide-cta-page .entry-content > p:first-child {
  margin-bottom: 34px;
}
.guide-cta-page .entry-content > p:first-child img {
  display: block;
  width: min(100%, 600px);
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  border-radius: 14px;
  background: var(--tm-surface);
  object-fit: contain;
}
@media (min-width: 761px) {
  .guide-cta-page .entry-content > p:first-child img,
  .guide-cta-page .entry-content .elementor-widget-image img {
    margin-right: auto;
    margin-left: 0;
  }
  .guide-cta-page .entry-content .elementor-widget-image,
  .guide-cta-page .entry-content .elementor-widget-image .elementor-widget-container {
    text-align: left;
  }
}
.button, button, input[type="submit"], .wp-element-button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  border: 0;
  border-radius: 12px;
  background: var(--tm-green);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}
.button:hover, input[type="submit"]:hover, .wp-element-button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--tm-green-dark); color: #fff; transform: translateY(-1px); }

/* Existing Elementor homepage: preserve every widget, modernize presentation. */
.front-page-content { overflow: hidden; }
.front-page-content .elementor-section.elementor-section-boxed > .elementor-container { max-width: var(--tm-container); }
.front-page-content .elementor-top-section { padding: 74px 20px; }
.front-page-content .elementor-top-section + .elementor-top-section { position: relative; }
.front-page-content .elementor-widget-heading .elementor-heading-title { color: var(--tm-navy); font-family: inherit; font-weight: 800; letter-spacing: -.035em; }
.front-page-content .elementor-widget-text-editor { color: var(--tm-text); font-family: inherit; }
.front-page-content .elementor-button { padding: 15px 24px; border-radius: 12px; background: var(--tm-green); font-family: inherit; font-weight: 700; box-shadow: 0 10px 24px rgba(49,189,98,.2); }
.front-page-content .elementor-button:hover { background: var(--tm-green-dark); transform: translateY(-2px); }

/* Hero */
.front-page-content .elementor-element-2ce26b3 { position: relative; padding-top: 90px; padding-bottom: 90px; background: radial-gradient(circle at 82% 18%, rgba(15,159,232,.16), transparent 28%), linear-gradient(135deg, #f7fbff 0%, #fff 65%); }
.front-page-content .elementor-element-2ce26b3::after { content: "2500+ patikrintų tiekėjų"; position: absolute; right: max(30px, calc((100% - var(--tm-container))/2)); bottom: 30px; padding: 9px 14px; border: 1px solid #cfe9f8; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--tm-navy); font-size: 13px; font-weight: 700; box-shadow: 0 8px 30px rgba(16,35,63,.07); }
.front-page-content .elementor-element-2ce26b3 h1 { max-width: 650px; font-size: clamp(40px, 5vw, 66px) !important; }
.front-page-content .elementor-element-2ce26b3 p { max-width: 630px; color: #475569; font-size: 18px; line-height: 1.75; }
.front-page-content .elementor-element-2ce26b3 img { border-radius: 24px; box-shadow: 0 28px 70px rgba(16,35,63,.16); }

/* Section headings and spacing */
.front-page-content .elementor-element-e68da26,
.front-page-content .elementor-element-79992de,
.front-page-content .elementor-element-b174947,
.front-page-content .elementor-element-d831c9d,
.front-page-content .elementor-element-c4c2f5b { padding-bottom: 18px; text-align: center; }
.front-page-content .elementor-element-e68da26 .elementor-widget-text-editor,
.front-page-content .elementor-element-79992de .elementor-widget-text-editor { color: var(--tm-navy); font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.035em; }

/* Benefits */
.front-page-content .elementor-element-1e4b549 { padding-top: 32px; padding-bottom: 32px; background: var(--tm-surface); }
.front-page-content .elementor-element-1e4b549 .elementor-column,
.front-page-content .elementor-element-1e4b549 .e-con-inner > .e-con { height: 100%; }
.front-page-content .elementor-element-1e4b549 .elementor-widget-wrap { height: 100%; margin: 10px; padding: 30px !important; border: 1px solid var(--tm-line); border-radius: var(--tm-radius); background: #fff; box-shadow: 0 12px 38px rgba(16,35,63,.06); transition: transform .2s ease, box-shadow .2s ease; }
.front-page-content .elementor-element-1e4b549 .elementor-widget-wrap:hover { transform: translateY(-5px); box-shadow: var(--tm-shadow); }
.front-page-content .elementor-element-1e4b549 .elementor-icon { color: var(--tm-blue) !important; }
.front-page-content .elementor-element-1e4b549 h3 { font-size: 20px; }

/* Price examples */
.front-page-content .elementor-element-d39dfe7,
.front-page-content .elementor-element-2122631 { padding-top: 24px; padding-bottom: 24px; }
.front-page-content .elementor-element-d39dfe7 .elementor-widget-wrap,
.front-page-content .elementor-element-2122631 .elementor-widget-wrap { margin: 10px; overflow: hidden; border: 1px solid var(--tm-line); border-radius: var(--tm-radius); background: #fff; box-shadow: 0 12px 36px rgba(16,35,63,.06); }
.front-page-content .elementor-element-d39dfe7 img,
.front-page-content .elementor-element-2122631 img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }

/* Product lists */
.front-page-content .elementor-element-d6653bd { padding-top: 64px; padding-bottom: 74px; background: var(--tm-surface); }
.front-page-content .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0 !important; }
.front-page-content .woocommerce ul.products::before,
.front-page-content .woocommerce ul.products::after { display: none; }
.front-page-content .woocommerce ul.products li.product { width: auto !important; min-height: 112px; margin: 0 !important; padding: 14px; display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 14px; border: 1px solid var(--tm-line); border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(16,35,63,.045); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.front-page-content .woocommerce ul.products li.product:hover { transform: translateY(-3px); border-color: #a9dffa; box-shadow: 0 15px 36px rgba(16,35,63,.09); }
.front-page-content .woocommerce ul.products li.product img { grid-row: 1 / span 4; width: 76px !important; height: 76px !important; margin: 0 !important; border-radius: 12px; object-fit: cover; }
.front-page-content .woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 !important; color: var(--tm-navy); font-size: 14px !important; line-height: 1.35; }
.front-page-content .woocommerce ul.products li.product .star-rating { color: var(--tm-amber); font-size: 12px; }
.front-page-content .woocommerce ul.products li.product .price { margin: 0; color: var(--tm-navy); font-size: 14px; font-weight: 800; }
.front-page-content .woocommerce ul.products li.product .button { display: none; }

/* Educational sections */
.front-page-content .elementor-element-91385c2,
.front-page-content .elementor-element-514e314,
.front-page-content .elementor-element-0b336d3 { padding-top: 34px; padding-bottom: 64px; }
.front-page-content .elementor-element-91385c2 .elementor-container,
.front-page-content .elementor-element-0b336d3 .elementor-container { padding: clamp(24px,4vw,52px); border: 1px solid var(--tm-line); border-radius: 22px; background: #fff; box-shadow: 0 14px 44px rgba(16,35,63,.055); }
.front-page-content .elementor-element-514e314 { background: linear-gradient(135deg, #eaf7ff 0%, #f8fcff 100%); }
.front-page-content .elementor-element-514e314 img { border-radius: 20px; box-shadow: var(--tm-shadow); }
.front-page-content .elementor-element-91385c2 p,
.front-page-content .elementor-element-0b336d3 p { max-width: 940px; margin-right: auto; margin-left: auto; }

/* Testimonials */
.front-page-content .elementor-element-5cb6376 { padding-top: 72px; padding-bottom: 72px; background: var(--tm-surface); }
.front-page-content .elementor-element-5cb6376::before { content: "Klientų patirtys"; display: block; margin-bottom: 10px; text-align: center; color: var(--tm-blue); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.front-page-content .elementor-element-5cb6376 .elementor-inner-section .elementor-widget-wrap { height: calc(100% - 20px); margin: 10px; padding: 28px !important; border: 1px solid var(--tm-line); border-radius: var(--tm-radius); background: #fff; box-shadow: 0 10px 32px rgba(16,35,63,.05); }
.front-page-content .elementor-testimonial__image img,
.front-page-content .elementor-element-5cb6376 img { border-radius: 50%; }

/* FAQ */
.front-page-content .elementor-element-c4c2f5b { padding-top: 76px; }
.front-page-content .elementor-element-56439ea { padding-top: 20px; padding-bottom: 90px; }
.front-page-content .elementor-element-56439ea .elementor-accordion { max-width: 900px; margin: 0 auto; }
.front-page-content .elementor-accordion .elementor-accordion-item { margin-bottom: 10px; overflow: hidden; border: 1px solid var(--tm-line) !important; border-radius: 13px; background: #fff; }
.front-page-content .elementor-accordion .elementor-tab-title { padding: 19px 20px; color: var(--tm-navy); font-weight: 700; }
.front-page-content .elementor-accordion .elementor-tab-content { padding: 0 20px 20px; border-top: 0 !important; color: var(--tm-muted); }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin-bottom: 24px; color: var(--tm-muted); font-size: 13px; }
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce ul.products.columns-3,
.woocommerce ul.products.columns-4 { display: grid !important; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce[class*="columns-"] ul.products li.product {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  padding: 16px;
  border: 1px solid var(--tm-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16,35,63,.05);
}
.woocommerce ul.products li.product > a.woocommerce-loop-product__link > img.attachment-woocommerce_thumbnail { display: block; width: 100%; aspect-ratio: 1 / 1; margin: 0 0 16px; border-radius: 12px; object-fit: cover; }
.woocommerce ul.products li.product img.emoji {
  display: inline !important;
  width: 1em !important;
  height: 1em !important;
  margin: 0 .06em !important;
  border: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  vertical-align: -.1em !important;
  box-shadow: none !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.8em; padding: 0; color: var(--tm-navy); font-size: 16px; line-height: 1.4; }
.woocommerce ul.products li.product .star-rating { margin: 7px 0; color: var(--tm-amber); }
.woocommerce ul.products li.product .star-rating { display: none !important; }
.woocommerce ul.products li.product .price { min-height: 1.7em; margin: 8px 0 15px; color: var(--tm-navy); font-weight: 800; }
.woocommerce ul.products li.product .button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; margin-top: 0; padding: 10px 17px; }
.woocommerce span.onsale { display: none !important; }
.woocommerce div.product { padding: clamp(20px,4vw,46px); border: 0; border-radius: 0; background: #fff; box-shadow: none; }
.single-product .woocommerce div.product { padding-top: 30px; }
.woocommerce-cart table.cart .product-quantity,
.woocommerce-cart table.cart .product-subtotal,
.woocommerce-cart table.cart button[name="update_cart"] { display: none !important; }
.woocommerce-cart .cart_totals .cart-subtotal { display: none !important; }
.woocommerce-cart .cart_totals > h2 { display: none !important; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--tm-blue) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(15, 159, 232, .2);
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--tm-navy-2) !important;
  color: #fff !important;
}
.woocommerce-cart .entry-title { font-size: 30px; }
.woocommerce-checkout .entry-title { font-size: 30px; }
.woocommerce-checkout-review-order-table .cart-subtotal { display: none !important; }
.woocommerce-checkout-review-order-table thead { display: none !important; }
.woocommerce-checkout-review-order-table .product-quantity { display: none !important; }
.woocommerce-checkout #order_review_heading { margin-top: 32px; }
.woocommerce-checkout #payment .opay-payment-item { padding: 4px !important; }
.woocommerce-checkout #payment .opay-payment-item > label {
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid #cbd8e6 !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(18, 42, 75, .05);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.woocommerce-checkout #payment .opay-payment-item > label > span {
  height: 98px !important;
  background-position: center center !important;
}
.woocommerce-checkout #payment .opay-payment-item input[type="radio"] {
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.woocommerce-checkout #payment .opay-payment-item > label:hover {
  border-color: var(--tm-blue) !important;
  background: #f7fbff !important;
}
.woocommerce-checkout #payment .opay-payment-item > label:has(input[type="radio"]:checked) {
  border-color: var(--tm-blue) !important;
  background: #f2f9ff !important;
  box-shadow: 0 0 0 2px rgba(15, 159, 232, .15);
}
.woocommerce-checkout #payment {
  border: 1px solid var(--tm-line);
  border-radius: 14px;
  background: #fff !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: var(--tm-line) !important;
  background: #fff;
}
.woocommerce-checkout #payment div.payment_box {
  color: var(--tm-navy);
  background: #f2f8fd !important;
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #f2f8fd !important;
}
.woocommerce-checkout #payment .place-order {
  background: #fff;
}
.woocommerce-checkout #payment #place_order {
  background: var(--tm-blue) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(15, 159, 232, .2);
}
.woocommerce-checkout #payment #place_order:hover {
  background: var(--tm-navy-2) !important;
}
@media (min-width: 761px) {
  .woocommerce-checkout #payment .place-order { text-align: left; }
  .woocommerce-checkout #payment #place_order { clear: both; float: left !important; margin-top: 24px !important; margin-right: auto; margin-left: 0; }
}
.woocommerce-cart table.cart thead { display: none !important; }
.woocommerce-cart table.cart td.actions { display: none !important; }
.woocommerce-cart table.cart tbody tr.cart_item { position: relative; }
.woocommerce-cart table.cart tbody tr.cart_item .product-remove { position: absolute; z-index: 2; top: 50%; right: 14px; width: 34px !important; padding: 0 !important; border: 0 !important; text-align: center; transform: translateY(-50%); }
.woocommerce-cart table.cart tbody tr.cart_item .product-price { padding-right: 58px !important; }
.woocommerce div.product .product_title { color: var(--tm-navy); font-size: 26px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--tm-navy); font-weight: 800; }
.single-product .product_meta .posted_in { display: none !important; }
.single-product div.product .summary { display: flex; flex-direction: column; }
.single-product div.product .summary .product_title { order: 1; }
.single-product div.product .summary .woocommerce-product-rating { order: 2; display: flex !important; align-items: center; gap: 10px; margin: -2px 0 16px; }
.single-product div.product .summary .woocommerce-product-rating .star-rating { margin: 0 0 0 -10px; color: var(--tm-amber); }
.single-product div.product .summary .woocommerce-product-rating .tm-rating-value { color: var(--tm-muted); font-size: 13px; font-weight: 700; }
.single-product div.product .summary .woocommerce-product-details__short-description { order: 3; }
.single-product div.product .summary p.price { order: 4; display: flex; flex-direction: row-reverse; align-items: baseline; align-self: center; justify-content: center; gap: 8px; margin: 20px 0 12px; text-align: center; }
.single-product div.product .summary form.cart { order: 5; align-self: center; margin-right: 0; margin-left: 0; text-align: center; }
.single-product div.product .summary .product_meta { order: 6; }
.single-product div.product .summary p.price ins { color: var(--tm-navy); font-weight: 800; text-decoration: none; }
.single-product div.product .summary p.price del { color: var(--tm-muted); font-size: .75em; font-weight: 500; }
.single-product div.product form.cart button.single_add_to_cart_button { background-color: var(--tm-blue) !important; color: #fff !important; box-shadow: 0 10px 22px rgba(15,159,232,.2); }
.single-product div.product form.cart button.single_add_to_cart_button:hover { background-color: var(--tm-navy-2) !important; color: #fff !important; transform: translateY(-1px); }
.single-product .woocommerce-Tabs-panel--description table { width: min(100%, 620px) !important; max-width: 100% !important; min-width: 0 !important; margin: 22px 0; overflow: hidden; border: 1px solid var(--tm-line); border-spacing: 0; border-collapse: separate; border-radius: 12px; table-layout: fixed; }
.single-product .woocommerce-Tabs-panel--description table col:first-child { width: 56% !important; }
.single-product .woocommerce-Tabs-panel--description table col:nth-child(2) { width: 44% !important; }
.single-product .woocommerce-Tabs-panel--description table tr:nth-child(odd) { background: #f7f9fb; }
.single-product .woocommerce-Tabs-panel--description table tr:nth-child(even) { background: #eef2f5; }
.single-product .woocommerce-Tabs-panel--description table td { min-width: 0 !important; padding: 15px 20px; border: 0; vertical-align: top; line-height: 1.55; white-space: normal !important; overflow-wrap: anywhere; }
.single-product .woocommerce-Tabs-panel--description table:has(tr > td:nth-child(3)) td { width: auto; }
.single-product .woocommerce-Tabs-panel--description table:has(tr > td:nth-child(3)) td:first-child { width: 1% !important; padding-right: 12px; white-space: nowrap; }
.single-product .woocommerce-Tabs-panel--description > .elementor,
.single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section,
.single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section > .elementor-container {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section > .elementor-container > .elementor-column,
.single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section > .elementor-container > .elementor-column > .elementor-widget-wrap {
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.single-product .woocommerce-tabs > ul.tabs { display: none !important; }
.single-product .woocommerce-tabs { position: relative; top: 28px; margin-top: 60px; margin-bottom: 28px; padding-top: 60px; border-top: 1px solid var(--tm-line); }
.single-product .woocommerce-tabs::before { content: ""; position: absolute; top: -2px; left: 0; width: 68px; height: 3px; border-radius: 999px; background: var(--tm-blue); }
.single-product .woocommerce-Tabs-panel--description > :first-child { margin-top: 0; }
.single-product .related.products { position: relative; clear: both; margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--tm-line); }
.single-product .related.products::before { content: ""; position: absolute; top: -2px; left: 0; width: 68px; height: 3px; border-radius: 999px; background: var(--tm-blue); }
.single-product .related.products > .tm-section-title { margin: 0 0 22px; color: var(--tm-navy); font-size: 24px; font-weight: 700; line-height: 1.2; letter-spacing: -.025em; }
.single-product .woocommerce-product-gallery { container-type: inline-size; background: #fff; }
.single-product .woocommerce-product-gallery .flex-viewport { height: 70cqw !important; min-height: 70cqw; background: #f7fafc; }
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper { height: 100% !important; margin: 0; }
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image { height: 100% !important; }
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; }
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img { width: 100% !important; height: 100% !important; object-fit: contain; object-position: center; }
.single-product .woocommerce-product-gallery .tm-gallery-thumbs { display: grid; grid-template-columns: 36px minmax(0, 1fr) 36px; align-items: center; gap: 8px; padding-top: 20px; background: #fff; }
.single-product .woocommerce-product-gallery ol.flex-control-thumbs { display: flex; gap: 8px; min-width: 0; margin: 0 !important; padding: 0 !important; overflow-x: auto; overflow-y: hidden; border: 0; background: #fff; scrollbar-width: none; scroll-snap-type: x mandatory; }
.single-product .woocommerce-product-gallery ol.flex-control-thumbs::-webkit-scrollbar { display: none; }
.single-product .woocommerce-product-gallery ol.flex-control-thumbs li { flex: 0 0 calc((100% - 24px) / 4); width: auto !important; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--tm-line); border-radius: 8px; background: #f7fafc; scroll-snap-align: start; }
.single-product .woocommerce-product-gallery ol.flex-control-thumbs img { width: 100% !important; height: 100% !important; object-fit: cover; object-position: center; }
.single-product .woocommerce-product-gallery .tm-gallery-arrow { display: grid; place-items: center; width: 36px; height: 44px; padding: 0; border: 1px solid var(--tm-line); border-radius: 10px; background: #fff; color: var(--tm-blue); font-size: 30px; font-weight: 400; line-height: 1; cursor: pointer; }
.single-product .woocommerce-product-gallery .tm-gallery-arrow:hover { border-color: var(--tm-blue); background: var(--tm-blue-soft); color: var(--tm-blue); transform: none; }
.single-product .woocommerce-product-gallery .tm-gallery-arrow:disabled { opacity: .3; cursor: default; }
.woocommerce table.shop_table { overflow: hidden; border-color: var(--tm-line); border-radius: 14px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce select { min-height: 46px; padding: 10px 13px; border: 1px solid var(--tm-line); border-radius: 10px; background: #fff; }

/* Compact shop archive cards: approximately 30% shorter than the default cards. */
.woocommerce-shell ul.products li.product { padding: 12px; }
.woocommerce-shell ul.products li.product > a.woocommerce-loop-product__link > img.attachment-woocommerce_thumbnail {
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 10px;
  background: #f7fafc;
  object-fit: cover;
}
.woocommerce-shell ul.products li.product .woocommerce-loop-product__title { min-height: 2.8em; margin: 0; }
.woocommerce-shell ul.products li.product .price { min-height: 0; margin: 4px 0 10px; }
.woocommerce-shell ul.products li.product .button { min-height: 40px; padding: 8px 15px; }

.woocommerce ul.products li.product .price {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
}
.woocommerce ul.products li.product .price ins {
  color: var(--tm-navy);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}
.woocommerce ul.products li.product .price del {
  color: var(--tm-muted);
  font-size: 12px;
  font-weight: 500;
  opacity: .8;
}

/* Blog and utility */
.posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.post-card { padding: 20px; border: 1px solid var(--tm-line); border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(16,35,63,.05); }
.post-card img { border-radius: 12px; }
.not-found { padding-top: 120px; padding-bottom: 140px; text-align: center; }
.not-found h1 { font-size: clamp(40px,7vw,72px); }
.eyebrow { color: var(--tm-blue); font-weight: 800; letter-spacing: .12em; }

/* Footer */
.site-footer { color: #cbd7e5; background: var(--tm-navy); }
.site-footer__main { padding: 66px 20px 48px; }
.footer-grid { width: min(100%, var(--tm-container)); margin: auto; display: grid; grid-template-columns: 1.3fr 1fr .85fr 1fr; gap: 40px; }
.site-footer h3 { margin-bottom: 18px; color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.site-footer p, .site-footer li { font-size: 14px; line-height: 1.75; }
.site-footer .footer-column > p,
.site-footer .footer-links > li { margin: 0; }
.site-footer .footer-column:not(.footer-about),
.site-footer .footer-links { display: flex; flex-direction: column; gap: 0; }
.site-footer .footer-column h3 { margin-bottom: 12px; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer a { color: #d9e5ef; }
.site-footer a:hover { color: #fff; }
.footer-logo { display: inline-block; margin-bottom: 12px; color: #fff; line-height: 1.2; }
.footer-logo span { color: var(--tm-blue); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { width: min(calc(100% - 40px), var(--tm-container)); min-height: 72px; margin: auto; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.footer-bottom-inner p { margin: 0; }
.secure-payment { color: #8fe2aa; font-weight: 700; }

@media (max-width: 1024px) {
  .site-header__inner { gap: 18px; }
  .primary-navigation ul { gap: 18px; }
  .front-page-content .woocommerce ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .single-product .woocommerce-shell { padding-top: 20px; }
  body.single-product.woocommerce div.product { padding: 20px 6px 0; }
  .container { width: min(calc(100% - 28px), var(--tm-container)); }
  .site-header__inner { min-height: 68px; }
  .custom-logo { max-width: 145px; max-height: 38px; }
  .menu-toggle { display: grid; order: 2; }
  .primary-navigation { display: none; position: absolute; top: 68px; left: 0; width: 100%; padding: 14px 20px 20px; border-bottom: 1px solid var(--tm-line); background: #fff; box-shadow: 0 18px 30px rgba(16,35,63,.08); }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { align-items: stretch; flex-direction: column; gap: 0; text-align: right; }
  .primary-navigation a { display: block; padding: 12px 4px; }
  .header-actions { order: 1; }
  .cart-link span:not(.cart-count) { display: none; }
  .cart-link { padding: 0 10px; }
  .front-page-content .elementor-top-section { padding: 50px 14px; }
  .front-page-content .elementor-element-2ce26b3 { padding-top: 58px; padding-bottom: 72px; text-align: center; }
  .front-page-content .elementor-element-2ce26b3::after { right: 50%; bottom: 20px; transform: translateX(50%); white-space: nowrap; }
  .front-page-content .elementor-element-2ce26b3 h1 { font-size: 40px !important; }
  .front-page-content .elementor-element-2ce26b3 p { font-size: 16px; }
  .front-page-content .elementor-element-1e4b549 .elementor-widget-wrap { margin: 7px 0; }
  .front-page-content .woocommerce ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4 { grid-template-columns: 1fr; }
  .front-page-content .woocommerce ul.products li.product { min-height: 105px; }
  .posts-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
  .footer-bottom-inner { min-height: 92px; padding: 18px 0; flex-direction: column; justify-content: center; text-align: center; }
  .content-shell, .woocommerce-shell { padding-top: 38px; padding-bottom: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Native front page components (no Elementor markup required). */
#tiekeju-sarasai,
#kaip-tai-veikia,
#atsiliepimai,
#duk {
  scroll-margin-top: 128px;
}
@media (max-width: 760px) {
  #tiekeju-sarasai,
  #kaip-tai-veikia,
  #atsiliepimai,
  #duk { scroll-margin-top: 112px; }
}
.tm-section { padding: 60px 0; }
.tm-kicker { display: inline-block; margin-bottom: 12px; color: var(--tm-blue); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.tm-section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.tm-section-heading h2,
.tm-section-heading .tm-section-title { margin-bottom: 0; color: var(--tm-navy); font-size: 30px; font-weight: 700; line-height: 1.2; letter-spacing: -.025em; }
.tm-section-heading--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; text-align: left; }
.tm-button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 12px; font-weight: 750; }
.tm-button--primary { background: var(--tm-green); color: #fff; box-shadow: 0 12px 28px rgba(49,189,98,.22); }
.tm-button--primary:hover { background: var(--tm-green-dark); color: #fff; transform: translateY(-2px); }
.tm-button--secondary { border: 1px solid #a9dffa; background: #fff; color: var(--tm-blue); }
.tm-button--secondary:hover { border-color: var(--tm-blue); background: var(--tm-blue-soft); color: var(--tm-navy); }
.tm-text-link { font-weight: 750; white-space: nowrap; }

.tm-not-found { display: grid; min-height: 68vh; padding: clamp(54px, 8vw, 100px) 0; place-items: center; background: radial-gradient(circle at 78% 20%, rgba(15,159,232,.15), transparent 28%), linear-gradient(135deg, #f4faff 0%, #fff 70%); }
.tm-not-found-card { max-width: 700px; margin: 0 auto; padding: clamp(34px, 6vw, 64px); border: 1px solid var(--tm-line); border-radius: 24px; background: rgba(255,255,255,.94); text-align: center; box-shadow: 0 20px 60px rgba(16,35,63,.09); }
.tm-not-found-icon { display: grid; width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 22px; place-items: center; background: #eaf7ff; color: var(--tm-blue); }
.tm-not-found-icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.tm-not-found-code { display: block; margin-bottom: 8px; color: var(--tm-blue); font-size: 15px; font-weight: 850; letter-spacing: .14em; }
.tm-not-found h1 { margin: 0 0 16px; font-size: clamp(32px, 5vw, 48px); }
.tm-not-found p { max-width: 560px; margin: 0 auto; color: var(--tm-muted); font-size: 18px; line-height: 1.7; }
.tm-not-found-actions { display: flex; margin-top: 30px; justify-content: center; gap: 12px; }
@media (max-width: 520px) {
  .tm-not-found { min-height: 62vh; padding: 36px 0; }
  .tm-not-found-actions { flex-direction: column; }
  .tm-not-found-actions .tm-button { width: 100%; }
}

.tm-hero { position: relative; padding: 60px 0; overflow: hidden; background: radial-gradient(circle at 82% 18%, rgba(15,159,232,.17), transparent 28%), linear-gradient(135deg, #f5fbff, #fff 66%); }
.tm-hero::before { content: ""; position: absolute; width: 380px; height: 380px; top: -210px; right: -120px; border: 1px solid rgba(15,159,232,.2); border-radius: 50%; }
.tm-hero__grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(28px, 4vw, 48px); }
.tm-hero__content h1 { margin-bottom: 22px; font-size: 36px; }
.tm-hero__content > p { max-width: 650px; margin-bottom: 30px; color: #475569; font-size: 17px; }
.tm-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.tm-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.tm-stats .tm-stat-card { min-height: 78px; padding: 14px 16px; display: flex; align-items: center; gap: 13px; border: 1px solid var(--tm-line); border-radius: 13px; background: rgba(255,255,255,.9); box-shadow: 0 8px 22px rgba(16,35,63,.05); }
.tm-stat-card svg { width: 32px; height: 32px; flex: 0 0 32px; fill: none; stroke: var(--tm-blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tm-stat-card p { min-width: 0; margin: 0; text-align: left; }
.tm-stat-card strong, .tm-stat-card span { display: block; }
.tm-stat-card strong { color: var(--tm-navy); font-size: 15px; font-weight: 800; line-height: 1.2; white-space: nowrap; }
.tm-stat-card span { margin-top: 3px; color: var(--tm-text); font-family: inherit; font-size: 13px; font-weight: 400; line-height: 1.5; letter-spacing: normal; }
.tm-stats-panel { max-width: 440px; padding: 8px 26px; border: 1px solid var(--tm-line); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 14px 34px rgba(16,35,63,.07); }
.tm-hero__visual .tm-stats { grid-template-columns: 1fr; max-width: none; margin: 0; gap: 0; }
.tm-hero__visual .tm-stat-card { min-height: 82px; padding: 15px 2px; border: 0; border-bottom: 1px solid var(--tm-line); border-radius: 0; background: transparent; box-shadow: none; }
.tm-hero__visual .tm-stat-card:last-child { border-bottom: 0; }
.tm-hero__visual .tm-stat-card svg { width: 38px; height: 38px; flex-basis: 38px; }
.tm-hero__visual .tm-stat-card strong { font-size: 18px; }
.tm-hero__visual .tm-stat-card:first-child strong { color: var(--tm-blue); }
.tm-hero__visual .tm-stat-card span { font-size: 14px; }
.tm-hero-card { position: relative; padding: 16px; border: 1px solid #d7e9f5; border-radius: 26px; background: #fff; box-shadow: 0 30px 75px rgba(16,35,63,.16); transform: rotate(1deg); }
.tm-hero-card img { display: block; width: 100%; border-radius: 17px; }
.tm-verified { position: absolute; right: -16px; bottom: 26px; padding: 11px 15px; border-radius: 999px; background: var(--tm-green); color: #fff; font-size: 13px; font-weight: 750; box-shadow: 0 10px 24px rgba(49,189,98,.3); }

.tm-benefits { background: var(--tm-surface); }
.tm-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tm-benefit-card { padding: 30px; border: 1px solid var(--tm-line); border-radius: var(--tm-radius); background: #fff; box-shadow: 0 10px 32px rgba(16,35,63,.045); transition: transform .2s ease, box-shadow .2s ease; }
.tm-benefit-card:hover { transform: translateY(-5px); box-shadow: var(--tm-shadow); }
.tm-benefit-card h3 { margin-bottom: 12px; font-size: 20px; }
.tm-benefit-card p { margin: 0; color: var(--tm-muted); font-size: 14px; }
.tm-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 14px; background: var(--tm-blue-soft); color: var(--tm-blue); font-size: 23px; font-weight: 800; }
.tm-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.tm-price-section { background: #fff; }
.tm-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; width: 100%; max-width: 1040px; margin-right: auto; margin-left: auto; }
.tm-price-card { margin: 0; overflow: hidden; border: 1px solid var(--tm-line); border-radius: 17px; background: #fff; box-shadow: 0 12px 36px rgba(16,35,63,.06); }
.tm-price-card img { display: block; width: 100% !important; height: 250px !important; aspect-ratio: 4/3; object-fit: contain; object-position: center; background: #fff; }
.tm-price-card figcaption { display: grid; gap: 7px; padding: 15px 19px 17px; color: var(--tm-text); font-size: 14px; }
.tm-price-card figcaption span { display: flex; justify-content: flex-start; gap: 5px; }
.tm-price-card figcaption strong { color: var(--tm-navy); font-weight: 800; white-space: nowrap; }
.tm-price-card figcaption span:last-child strong { color: var(--tm-green-dark); }

.tm-products-section { background: var(--tm-surface); }
.tm-native-products .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.tm-native-products .woocommerce ul.products li.product { min-height: 118px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px; width: 100% !important; max-width: none !important; margin: 0 !important; padding: 14px; box-shadow: 0 8px 26px rgba(16,35,63,.04); }
.tm-native-products .woocommerce ul.products li.product:hover { transform: translateY(-3px); border-color: #a9dffa; box-shadow: 0 15px 34px rgba(16,35,63,.09); }
.tm-native-products .woocommerce ul.products li.product .woocommerce-loop-product__link { display: grid; grid-template-columns: 80px minmax(0, 1fr); grid-template-rows: auto auto auto; align-items: center; gap: 4px 12px; width: 100%; min-width: 0; color: inherit; }
.tm-native-products .woocommerce ul.products li.product > a.woocommerce-loop-product__link > img.attachment-woocommerce_thumbnail { grid-column: 1; grid-row: 1 / span 3; width: 80px !important; height: 80px !important; margin: 0 !important; object-fit: cover; }
.tm-native-products .woocommerce-loop-product__title { grid-column: 2; min-height: 0 !important; margin: 0; padding: 0 !important; font-size: 14px !important; line-height: 1.35; overflow-wrap: anywhere; }
.tm-native-products .star-rating { grid-column: 2; margin: 0 !important; color: var(--tm-amber); font-size: 12px; }
.tm-native-products .price { grid-column: 2; min-height: 0 !important; margin: 6px 0 0 !important; color: var(--tm-navy) !important; font-size: 14px !important; font-weight: 800 !important; }
.tm-native-products .woocommerce ul.products li.product .button { display: inline-flex !important; align-items: center; justify-content: center; width: 38px; min-width: 38px; height: 38px; min-height: 38px; margin: 0 !important; padding: 0; border: 1px solid #cce9f8; border-radius: 10px; background: var(--tm-blue-soft); color: var(--tm-blue); font-size: 0; line-height: 1; box-shadow: none; }
.tm-native-products .woocommerce ul.products li.product .button::before { content: ""; width: 18px; height: 18px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 2-1.6L20.5 8H6M10 20h.01M18 20h.01'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 2-1.6L20.5 8H6M10 20h.01M18 20h.01'/%3E%3C/svg%3E") center / contain no-repeat; }
.tm-native-products .woocommerce ul.products li.product .button:hover { border-color: var(--tm-blue); background: var(--tm-blue); color: #fff; }
.tm-native-products .woocommerce ul.products li.product .added_to_cart { grid-column: 1 / -1; margin-top: 4px; font-size: 12px; font-weight: 700; text-align: right; }

.tm-how { background: #fff; }
.tm-how-panel { padding: 34px 32px 38px; border: 1px solid #cfe8f7; border-radius: 24px; background: linear-gradient(135deg, #eef8ff, #f9fcff); box-shadow: 0 12px 34px rgba(16,35,63,.05); }
.tm-how-panel .tm-section-heading { margin-bottom: 28px; text-align: center; }
.tm-how-panel .tm-section-heading h2,
.tm-how-panel .tm-section-heading .tm-section-title { font-size: 30px; }
.tm-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px; }
.tm-steps article { position: relative; display: grid; grid-template-columns: 92px minmax(0,1fr); align-items: center; gap: 16px; min-width: 0; }
.tm-steps article:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -34px; color: var(--tm-blue); font-size: 30px; font-weight: 300; transform: translateY(-50%); }
.tm-step-icon { display: grid; place-items: center; width: 92px; height: 92px; border: 1px solid #dce8f0; border-radius: 50%; background: #fff; color: var(--tm-blue); box-shadow: 0 8px 22px rgba(16,35,63,.07); }
.tm-step-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tm-step-icon--excel { color: #24a148; }
.tm-step-copy h3 { display: flex; align-items: center; gap: 9px; margin: 0 0 8px; font-size: 16px; }
.tm-step-copy h3 span { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--tm-blue); color: #fff; font-size: 13px; font-weight: 800; }
.tm-steps p { margin: 0; color: var(--tm-muted); font-size: 14px; line-height: 1.55; }

.tm-reading { max-width: 900px; }
.tm-reading > h2 { font-size: 30px; }
.tm-article-section .tm-reading { max-width: var(--tm-container); }
.tm-article-section .tm-reading > p { max-width: 900px; }
.tm-article-section .tm-kicker, .tm-article-section .tm-reading > h2 { display: block; text-align: left; }
.tm-article-section p, .tm-dropshipping-copy p { color: #475569; }
.tm-explainer { background: var(--tm-surface); }
.tm-explainer__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 54px; }
.tm-explainer__grid h2 { font-size: 30px; }
.tm-explainer__image img { display: block; border-radius: 21px; box-shadow: var(--tm-shadow); }
.tm-explainer-copy { max-width: var(--tm-container); margin-top: 68px; padding: clamp(28px, 5vw, 54px); border: 1px solid var(--tm-line); border-radius: 21px; background: #fff; box-shadow: 0 12px 40px rgba(16,35,63,.05); }
.tm-explainer-copy > p { max-width: 900px; }
.tm-explainer-copy > h2 { text-align: left; }
.tm-dropshipping-copy { max-width: var(--tm-container); margin-top: 68px; padding: clamp(28px, 5vw, 54px); border: 1px solid var(--tm-line); border-radius: 21px; background: #fff; box-shadow: 0 12px 40px rgba(16,35,63,.05); }
.tm-dropshipping-copy > p { max-width: 900px; }
.tm-copy-divider { height: 1px; margin: 42px 0; border: 0; background: var(--tm-line); }

.tm-testimonials { background: #fff; }
.tm-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tm-testimonial { display: flex; min-height: 230px; margin: 0; padding: 28px; flex-direction: column; justify-content: space-between; border: 1px solid var(--tm-line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(16,35,63,.05); }
.tm-testimonial > p { color: #475569; }
.tm-testimonial footer { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 11px; }
.tm-testimonial footer > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--tm-blue-soft); color: var(--tm-blue); font-size: 12px; font-weight: 800; }
.tm-testimonial footer strong { color: var(--tm-navy); font-size: 14px; }
.tm-testimonial footer em { color: var(--tm-amber); font-size: 22px; font-style: normal; line-height: 1; letter-spacing: 1.5px; }

.tm-faq { background: var(--tm-surface); }
.tm-faq-list { display: grid; gap: 10px; }
.tm-faq-item { overflow: hidden; border: 1px solid var(--tm-line); border-radius: 14px; background: #fff; }
.tm-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--tm-navy); font-weight: 750; cursor: pointer; list-style: none; }
.tm-faq-item summary::-webkit-details-marker { display: none; }
.tm-faq-item summary span { color: var(--tm-blue); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.tm-faq-item[open] summary span { transform: rotate(45deg); }
.tm-faq-answer { padding: 0 22px 22px; color: var(--tm-muted); }
.tm-faq-answer > *:last-child { margin-bottom: 0; }
.single-product .tm-product-faq { margin-top: 0; padding: 60px 0; border-radius: 0; }
.single-product .tm-product-faq .container { width: min(calc(100% - 40px), var(--tm-container)); padding: 0; }
.single-product .tm-product-testimonials { margin-top: 0; padding: 60px 0; border-radius: 0; background: #fff; }
.single-product .tm-product-testimonials .container { width: min(calc(100% - 40px), var(--tm-container)); padding: 0; }
.single-product:not(.tm-elementor-editing) .woocommerce-Tabs-panel--description .elementor-top-section:has(.elementor-widget-testimonial) { display: none !important; }
.single-product .tm-product-benefits { clear: both; margin-top: 0; padding: 60px 0; border-radius: 0; background: var(--tm-surface); }
.single-product .tm-product-benefits .container { width: min(calc(100% - 40px), var(--tm-container)); padding: 0; }
.single-product .tm-product-benefits,
.single-product .tm-product-testimonials,
.single-product .tm-product-faq {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
}
.single-product:not(.tm-elementor-editing) .woocommerce-Tabs-panel--description .elementor-top-section:has(.elementor-widget-divider):has(.elementor-widget-icon-box) { display: none !important; }
.single-product .woocommerce-Tabs-panel--description .elementor-widget-divider { display: none !important; margin: 0 !important; padding: 0 !important; }
.single-product .woocommerce-Tabs-panel--description .tm-legacy-divider { display: none !important; }
.single-product .woocommerce-Tabs-panel--description .tm-legacy-divider .elementor-widget-divider { display: none !important; }
.single-product .woocommerce-Tabs-panel--description .tm-legacy-divider > .elementor-container,
.single-product .woocommerce-Tabs-panel--description .tm-legacy-divider .elementor-column,
.single-product .woocommerce-Tabs-panel--description .tm-legacy-divider .elementor-widget-wrap { min-height: 0 !important; height: 0 !important; margin: 0 !important; padding: 0 !important; }
.single-product .tm-product-price-heading {
  margin-top: 60px !important;
  padding: 60px 0 30px !important;
  background:
    linear-gradient(var(--tm-blue), var(--tm-blue)) left top / 68px 3px no-repeat,
    linear-gradient(var(--tm-line), var(--tm-line)) left 1px / 100% 1px no-repeat;
  text-align: center;
}
.single-product .tm-product-price-heading .elementor-widget-divider { display: none !important; margin: 0 !important; }
.single-product .tm-product-price-heading::before { content: "Realūs pavyzdžiai"; display: block; margin-bottom: 12px; color: var(--tm-blue); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.single-product .tm-product-price-heading .elementor-heading-title { margin: 0 !important; color: var(--tm-navy); font-family: inherit; font-size: 30px !important; font-weight: 800; line-height: 1.2; letter-spacing: -.035em; }
.single-product .tm-product-price-grid-native { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; width: 100%; max-width: 1040px; margin: 0 auto 60px; }
.single-product .tm-product-price-card-native { display: block !important; width: auto !important; overflow: hidden; border: 1px solid var(--tm-line); border-radius: 17px; background: #fff; box-shadow: 0 12px 36px rgba(16,35,63,.06); }
.single-product .tm-product-price-card-native > .elementor-widget-wrap { display: flex !important; height: 100%; padding: 0 !important; flex-direction: column; }
.single-product .tm-product-price-card-native .elementor-widget { width: 100%; margin: 0 !important; }
.single-product .tm-product-price-card-native .elementor-widget-image img { display: block; width: 100% !important; height: 250px !important; object-fit: contain; object-position: center; background: #fff; }
.single-product .tm-product-price-card-native .elementor-widget-text-editor { margin-top: auto !important; padding: 15px 19px 17px; color: var(--tm-text); font-size: 14px; }
.single-product .tm-product-price-card-native .elementor-widget-text-editor p { margin: 0; }

@media (max-width: 1024px) {
  .tm-hero__grid { grid-template-columns: 1fr; }
  .tm-hero__visual { width: 100%; max-width: 680px; margin: 0 auto; }
  .tm-stats-panel { max-width: none; }
  .tm-hero__visual .tm-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; margin-left: 0; }
  .tm-hero__visual .tm-stat-card { min-height: 78px; padding: 14px 16px; border-right: 1px solid var(--tm-line); border-bottom: 0; }
  .tm-hero__visual .tm-stat-card:last-child { border-right: 0; }
  .tm-hero__visual .tm-stat-card svg { width: 32px; height: 32px; flex-basis: 32px; }
  .tm-hero__visual .tm-stat-card strong { font-size: 15px; }
  .tm-hero__visual .tm-stat-card span { font-size: 13px; }
  .tm-native-products .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .tm-section { padding: 44px 0; }
  .woocommerce-cart .entry-title,
  .woocommerce-checkout .entry-title,
  .compact-headings-page .entry-title,
  .tm-section-heading h2,
  .tm-section-heading .tm-section-title,
  .tm-how-panel .tm-section-heading h2,
  .tm-how-panel .tm-section-heading .tm-section-title,
  .tm-reading > h2,
  .tm-explainer__grid h2 {
    font-size: 25px;
  }
  body.page:not(.home):not(.woocommerce-cart):not(.woocommerce-checkout) .content-shell {
    width: min(calc(100% - 40px), var(--tm-container));
  }
  .compact-headings-page.content-shell { padding-top: 20px; }
  .compact-headings-page .content-card { padding-top: 20px; }
  body.woocommerce-cart .content-shell,
  body.woocommerce-checkout .content-shell { width: min(calc(100% - 40px), var(--tm-container)); padding-top: 20px; }
  body.woocommerce-cart .content-card,
  body.woocommerce-checkout .content-card { padding: 20px 0 0; }
  .single-product .woocommerce-Tabs-panel--description > .elementor,
  .single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section,
  .single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section > .elementor-container {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .single-product .woocommerce-Tabs-panel--description > .elementor {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section > .elementor-container > .elementor-column,
  .single-product .woocommerce-Tabs-panel--description > .elementor > .elementor-top-section > .elementor-container > .elementor-column > .elementor-widget-wrap {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .single-product .tm-product-benefits,
  .single-product .tm-product-testimonials,
  .single-product .tm-product-faq { padding: 44px 0; }
  .single-product .tm-product-benefits .container,
  .single-product .tm-product-testimonials .container,
  .single-product .tm-product-faq .container { width: 100%; padding-right: 20px; padding-left: 20px; }
  .tm-section-heading { margin-bottom: 32px; }
  .tm-section-heading--split { align-items: flex-start; flex-direction: column; gap: 14px; }
  .tm-hero { padding: 38px 0 44px; }
  .tm-hero__content { text-align: center; }
  .tm-hero__content h1 { font-size: 32px; }
  .tm-hero__actions { justify-content: center; }
  .tm-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; text-align: left; }
  .tm-stats .tm-stat-card { min-height: 64px; padding: 9px 8px; gap: 7px; border-radius: 11px; }
  .tm-stat-card svg { width: 24px; height: 24px; flex-basis: 24px; }
  .tm-stat-card strong { font-size: 12px; }
  .tm-stat-card span { margin-top: 2px; font-size: 10px; line-height: 1.3; }
  .tm-hero__visual .tm-stats { gap: 8px; }
  .tm-stats-panel { padding: 6px 12px; border-radius: 16px; }
  .tm-hero__visual .tm-stats { gap: 0; }
  .tm-hero__visual .tm-stat-card { min-height: 64px; padding: 9px 8px; border-radius: 0; }
  .tm-hero__visual .tm-stat-card svg { width: 24px; height: 24px; flex-basis: 24px; }
  .tm-hero__visual .tm-stat-card strong { font-size: 12px; }
  .tm-hero__visual .tm-stat-card span { font-size: 10px; }
  .tm-verified { right: 8px; bottom: 8px; }
  .tm-benefit-grid, .tm-price-grid, .tm-steps, .tm-testimonial-grid, .tm-explainer__grid { grid-template-columns: 1fr; }
  .tm-how-panel { padding: 28px 20px; }
  .tm-steps { gap: 28px; }
  .tm-steps article { grid-template-columns: 72px minmax(0,1fr); gap: 14px; }
  .tm-steps article:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -27px; font-size: 22px; transform: translateX(50%); }
  .tm-step-icon { width: 72px; height: 72px; }
  .tm-step-icon svg { width: 34px; height: 34px; }
  .tm-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; max-width: 400px; }
  .tm-price-card img { height: clamp(125px, 36vw, 160px) !important; aspect-ratio: 4/3; }
  .tm-price-card figcaption { gap: 5px; padding: 10px 9px 12px; font-size: 11px; }
  .tm-price-card figcaption span { gap: 3px; }
  .tm-native-products .woocommerce ul.products { grid-template-columns: 1fr; }
  .tm-testimonial { min-height: 200px; }
  .woocommerce-cart table.cart { overflow: visible; border: 0 !important; }
  .woocommerce-cart table.cart tbody { display: block; overflow: hidden; border: 1px solid var(--tm-line); border-radius: 12px; background: #fff; }
  .woocommerce-cart table.cart tbody tr.cart_item { display: grid; grid-template-columns: minmax(0, 1fr) auto 34px; align-items: center; min-height: 58px; border: 0; border-bottom: 1px solid var(--tm-line); border-radius: 0; background: #fff; }
  .woocommerce-cart table.cart tbody tr.cart_item:last-child { border-bottom: 0; }
  .woocommerce-cart table.cart tbody tr.cart_item .product-thumbnail { display: none !important; }
  .woocommerce-cart table.cart tbody tr.cart_item .product-name,
  .woocommerce-cart table.cart tbody tr.cart_item .product-price { display: block !important; min-height: 0; border: 0; text-align: left !important; }
  .woocommerce-cart table.cart tbody tr.cart_item td::before { display: none !important; }
  .woocommerce-cart table.cart tbody tr.cart_item .product-name { grid-column: 1; padding: 12px 8px 12px 14px !important; font-weight: 600; }
  .woocommerce-cart table.cart tbody tr.cart_item .product-price { grid-column: 2; padding: 12px 8px !important; color: var(--tm-navy); font-weight: 800; white-space: nowrap; }
  .woocommerce-cart table.cart tbody tr.cart_item .product-price::before { display: none !important; content: none; }
  .woocommerce-cart table.cart tbody tr.cart_item .product-remove { position: static; grid-column: 3; grid-row: 1; width: 34px !important; padding: 0 !important; transform: none; }
  .single-product .woocommerce-product-gallery .tm-gallery-thumbs { grid-template-columns: 30px minmax(0, 1fr) 30px; gap: 6px; }
  .single-product .woocommerce-product-gallery .tm-gallery-arrow { width: 30px; height: 40px; }
  .single-product .related.products ul.products { grid-template-columns: 1fr; gap: 12px; }
  .single-product .tm-product-price-heading { padding-bottom: 24px !important; }
  .single-product .tm-product-price-heading .elementor-heading-title { font-size: 26px !important; }
  .single-product .tm-product-price-grid-native { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; max-width: 400px; }
  .single-product .tm-product-price-grid-native { margin-bottom: 44px; }
  .single-product .tm-product-price-card-native .elementor-widget-image img { height: clamp(125px, 36vw, 160px) !important; }
  .single-product .tm-product-price-card-native .elementor-widget-text-editor { padding: 10px 9px 12px; font-size: 11px; }
  .single-product .woocommerce-tabs { top: 0; margin-top: 44px; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 44px; }
  .single-product .tm-product-price-heading { margin-top: 44px !important; padding-top: 44px !important; }
  .single-product .related.products { margin-top: 44px; padding-top: 44px; }
  .single-product .related.products {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .single-product .related.products ul.products li.product { display: grid; grid-template-columns: minmax(0, 1fr) 38px; align-items: center; gap: 10px; width: 100% !important; min-height: 108px; margin: 0 !important; padding: 13px; }
  .single-product .related.products ul.products li.product > a.woocommerce-loop-product__link { display: grid; grid-template-columns: 76px minmax(0, 1fr); grid-template-rows: auto auto; align-items: center; gap: 5px 11px; min-width: 0; }
  .single-product .related.products ul.products li.product > a.woocommerce-loop-product__link > img.attachment-woocommerce_thumbnail { grid-column: 1; grid-row: 1 / span 2; width: 76px !important; height: 76px !important; margin: 0 !important; border-radius: 11px; object-fit: cover; }
  .single-product .related.products .woocommerce-loop-product__title { grid-column: 2; min-height: 0 !important; margin: 0; padding: 0 !important; font-size: 14px !important; line-height: 1.35; overflow-wrap: anywhere; }
  .single-product .related.products .price { grid-column: 2; min-height: 0 !important; margin: 4px 0 0 !important; font-size: 14px !important; }
  .single-product .related.products ul.products li.product .button { display: inline-flex !important; align-items: center; justify-content: center; width: 38px; min-width: 38px; height: 38px; min-height: 38px; margin: 0 !important; padding: 0; border: 1px solid #cce9f8; border-radius: 10px; background: var(--tm-blue-soft); color: var(--tm-blue); font-size: 0; line-height: 1; box-shadow: none; }
  .single-product .related.products ul.products li.product .button::before { content: ""; width: 18px; height: 18px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 2-1.6L20.5 8H6M10 20h.01M18 20h.01'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 2-1.6L20.5 8H6M10 20h.01M18 20h.01'/%3E%3C/svg%3E") center / contain no-repeat; }
  .single-product .related.products ul.products li.product .button:hover { border-color: var(--tm-blue); background: var(--tm-blue); color: #fff; }
  .single-product .woocommerce-Tabs-panel--description table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed;
  }
  .single-product .woocommerce-Tabs-panel--description table td {
    width: 50% !important;
    min-width: 0 !important;
    padding: 12px 14px;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}
