:root {
  --tmo-white: #f7f9fb;
  --tmo-paper: #ffffff;
  --tmo-navy: #0f2744;
  --tmo-slate: #1c3350;
  --tmo-muted: #5b6b7c;
  --tmo-line: #d7e0ea;
  --tmo-mint: #7eb8a8;
  --tmo-mint-deep: #4f8f82;
  --tmo-gold: #c4a574;
  --tmo-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --tmo-max: 1180px;
  --tmo-radius: 2px;
}

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

html { scroll-behavior: smooth; }

body.tmo-body {
  margin: 0;
  font-family: var(--tmo-font);
  color: var(--tmo-navy);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(126, 184, 168, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(196, 165, 116, 0.1), transparent 50%),
    linear-gradient(180deg, #eef3f7 0%, var(--tmo-white) 28%, #f4f7fa 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.tmo-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--tmo-navy);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}
.tmo-skip:focus { left: 0; }

/* Header — identical Home bar on every page */
.tmo-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
}
.tmo-header__inner {
  max-width: var(--tmo-max);
  width: 100%;
  margin: 0 auto;
  padding: .7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tmo-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.tmo-logo__img {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.tmo-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .9rem;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.tmo-nav {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
}
.tmo-nav .menu,
.tmo-nav__list {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: .85rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.tmo-nav__list > li,
.tmo-nav .menu > li {
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.tmo-nav__list a,
.tmo-nav .menu a {
  display: block !important;
  font-size: .88rem !important;
  font-weight: 500 !important;
  color: #1c3350 !important;
  white-space: nowrap !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  padding: .2rem 0 !important;
}
.tmo-nav__list a:hover,
.tmo-nav .menu a:hover { color: #4f8f82 !important; }
.tmo-cart {
  flex: 0 0 auto;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--tmo-line);
  padding: .4rem .75rem;
  white-space: nowrap;
  background: #fff;
  color: var(--tmo-navy) !important;
}
.tmo-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-left: .25rem;
  background: var(--tmo-gold);
  color: var(--tmo-navy);
  font-size: .7rem;
  border-radius: 999px;
}
.tmo-nav-toggle {
  display: none;
  position: relative;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
  border: 1px solid var(--tmo-line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #0f2744 !important;
  box-shadow: none !important;
  cursor: pointer;
}
.tmo-nav-toggle:hover,
.tmo-nav-toggle:focus {
  border-color: #0f2744 !important;
  background: #fff !important;
}
.tmo-nav-toggle__icon {
  position: relative;
  display: block !important;
  width: 1.15rem;
  height: 2px;
  background: #0f2744 !important;
  border-radius: 1px;
}
.tmo-nav-toggle__icon::before,
.tmo-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0f2744 !important;
  border-radius: 1px;
  transition: transform .2s ease, top .2s ease;
}
.tmo-nav-toggle__icon::before { top: -6px; }
.tmo-nav-toggle__icon::after { top: 6px; }
.tmo-nav-toggle[aria-expanded="true"] .tmo-nav-toggle__icon {
  background: transparent !important;
}
.tmo-nav-toggle[aria-expanded="true"] .tmo-nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}
.tmo-nav-toggle[aria-expanded="true"] .tmo-nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.tmo-mobile-nav {
  display: none;
  border-top: 1px solid var(--tmo-line);
  padding: 1rem 1.25rem 1.25rem;
  background: #fff;
}
.tmo-mobile-nav:not([hidden]) { display: block; }
.tmo-mobile-nav__list {
  display: grid !important;
  gap: .85rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.tmo-mobile-nav__list a {
  font-weight: 600 !important;
  color: #0f2744 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Hide competing builder/theme chrome so Home header/footer win everywhere */
body.tmo-body .site-header,
body.tmo-body header.elementor-location-header,
body.tmo-body .ehf-header,
body.tmo-body #masthead:not(.tmo-header),
body.tmo-body footer.elementor-location-footer,
body.tmo-body .ehf-footer,
body.tmo-body .site-footer:not(.tmo-footer),
body.tmo-body .elementor-location-header,
body.tmo-body .elementor-location-footer {
  display: none !important;
}

/*
 * Elementor kit sets H1 to ~96px / H2 to ~45px uppercase.
 * Override the kit CSS variables AND element rules so every page stays readable.
 */
body.tmo-body.elementor-kit-6381 {
  --e-global-typography-2c97c4d-font-size: clamp(1.55rem, 2.6vw, 2rem);
  --e-global-typography-09bc6dd-font-size: clamp(1.25rem, 2vw, 1.55rem);
  --e-global-typography-bc68a1d-font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  --e-global-typography-e514b8c-font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  --e-global-typography-2c97c4d-text-transform: none;
  --e-global-typography-09bc6dd-text-transform: none;
  --e-global-typography-bc68a1d-text-transform: none;
  --e-global-typography-e514b8c-text-transform: none;
  --e-global-typography-2c97c4d-letter-spacing: -0.02em;
  --e-global-typography-09bc6dd-letter-spacing: -0.02em;
}
body.tmo-body.elementor-kit-6381 h1,
body.tmo-body.elementor-kit-6381 h2,
body.tmo-body.elementor-kit-6381 h3,
body.tmo-body.elementor-kit-6381 .elementor-heading-title,
body.tmo-body .tmo-page-title,
body.tmo-body .woocommerce-products-header__title,
body.tmo-body .page-title,
body.tmo-body .entry-title {
  font-family: var(--tmo-font) !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--tmo-navy) !important;
}
body.tmo-body.elementor-kit-6381 h1,
body.tmo-body.elementor-kit-6381 h1.elementor-heading-title,
body.tmo-body .tmo-page-title,
body.tmo-body .woocommerce-products-header__title,
body.tmo-body .page-title,
body.tmo-body .entry-title,
body.tmo-body .elementor-widget-heading .elementor-heading-title {
  font-size: clamp(1.55rem, 2.6vw, 2rem) !important;
  margin: 0 0 1.25rem !important;
}
body.tmo-body.elementor-kit-6381 h2,
body.tmo-body.elementor-kit-6381 h2.elementor-heading-title {
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
}
body.tmo-body.elementor-kit-6381 h3,
body.tmo-body.elementor-kit-6381 h3.elementor-heading-title {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
}
.tmo-page-title {
  max-width: var(--tmo-max);
  margin-left: auto;
  margin-right: auto;
}

/* Lock header chrome against Elementor kit / Hello global styles */
body.tmo-body .tmo-header,
body.tmo-body .tmo-header * {
  text-transform: none;
  letter-spacing: normal;
}
body.tmo-body .tmo-header {
  display: block !important;
  background: #fff !important;
}
body.tmo-body .tmo-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
body.tmo-body .tmo-logo__img {
  height: 3.15rem !important;
  width: auto !important;
  max-width: 190px !important;
}
body.tmo-body .tmo-footer {
  display: block !important;
}

/* Hero — full bleed composition */
.tmo-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.tmo-hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 39, 68, 0.82) 0%, rgba(15, 39, 68, 0.45) 48%, rgba(15, 39, 68, 0.2) 100%),
    var(--tmo-hero-image) center/cover no-repeat;
  transform: scale(1.04);
  animation: tmo-ken 18s ease-out forwards;
}
.tmo-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--tmo-max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem clamp(3.5rem, 7vw, 5.5rem);
  animation: tmo-rise .9s ease both;
}
.tmo-brand-lockup {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.tmo-hero h1,
body.tmo-body.elementor-kit-6381 .tmo-hero h1 {
  margin: 0 0 1rem !important;
  max-width: 16ch;
  font-size: clamp(1.65rem, 3.8vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: #fff !important;
  text-transform: none !important;
}
.tmo-hero__sub {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
}
.tmo-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.tmo-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0 1.35rem;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.tmo-btn:hover { transform: translateY(-1px); }
.tmo-btn--primary {
  background: var(--tmo-mint); color: var(--tmo-navy); border-color: var(--tmo-mint);
}
.tmo-btn--primary:hover { background: var(--tmo-mint-deep); color: #fff; border-color: var(--tmo-mint-deep); }
.tmo-btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.tmo-btn--ghost:hover { background: rgba(255,255,255,.1); }

.tmo-trust-badges {
  max-width: var(--tmo-max);
  margin: -2.25rem auto 0;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}
.tmo-trust-badges ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tmo-line);
  border: 1px solid var(--tmo-line);
  box-shadow: 0 18px 40px rgba(15, 39, 68, 0.08);
}
.tmo-trust-badges li {
  background: var(--tmo-paper);
  padding: 1.1rem 1rem;
  font-size: .9rem;
  color: var(--tmo-muted);
}
.tmo-trust-badges li span {
  display: block;
  color: var(--tmo-navy);
  font-weight: 700;
  margin-bottom: .2rem;
}

.tmo-section {
  max-width: var(--tmo-max);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
}

.tmo-404 {
  max-width: 28rem;
}
.tmo-404__eyebrow {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tmo-mint-deep);
}
.tmo-404__title {
  margin: 0 0 .75rem !important;
  font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
  text-transform: none !important;
  letter-spacing: -.02em !important;
  color: var(--tmo-navy) !important;
}
.tmo-404__lede {
  margin: 0 0 1.5rem;
  color: var(--tmo-muted);
}
.tmo-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0;
}
.tmo-404__actions .tmo-btn:not(.tmo-btn--primary) {
  background: #fff;
  color: var(--tmo-navy);
  border: 1px solid var(--tmo-line);
}

