/**
 * TAMS Surgical â€” responsive clinical theme (overrides legacy Bootstrap 3)
 */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --tams-navy: #07121f;
  --tams-navy-mid: #122338;
  --tams-teal: #0c7564;
  --tams-teal-dark: #085548;
  --tams-teal-soft: #e6f5f2;
  --tams-accent: #1fb5a0;
  --tams-bg: #eef2f7;
  --tams-surface: #ffffff;
  --tams-text: #152028;
  --tams-muted: #4d5f6f;
  --tams-border: #c8d5e2;
  /* Shape + elevation tokens (keep consistent across sections) */
  --tams-radius-sm: 10px;
  --tams-radius: 14px;
  --tams-radius-lg: 20px;
  --tams-radius-xl: 24px;
  --tams-shadow-sm: 0 6px 18px rgba(7, 18, 31, 0.08);
  --tams-shadow: 0 10px 28px rgba(7, 18, 31, 0.09);
  --tams-shadow-lg: 0 22px 48px rgba(7, 18, 31, 0.14);
  --tams-header-h: 52px;
  --tams-header-green: #0f5245;
  --tams-header-green-mid: #0d4539;
  --tams-header-green-dark: #082f28;
  /* Section rhythm (homepage) */
  --tms-section-y: 56px;
  --tms-section-y-compact: 44px;
  --tms-section-y-mobile: 38px;
  --tms-focus-ring: 0 0 0 3px rgba(31, 181, 160, 0.22);
}

html {
  scroll-behavior: smooth;
}

/* Prevent any horizontal overflow â€œwhite spaceâ€‌ site-wide */
html,
body {
  width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  font-family: "Plus Jakarta Sans", "Roboto", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--tams-text);
  background: var(--tams-bg);
  -webkit-font-smoothing: antialiased;
}

/* Wider container on large screens (premium, less empty space) */
@media (min-width: 1200px) {
  .container {
    width: auto;            /* override Bootstrap fixed width */
    max-width: 1280px;      /* target: 1200â€“1300px */
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

body.home .content-body {
  padding: 0;
  max-width: 100%;
}

/* --- Global polish (homepage) --- */
body.home .content-body section {
  scroll-margin-top: calc(var(--tams-header-h) + 16px);
}

body.home .content-body p {
  color: rgba(7, 18, 31, 0.72);
}

body.home .content-body h1,
body.home .content-body h2,
body.home .content-body h3 {
  color: var(--tams-navy);
}

body.home .btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

body.home .btn:focus-visible {
  outline: none;
  box-shadow: var(--tms-focus-ring);
}

/* --- Site header --- */
.site-header.site-header--tiered,
.site-header.site-header--modern {
  background: var(--tams-surface);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--tams-shadow-sm);
}

.site-header__top {
  background: var(--tams-surface);
  border-bottom: 1px solid rgba(216, 224, 234, 0.95);
}

.site-header__top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}

.site-header__logo img {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: min(300px, 100%);
  height: auto;
}

.site-header__top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Social pills (reference-style brand colours) */
.social-links--header {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.social-links--header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.social-links--header a:hover,
.social-links--header a:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

.social-links__tumblr {
  background: #35465c;
}

.social-links__twitter {
  background: #1da1f2;
}

.social-links__facebook {
  background: #1877f2;
}

.social-links__instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-links__linkedin {
  background: #0a66c2;
}

.site-header__menu-toggle {
  margin: 0 !important;
  border-color: var(--tams-border);
  background: var(--tams-surface);
  border-radius: 8px;
  padding: 10px 10px;
  box-shadow: 0 1px 3px rgba(7, 18, 31, 0.08);
}

.site-header__menu-toggle .icon-bar {
  background: var(--tams-navy);
}

.site-nav__mobile-social {
  padding: 12px 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}

.social-links--header--compact a {
  width: 34px;
  height: 34px;
  font-size: 10px;
}

/* Modern nav shell (white, premium) */
.site-header--modern .site-header__shell--nav {
  background: var(--tams-surface);
  border-bottom: 1px solid rgba(216, 224, 234, 0.95);
}

/* Site-wide strip below header */
.tms-trust-banner {
  background: linear-gradient(
    105deg,
    #062a24 0%,
    var(--tams-header-green-dark) 22%,
    var(--tams-teal-dark) 48%,
    #0d5c4e 72%,
    #062a24 100%
  );
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 6px 16px rgba(7, 18, 31, 0.12);
}

.tms-trust-banner__inner {
  max-width: 1200px;
}

.tms-trust-banner__text {
  margin: 0;
  font-size: clamp(0.82rem, 2.5vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 400px) {
  .tms-trust-banner__segment {
    white-space: nowrap;
  }
}

.tms-trust-banner__dash {
  color: #5ee6d4;
  font-weight: 800;
}

@media (max-width: 480px) {
  .tms-trust-banner {
    padding: 9px 12px;
  }

  .tms-trust-banner__text {
    letter-spacing: 0.04em;
  }
}

.site-header__bar--green {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.site-header--modern .site-header__bar--modern {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.site-nav.site-nav--green-bar.navbar-default {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

.site-nav.site-nav--modern.navbar-default {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

.site-nav--green-bar .navbar-collapse {
  max-height: none;
}

@media (max-width: 767px) {
  .site-nav--green-bar .navbar-collapse {
    background: rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
  }

  .site-nav--green-bar .navbar-nav > li > a {
    border-radius: 0;
  }
}

@media (min-width: 992px) {
  .site-header__bar--green .site-nav__collapse.collapse {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 0;
    overflow: visible !important;
    border-top: none !important;
  }

  .site-header--modern .site-header__bar--modern .site-nav__collapse.collapse {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 0;
    overflow: visible !important;
    border-top: none !important;
  }

  .site-nav__links {
    float: none !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 !important;
  }

  form.site-nav__search.navbar-form {
    float: none !important;
    display: block !important;
    margin: 8px 0 8px auto !important;
    flex: 0 0 auto;
    align-self: center;
  }
}

/* White menu links on green bar */
.site-nav--green-bar .navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.98) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em;
  padding: 14px 12px !important;
  transition: background 0.2s, color 0.2s;
  text-decoration: none !important;
}

/* Modern nav links (dark on white) */
.site-header--modern .site-nav--modern .navbar-nav > li > a {
  color: rgba(7, 18, 31, 0.82) !important;
  font-weight: 650 !important;
  font-size: 14.5px !important;
  letter-spacing: 0.01em;
  padding: 12px 12px !important;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none !important;
}

.site-header--modern .site-nav--modern .navbar-nav > li > a:hover,
.site-header--modern .site-nav--modern .navbar-nav > li > a:focus {
  background: rgba(12, 117, 100, 0.08) !important;
  color: rgba(7, 18, 31, 0.96) !important;
}

.site-header--modern .site-nav--modern .navbar-nav > li.active > a {
  background: rgba(12, 117, 100, 0.12) !important;
  color: rgba(7, 18, 31, 0.98) !important;
}

.site-header--modern .site-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.site-header--modern .site-nav__cta.btn {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 750;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(7, 18, 31, 0.12);
}

.site-header--modern .site-nav__cta.is-active {
  box-shadow: 0 10px 22px rgba(7, 18, 31, 0.18);
}

@media (max-width: 991px) {
  .site-header--modern .site-nav__collapse {
    padding: 10px 15px 14px;
  }

  .site-header--modern .site-nav__links {
    float: none !important;
    margin: 0 !important;
  }

  .site-header--modern .site-nav__actions {
    margin-top: 10px;
  }

  .site-header--modern .site-nav__cta.btn {
    width: 100%;
  }
}

/* Current page: underline (like typical site nav) */
.site-nav--green-bar .navbar-nav > li.active > a,
.site-nav--green-bar .navbar-nav > li.dropdown.active > a {
  background: transparent !important;
  color: #fff !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-underline-position: from-font;
}

.site-nav--green-bar .navbar-nav > li.active > a:hover,
.site-nav--green-bar .navbar-nav > li.active > a:focus,
.site-nav--green-bar .navbar-nav > li.dropdown.active > a:hover,
.site-nav--green-bar .navbar-nav > li.dropdown.active > a:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  text-decoration: underline !important;
}

.site-nav--green-bar .navbar-nav > li > a:hover,
.site-nav--green-bar .navbar-nav > li > a:focus,
.site-nav--green-bar .navbar-nav > .open > a {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

.site-nav--green-bar .navbar-nav > li.dropdown.active.open > a {
  text-decoration: underline !important;
}

.site-nav--green-bar .caret {
  border-top-color: rgba(255, 255, 255, 0.92) !important;
  border-bottom-color: rgba(255, 255, 255, 0.92) !important;
}

.site-nav--green-bar .dropdown-menu {
  border: none;
  box-shadow: var(--tams-shadow);
  border-radius: var(--tams-radius-sm);
  margin-top: 2px;
  padding: 8px 0;
}

.site-nav--green-bar .dropdown-menu > li > a {
  padding: 10px 20px;
  color: var(--tams-text);
}

.site-nav--green-bar .dropdown-menu > li > a:hover {
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
}

/* Desktop search: white field + divider + green icon */
form.site-nav__search.navbar-form {
  margin: 8px 0 !important;
  padding: 0 !important;
  border: none !important;
}

.site-nav__search-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.site-nav__search-inner .form-group {
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__search-input.form-control {
  height: 36px;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 12px !important;
  font-size: 14px;
  min-width: 140px;
  max-width: 240px;
  width: 100%;
}

.site-nav__search-input::placeholder {
  color: #8a9bab;
}

.site-nav__search-btn {
  flex: 0 0 auto;
  width: 44px;
  border: none;
  border-left: 1px solid #d8e0ea;
  background: #fff;
  color: var(--tams-header-green) !important;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.site-nav__search-btn:hover,
.site-nav__search-btn:focus {
  background: var(--tams-teal-soft);
  color: var(--tams-header-green-dark) !important;
}

/* Mobile search inside green collapse */
.site-nav__search-mobile.navbar-form {
  margin: 10px 15px !important;
  padding: 0 !important;
  border: none !important;
}

.site-nav__search-mobile .form-control {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.site-nav__search-mobile .btn-default {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.site-nav__search-mobile .btn-default:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

@media (min-width: 768px) {
  .site-nav__search-mobile {
    display: none !important;
  }
}

/* â€”â€”â€” Hero / carousel â€”â€”â€” */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(7, 18, 31, 0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-carousel .carousel-inner {
  position: relative;
  z-index: 0;
}

.hero-carousel .carousel-control,
.hero-carousel .carousel-indicators {
  z-index: 3;
}

.container-bg #carousel-jd-generic {
  border-radius: 0;
  overflow: hidden;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: cover;
  display: block;
}

.carousel-control {
  width: 48px;
  opacity: 0.85;
  text-shadow: none;
}

.carousel-control:hover {
  opacity: 1;
}

.carousel-indicators li {
  border-color: var(--tams-teal);
}

.carousel-indicators .active {
  background-color: var(--tams-teal);
}

/* --- Homepage hero (premium B2B manufacturer) --- */
.tms-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(31, 181, 160, 0.16), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(10, 102, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, #eef3f7 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.9);
  padding: clamp(2.6rem, 5.5vw, 4.5rem) 0;
}

.tms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.45)),
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35));
}

.tms-hero .container {
  position: relative;
  z-index: 1;
}

.tms-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.tms-hero__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 117, 100, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(7, 18, 31, 0.72);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.tms-hero__title {
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--tams-navy);
  text-wrap: balance;
}

.tms-hero__sub {
  margin: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: rgba(7, 18, 31, 0.72);
  max-width: 60ch;
  text-wrap: pretty;
}

.tms-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tms-hero__btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 760;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(7, 18, 31, 0.12);
}

.tms-hero__btn--secondary {
  box-shadow: none;
  border: 1px solid rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.tms-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tms-hero__trust-item {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(216, 224, 234, 0.95);
  color: rgba(7, 18, 31, 0.7);
  font-weight: 650;
  font-size: 13px;
}

.tms-hero__media {
  position: relative;
}

.tms-hero__image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--tams-shadow-lg);
  border: 1px solid rgba(200, 213, 226, 0.9);
}

.tms-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 18, 31, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.tms-hero__image {
  display: block;
  width: 100%;
  height: min(420px, 52vh);
  object-fit: cover;
}

.tms-hero__stats {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tms-hero__stat {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--tams-shadow);
  backdrop-filter: blur(8px);
}

.tms-hero__stat-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(7, 18, 31, 0.62);
}

.tms-hero__stat-value {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(7, 18, 31, 0.9);
}

@media (max-width: 991px) {
  .tms-hero__grid {
    grid-template-columns: 1fr;
  }

  .tms-hero__sub {
    max-width: none;
  }

  .tms-hero__image {
    height: min(380px, 46vh);
  }
}

@media (max-width: 480px) {
  .tms-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .tms-hero__btn {
    width: 100%;
  }

  .tms-hero__stats {
    grid-template-columns: 1fr;
  }
}