.tmo-section__head { max-width: 40rem; margin-bottom: 2rem; }
.tmo-section__head h2 {
  margin: 0 0 .5rem;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  letter-spacing: -.02em;
}
.tmo-section__head p { margin: 0; color: var(--tmo-muted); }
.tmo-section__cta { margin-top: 2rem; text-align: center; }

/* Featured section only — asymmetric header + tight product strip */
.tmo-featured {
  position: relative;
}
.tmo-featured__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 1.5rem 3rem;
  align-items: end;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--tmo-line);
}
.tmo-featured__eyebrow {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tmo-mint-deep);
}
.tmo-featured__title {
  margin: 0 !important;
  max-width: 10ch;
  font-family: var(--tmo-font) !important;
  font-size: clamp(2rem, 4.2vw, 3.15rem) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
  text-transform: none !important;
  color: var(--tmo-navy) !important;
}
.tmo-featured__head-aside {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding-bottom: .2rem;
}
.tmo-featured__lede {
  margin: 0;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--tmo-muted);
}
.tmo-featured__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--tmo-navy) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--tmo-navy);
  padding-bottom: .15rem;
  transition: color .2s ease, border-color .2s ease;
}
.tmo-featured__link::after {
  content: "→";
  transition: transform .2s ease;
}
.tmo-featured__link:hover {
  color: var(--tmo-mint-deep) !important;
  border-color: var(--tmo-mint-deep);
}
.tmo-featured__link:hover::after {
  transform: translateX(3px);
}
.tmo-featured__grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  margin: 0 !important;
}
.tmo-featured__grid ul.products::before,
.tmo-featured__grid ul.products::after {
  display: none !important;
  content: none !important;
}
.tmo-featured__grid ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .tmo-featured__head {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }
  .tmo-featured__title { max-width: none; }
  .tmo-featured__grid ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  .tmo-featured__grid ul.products {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
}