/* Mobile-first rhythm tightening for homepage (premium, less vertical length) */
@media (max-width: 767px) {
  .tms-hero {
    padding: clamp(2.1rem, 6vw, 3rem) 0;
  }

  .tms-trust-strip__inner {
    padding: 12px 0;
    gap: 10px 12px;
  }

  .tms-trust-strip__item {
    padding: 9px 10px;
  }

  .tms-range {
    padding: var(--tms-section-y-mobile) 0 calc(var(--tms-section-y-mobile) + 2px);
  }

  .section-latest-products.tms-featured-products {
    padding: var(--tms-section-y-mobile) 0;
  }

  .tms-why-us {
    padding: var(--tms-section-y-mobile) 0;
  }

  .tms-about-b2b {
    padding: var(--tms-section-y-mobile) 0;
  }

  .tms-bottom-quote {
    padding: var(--tms-section-y-mobile) 0;
  }

  .thumbnail.tms-product-card .tms-product-card__body {
    padding: 16px;
    gap: 10px;
  }

  .thumbnail.tms-product-card .tms-product-card__media {
    padding: 12px;
  }
}

/* --- Trust strip (below hero) --- */
.tms-trust-strip {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(200, 213, 226, 0.9);
}

.tms-trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  padding: 14px 0;
}

.tms-trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 224, 234, 0.95);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px rgba(7, 18, 31, 0.08);
}

.tms-trust-strip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5ee6d4, var(--tams-header-green-dark));
  box-shadow: 0 0 0 3px rgba(12, 117, 100, 0.12);
}

/* --- OEM / Private label section --- */
.tms-oem {
  padding: var(--tms-section-y) 0;
  background: #ffffff;
}

.tms-oem__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.tms-oem__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 117, 100, 0.18);
  background: rgba(12, 117, 100, 0.06);
  color: rgba(7, 18, 31, 0.75);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.tms-oem__title {
  margin: 12px 0 8px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--tams-navy);
}

.tms-oem__sub {
  margin: 0;
  color: rgba(7, 18, 31, 0.72);
  line-height: 1.6;
  font-size: 1.05rem;
  max-width: 70ch;
}

.tms-oem__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tms-oem__list li {
  position: relative;
  padding-left: 26px;
  color: rgba(7, 18, 31, 0.72);
  line-height: 1.55;
}

.tms-oem__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5ee6d4, var(--tams-header-green-dark));
  box-shadow: 0 0 0 3px rgba(12, 117, 100, 0.12);
}

.tms-oem__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tms-oem__btn {
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.tms-oem__btn--secondary {
  border: 1px solid rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.tms-oem__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tms-oem-card {
  background: rgba(247, 251, 253, 0.7);
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: var(--tams-shadow);
}

.tms-oem-card__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 850;
  color: rgba(7, 18, 31, 0.92);
}

.tms-oem-card__desc {
  margin: 0;
  color: rgba(7, 18, 31, 0.7);
  line-height: 1.55;
}

@media (max-width: 991px) {
  .tms-oem__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tms-oem__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .tms-oem__cards {
    grid-template-columns: 1fr;
  }
}

/* --- QA / export support section --- */
.tms-qa {
  padding: var(--tms-section-y) 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 251, 253, 0.7) 100%);
  border-top: 1px solid rgba(200, 213, 226, 0.75);
  border-bottom: 1px solid rgba(200, 213, 226, 0.75);
}

.tms-qa__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 22px;
}

.tms-qa__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 117, 100, 0.18);
  background: rgba(12, 117, 100, 0.06);
  color: rgba(7, 18, 31, 0.75);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.tms-qa__title {
  margin: 12px 0 8px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--tams-navy);
}

.tms-qa__sub {
  margin: 0;
  color: rgba(7, 18, 31, 0.72);
  line-height: 1.6;
  font-size: 1.05rem;
}

.tms-qa__grid {
  margin-top: 18px;
}

.tms-qa-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 16px;
  padding: 16px 16px;
  box-shadow: var(--tams-shadow);
}

.tms-qa-card__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 850;
  color: rgba(7, 18, 31, 0.92);
}

.tms-qa-card__desc {
  margin: 0;
  color: rgba(7, 18, 31, 0.7);
  line-height: 1.55;
}

.tms-qa__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tms-qa__btn {
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.tms-qa__btn--secondary {
  border: 1px solid rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

/* --- FAQ --- */
.tms-faq {
  padding: var(--tms-section-y) 0;
  background: #ffffff;
}

@media (max-width: 991px) {
  .tms-oem,
  .tms-qa,
  .tms-faq {
    padding: var(--tms-section-y-compact) 0;
  }
}

@media (max-width: 767px) {
  .tms-oem,
  .tms-qa,
  .tms-faq {
    padding: var(--tms-section-y-mobile) 0;
  }
}

.tms-faq__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
}

.tms-faq__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 117, 100, 0.18);
  background: rgba(12, 117, 100, 0.06);
  color: rgba(7, 18, 31, 0.75);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.tms-faq__title {
  margin: 12px 0 8px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--tams-navy);
}

.tms-faq__sub {
  margin: 0;
  color: rgba(7, 18, 31, 0.72);
  line-height: 1.6;
  font-size: 1.05rem;
}

.tms-faq__grid {
  max-width: 980px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tms-faq__item {
  background: rgba(247, 251, 253, 0.7);
  border: 1px solid rgba(216, 224, 234, 0.95);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--tams-shadow);
}

.tms-faq__q {
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  color: rgba(7, 18, 31, 0.92);
  outline: none;
}

.tms-faq__q::-webkit-details-marker {
  display: none;
}

.tms-faq__q::after {
  content: "+";
  float: right;
  color: rgba(12, 117, 100, 0.9);
  font-weight: 900;
}

.tms-faq__item[open] .tms-faq__q::after {
  content: "–";
}

.tms-faq__a {
  margin-top: 10px;
  color: rgba(7, 18, 31, 0.72);
  line-height: 1.6;
}

.tms-faq__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tms-faq__btn {
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.tms-faq__btn--secondary {
  border: 1px solid rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991px) {
  .tms-faq__grid {
    grid-template-columns: 1fr;
  }
}

.tms-trust-strip__text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(7, 18, 31, 0.78);
}

@media (max-width: 480px) {
  .tms-trust-strip__inner {
    justify-content: flex-start;
    padding: 12px 0;
  }

  .tms-trust-strip__item {
    width: 100%;
    justify-content: center;
  }
}

/* â€”â€”â€” Homepage: intro / hero (premium export manufacturer) â€”â€”â€” */
.tms-home-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(31, 181, 160, 0.14), transparent 24%),
    radial-gradient(circle at right center, rgba(12, 117, 100, 0.09), transparent 20%),
    linear-gradient(180deg, #f7fbfd 0%, #eef3f7 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.9);
  padding: clamp(3rem, 7vw, 5rem) 0;
  margin: 0;
}

.tms-home-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35));
}

.tms-home-intro__inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 980px;
  margin: 0 auto;
}

.tms-home-intro__copy {
  text-align: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.tms-home-intro__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 117, 100, 0.16);
  background: rgba(12, 117, 100, 0.08);
  color: var(--tams-teal-dark);
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.tms-home-intro__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  color: var(--tams-navy);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
  max-width: 16ch;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}

.tms-home-intro__sub {
  margin: 0 0 1.9rem;
  max-width: 40rem;
  color: var(--tams-muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.75;
  text-wrap: pretty;
  margin-left: auto;
  margin-right: auto;
}

.tms-home-intro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.tms-home-intro__btn {
  border-radius: 14px;
  font-weight: 700;
  padding: 14px 24px;
  min-width: 12.5rem;
  min-height: 52px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s, border-color 0.2s, color 0.2s;
}

.tms-home-intro__btn--primary {
  background: linear-gradient(135deg, var(--tams-teal-dark) 0%, var(--tams-teal) 100%);
  border-color: var(--tams-teal-dark);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(12, 117, 100, 0.22);
}

.tms-home-intro__btn--primary:hover,
.tms-home-intro__btn--primary:focus {
  background: linear-gradient(135deg, #06453b 0%, #0a6759 100%);
  border-color: #06453b;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(12, 117, 100, 0.28);
}

.tms-home-intro__btn--secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(200, 213, 226, 0.95);
  color: var(--tams-navy) !important;
  box-shadow: 0 10px 20px rgba(7, 18, 31, 0.06);
}

.tms-home-intro__btn--secondary:hover,
.tms-home-intro__btn--secondary:focus {
  border-color: rgba(12, 117, 100, 0.3);
  color: var(--tams-teal-dark) !important;
  background: #fff;
  transform: translateY(-2px);
}

.tms-home-intro__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
  max-width: 42rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.tms-home-intro__trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(200, 213, 226, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(7, 18, 31, 0.05);
  color: var(--tams-navy-mid);
  font-size: 0.88rem;
  font-weight: 600;
}

.tms-home-intro__note {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--tams-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .tms-home-intro__inner {
    max-width: 920px;
  }

  .tms-home-intro__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    max-width: 16ch;
  }

  .tms-home-intro__sub {
    max-width: 36rem;
  }

}

@media (max-width: 1024px) {
  .tms-home-intro {
    padding: clamp(2.8rem, 6vw, 4.2rem) 0;
  }

  .tms-home-intro__inner {
    max-width: 760px;
  }

  .tms-home-intro__copy,
  .tms-home-intro__sub,
  .tms-home-intro__trust,
  .tms-home-intro__note {
    max-width: none;
  }

  .tms-home-intro__title {
    max-width: 17ch;
  }
}

@media (max-width: 767px) {
  .tms-home-intro__inner {
    max-width: 100%;
  }

  .tms-home-intro__title {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.14;
  }

  .tms-home-intro__sub {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.72;
  }

  .tms-home-intro__note {
    font-size: 0.92rem;
  }

  .tms-home-intro__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tms-home-intro__cta {
    flex-direction: column;
    width: 100%;
  }

  .tms-home-intro__btn {
    width: 100%;
    max-width: 22rem;
    min-width: 0;
  }

  .tms-home-intro__trust-item {
    width: 100%;
    justify-content: center;
  }
}

/* â€”â€”â€” Homepage: Why Choose Us â€”â€”â€” */
.tms-why-us {
  position: relative;
  padding: clamp(3.4rem, 5.5vw, 4.6rem) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.9);
}

.tms-why-us__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tms-why-us__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 117, 100, 0.08);
  border: 1px solid rgba(12, 117, 100, 0.16);
  color: var(--tams-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.tms-why-us__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--tams-navy);
  margin: 0;
  letter-spacing: -0.03em;
}

.tms-why-us__sub {
  margin: 0.65rem auto 0;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--tams-muted);
  max-width: 52rem;
}

.tms-why-us__grid {
  /* Match premium spacing used in slider sections */
  margin-left: -14px;
  margin-right: -14px;
}

.tms-why-us__grid > [class*="col-"] {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .tms-why-us__grid > [class*="col-"] {
    margin-bottom: 0;
  }
}

.tms-why-us__card {
  height: 100%;
  margin: 0;
  padding: 28px 24px;
  background: linear-gradient(165deg, #ffffff 0%, #f6fafc 100%);
  border: 1px solid rgba(200, 213, 226, 0.88);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(7, 18, 31, 0.06);
  text-align: left;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.tms-why-us__card:hover,
.tms-why-us__card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 18, 31, 0.1);
  border-color: rgba(31, 181, 160, 0.35);
}

.tms-why-us__icon-wrap {
  width: 62px;
  height: 62px;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--tams-teal-soft) 0%, rgba(31, 181, 160, 0.12) 100%);
  color: var(--tams-teal-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tms-why-us__icon {
  width: 30px;
  height: 30px;
  display: block;
}

.tms-why-us__card-title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--tams-navy);
  margin: 0;
}

.tms-why-us__card-desc {
  margin: 0.55rem 0 0;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.97rem;
  line-height: 1.68;
  color: var(--tams-muted);
}

/* Why-us: certification proof (minimal badges) */
.tms-why-us__cert {
  margin-top: 1.2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.tms-why-us__cert-title {
  margin: 0 0 18px;
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--tams-navy);
  letter-spacing: -0.01em;
}

.tms-why-us__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tms-why-us__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 213, 226, 0.85);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(7, 18, 31, 0.05);
  color: rgba(7, 18, 31, 0.72);
}

.tms-why-us__badge-ico {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(7, 18, 31, 0.62);
}

.tms-why-us__badge-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.tms-why-us__badge-text {
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.tms-why-us__cert-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.tms-why-us__cert-btn {
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 800;
  min-height: 50px;
  box-shadow: 0 14px 24px rgba(12, 117, 100, 0.18);
}

@media (max-width: 767px) {
  .tms-why-us__cert {
    padding-top: 14px;
  }

  .tms-why-us__badges {
    gap: 14px;
  }

  .tms-why-us__badge {
    width: 100%;
    max-width: 420px;
    justify-content: center;
  }
}

/* â€”â€”â€” Homepage: bottom quote conversion block â€”â€”â€” */
.tms-bottom-quote {
  padding: clamp(2.8rem, 5vw, 4.2rem) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 181, 160, 0.08), transparent 34%),
    linear-gradient(180deg, #eef3f7 0%, #f7fafc 100%);
}

/* --- Homepage: About (B2B manufacturer) --- */
.tms-about-b2b {
  position: relative;
  padding: clamp(3.2rem, 5.5vw, 4.6rem) 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 181, 160, 0.10), transparent 35%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.9);
}

.tms-about-b2b__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.tms-about-b2b__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 117, 100, 0.08);
  border: 1px solid rgba(12, 117, 100, 0.16);
  color: var(--tams-teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.tms-about-b2b__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 750;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  color: var(--tams-navy);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.tms-about-b2b__sub {
  margin: 0.9rem 0 0;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--tams-muted);
  max-width: 62ch;
}

.tms-about-b2b__list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tms-about-b2b__li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(200, 213, 226, 0.9);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 22px rgba(7, 18, 31, 0.06);
  color: rgba(7, 18, 31, 0.74);
}

.tms-about-b2b__li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  flex: 0 0 auto;
  background: radial-gradient(circle at 30% 30%, #5ee6d4, var(--tams-header-green-dark));
  box-shadow: 0 0 0 3px rgba(12, 117, 100, 0.12);
}

.tms-about-b2b__li strong {
  color: rgba(7, 18, 31, 0.92);
  font-weight: 800;
}

.tms-about-b2b__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.tms-about-b2b__btn.btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(7, 18, 31, 0.12);
}

.tms-about-b2b__btn--secondary.btn {
  box-shadow: none;
  border: 1px solid rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.tms-about-b2b__media-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(200, 213, 226, 0.9);
  box-shadow: 0 22px 48px rgba(7, 18, 31, 0.16);
  background: #e9eff5;
}

.tms-about-b2b__img {
  display: block;
  width: 100%;
  height: min(440px, 54vh);
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.tms-about-b2b__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 18, 31, 0.32) 100%);
}

.tms-about-b2b__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 224, 234, 0.95);
  color: rgba(7, 18, 31, 0.82);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.tms-about-b2b__chip--muted {
  color: rgba(7, 18, 31, 0.72);
  font-weight: 750;
}

@media (max-width: 991px) {
  .tms-about-b2b__grid {
    grid-template-columns: 1fr;
  }

  .tms-about-b2b__sub {
    max-width: none;
  }

  .tms-about-b2b__img {
    height: min(380px, 46vh);
  }
}

@media (max-width: 480px) {
  .tms-about-b2b__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tms-about-b2b__btn.btn {
    width: 100%;
  }
}

.tms-bottom-quote__panel {
  margin-bottom: 0;
  border-radius: 24px;
  border: 1px solid rgba(200, 213, 226, 0.9);
  box-shadow: 0 18px 40px rgba(7, 18, 31, 0.08);
}

.tms-bottom-quote__body {
  padding: 2rem 1.5rem !important;
}

.tms-bottom-quote__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 117, 100, 0.08);
  border: 1px solid rgba(12, 117, 100, 0.16);
  color: var(--tams-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tms-bottom-quote__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  color: var(--tams-navy);
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  letter-spacing: -0.03em;
}

.tms-bottom-quote__text {
  margin: 0.9rem auto 0;
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.tms-bottom-quote__bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.tms-bottom-quote__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 213, 226, 0.85);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(7, 18, 31, 0.72);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(7, 18, 31, 0.05);
}

.tms-bottom-quote__bullets li::before {
  content: "\2713";
  color: rgba(12, 117, 100, 0.95);
  font-weight: 900;
}

.tms-bottom-quote__cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tms-bottom-quote__btn {
  border-radius: 14px;
  padding-left: 24px;
  padding-right: 24px;
  min-height: 52px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(12, 117, 100, 0.22);
}

.tms-bottom-quote__btn--secondary {
  box-shadow: none;
  border: 1px solid rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.92);
}

.tms-bottom-quote__btn--secondary:hover,
.tms-bottom-quote__btn--secondary:focus {
  background: rgba(12, 117, 100, 0.08);
  border-color: rgba(12, 117, 100, 0.35);
  color: var(--tams-navy);
}

@media (max-width: 767px) {
  .tms-bottom-quote {
    padding: 28px 0 54px;
  }

  .tms-bottom-quote__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .tms-bottom-quote__btn {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tms-why-us__card {
    transition: none;
  }

  .tms-why-us__card:hover,
  .tms-why-us__card:focus-within {
    transform: none;
  }
}

/* â€”â€”â€” Homepage: Global Export Services â€”â€”â€” */
.tms-export-services {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-bottom: 1px solid var(--tams-border);
  overflow: hidden;
}

.tms-export-services__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% 20%, rgba(31, 181, 160, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 70% at 90% 80%, rgba(7, 18, 31, 0.06), transparent 45%),
    linear-gradient(165deg, #e8eef6 0%, #eef6f4 42%, #f2f5fa 100%);
  pointer-events: none;
}

.tms-export-services__inner {
  position: relative;
  z-index: 1;
}

.tms-export-services__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.35rem);
}

.tms-export-services__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--tams-navy);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.tms-export-services__intro {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  color: var(--tams-muted);
}

.tms-export-services__grid {
  margin-left: -10px;
  margin-right: -10px;
}

.tms-export-services__grid > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .tms-export-services__grid > [class*="col-"] {
    margin-bottom: 0;
  }
}

.tms-export-services__card {
  height: 100%;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.6rem) clamp(1.1rem, 2.5vw, 1.35rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow:
    0 4px 20px rgba(7, 18, 31, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: center;
  border-left: 4px solid var(--tams-teal);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.tms-export-services__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(7, 18, 31, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-left-color: var(--tams-accent);
}

.tms-export-services__icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--tams-navy) 0%, var(--tams-teal-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(8, 85, 72, 0.35);
}

.tms-export-services__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.tms-export-services__text {
  margin: 0;
  font-size: clamp(0.95rem, 1.9vw, 1.04rem);
  line-height: 1.55;
  color: var(--tams-text);
}

.tms-export-services__text strong {
  color: var(--tams-navy);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .tms-export-services__card {
    transition: none;
  }

  .tms-export-services__card:hover {
    transform: none;
  }
}

/* â€”â€”â€” Homepage: Direct manufacturer (split layout) â€”â€”â€” */
.tms-manufacturer-split {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--tams-surface);
  border-bottom: 1px solid var(--tams-border);
}

#tms-manufacturer-sialkot {
  scroll-margin-top: 1rem;
}

.tms-manufacturer-split__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(1.5rem, 3.5vw, 2.25rem);
}

.tms-manufacturer-split__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.8vw, 2.05rem);
  color: var(--tams-navy);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tms-manufacturer-split__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tms-manufacturer-split__text {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.tms-manufacturer-split__copy {
  margin-bottom: 1.35rem;
}

.tms-manufacturer-split__copy p {
  margin: 0 0 1rem;
  font-size: clamp(0.98rem, 1.9vw, 1.06rem);
  line-height: 1.65;
  color: var(--tams-muted);
}

.tms-manufacturer-split__copy p:last-child {
  margin-bottom: 0;
}

.tms-manufacturer-split__copy strong {
  color: var(--tams-navy);
  font-weight: 700;
}

.tms-manufacturer-split__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tms-manufacturer-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(0.95rem, 1.8vw, 1.02rem);
  font-weight: 600;
  color: var(--tams-navy);
  line-height: 1.4;
}

.tms-manufacturer-split__check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
}

.tms-manufacturer-split__check svg {
  width: 14px;
  height: 14px;
  display: block;
}

.tms-manufacturer-split__figure {
  margin: 0;
}

.tms-manufacturer-split__frame {
  position: relative;
  border-radius: 14px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(31, 181, 160, 0.45) 0%, rgba(7, 18, 31, 0.12) 50%, rgba(31, 181, 160, 0.25) 100%);
  box-shadow: 0 20px 50px rgba(7, 18, 31, 0.12);
}

.tms-manufacturer-split__frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 1;
}

.tms-manufacturer-split__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .tms-manufacturer-split__row {
    flex-direction: column;
    align-items: stretch;
  }

  .tms-manufacturer-split__media {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .tms-manufacturer-split__text {
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .tms-manufacturer-split__text {
    padding-right: 1.5rem;
  }

  .tms-manufacturer-split__media {
    padding-left: 0.5rem;
  }
}

/* â€”â€”â€” Homepage: Manufacturing process grid â€”â€”â€” */
.tms-process {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(31, 181, 160, 0.07), transparent 55%),
    var(--tams-bg);
  border-bottom: 1px solid var(--tams-border);
}

#tms-manufacturing-process {
  scroll-margin-top: 1rem;
}

.tms-process__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(1.5rem, 3.5vw, 2.25rem);
}

.tms-process__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.8vw, 2.05rem);
  color: var(--tams-navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.tms-process__intro {
  margin: 0;
  font-size: clamp(0.96rem, 1.9vw, 1.05rem);
  line-height: 1.55;
  color: var(--tams-muted);
}

.tms-process__grid {
  margin-left: -12px;
  margin-right: -12px;
}

.tms-process__grid > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .tms-process__grid > [class*="col-"] {
    margin-bottom: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .tms-process__grid > [class*="col-"] {
    margin-bottom: 0;
  }
}

.tms-process__card {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--tams-surface);
  border: 1px solid rgba(200, 213, 226, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(7, 18, 31, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.tms-process__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(7, 18, 31, 0.11);
  border-color: rgba(31, 181, 160, 0.35);
}

.tms-process__media {
  position: relative;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f7 100%);
  border-bottom: 1px solid var(--tams-border);
}

.tms-process__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 520;
  object-fit: cover;
}

.tms-process__caption {
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
}

.tms-process__step {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--tams-navy);
  margin-bottom: 0.35rem;
}

.tms-process__desc {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--tams-muted);
}

@media (prefers-reduced-motion: reduce) {
  .tms-process__card {
    transition: none;
  }

  .tms-process__card:hover {
    transform: none;
  }
}

/* â€”â€”â€” Homepage: testimonials â€”â€”â€” */
.tms-testimonials {
  padding: clamp(3.2rem, 5.5vw, 4.6rem) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(31, 181, 160, 0.08), transparent 55%),
    var(--tams-bg);
  border-bottom: 1px solid var(--tams-border);
}

.tms-testimonials__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.tms-testimonials__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 117, 100, 0.08);
  border: 1px solid rgba(12, 117, 100, 0.16);
  color: var(--tams-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.tms-testimonials__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--tams-navy);
  margin: 0;
  letter-spacing: -0.03em;
}

.tms-testimonials__sub {
  margin: 0.85rem auto 0;
  max-width: 48rem;
  color: var(--tams-muted);
  font-size: 1rem;
  line-height: 1.72;
}

/* Premium manual scroller */
.tms-testimonials__scroller-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.tms-testimonials__scroller {
  --tms-ts-gap: 28px;
  --tms-ts-pad: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--tms-ts-pad);
  scroll-padding-right: var(--tms-ts-pad);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  padding: 4px var(--tms-ts-pad) 6px;
}

.tms-testimonials__scroller::-webkit-scrollbar { height: 0; }
.tms-testimonials__scroller { scrollbar-width: none; }

.tms-testimonials__track {
  display: flex;
  gap: var(--tms-ts-gap);
  align-items: stretch;
}

.tms-testimonials__slide {
  flex: 0 0 calc((100% - (2 * var(--tms-ts-gap))) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
}

@media (max-width: 991px) {
  .tms-testimonials__slide {
    flex-basis: calc((100% - var(--tms-ts-gap)) / 2);
  }
}

@media (max-width: 767px) {
  .tms-testimonials__scroller {
    --tms-ts-pad: 10px;
  }

  .tms-testimonials__slide {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tms-testimonials__scroller {
    scroll-behavior: auto;
  }
}

.tms-testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(200, 213, 226, 0.9);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px rgba(7, 18, 31, 0.12);
  color: var(--tams-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 22px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.tms-testimonials__nav:hover,
.tms-testimonials__nav:focus {
  background: #fff;
  border-color: rgba(31, 181, 160, 0.35);
  box-shadow: 0 14px 26px rgba(7, 18, 31, 0.14);
}

.tms-testimonials__nav--prev { left: -10px; }
.tms-testimonials__nav--next { right: -10px; }

.tms-testimonials__nav.is-disabled,
.tms-testimonials__nav:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: 0 6px 16px rgba(7, 18, 31, 0.08);
}

/* Arrows only on desktop */
@media (max-width: 991px) {
  .tms-testimonials__nav { display: none; }
}

.tms-testimonials__card {
  height: 100%;
  margin: 0;
  width: 100%;
  padding: 26px 24px;
  background: var(--tams-surface);
  border: 1px solid rgba(200, 213, 226, 0.9);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(7, 18, 31, 0.07);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.tms-testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(7, 18, 31, 0.1);
  border-color: rgba(31, 181, 160, 0.28);
}

@media (max-width: 767px) {
  .tms-testimonials__card {
    padding: 22px 20px;
  }
}

.tms-testimonials__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.tms-testimonials__stars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  margin-bottom: 0.95rem;
  font-size: 1.15rem;
  line-height: 1;
  color: #d4a012;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.tms-testimonials__star {
  display: inline-block;
}

.tms-testimonials__quote {
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
  flex: 1 1 auto;
}

.tms-testimonials__quote p {
  margin: 0;
  font-size: clamp(0.98rem, 1.9vw, 1.05rem);
  line-height: 1.78;
  color: var(--tams-muted);
}

.tms-testimonials__footer {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(200, 213, 226, 0.65);
}

.tms-testimonials__identity {
  display: flex;
  justify-content: center;
  padding-top: 0.85rem;
}

.tms-testimonials__avatar,
.tms-testimonials__avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* Avatar/photo between quote and name */
.tms-testimonials__person,
.tms-testimonials__photo {
  display: flex;
  justify-content: flex-start;
  margin: 0.25rem 0 0.85rem;
}

.tms-testimonials__person-img,
.tms-testimonials__photo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 22px rgba(7, 18, 31, 0.12);
}