.tmo-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tmo-cat {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.tmo-cat__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .55s ease;
}
.tmo-cat::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 35%, rgba(15,39,68,.85));
}
.tmo-cat:hover .tmo-cat__img { transform: scale(1.06); }
.tmo-cat__label {
  position: relative; z-index: 1;
  padding: 1.25rem;
  font-weight: 700; font-size: 1.1rem;
}

.tmo-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tmo-reviews blockquote {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--tmo-mint);
}
.tmo-reviews p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--tmo-slate);
}
.tmo-reviews cite {
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--tmo-muted);
}

.tmo-promise__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tmo-promise__list li {
  padding-top: 1rem;
  border-top: 1px solid var(--tmo-line);
  color: var(--tmo-muted);
}
.tmo-promise__list strong {
  display: block;
  color: var(--tmo-navy);
  margin-bottom: .35rem;
}

/* Footer */
.tmo-footer {
  background: var(--tmo-navy);
  color: rgba(255,255,255,.82);
  padding: 3.5rem 1.25rem 2rem;
  margin-top: 2rem;
}
.tmo-footer__grid {
  max-width: var(--tmo-max);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.tmo-footer__brand { margin: 0 0 .75rem; font-weight: 700; color: #fff; font-size: 1.1rem; }
.tmo-footer__lede { margin: 0; max-width: 34ch; }
.tmo-footer__heading { margin: 0 0 .75rem; color: var(--tmo-gold); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.tmo-footer ul { display: grid; gap: .45rem; }
.tmo-footer a:hover { color: #fff; }
.tmo-footer__legal {
  max-width: var(--tmo-max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* WooCommerce shop — base styles live in shop.css for archives */

/* Single product */
.single-product .product {
  max-width: var(--tmo-max);
  margin: 2rem auto;
  padding: 0 1.25rem;
}
.tmo-pdp-guarantees {
  width: 100%;
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--tmo-line);
  display: grid;
  gap: .45rem;
  font-size: .9rem;
  color: var(--tmo-muted);
}
.tmo-pdp-guarantees strong { color: var(--tmo-navy); }
.tmo-sticky-atc {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: none;
  background: rgba(247,249,251,.96);
  border-top: 1px solid var(--tmo-line);
  padding: .85rem 1.25rem;
  backdrop-filter: blur(8px);
}
.tmo-sticky-atc.is-visible { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.tmo-sticky-atc .tmo-btn { flex: 0 0 auto; }

.woocommerce .quantity .qty,
.woocommerce div.product form.cart .button {
  border-radius: 0 !important;
}
.woocommerce div.product form.cart .button {
  background: var(--tmo-mint) !important;
  color: var(--tmo-navy) !important;
  font-weight: 700 !important;
  padding: .9rem 1.5rem !important;
}
.woocommerce div.product .product_title {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem) !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  font-family: var(--tmo-font) !important;
  font-weight: 700 !important;
  color: var(--tmo-navy) !important;
  line-height: 1.2 !important;
  margin: 0 0 .75rem !important;
}

/* Keep theme chrome consistent on Woo pages */
body.single-product .tmo-header,
body.woocommerce .tmo-header {
  position: sticky;
}
body.single-product .tmo-footer,
body.woocommerce-page .tmo-footer {
  display: block;
}

body.single-product .woocommerce-breadcrumb {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: .82rem;
  color: var(--tmo-muted);
  margin-bottom: 1rem;
}

.woocommerce-page .woocommerce,
.archive .woocommerce {
  max-width: var(--tmo-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

@keyframes tmo-ken {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
@keyframes tmo-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .tmo-nav { display: none !important; }
  .tmo-nav-toggle { display: inline-flex !important; }
  .tmo-logo__img { height: 2.35rem; max-width: 140px; }
  .tmo-trust-badges ul,
  .tmo-categories__grid,
  .tmo-reviews__grid,
  .tmo-promise__list,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .tmo-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .tmo-trust-badges ul,
  .tmo-categories__grid,
  .tmo-reviews__grid,
  .tmo-promise__list,
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
  .tmo-footer__grid { grid-template-columns: 1fr; }
  .tmo-hero { min-height: 78vh; }
  .tmo-logo__text { display: none; }
}