.tms-testimonials__person .tms-testimonials__avatar {
  width: 60px;
  height: 60px;
  font-size: 13px;
}

.tms-testimonials__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--tams-teal-dark) 0%, var(--tams-teal) 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(7, 18, 31, 0.12);
}

.tms-testimonials__avatar-img {
  display: block;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(7, 18, 31, 0.12);
}

.tms-testimonials__name {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--tams-navy);
}

.tms-testimonials__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tams-muted);
  line-height: 1.4;
}

.tms-testimonials__verified {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(7, 18, 31, 0.72);
}

.tms-testimonials__country {
  font-weight: 700;
  color: var(--tams-teal-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.tms-testimonials__role {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--tams-muted);
}

@media (prefers-reduced-motion: reduce) {
  .tms-testimonials__card {
    transition: none;
  }

  .tms-testimonials__card:hover {
    transform: none;
  }
}

/* â€”â€”â€” Homepage: Request a Quote form â€”â€”â€” */
#tms-request-quote {
  scroll-margin-top: 1rem;
}

.tms-request-quote {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: var(--tams-surface);
  border-bottom: 1px solid var(--tams-border);
}

.tms-request-quote__panel {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(200, 213, 226, 0.95);
  border-radius: var(--tams-radius-sm);
  box-shadow: 0 10px 40px rgba(7, 18, 31, 0.08);
}

.tms-request-quote__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.tms-request-quote__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.8vw, 2rem);
  color: var(--tams-navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.tms-request-quote__lead {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.05rem);
  line-height: 1.55;
  color: var(--tams-muted);
}

.tms-request-quote__alert {
  margin-bottom: 1.25rem;
  text-align: left;
  border-radius: var(--tams-radius-sm);
}

.tms-request-quote__form {
  text-align: left;
}

.tms-request-quote__group {
  margin-bottom: 1rem;
}

.tms-request-quote__label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tams-navy);
  margin-bottom: 0.35rem;
}

.tms-request-quote__input,
.tms-request-quote__textarea {
  border-radius: 8px !important;
  border: 1px solid var(--tams-border) !important;
  box-shadow: none !important;
  font-size: 16px;
  padding: 10px 14px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tms-request-quote__input:focus,
.tms-request-quote__textarea:focus {
  border-color: var(--tams-teal) !important;
  box-shadow: 0 0 0 3px rgba(31, 181, 160, 0.2) !important;
}

.tms-request-quote__textarea {
  min-height: 120px;
  resize: vertical;
}

.tms-request-quote__submit {
  margin-top: 0.35rem;
  padding: 14px 20px !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  border-radius: 10px !important;
  background: var(--tams-teal-dark) !important;
  border-color: #063d35 !important;
  box-shadow: 0 6px 18px rgba(12, 117, 100, 0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.tms-request-quote__submit:hover,
.tms-request-quote__submit:focus {
  background: #063d35 !important;
  border-color: var(--tams-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 18, 31, 0.15);
}

.tms-request-quote__fineprint {
  margin: 0.75rem 0 0;
  text-align: center;
  line-height: 1.45;
}

.tms-rq-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .tms-request-quote__panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tms-request-quote__submit {
    font-size: 1rem !important;
    padding: 12px 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tms-request-quote__submit {
    transition: none !important;
  }

  .tms-request-quote__submit:hover,
  .tms-request-quote__submit:focus {
    transform: none;
  }
}

/* â€”â€”â€” Homepage: category cards (hero / flagship product bands) â€”â€”â€” */
.tms-home-categories {
  position: relative;
  background:
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(31, 181, 160, 0.09), transparent 55%),
    var(--tams-surface);
  border-bottom: 1px solid var(--tams-border);
  padding: 3rem 0 3.5rem;
  margin: 0;
}

/* â€”â€”â€” Homepage: 3 division cards (Dental / Beauty / Surgical) â€”â€”â€” */
.tms-division-cards {
  padding-top: 10px;
  padding-bottom: 0;
}

.tms-division-cards__col {
  margin-bottom: 12px;
}

.tms-division-card {
  height: 100%;
  border-radius: var(--tams-radius);
  border-color: rgba(200, 213, 226, 0.9);
  box-shadow: 0 10px 26px rgba(7, 18, 31, 0.07);
}

.tms-division-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.tms-division-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--tams-navy);
}

.tms-division-card__desc {
  margin: 0;
  line-height: 1.6;
}

.tms-division-card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: stretch;
}

.tms-division-card__actions .btn {
  flex: 1 1 0;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .tms-division-card__body {
    padding: 16px;
  }

  .tms-division-card__actions {
    gap: 8px;
  }

  .tms-division-card__actions .btn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* â€”â€”â€” Homepage: premium range cards (Beauty / Surgical / Dental) â€”â€”â€” */
.tms-range {
  position: relative;
  padding: clamp(3rem, 5.2vw, 4rem) 0;
  background:
    radial-gradient(circle at top left, rgba(31, 181, 160, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f7 100%);
  border-top: 1px solid rgba(200, 213, 226, 0.45);
  border-bottom: 1px solid rgba(200, 213, 226, 0.75);
}

.tms-range::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62));
  pointer-events: none;
}

.tms-range__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 16px;
}

.tms-range__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(12, 117, 100, 0.09);
  border: 1px solid rgba(12, 117, 100, 0.16);
  color: var(--tams-teal-dark);
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tms-range__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--tams-navy);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 6px;
  line-height: 1.18;
}

.tms-range__sub {
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  margin: 0;
  color: var(--tams-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.tms-range__grid > [class*="col-"] {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.tms-range-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--tams-radius-xl);
  overflow: hidden;
  text-decoration: none !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(194, 208, 223, 0.9);
  box-shadow:
    0 12px 28px rgba(7, 18, 31, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tms-range-card:hover,
.tms-range-card:focus {
  transform: translateY(-7px);
  box-shadow:
    0 24px 48px rgba(7, 18, 31, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-color: rgba(12, 117, 100, 0.28);
}

.tms-range-card__media {
  position: relative;
  aspect-ratio: 16 / 7.1;
  background: #e9eff5;
  overflow: hidden;
}

.tms-range-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 18, 31, 0.16) 100%);
  pointer-events: none;
}

.tms-range-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.01);
  filter: saturate(0.94) contrast(1.03);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tms-range-card:hover .tms-range-card__img,
.tms-range-card:focus .tms-range-card__img {
  transform: scale(1.07);
}

.tms-range-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 18px 18px 18px;
  gap: 10px;
  color: var(--tams-text);
  background: var(--tams-surface);
  flex: 1 1 auto;
}

.tms-range-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tms-range-card__title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--tams-navy);
}

.tms-range-card__desc {
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  margin: 0;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tams-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tms-range-card__btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(8, 85, 72, 0.18);
  background: linear-gradient(180deg, rgba(12, 117, 100, 0.12) 0%, rgba(12, 117, 100, 0.06) 100%);
  color: var(--tams-navy);
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  margin-top: auto;
}

.tms-range-card__btn::after {
  content: "→";
  font-weight: 900;
  margin-left: 2px;
}

.tms-range-card:hover .tms-range-card__btn,
.tms-range-card:focus .tms-range-card__btn {
  background: linear-gradient(180deg, rgba(12, 117, 100, 0.18) 0%, rgba(12, 117, 100, 0.10) 100%);
  border-color: rgba(8, 85, 72, 0.32);
  color: var(--tams-teal-dark);
  transform: translateX(2px);
}

@media (max-width: 1199px) {
  .tms-range {
    padding: 42px 0 46px;
  }

  .tms-range-card__media {
    aspect-ratio: 16 / 7.8;
  }
}

@media (max-width: 991px) {
  .tms-range__head {
    margin-bottom: 16px;
  }

  .tms-range__title {
    font-size: clamp(1.32rem, 4vw, 1.72rem);
  }

  .tms-range-card__media { aspect-ratio: 16 / 8.4; }
}

@media (max-width: 767px) {
  .tms-range {
    padding: 36px 0 40px;
  }

  .tms-range-card__content {
    padding: 16px 16px 16px;
  }
}

/* â€”â€”â€” Mobile card ergonomics: 1 card per row, readable spacing â€”â€”â€” */
@media (max-width: 767px) {
  /* Keep cards comfortable on mobile (avoid â€œsqueezedâ€‌ look) */
  .tms-why-us__grid > [class*="col-"],
  .tms-testimonials__slide {
    margin-bottom: 16px;
  }

  .tms-why-us__card {
    padding: 22px 20px;
  }

  .tms-why-us__icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 0.85rem;
  }

  /* Testimonials padding is handled in the testimonials block above */

  /* Reduce card height slightly by tightening internal spacing */
  .tms-testimonials__stars {
    margin-bottom: 0.75rem;
  }

  .tms-testimonials__quote {
    margin-bottom: 0.95rem;
  }

  .tms-testimonials__identity {
    padding-top: 0.7rem;
  }

  .tms-testimonials__name {
    margin-top: 0.55rem;
  }
}

@media (max-width: 360px) {
  .tms-division-card__actions {
    flex-wrap: wrap;
  }

  .tms-division-card__actions .btn {
    flex: 1 1 100%;
  }
}

.tms-home-categories__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

#tms-home-cat-heading {
  scroll-margin-top: 1.25rem;
}

.tms-home-categories__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  color: var(--tams-navy);
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.tms-home-categories__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--tams-muted);
  line-height: 1.5;
}

.tms-cat-grid {
  margin-left: -12px;
  margin-right: -12px;
}

.tms-cat-grid > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

.tms-cat-card {
  position: relative;
  display: block;
  text-decoration: none !important;
  background: var(--tams-surface);
  border-radius: calc(var(--tams-radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--tams-border);
  box-shadow:
    0 4px 6px rgba(7, 18, 31, 0.04),
    0 18px 40px rgba(7, 18, 31, 0.09);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  isolation: isolate;
}

.tms-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(31, 181, 160, 0.45),
    rgba(12, 117, 100, 0.15) 40%,
    transparent 65%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.tms-cat-card__shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.22) 52%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(12deg);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 4;
}

.tms-cat-card:hover,
.tms-cat-card:focus {
  transform: translateY(-10px);
  border-color: rgba(12, 117, 100, 0.45);
  box-shadow:
    0 12px 24px rgba(7, 18, 31, 0.08),
    0 32px 64px rgba(7, 18, 31, 0.14),
    0 0 0 1px rgba(31, 181, 160, 0.12);
}

.tms-cat-card:hover::before,
.tms-cat-card:focus::before {
  opacity: 1;
}

.tms-cat-card:hover .tms-cat-card__shine,
.tms-cat-card:focus .tms-cat-card__shine {
  transform: translateX(120%) rotate(12deg);
}

.tms-cat-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(160deg, #dfe8f0 0%, #e8ecf1 100%);
}

.tms-cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.tms-cat-card:hover .tms-cat-card__media img,
.tms-cat-card:focus .tms-cat-card__media img {
  transform: scale(1.09);
}

.tms-cat-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 18, 31, 0.82) 0%,
    rgba(7, 18, 31, 0.25) 45%,
    transparent 100%
  );
  opacity: 0.92;
  transition: opacity 0.35s ease;
}

.tms-cat-card:hover .tms-cat-card__media-overlay,
.tms-cat-card:focus .tms-cat-card__media-overlay {
  opacity: 1;
}

.tms-cat-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.1rem 1.15rem 1.25rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  line-height: 1.25;
  z-index: 1;
}

.tms-cat-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, #fafcfd 0%, var(--tams-surface) 100%);
  border-top: 1px solid rgba(200, 213, 226, 0.85);
}

.tms-cat-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tams-teal-dark);
  transition: color 0.25s ease, transform 0.25s ease;
}

.tms-cat-card__cta::after {
  content: "â†’";
  display: inline-block;
  margin-left: 0.35em;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.tms-cat-card:hover .tms-cat-card__cta,
.tms-cat-card:focus .tms-cat-card__cta {
  color: var(--tams-teal);
}

.tms-cat-card:hover .tms-cat-card__cta::after,
.tms-cat-card:focus .tms-cat-card__cta::after {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .tms-cat-card,
  .tms-cat-card::before,
  .tms-cat-card__shine,
  .tms-cat-card__media img,
  .tms-cat-card__media-overlay,
  .tms-cat-card__cta,
  .tms-cat-card__cta::after {
    transition: none;
  }

  .tms-cat-card:hover,
  .tms-cat-card:focus {
    transform: none;
  }

  .tms-cat-card:hover .tms-cat-card__media img,
  .tms-cat-card:focus .tms-cat-card__media img {
    transform: none;
  }

  .tms-cat-card:hover .tms-cat-card__shine,
  .tms-cat-card:focus .tms-cat-card__shine {
    transform: translateX(-100%) rotate(12deg);
  }
}

.section-title {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 750;
  color: var(--tams-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
}

/* Latest products (homepage) */
/* â€”â€”â€” Product cards: shared layout & CTA stack (featured, search, catalogue) â€”â€”â€” */
.thumbnail.tms-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--tams-surface);
  border: 1px solid rgba(200, 213, 226, 0.9);
  box-shadow:
    var(--tams-shadow-sm),
    0 1px 0 rgba(7, 18, 31, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* â€”â€”â€” Compact inquiry cards (WhatsApp CTA) â€”â€”â€” */
.thumbnail.tms-inquiry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--tams-surface);
  border: 1px solid rgba(200, 213, 226, 0.9);
  box-shadow: var(--tams-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.thumbnail.tms-inquiry-card:hover,
.thumbnail.tms-inquiry-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(12, 117, 100, 0.35);
  box-shadow: 0 12px 28px rgba(7, 18, 31, 0.12);
}

.tms-inquiry-card__media {
  display: block;
  text-decoration: none !important;
  padding: 15px;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.75);
}

.tms-inquiry-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(200, 213, 226, 0.7);
  padding: 15px;
  box-shadow: 0 6px 14px rgba(7, 18, 31, 0.06);
}

.tms-inquiry-card__body {
  padding: 16px 16px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.tms-inquiry-card__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--tams-navy);
}

.tms-inquiry-card__trust {
  font-size: 12px;
  font-weight: 700;
  color: rgba(7, 18, 31, 0.62);
  letter-spacing: 0.01em;
}

.tms-inquiry-card__sub {
  font-size: 12px;
  font-weight: 700;
  color: rgba(7, 18, 31, 0.62);
  letter-spacing: 0.01em;
}

.tms-inquiry-card__cta {
  margin-top: auto;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  min-height: 38px;
  padding: 9px 14px;
  background: var(--tams-teal-dark) !important;
  border-color: #063d35 !important;
}

.tms-inquiry-card__cta:hover,
.tms-inquiry-card__cta:focus {
  background: #063d35 !important;
  border-color: var(--tams-navy) !important;
}

.tms-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #ff6a00; /* orange */
  box-shadow: 0 10px 18px rgba(7, 18, 31, 0.16);
}

.tms-product-card__badge--best {
  background: #e53935; /* red */
}

.tms-product-card__badge--hot {
  background: #ff6a00; /* orange */
}

.tms-product-card__badge:empty {
  display: none;
}

.thumbnail.tms-product-card:hover,
.thumbnail.tms-product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(12, 117, 100, 0.35);
  box-shadow:
    0 12px 28px rgba(7, 18, 31, 0.12),
    0 2px 0 rgba(7, 18, 31, 0.04);
}

.tms-product-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 12px;
  padding: 20px;
}

.row.pr-wrap .thumbnail.tms-product-card .tms-product-card__body {
  padding: 20px;
}

/* Product card typography */
.thumbnail.tms-product-card .tms-product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--tams-navy);
  text-decoration: none !important;
}

.thumbnail.tms-product-card .tms-product-card__title:hover,
.thumbnail.tms-product-card .tms-product-card__title:focus {
  color: var(--tams-teal-dark);
  text-decoration: none !important;
}

.thumbnail.tms-product-card .tms-product-card__sku {
  margin: 0;
  display: flex;
  justify-content: center;
}

.thumbnail.tms-product-card .tms-product-card__sku-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 18, 31, 0.04);
  border: 1px solid rgba(200, 213, 226, 0.8);
  color: rgba(7, 18, 31, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Product card media (image section) â€” premium separation */
.thumbnail.tms-product-card .tms-product-card__media {
  display: block;
  text-decoration: none !important;
  padding: 15px;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.75);
}

.thumbnail.tms-product-card .tms-product-card__media-inner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(200, 213, 226, 0.7);
  padding: 15px;
  box-shadow: 0 6px 14px rgba(7, 18, 31, 0.06);
  overflow: hidden;
}

.thumbnail.tms-product-card .tms-product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.tms-product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.pr-wrap .tms-product-card__actions {
  margin-top: 10px;
}

.tms-product-card__actions-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--primary,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--primary {
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  background: var(--tams-teal-dark) !important;
  border-color: #063d35 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(12, 117, 100, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--primary {
  font-size: 13px;
  padding: 9px 12px;
}

.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--primary:hover,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--primary:hover,
.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--primary:focus,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--primary:focus {
  background: #063d35 !important;
  border-color: var(--tams-navy) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(7, 18, 31, 0.14);
}

.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--secondary,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--secondary {
  flex: 1 1 auto;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 12px;
  background: transparent !important;
  border: 2px solid rgba(8, 85, 72, 0.75) !important;
  color: var(--tams-teal-dark) !important;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--secondary:hover,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--secondary:hover,
.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--secondary:focus,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--secondary:focus {
  background: rgba(12, 117, 100, 0.08) !important;
  border-color: var(--tams-teal-dark) !important;
  color: var(--tams-navy) !important;
}

.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--wa-icon,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--wa-icon {
  flex: 0 0 auto;
  width: 42px;
  min-width: 42px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0;
  border: 2px solid rgba(37, 211, 102, 0.55) !important;
  background: rgba(37, 211, 102, 0.12) !important;
  color: #128c7e !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--wa-icon:hover,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--wa-icon:hover,
.thumbnail.tms-product-card .tms-product-card__actions-row > .tms-product-card__btn--wa-icon:focus,
.pr-wrap .tms-product-card__actions-row > .tms-product-card__btn--wa-icon:focus {
  background: rgba(37, 211, 102, 0.18) !important;
  border-color: rgba(18, 140, 126, 0.8) !important;
  color: #0b6f64 !important;
}

.tms-product-card__btn--whatsapp {
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 14px;
  background: #25d366 !important;
  border-color: #1da851 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.pr-wrap .tms-product-card__actions > .tms-product-card__btn--whatsapp {
  font-size: 13px;
  padding: 10px 12px;
}

.tms-product-card__btn--whatsapp:hover,
.tms-product-card__btn--whatsapp:focus {
  background: #1ebe5d !important;
  border-color: #128c7e !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(18, 140, 126, 0.35);
}

.tms-product-card__zoom {
  margin-top: 8px !important;
}

.section-latest-products {
  padding: var(--tms-section-y) 0;
  background: var(--tams-bg);
}

@media (max-width: 991px) {
  .section-latest-products {
    padding: var(--tms-section-y-compact) 0;
  }
}

@media (max-width: 767px) {
  .section-latest-products {
    padding: var(--tms-section-y-mobile) 0;
  }
}

.tms-featured-products {
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 181, 160, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.9);
}

.tms-featured-products__head {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 1.35rem;
}

.tms-featured-products__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 117, 100, 0.08);
  border: 1px solid rgba(12, 117, 100, 0.16);
  color: var(--tams-teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.tms-featured-products__sub {
  margin: 0.6rem auto 0;
  color: var(--tams-muted);
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 52rem;
}

.tms-featured-products__browse.btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 117, 100, 0.25);
}

.tms-featured-products__browse.btn:hover,
.tms-featured-products__browse.btn:focus {
  background: rgba(12, 117, 100, 0.08);
  border-color: rgba(12, 117, 100, 0.35);
  color: var(--tams-navy);
}

.section-latest-products > .section-title,
.section-latest-products__heading {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2.15rem) !important;
}

/* Homepage â€œOur latest productsâ€‌ â€” premium featured cards */
.section-latest-products .thumbnail.tms-product-card {
  position: relative;
  padding: 0;
  margin-bottom: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(200, 213, 226, 0.85);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(7, 18, 31, 0.08),
    0 18px 50px rgba(7, 18, 31, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  isolation: isolate;
}

/* Gradient ring on hover/focus */
.section-latest-products .thumbnail.tms-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(31, 181, 160, 0.55),
    rgba(12, 117, 100, 0.18) 42%,
    transparent 68%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Subtle shine sweep */
.section-latest-products .thumbnail.tms-product-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.18) 52%,
    transparent 60%
  );
  transform: translateX(-110%) rotate(12deg);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

.section-latest-products .thumbnail.tms-product-card:hover,
.section-latest-products .thumbnail.tms-product-card:focus-within {
  box-shadow:
    0 14px 30px rgba(7, 18, 31, 0.12),
    0 40px 80px rgba(7, 18, 31, 0.12),
    0 0 0 1px rgba(31, 181, 160, 0.12);
  border-color: rgba(12, 117, 100, 0.4);
  transform: translateY(-8px);
}

.section-latest-products .thumbnail.tms-product-card:hover::before,
.section-latest-products .thumbnail.tms-product-card:focus-within::before {
  opacity: 1;
}

.section-latest-products .thumbnail.tms-product-card:hover::after,
.section-latest-products .thumbnail.tms-product-card:focus-within::after {
  transform: translateX(130%) rotate(12deg);
}

.section-latest-products .tms-product-card__media {
  display: block;
  flex: 0 0 auto;
  text-decoration: none !important;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(200, 213, 226, 0.75);
  position: relative;
  z-index: 1;
}

.section-latest-products .tms-product-card__media-inner {
  display: block;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(200, 213, 226, 0.7);
  box-shadow: 0 6px 14px rgba(7, 18, 31, 0.06);
  box-sizing: border-box;
}

.section-latest-products .tms-product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 10px;
}

.section-latest-products .thumbnail.tms-product-card:hover .tms-product-card__img,
.section-latest-products .thumbnail.tms-product-card:focus-within .tms-product-card__img {
  transform: scale(1.07);
}

.section-latest-products .tms-product-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: stretch;
  text-align: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.section-latest-products .tms-product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--tams-navy) !important;
  text-decoration: none !important;
  margin: 0;
  min-height: 2.7em;
}

.section-latest-products .tms-product-card__title:hover,
.section-latest-products .tms-product-card__title:focus {
  color: var(--tams-teal-dark) !important;
}

.section-latest-products .tms-product-card__sku {
  margin: 0;
  font-size: 14px;
  color: var(--tams-muted);
  font-weight: 600;
  line-height: 1.2;
}

.section-latest-products .tms-product-card__sku-label {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(12, 117, 100, 0.09);
  border: 1px solid rgba(12, 117, 100, 0.18);
  color: var(--tams-teal-dark);
}

.section-latest-products .tms-product-card__actions .tms-product-card__btn:not(.tms-product-card__btn--whatsapp) {
  width: 100%;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 14px;
  background: var(--tams-teal-dark) !important;
  border-color: #063d35 !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(12, 117, 100, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.section-latest-products .tms-product-card__actions .tms-product-card__btn--whatsapp {
  width: 100%;
  font-size: 15px;
  padding: 13px 14px;
}

/* Desktop: slightly bigger, more premium */
@media (min-width: 992px) {
  .section-latest-products .tms-product-card__title {
    font-size: 1.35rem;
  }

  .section-latest-products .tms-product-card__sku {
    font-size: 14px;
  }

  .section-latest-products .tms-product-card__actions .tms-product-card__btn:not(.tms-product-card__btn--whatsapp) {
    font-size: 15px;
  }

  .section-latest-products .tms-product-card__actions .tms-product-card__btn--whatsapp {
    font-size: 15px;
  }
}

/* Mobile: keep readable but not oversized; bigger image + full-width card */
@media (max-width: 767px) {
  .section-latest-products {
    padding: 2.25rem 10px;
  }

  .section-latest-products .thumbnail.tms-product-card {
    margin-bottom: 16px;
    transform: none;
  }

  .section-latest-products .tms-product-card__media-inner {
    aspect-ratio: 4 / 3;
    padding: 10px 10px;
  }

  .section-latest-products .tms-product-card__title {
    font-size: 1.08rem;
    min-height: 0;
    -webkit-line-clamp: 3;
    line-height: 1.2;
  }

  .section-latest-products .tms-product-card__sku {
    font-size: 12px;
  }

  .section-latest-products .tms-product-card__actions .tms-product-card__btn:not(.tms-product-card__btn--whatsapp) {
    font-size: 13px;
    padding: 11px 14px;
  }

  .section-latest-products .tms-product-card__actions .tms-product-card__btn--whatsapp {
    font-size: 13px;
    padding: 11px 14px;
  }
}

/* Image quick-view modal */
.tms-img-modal .modal-dialog {
  width: min(980px, 96vw);
}

.tms-img-modal .modal-content {
  background: rgba(7, 18, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.tms-img-modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  min-height: min(80vh, 720px);
}

.tms-img-modal__img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.tms-img-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  cursor: pointer;
}

.tms-img-modal__close:hover,
.tms-img-modal__close:focus {
  background: rgba(255, 255, 255, 0.14);
}

.section-latest-products .tms-product-card__actions .tms-product-card__btn:not(.tms-product-card__btn--whatsapp):hover,
.section-latest-products .tms-product-card__actions .tms-product-card__btn:not(.tms-product-card__btn--whatsapp):focus {
  background: #063d35 !important;
  border-color: var(--tams-navy) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(7, 18, 31, 0.16);
}

.section-latest-products .tms-product-card__actions .tms-product-card__btn--whatsapp:hover,
.section-latest-products .tms-product-card__actions .tms-product-card__btn--whatsapp:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(18, 140, 126, 0.4);
}

.section-latest-products .tms-product-card__actions .tms-product-card__btn:focus-visible {
  outline: 2px solid rgba(31, 181, 160, 0.75);
  outline-offset: 2px;
}

.section-latest-products .tms-product-card__actions .tms-product-card__btn--whatsapp:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.85);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .section-latest-products .thumbnail.tms-product-card,
  .section-latest-products .thumbnail.tms-product-card::before,
  .section-latest-products .thumbnail.tms-product-card::after,
  .section-latest-products .tms-product-card__img,
  .section-latest-products .tms-product-card__actions .tms-product-card__btn {
    transition: none !important;
  }

  .section-latest-products .thumbnail.tms-product-card:hover,
  .section-latest-products .thumbnail.tms-product-card:focus-within {
    transform: none;
  }

  .section-latest-products .thumbnail.tms-product-card:hover::after,
  .section-latest-products .thumbnail.tms-product-card:focus-within::after {
    transform: translateX(-110%) rotate(12deg);
  }

  .section-latest-products .thumbnail.tms-product-card:hover .tms-product-card__img,
  .section-latest-products .thumbnail.tms-product-card:focus-within .tms-product-card__img {
    transform: none;
  }
}

/* Share strip */
.section-share {
  background: var(--tams-surface) !important;
  padding: 2.5rem 1rem !important;
  border-top: 1px solid var(--tams-border);
  border-bottom: 1px solid var(--tams-border);
}

.section-share .section-title {
  margin-bottom: 1rem;
}

.section-share .btn {
  margin: 6px;
  border-radius: 8px;
  font-weight: 600;
}

.section-share .row .btn-block {
  margin: 0;
}

.section-share .btn-primary {
  background: var(--tams-teal);
  border-color: var(--tams-teal-dark);
}

.section-share .btn-info {
  background: #0d7cba;
  border-color: #0a6aa3;
  color: #fff;
}

.section-share .btn-info:hover {
  background: #0a6aa3;
  border-color: #085a8c;
  color: #fff;
}

.section-share .btn-secondary {
  background: var(--tams-navy-mid);
  border-color: var(--tams-navy);
  color: #fff;
}

.section-share .btn-secondary:hover {
  background: var(--tams-navy);
  border-color: #050d16;
  color: #fff;
}

.section-share .btn-default {
  background: var(--tams-navy-mid);
  border-color: var(--tams-navy);
  color: #fff;
}

.section-share .btn-default:hover,
.section-share .btn-default:focus {
  background: var(--tams-navy);
  border-color: #050d16;
  color: #fff;
}

/* â€”â€”â€” In-page title (sits on page background â€” no extra white strip) â€”â€”â€” */
.tams-page-heading {
  margin: 0 0 1.35rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.tams-page-heading__title {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  color: var(--tams-navy);
}

.tams-page-heading__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--tams-muted);
}

/* â€”â€”â€” Contact page â€”â€”â€” */

.page-contact__main {
  padding-top: 1.35rem;
  padding-bottom: 3rem;
}

.contact-aside__intro.cms-prose,
.contact-aside__intro.cms-prose p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--tams-text);
}

.contact-aside__intro.cms-prose a {
  color: var(--tams-teal-dark);
  font-weight: 600;
}

.contact-aside__intro.cms-prose a:hover {
  color: var(--tams-navy);
}

.contact-aside__fallback {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.contact-card-list {
  margin: 1.25rem 0 1.5rem;
}

.contact-card-list > li {
  margin-bottom: 10px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--tams-radius-sm);
  border: 1px solid var(--tams-border);
  background: var(--tams-surface);
  text-decoration: none !important;
  color: var(--tams-text) !important;
  box-shadow: 0 2px 12px rgba(7, 18, 31, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover,
.contact-card:focus {
  border-color: rgba(12, 117, 100, 0.45);
  box-shadow: 0 6px 22px rgba(7, 18, 31, 0.1);
  transform: translateY(-2px);
  color: var(--tams-navy) !important;
}

.contact-card__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-card__icon--wa {
  font-weight: 800;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #25d366;
  color: #fff !important;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tams-muted);
}

.contact-card__value {
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
}

.contact-aside__address {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--tams-radius-sm);
  background: var(--tams-teal-soft);
  border: 1px solid var(--tams-border);
  font-size: 14px;
  line-height: 1.55;
  color: var(--tams-text);
  margin-bottom: 1rem;
}

.contact-aside__address-icon {
  color: var(--tams-teal-dark);
  font-size: 18px;
  margin-top: 2px;
}

.contact-aside__hint {
  line-height: 1.5;
}

.contact-form-panel {
  background: var(--tams-surface);
  border: 1px solid var(--tams-border);
  border-radius: var(--tams-radius);
  box-shadow: var(--tams-shadow);
  padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.contact-form-panel__title {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--tams-navy);
}

.contact-form-panel__sub {
  margin: 0 0 1.35rem;
  font-size: 14px;
}

.page-contact .jf-form {
  margin-top: 0;
}

.page-contact .jf-form > form {
  margin-bottom: 0;
}

.page-contact .contact-form-panel .form-group {
  padding: 6px 0 8px;
}

.page-contact .form-group.required .control-label::after {
  color: #c9302c;
  content: "*";
  margin-left: 4px;
}

.page-contact .contact-form-panel .form-control {
  border-radius: var(--tams-radius-sm);
  border-color: var(--tams-border);
  min-height: 40px;
  box-shadow: none;
}

.page-contact .contact-form-panel .form-control:focus {
  border-color: var(--tams-teal);
  box-shadow: 0 0 0 2px rgba(12, 117, 100, 0.2);
}

.page-contact .contact-form-panel textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.page-contact .contact-form-panel .input-group-addon {
  background: var(--tams-teal-soft);
  border-color: var(--tams-border);
  color: var(--tams-teal-dark);
}

.page-contact .gaddress .form-group {
  padding-left: 0;
}

.page-contact .gaddress .mq-indicator {
  display: none;
}

@media only screen and (min-width: 767px) {
  .page-contact .gaddress .mq-indicator {
    display: block;
    height: 1px;
    margin-top: -19px;
  }

  .page-contact .gaddress .form-group.city,
  .page-contact .gaddress .form-group.state,
  .page-contact .gaddress .form-group.postalCode,
  .page-contact .gaddress .form-group.country {
    display: inline-block;
    width: 48%;
    vertical-align: top;
  }
}

.page-contact .checkbox input[type="checkbox"],
.page-contact .checkbox-inline input[type="checkbox"],
.page-contact .radio input[type="radio"],
.page-contact .radio-inline input[type="radio"] {
  position: absolute;
  margin-left: 0;
}

.page-contact .jf-copyright {
  display: none !important;
}

.contact-thankyou {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--tams-radius-sm);
  background: var(--tams-teal-soft);
  border: 1px solid var(--tams-border);
}

/* â€”â€”â€” About page â€”â€”â€” */
.page-about__main {
  padding-top: 1.35rem;
  padding-bottom: 3rem;
}

.page-about__panel {
  background: var(--tams-surface);
  border: 1px solid var(--tams-border);
  border-radius: var(--tams-radius);
  box-shadow: var(--tams-shadow);
  padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .page-about__panel {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.page-about__panel-title {
  margin: 0 0 1.25rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--tams-navy);
}

.page-about__fallback {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.page-about__fallback a {
  color: var(--tams-teal-dark);
  font-weight: 600;
}

.page-about__fallback a:hover,
.page-about__fallback a:focus {
  color: var(--tams-navy);
}

.page-about__article.cms-prose {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tams-text);
}

.page-about__article.cms-prose > *:first-child {
  margin-top: 0;
}

.page-about__article.cms-prose > *:last-child {
  margin-bottom: 0;
}

.page-about__article.cms-prose h1,
.page-about__article.cms-prose h2,
.page-about__article.cms-prose h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  color: var(--tams-navy);
  margin: 1.35em 0 0.5em;
  line-height: 1.25;
}

.page-about__article.cms-prose h1 {
  font-size: 1.5rem;
}

.page-about__article.cms-prose h2 {
  font-size: 1.3rem;
}

.page-about__article.cms-prose h3 {
  font-size: 1.1rem;
}

.page-about__article.cms-prose p {
  margin: 0 0 1rem;
}

.page-about__article.cms-prose ul,
.page-about__article.cms-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.page-about__article.cms-prose li {
  margin-bottom: 0.35rem;
}

.page-about__article.cms-prose a {
  color: var(--tams-teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-about__article.cms-prose a:hover,
.page-about__article.cms-prose a:focus {
  color: var(--tams-navy);
}

.page-about__article.cms-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--tams-radius-sm);
  margin: 0.5rem 0 1rem;
}

.page-about__article.cms-prose table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 1rem;
  border-collapse: collapse;
  font-size: 15px;
}

.page-about__article.cms-prose th,
.page-about__article.cms-prose td {
  border: 1px solid var(--tams-border);
  padding: 8px 10px;
  text-align: left;
}

.page-about__article.cms-prose th {
  background: var(--tams-teal-soft);
  font-weight: 600;
}

.page-about__aside-title {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--tams-navy);
}

.page-about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: var(--tams-radius-sm);
  border: 1px solid var(--tams-border);
  background: var(--tams-surface);
  box-shadow: 0 2px 12px rgba(7, 18, 31, 0.05);
}

.page-about-highlight__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.page-about-highlight__body {
  min-width: 0;
}

.page-about-highlight__label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--tams-navy);
}

.page-about-highlight__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--tams-muted);
}

.page-about__cta {
  margin-top: 1.25rem;
  padding: 1.25rem 1rem;
  border-radius: var(--tams-radius-sm);
  background: var(--tams-teal-soft);
  border: 1px solid var(--tams-border);
  text-align: center;
}

.page-about__cta-text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--tams-navy);
}

.page-about__cta .btn-primary {
  background: var(--tams-teal);
  border-color: var(--tams-teal-dark);
  border-radius: var(--tams-radius-sm);
  font-weight: 600;
}

.page-about__cta .btn-primary:hover,
.page-about__cta .btn-primary:focus {
  background: var(--tams-teal-dark);
  border-color: var(--tams-teal-dark);
  color: #fff;
}

.page-about__cta .btn-default {
  background: var(--tams-surface);
  border-color: var(--tams-border);
  color: var(--tams-navy);
  border-radius: var(--tams-radius-sm);
  font-weight: 600;
}

.page-about__cta .btn-default:hover,
.page-about__cta .btn-default:focus {
  background: #f4f7fa;
  border-color: var(--tams-border);
  color: var(--tams-navy);
}

/* â€”â€”â€” Footer â€”â€”â€” */
.site-footer {
  background: var(--tams-navy) !important;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 !important;
  margin-top: 0;
}

/* Conversion strip */
.site-footer__lead {
  background: linear-gradient(135deg, var(--tams-teal-dark) 0%, #0a5c50 50%, var(--tams-teal) 100%);
  padding: 1.35rem 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.site-footer__lead-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-footer__lead-copy {
  margin: 0;
  flex: 1 1 280px;
  max-width: 560px;
}

.site-footer__lead-title {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.site-footer__lead-sub {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.site-footer__lead-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.site-footer__btn--primary {
  background: #fff !important;
  color: var(--tams-teal-dark) !important;
  border-color: #fff !important;
}

.site-footer__btn--primary:hover,
.site-footer__btn--primary:focus {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--tams-navy) !important;
}

.site-footer__btn--ghost {
  background: rgba(0, 0, 0, 0.12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

.site-footer__btn--ghost:hover,
.site-footer__btn--ghost:focus {
  background: rgba(0, 0, 0, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
}

/* Main columns */
.site-footer__body {
  padding: 2.75rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.site-footer__row {
  margin-left: -12px;
  margin-right: -12px;
}

@media (min-width: 992px) {
  .site-footer__row {
    display: flex;
    flex-wrap: wrap;
  }

  .site-footer__row > [class*="col-"] {
    display: flex;
    flex-direction: column;
  }
}

.site-footer__col {
  padding: 0 12px 28px;
}

.site-footer__heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 14px !important;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tams-accent);
  display: block;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__list li:last-child {
  border-bottom: none;
}

.site-footer__list a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 0 !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none !important;
}

.site-footer__list a:hover,
.site-footer__list a:focus {
  color: #fff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.site-footer__pdf-tag {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Footer address block (div â€” avoids global `address` grey box in straps7373.css) */
.site-footer .site-footer__address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 14px !important;
  padding: 14px 16px !important;
  background: #152028 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--tams-accent);
  border-radius: var(--tams-radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.site-footer .site-footer__address,
.site-footer .site-footer__address * {
  color: #fff !important;
}

.site-footer__address-name {
  display: block;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 8px;
}

.site-footer__address-lines {
  display: block;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 400;
}

.site-footer__list--contact {
  margin-bottom: 14px;
}

.site-footer__list--contact li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__list--contact li:last-child {
  border-bottom: none;
}

.site-footer__contact-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 0 !important;
}

.site-footer__icon {
  opacity: 0.85;
  flex-shrink: 0;
}

.site-footer__badges {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__badges img {
  max-width: min(200px, 100%);
  height: auto;
  opacity: 0.95;
  display: block;
}

.site-footer__map-wrap {
  border-radius: var(--tams-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  line-height: 0;
}

.site-footer__map-wrap iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 0;
}

.site-footer__map-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

/* Language + social (moved from header) */
.site-footer__extras {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
}

.site-footer__extras-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
}

.site-footer__translate {
  margin: 0 !important;
}

.site-footer__extras .goog-te-gadget {
  font-family: inherit !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer__extras .goog-te-gadget-simple {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 6px !important;
}

/* Bottom bar */
.site-footer__bottom.copyright {
  background: rgba(0, 0, 0, 0.25) !important;
  margin-top: 0 !important;
  padding: 16px 15px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.site-footer__copy,
.site-footer__credit {
  margin: 0;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

.site-footer__credit a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: underline;
  font-size: 13px !important;
  padding: 0 !important;
  display: inline !important;
}

.site-footer__credit a:hover {
  color: #fff !important;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.site-footer__legal a {
  font-size: 13px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 4px 0 !important;
  text-decoration: none !important;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus {
  color: #fff !important;
  text-decoration: underline !important;
}

@media (max-width: 767px) {
  .site-footer__lead-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .site-footer__lead-btns {
    justify-content: center;
  }

  .site-footer__btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

/* Legacy footer classes (if used elsewhere) */
.site-footer .footer-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #fff !important;
}

.site-footer .footer-heading:after {
  background: var(--tams-accent) !important;
}

.site-footer .permalink {
  margin-bottom: 6px;
}

/* â€”â€”â€” Inner pages (products, about, etc.) â€”â€”â€” */
.container-bg {
  background: var(--tams-surface);
}

.container-bg .thumbnail {
  border: 1px solid var(--tams-border);
  border-radius: var(--tams-radius);
  padding: 12px;
  background: var(--tams-surface);
  box-shadow: var(--tams-shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  margin-bottom: 20px;
}

.container-bg .thumbnail:hover {
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.1);
}

.container-bg .thumbnail img {
  border-radius: var(--tams-radius-sm);
  max-height: 220px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

body.home .btn-primary,
body.contact .btn-primary {
  background: var(--tams-teal);
  border-color: var(--tams-teal-dark);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 11px 18px;
  box-shadow: 0 10px 22px rgba(7, 18, 31, 0.12);
}

body.home .btn-primary:hover,
body.home .btn-primary:focus,
body.contact .btn-primary:hover,
body.contact .btn-primary:focus {
  background: var(--tams-teal-dark);
  border-color: var(--tams-navy);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(7, 18, 31, 0.16);
}

body.home .btn-default,
body.contact .btn-default {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 11px 18px;
  border-color: rgba(12, 117, 100, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(7, 18, 31, 0.88);
}

body.home .btn-default:hover,
body.home .btn-default:focus {
  border-color: rgba(12, 117, 100, 0.4);
  background: rgba(230, 245, 242, 0.75);
  color: var(--tams-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 18, 31, 0.10);
}

/* Keep contact page buttons more “form-like” */
body.contact .btn-primary,
body.contact .btn-default {
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.jumbotron {
  background: var(--tams-bg);
  border-radius: var(--tams-radius);
  border: 1px solid var(--tams-border);
}

.breadcrumb {
  background: var(--tams-teal-soft);
  border-radius: var(--tams-radius-sm);
  padding: 12px 16px;
}

/* â€”â€”â€” Utilities â€”â€”â€” */
@media (max-width: 767px) {
  .btn-group-justified {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .btn-group-justified > .btn {
    border-radius: 8px !important;
  }
}

@media (min-width: 768px) {
  .site-nav .navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}

/* â€”â€”â€” Optional compact header CTAs (if added to markup) â€”â€”â€” */
.tms-btn-topbar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid var(--tams-border);
  color: var(--tams-navy) !important;
  background: var(--tams-surface);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.tms-btn-topbar:hover,
.tms-btn-topbar:focus {
  background: var(--tams-teal-soft);
  border-color: rgba(12, 117, 100, 0.35);
  color: var(--tams-teal-dark) !important;
}

.tms-btn-topbar--primary {
  background: var(--tams-teal) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
}

.tms-btn-topbar--primary:hover,
.tms-btn-topbar--primary:focus {
  background: var(--tams-accent) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

/* â€”â€”â€” Homepage B2B sections â€”â€”â€” */
.tms-hero-b2b__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tams-teal-dark);
  margin-bottom: 0.75rem;
}

.tms-hero-b2b__lead {
  font-size: 1.08rem;
}

.tms-hero-b2b__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 1.5rem;
}

.tms-hero-b2b__actions .btn-lg {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
}

.tms-hero-b2b__micro {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--tams-muted);
}

/* Legacy trust strip (kept for backward compatibility; not used on current homepage) */
.tms-trust-strip.tms-trust-strip--legacy {
  background: var(--tams-navy);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.25rem 12px;
  margin: 0;
}

.tms-trust-strip.tms-trust-strip--legacy .tms-trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem 1.5rem;
  text-align: center;
}

.tms-trust-strip.tms-trust-strip--legacy .tms-trust-strip__item {
  font-size: 0.95rem;
  line-height: 1.45;
}

.tms-trust-strip.tms-trust-strip--legacy .tms-trust-strip__item strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.tms-trust-strip.tms-trust-strip--legacy .tms-trust-strip__item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.tms-section-intro {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.tms-section-intro--on-dark {
  color: rgba(255, 255, 255, 0.85);
}

.tms-buyer-card {
  position: relative;
  display: block;
  border-radius: var(--tams-radius);
  overflow: hidden;
  margin-bottom: 10px;
}

.tms-buyer-card__label {
  position: absolute;
  left: 12px;
  bottom: 36px;
  background: rgba(7, 18, 31, 0.82);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.tms-buyer-card__cta {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.tms-catalog-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.tms-catalog-link:hover,
.tms-catalog-link:focus {
  color: #fff !important;
}

.tms-why {
  padding: 3rem 1.25rem;
  background: var(--tams-surface);
  border-top: 1px solid var(--tams-border);
  border-bottom: 1px solid var(--tams-border);
}

.tms-why__list {
  max-width: 640px;
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.tms-why__list li {
  padding: 12px 0 12px 2rem;
  position: relative;
  color: var(--tams-muted);
  border-bottom: 1px solid var(--tams-border);
}

.tms-why__list li:last-child {
  border-bottom: none;
}

.tms-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tams-teal);
}

.tms-process {
  padding: 3rem 1.25rem 3.5rem;
  background: var(--tams-bg);
}

.tms-process__steps {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.tms-process__steps li {
  background: var(--tams-surface);
  border: 1px solid var(--tams-border);
  border-radius: var(--tams-radius);
  padding: 1.25rem 1rem;
  box-shadow: var(--tams-shadow);
  text-align: center;
}

.tms-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.tms-process__steps strong {
  display: block;
  color: var(--tams-navy);
  margin-bottom: 6px;
}

.tms-process__steps span:last-child {
  font-size: 0.92rem;
  color: var(--tams-muted);
}

.tms-cta-final {
  padding: 3rem 1.25rem;
  background: linear-gradient(165deg, var(--tams-teal-soft) 0%, #fff 55%);
  border-top: 1px solid var(--tams-border);
}

.tms-cta-final__text {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  color: var(--tams-muted);
  font-size: 1.05rem;
}

.tms-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tms-cta-final__actions .btn-lg {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
}

/* â€”â€”â€” Sticky mobile quote bar â€”â€”â€” */
.tms-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(7, 18, 31, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }

  .tms-sticky-cta {
    display: flex;
  }
}

.tms-sticky-cta__btn {
  flex: 1 1 auto;
  max-width: 200px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: transparent;
}

.tms-sticky-cta__btn--primary {
  background: var(--tams-teal) !important;
  border-color: var(--tams-teal-dark) !important;
}

.tms-sticky-cta__btn:hover,
.tms-sticky-cta__btn:focus {
  opacity: 0.95;
  color: #fff !important;
}

/* â€”â€”â€” Product detail B2B â€”â€”â€” */
.tms-sku {
  font-size: 1rem;
  color: var(--tams-muted);
  margin: 6px 0 1rem;
}

.tms-product-b2b {
  background: var(--tams-teal-soft);
  border: 1px solid var(--tams-border);
  border-radius: var(--tams-radius);
  padding: 1rem 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

.tms-product-b2b__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--tams-navy);
}

.tms-product-b2b__lead {
  font-size: 0.95rem;
  color: var(--tams-muted);
  margin-bottom: 0.85rem;
}

.tms-spec-table {
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  border-collapse: collapse;
}

.tms-spec-table th,
.tms-spec-table td {
  padding: 8px 10px;
  border: 1px solid var(--tams-border);
  text-align: left;
  vertical-align: top;
}

.tms-spec-table th {
  width: 38%;
  background: var(--tams-surface);
  color: var(--tams-navy);
  font-weight: 600;
}

.tms-product-b2b__note {
  font-size: 0.82rem;
  color: var(--tams-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.tms-product-b2b__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tms-product-desc {
  margin-top: 1rem;
}

.tms-product-hero-img {
  border-radius: var(--tams-radius-sm);
}

/* ========== Homepage v2 â€” surgical / clinical layout ========== */
body.home {
  background: #eceff4;
}

body.home .content-body--home-v2 {
  padding: 0;
  max-width: none;
}

.tms-home-shell {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.tms-home-hero {
  position: relative;
  background-color: var(--tams-navy);
  background-image: linear-gradient(
      115deg,
      rgba(7, 18, 31, 0.94) 0%,
      rgba(7, 18, 31, 0.82) 42%,
      rgba(12, 55, 70, 0.55) 100%
    ),
    var(--tms-hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tms-home-hero__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 20px clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: min(88vh, 700px);
}

@media (min-width: 992px) {
  .tms-home-hero__grid {
    grid-template-columns: 1fr minmax(260px, 300px);
    gap: 3rem;
  }
}

.tms-home-hero__kicker {
  margin: 0 0 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.tms-home-hero__title {
  margin: 0 0 1.1rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  line-height: 1.1;
  color: #fff;
  max-width: 16ch;
}

@media (min-width: 992px) {
  .tms-home-hero__title {
    max-width: none;
  }
}

.tms-home-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
}

.tms-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.35rem;
}

.tms-home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tms-home-hero__chips li {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.tms-home-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tms-home-hero__mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--tams-radius-sm);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tms-home-hero__mini:hover,
.tms-home-hero__mini:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: #fff !important;
}

.tms-home-hero__mini-label {
  font-weight: 700;
  font-size: 15px;
}

.tms-home-hero__mini-go {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.88;
  white-space: nowrap;
}

/* Buttons (homepage) */
.tms-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.tms-home-btn--primary {
  background: var(--tams-accent) !important;
  color: #062a24 !important;
  border-color: var(--tams-accent) !important;
}

.tms-home-btn--primary:hover,
.tms-home-btn--primary:focus {
  background: #2ad4be !important;
  border-color: #2ad4be !important;
  color: var(--tams-navy) !important;
}

.tms-home-btn--ghost {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.tms-home-btn--ghost:hover,
.tms-home-btn--ghost:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
}

.tms-home-btn--small {
  padding: 8px 14px;
  font-size: 13px;
  border-width: 1px;
}

.tms-home-btn--outline {
  background: #fff !important;
  color: var(--tams-navy) !important;
  border-color: var(--tams-border) !important;
}

.tms-home-btn--outline:hover,
.tms-home-btn--outline:focus {
  border-color: var(--tams-teal) !important;
  color: var(--tams-teal-dark) !important;
}

.tms-home-btn--on-dark.tms-home-btn--primary {
  background: #fff !important;
  color: var(--tams-teal-dark) !important;
  border-color: #fff !important;
}

.tms-home-btn--on-dark.tms-home-btn--primary:hover,
.tms-home-btn--on-dark.tms-home-btn--primary:focus {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--tams-navy) !important;
}

.tms-home-btn--on-dark.tms-home-btn--ghost {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Stats bar */
.tms-home-stats {
  background: var(--tams-surface);
  border-bottom: 1px solid var(--tams-border);
}

.tms-home-stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .tms-home-stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tms-home-stats__item {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--tams-border);
  border-right: 1px solid var(--tams-border);
}

@media (min-width: 768px) {
  .tms-home-stats__item {
    border-bottom: none;
  }

  .tms-home-stats__item:nth-child(4n) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .tms-home-stats__item:nth-child(2n) {
    border-right: none;
  }
}

.tms-home-stats__label {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tams-muted);
}

.tms-home-stats__value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tams-navy);
  line-height: 1.4;
}

/* Ranges */
.tms-home-ranges {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e8ecf2 100%);
}

.tms-home-section-head {
  margin-bottom: 2rem;
}

.tms-home-section-head--center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tms-home-section-head__title {
  margin: 0 0 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  color: var(--tams-navy);
  line-height: 1.2;
}

.tms-home-section-head__sub {
  margin: 0;
  font-size: 1.05rem;
  color: var(--tams-muted);
  line-height: 1.55;
}

.tms-home-range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.35rem;
}

.tms-home-range-card {
  background: var(--tams-surface);
  border-radius: var(--tams-radius);
  border: 1px solid var(--tams-border);
  overflow: hidden;
  box-shadow: var(--tams-shadow);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.tms-home-range-card:hover {
  box-shadow: var(--tams-shadow-lg);
  transform: translateY(-5px);
}

.tms-home-range-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--tams-bg);
}

.tms-home-range-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tms-home-range-card:hover .tms-home-range-card__media img {
  transform: scale(1.05);
}

.tms-home-range-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.tms-home-range-card__title {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tams-navy);
}

.tms-home-range-card__text {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--tams-muted);
}

.tms-home-range-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.tms-home-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--tams-teal-dark) !important;
  text-decoration: none !important;
}

.tms-home-link:hover,
.tms-home-link:focus {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.tms-home-link--pdf::before {
  content: "PDF آ· ";
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Pillars */
.tms-home-pillars {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--tams-surface);
  border-top: 1px solid var(--tams-border);
}

.tms-home-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.tms-home-pillar {
  padding: 1.5rem 1.35rem;
  border-radius: var(--tams-radius);
  border: 1px solid var(--tams-border);
  background: linear-gradient(165deg, #fafcfd 0%, #fff 55%);
  box-shadow: 0 4px 20px rgba(7, 18, 31, 0.04);
}

.tms-home-pillar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tams-teal-soft);
  color: var(--tams-teal-dark);
}

.tms-home-pillar__icon svg {
  width: 26px;
  height: 26px;
}

.tms-home-pillar__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tams-navy);
}

.tms-home-pillar__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--tams-muted);
}

/* Timeline */
.tms-home-timeline {
  padding: clamp(3rem, 6vw, 4.25rem) 0;
  background: linear-gradient(165deg, var(--tams-navy-mid) 0%, var(--tams-navy) 100%);
  color: #fff;
}

.tms-home-timeline .tms-home-section-head__title {
  color: #fff;
}

.tms-home-timeline .tms-home-section-head__sub {
  color: rgba(255, 255, 255, 0.72);
}

.tms-home-timeline__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.tms-home-timeline__step {
  text-align: center;
  padding: 1.2rem 0.85rem;
  border-radius: var(--tams-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tms-home-timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: 15px;
  color: var(--tams-navy);
  background: var(--tams-accent);
}

.tms-home-timeline__step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.tms-home-timeline__desc {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

/* Featured products */
.tms-home-featured {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #e4e9f0;
}

.tms-home-featured__row {
  margin-left: -10px;
  margin-right: -10px;
}

.tms-home-featured__row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.tms-home-pcard {
  height: 100%;
  margin-bottom: 20px;
  background: var(--tams-surface);
  border-radius: var(--tams-radius);
  border: 1px solid var(--tams-border);
  overflow: hidden;
  box-shadow: var(--tams-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tms-home-pcard:hover {
  box-shadow: var(--tams-shadow-lg);
  transform: translateY(-4px);
}

.tms-home-pcard__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 196px;
  padding: 16px;
  background: linear-gradient(180deg, #eef2f7 0%, #fff 100%);
  border-bottom: 1px solid var(--tams-border);
}

.tms-home-pcard__media img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.tms-home-pcard__body {
  padding: 1rem 1.15rem 1.2rem;
  text-align: left;
}

.tms-home-pcard__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.tms-home-pcard__title a {
  color: var(--tams-navy) !important;
  text-decoration: none !important;
}

.tms-home-pcard__title a:hover,
.tms-home-pcard__title a:focus {
  color: var(--tams-teal-dark) !important;
}

.tms-home-pcard__sku {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--tams-muted);
}

.tms-home-pcard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* CTA band */
.tms-home-cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(125deg, var(--tams-teal-dark) 0%, #0a5c50 40%, var(--tams-teal) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tms-home-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.tms-home-cta-band__title {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: #fff;
  line-height: 1.25;
}

.tms-home-cta-band__sub {
  margin: 0;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.tms-home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 767px) {
  .tms-home-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .tms-home-cta-band__actions {
    justify-content: center;
  }
}

/* â€”â€”â€” Homepage FAQ (accordion) â€”â€”â€” */
.tms-faq--home {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  margin: 0;
  background: linear-gradient(180deg, #e4e9f0 0%, #eef2f7 45%, #e8ecf2 100%);
  border-top: 1px solid var(--tams-border);
}

.tms-faq__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.tms-faq__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tams-teal-dark);
}

.tms-faq__title {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  color: var(--tams-navy);
  line-height: 1.2;
}

.tms-faq__intro {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--tams-muted);
}

.tms-faq__intro a {
  color: var(--tams-teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tms-faq__intro a:hover,
.tms-faq__intro a:focus {
  color: var(--tams-navy);
}

.tms-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.tms-faq__item {
  margin-bottom: 12px;
  border-radius: var(--tams-radius);
  border: 1px solid var(--tams-border);
  background: var(--tams-surface);
  box-shadow: 0 4px 20px rgba(7, 18, 31, 0.05);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.tms-faq__item:hover {
  box-shadow: 0 8px 28px rgba(7, 18, 31, 0.08);
}

.tms-faq__item--open {
  border-color: rgba(12, 117, 100, 0.35);
  box-shadow: 0 8px 32px rgba(7, 18, 31, 0.1);
}

.tms-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--tams-navy);
  background: var(--tams-surface);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tms-faq__trigger:hover,
.tms-faq__trigger:focus {
  background: var(--tams-teal-soft);
}

.tms-faq__trigger:focus {
  outline: none;
}

.tms-faq__trigger:focus-visible {
  outline: 2px solid var(--tams-teal);
  outline-offset: -2px;
}

.tms-faq__item--open .tms-faq__trigger {
  background: linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
  border-bottom: 1px solid var(--tams-border);
}

.tms-faq__qtext {
  flex: 1 1 auto;
  padding-right: 8px;
}

.tms-faq__chevron {
  flex: 0 0 auto;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tams-teal-soft);
  border: 1px solid rgba(12, 117, 100, 0.2);
}

.tms-faq__chevron::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 7px;
  height: 7px;
  margin-left: -5px;
  margin-top: -5px;
  border-right: 2px solid var(--tams-teal-dark);
  border-bottom: 2px solid var(--tams-teal-dark);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.tms-faq__item--open .tms-faq__chevron::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.tms-faq__panel {
  border-top: 1px solid transparent;
}

.tms-faq__item--open .tms-faq__panel {
  border-top-color: var(--tams-border);
}

.tms-faq__answer {
  margin: 0;
  padding: 16px 20px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--tams-muted);
}

/* Bootstrap 3â€“style spacing helpers (project uses BS3, not BS4+ utilities) */
.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

/* =========================================================
   PREMIUM REDESIGN (ULTRA-CLEAN LIGHT MODE, HEALTH-TECH)
   ========================================================= */
:root {
  --tams-bg: #f8fafc;
  --tams-surface: #ffffff;
  --tams-surface-solid: #ffffff;
  --tams-text: #0f172a;
  --tams-muted: #475569;
  --tams-navy: #1e293b;
  --tams-teal: #0891b2;
  --tams-teal-dark: #155e75;
  --tams-accent: #0284c7;
  --tams-border: rgba(15, 23, 42, 0.08);
  --tms-focus-ring: 0 0 0 3px rgba(8, 145, 178, 0.2);
  --glow-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.05);
  --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html, body {
  background: var(--tams-bg);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(8, 145, 178, 0.03), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(2, 132, 199, 0.03), transparent 30%);
  background-attachment: fixed;
  color: var(--tams-text) !important;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
}

body.home .content-body p { color: var(--tams-muted) !important; }
body.home .content-body h1, body.home .content-body h2, body.home .content-body h3 { color: var(--tams-navy) !important; font-weight: 700 !important; letter-spacing: -0.02em; }

/* Header & Glassmorphism */
.site-header.site-header--modern, .site-header__top {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow);
}
.site-header--modern .site-header__shell--nav { background: transparent !important; border: none !important; }

.site-header--modern .site-nav--modern .navbar-nav > li > a {
  color: var(--tams-navy) !important;
  font-weight: 600 !important;
}
.site-header--modern .site-nav--modern .navbar-nav > li > a:hover {
  color: var(--tams-teal) !important;
  background: rgba(8, 145, 178, 0.06) !important;
}

/* Trust Banner */
.tms-trust-banner {
  background: linear-gradient(105deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
  border-bottom: none !important;
}
.tms-trust-banner__dash { color: #38bdf8 !important; }
.tms-trust-banner__text { color: #ffffff !important; font-weight: 600; letter-spacing: 0.05em; }

/* Cards & Micro-animations */
.tms-range-card, .tms-oem-card, .tms-product-card, .tms-why-us__card, .tms-qa-card, .tms-about-b2b__media-card {
  background: var(--tams-surface) !important;
  border: 1px solid var(--tams-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  overflow: hidden;
}
.tms-range-card:hover, .tms-product-card:hover, .tms-why-us__card:hover, .tms-oem-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: var(--glow-shadow) !important;
  border-color: rgba(8, 145, 178, 0.15) !important;
}

/* Card text fixes */
.tms-range-card__desc, .tms-oem-card__desc, .tms-why-us__card-desc, .tms-qa-card__desc { color: var(--tams-muted) !important; }
.tms-range-card__title, .tms-product-card__title, .tms-why-us__card-title, .tms-oem-card__title, .tms-qa-card__title { color: var(--tams-navy) !important; -webkit-text-fill-color: initial !important; font-weight: 700; }
.tms-product-card__body { background: transparent !important; }

/* Elegant Typography */
h1, .tms-hero__title {
  color: var(--tams-navy) !important;
  -webkit-text-fill-color: var(--tams-navy) !important;
  font-weight: 800 !important;
}
.tms-range__title, .tms-oem__title, .tms-featured-products__title, .tms-why-us__title, .tms-qa__title, .tms-about-b2b__title, .tms-bottom-quote__title, .tms-faq__title {
  color: var(--tams-navy) !important;
  -webkit-text-fill-color: var(--tams-navy) !important;
}

/* Kicker / Eyebrow text */
.tms-hero__kicker, .tms-range__kicker, .tms-featured-products__kicker, .tms-why-us__kicker, .tms-qa__kicker, .tms-about-b2b__kicker, .tms-bottom-quote__kicker, .tms-faq__kicker {
  background: rgba(8, 145, 178, 0.1) !important;
  border: 1px solid rgba(8, 145, 178, 0.2) !important;
  color: var(--tams-teal-dark) !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  display: inline-block;
  margin-bottom: 12px;
}

/* Buttons */
.btn-primary {
  background: var(--tams-navy) !important;
  border: none !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
  color: #fff !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25) !important;
  transform: translateY(-2px) !important;
  background: #334155 !important;
}
.btn-default {
  background: #ffffff !important;
  border: 1px solid var(--tams-border) !important;
  color: var(--tams-navy) !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
}
.btn-default:hover {
  background: #f8fafc !important;
  border-color: rgba(15, 23, 42, 0.2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Hero Overrides */
.tms-hero {
  background: transparent !important;
  border-bottom: 1px solid var(--tams-border) !important;
}
.tms-hero::before { display: none !important; }
.tms-hero__image-wrap {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
  border: 1px solid var(--tams-border) !important;
}
.tms-hero__trust-item {
  background: #ffffff !important;
  border: 1px solid var(--tams-border) !important;
  color: var(--tams-muted) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
}

/* FAQ */
.tms-faq__item {
  background: #ffffff !important;
  border: 1px solid var(--tams-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
}
.tms-faq__q { color: var(--tams-navy) !important; }
.tms-faq__a { color: var(--tams-muted) !important; }

/* Trust badges / Why Us */
.tms-why-us__badge {
  background: #ffffff !important;
  border: 1px solid var(--tams-border) !important;
  color: var(--tams-navy) !important;
}
.tms-why-us__badge-ico { color: var(--tams-teal) !important; }
.tms-why-us__icon-wrap { color: var(--tams-accent) !important; }

/* Form elements if any */
.form-control, .site-nav__search-input {
  background: #ffffff !important;
  border: 1px solid var(--tams-border) !important;
  color: var(--tams-navy) !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
}
.site-nav__search-inner { background: transparent !important; border: 1px solid var(--tams-border) !important; box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important; }
.site-nav__search-btn {
  background: #f8fafc !important;
  color: var(--tams-teal) !important;
  border-left: 1px solid var(--tams-border) !important;
}
.site-nav__search-btn:hover { background: #f1f5f9 !important; }

/* Bottom quote panel */
.tms-bottom-quote__panel {
  background: #ffffff !important;
  border: 1px solid var(--tams-border) !important;
  box-shadow: var(--glow-shadow) !important;
  border-radius: 24px !important;
}
.tms-bottom-quote__body { color: var(--tams-navy) !important; }
.tms-bottom-quote__text { color: var(--tams-muted) !important; }
