/* ==========================================================================
   Tech Merx — Main Stylesheet
   Clean, semantic, WordPress-ready
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #0b121c;
  --color-primary-rgb: 11, 18, 28;
  --color-accent: #ffcc00;
  --color-accent-hover: #e0b400;
  --color-gold: #ffcc00;
  --color-white: #ffffff;
  --color-light: #eceded;
  --color-gray: #dfe0e0;
  --color-text: #2e2e2e;
  --color-text-light: #626262;
  --color-overlay: rgba(0, 0, 0, 0.55);

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;

  --container: 1240px;
  --header-height: 100px;
  --top-bar-height: 40px;
  --transition: 0.3s ease;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.tmx-contact-form-box a{
  text-decoration: underline;
	}

.tmx-contact-form-box a:hover{
  text-decoration: none;
	}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Utility ---------- */
.tmx-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.tmx-section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
}

.tmx-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 0;
}

.tmx-section-title--light {
  color: var(--color-white);
}

.tmx-section-title--light::after {
  background: var(--color-gold);
}

.tmx-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.tmx-action--primary {
  background: #ffcc00;
  color: var(--color-primary);
}

.tmx-action--primary:hover {
  background: #2e2e2e;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.tmx-action--outline {
  border: 2px solid #2e2e2e;
  color: #2e2e2e;
}

.tmx-action--outline:hover {
  background: #2e2e2e;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Card stagger reveal (grid children — no transition here, let card classes handle it) */
.tmx-values-grid>*,
.tmx-advantages-grid>*,
.tmx-info-grid>* {
  opacity: 0;
  transform: translateY(30px);
}

.tmx-values-grid>*.revealed,
.tmx-advantages-grid>*.revealed,
.tmx-info-grid>*.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.tmx-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Above .tmx-drawer-nav (1001) so the burger / “X” stays clickable */
  z-index: 1002;
  transition: all 0.4s ease;
}

/* -- Top Bar -- */
.tmx-utility-bar {
  background: rgba(var(--color-primary-rgb), 0.85);
  backdrop-filter: blur(6px);
  height: var(--top-bar-height);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tmx-utility-bar .tmx-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.tmx-utility-bar__left,
.tmx-utility-bar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tmx-utility-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

a.tmx-utility-bar__item:hover {
  color: var(--color-gold);
}

.tmx-utility-bar__item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  /* Align contact block slightly left on wide viewports only */
  .tmx-utility-bar__right {
    margin-right: 14px;
  }
}

/* -- Main Nav -- */
.tmx-main-nav {
  background: rgba(var(--color-primary-rgb), 0.65);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.tmx-main-nav .tmx-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: height 0.4s ease;
}

/* Logo */
.tmx-logo {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  flex-shrink: 0;
}

.tmx-logo__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.tmx-logo__title span {
  color: var(--color-accent);
}

.tmx-logo__tagline {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

/* Nav Links (desktop; WP may add id="menu-{slug}" e.g. #menu-menu) */
.tmx-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.tmx-nav-menu>li {
  list-style: none;
  position: relative;
}

.tmx-nav-menu>li>a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.tmx-nav-menu>li>a:hover,
.tmx-nav-menu>li>a:focus-visible,
.tmx-nav-menu>li>a.active,
.tmx-nav-menu .current-menu-item>a,
.tmx-nav-menu .current_page_item>a,
.tmx-nav-menu .current-menu-ancestor>a,
.tmx-nav-menu .current-page-ancestor>a {
  color: var(--color-primary);
  background: var(--color-accent);
}

/* Parent indicator (desktop) */
.tmx-nav-menu>li.menu-item-has-children>a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Second level — dropdown */
.tmx-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 170px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: rgba(var(--color-primary-rgb), 0.98);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--color-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}

.tmx-nav-menu>li:hover>.sub-menu,
.tmx-nav-menu>li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tmx-nav-menu .sub-menu li {
  list-style: none;
}

.tmx-nav-menu .sub-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 20px;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  border-radius: 0;
  border-left: 3px solid transparent;
}

.tmx-nav-menu .sub-menu a:hover,
.tmx-nav-menu .sub-menu a:focus-visible,
.tmx-nav-menu .sub-menu .current-menu-item>a,
.tmx-nav-menu .sub-menu .current_page_item>a {
  color: var(--color-white);
  background: rgba(255, 204, 0, 0.15);
  border-left-color: var(--color-accent);
  padding-left: 22px;
}

.tmx-site-header.sticky .tmx-nav-menu .sub-menu {
  background: rgba(var(--color-primary-rgb), 0.99);
}

/* Burger */
.tmx-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin: 0;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.tmx-burger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.tmx-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.tmx-burger.active span {
  background: var(--color-white);
  height: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.tmx-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.tmx-burger.active span:nth-child(2) {
  opacity: 0;
}

.tmx-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* -- Sticky Header -- */
.tmx-site-header.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.4s ease forwards;
}

.tmx-site-header.sticky .tmx-utility-bar {
  height: 0;
  overflow: hidden;
  border-bottom: none;
}

.tmx-site-header.sticky .tmx-main-nav {
  background: rgba(var(--color-primary-rgb), 0.95);
  backdrop-filter: blur(12px);
}

.tmx-site-header.sticky .tmx-main-nav .tmx-container {
  height: 70px;
}

.tmx-site-header.sticky .tmx-logo__title {
  font-size: 1.6rem;
}

.tmx-site-header.sticky .tmx-logo__tagline {
  font-size: 0;
  margin: 0;
  opacity: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.tmx-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  background: var(--color-primary);
  overflow: hidden;
}

.tmx-hero-slider .swiper {
  width: 100%;
  height: 100%;
}

.tmx-lead-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tmx-lead-panel__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tmx-lead-panel__media video,
.tmx-lead-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmx-lead-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 2;
}

.tmx-lead-panel__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  color: var(--color-white);
}

/* Slide text animations */
.tmx-lead-panel__content>* {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .tmx-lead-panel__content>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active .tmx-lead-panel__content>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.swiper-slide-active .tmx-lead-panel__content>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.swiper-slide-active .tmx-lead-panel__content>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.swiper-slide-active .tmx-lead-panel__content>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

/* Slide 1 */
.tmx-slide-text-main {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.tmx-slide-text-sub {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  opacity: 0.9;
  margin-top: 4px;
}

.tmx-slide-divider {
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px 0;
}

.tmx-slide-text-desc {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 500px;
}

/* Slide 2 - right aligned */
.tmx-lead-panel--right .tmx-lead-panel__content {
  align-items: flex-end;
  text-align: right;
}

.tmx-slide-text-gold {
  color: var(--color-gold);
}

.tmx-slide-text-highlight {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 6px 20px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Slide 3 — centered stack (mockup): white + shadow, black on yellow band, smaller white + shadow */
.tmx-lead-panel--confidence .tmx-lead-panel__content {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 2vh, 18px);
}

.tmx-lead-promo__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 4px 24px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(0, 0, 0, 0.45);
}

.tmx-lead-promo__band {
  display: inline-block;
  max-width: min(100%, 42rem);
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 10px 28px;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.tmx-lead-promo__tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 3px 18px rgba(0, 0, 0, 0.65);
}

.tmx-lead-promo__tagline--sentence {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
}

/* Slide 4 */
.tmx-slide-text-center {
  text-align: center;
}

.tmx-lead-panel--center .tmx-lead-panel__content {
  align-items: center;
  text-align: center;
}

/* Slide 4 — move copy toward bottom so team faces stay visible */
.tmx-lead-panel--center.tmx-lead-panel--bottom .tmx-lead-panel__content {
  justify-content: flex-end;
  padding-bottom: clamp(96px, 14vh, 180px);
}

/* Slider Navigation */
.tmx-hero-slider .swiper-button-prev,
.tmx-hero-slider .swiper-button-next {
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.tmx-hero-slider .swiper-button-prev:hover,
.tmx-hero-slider .swiper-button-next:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.tmx-hero-slider .swiper-button-prev::after,
.tmx-hero-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.tmx-hero-slider .swiper-pagination {
  bottom: 30px !important;
}

.tmx-hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all var(--transition);
}

.tmx-hero-slider .swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 36px;
  border-radius: 6px;
}

/* ==========================================================================
   ABOUT SECTION (Two Columns)
   ========================================================================== */

.tmx-about-section {
  padding: 80px 0;
}

.tmx-about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Column */
.tmx-about-left__title {
  font-size: 1.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tmx-about-left__image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.tmx-about-left__text {
  margin-bottom: 30px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.tmx-about-left__subtitle {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--color-accent);
}

.tmx-about-history {
  margin-top: 40px;
}

.tmx-about-history__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.tmx-about-history__columns p {
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Right Column */
.tmx-about-right {
  position: sticky;
  top: 100px;
}

/* Search Form */
.tmx-lookup-form {
  background: var(--color-light);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 30px;
}

.tmx-lookup-form__title {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.tmx-lookup-form__title span {
  color: var(--color-accent);
}

.tmx-lookup-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.tmx-lookup-form select,
.tmx-lookup-form input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.tmx-lookup-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.tmx-lookup-form select:focus,
.tmx-lookup-form input:focus {
  border-color: var(--color-accent);
}

.tmx-lookup-form__keyword {
  position: relative;
  margin-bottom: 16px;
}

.tmx-lookup-form__keyword input {
  width: 100%;
  padding-right: 44px;
}

.tmx-lookup-form__keyword button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.tmx-lookup-form__keyword button:hover {
  background: var(--color-accent-hover);
}

.tmx-lookup-form__keyword button svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}

.tmx-lookup-form__actions {
  display: flex;
  gap: 12px;
}

.tmx-lookup-form__actions .tmx-action {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.85rem;
}

/* People Block */
.tmx-people-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tmx-people-block img {
  width: 100%;
  transition: transform 0.5s ease;
}

.tmx-people-block:hover img {
  transform: scale(1.03);
}

.tmx-people-block__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--color-white);
}

.tmx-people-block__overlay h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tmx-people-block__overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* Mission Block inside about-left */
.tmx-mission-block {
  margin-top: 40px;
  padding: 30px;
  background: var(--color-primary);
  border-radius: var(--radius);
  color: var(--color-white);
}

.tmx-mission-block h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.tmx-mission-block p {
  line-height: 1.8;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ==========================================================================
   VALUES SECTION (Integrity, Respect, Commitment, Innovation)
   ========================================================================== */

.tmx-values-section {
  padding: 80px 0;
  background: var(--color-light);
}

.tmx-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tmx-pillar-box {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tmx-pillar-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tmx-pillar-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.tmx-pillar-box:hover::before {
  transform: scaleX(1);
}

.tmx-pillar-box__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmx-pillar-box__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tmx-pillar-box__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.tmx-pillar-box__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */

.tmx-brands-section {
  padding: 60px 0;
  overflow: hidden;
}

.tmx-brands-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.tmx-brands-wrapper::before,
.tmx-brands-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.tmx-brands-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white), transparent);
}

.tmx-brands-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white), transparent);
}

.tmx-brands-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 25s linear infinite;
}

.tmx-brands-track:hover {
  animation-play-state: paused;
}

.tmx-brands-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  height: 80px;
}

.tmx-brands-item img {
  height: 70px;
  width: auto;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.tmx-brands-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.22);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   ADVANTAGES SECTION (Guarantee, Speed, Reliability, Prices)
   ========================================================================== */

.tmx-advantages-section {
  padding: 80px 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.tmx-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tmx-benefit-box {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.tmx-benefit-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-6px);
}

.tmx-benefit-box__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #1b2431;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.tmx-benefit-box:hover .tmx-benefit-box__icon {
  background: var(--color-accent);
  transform: scale(1.1);
}

.tmx-benefit-box__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
  transition: fill 0.4s ease;
}

.tmx-benefit-box:hover .tmx-benefit-box__icon svg {
  fill: var(--color-primary);
}

.tmx-benefit-box__title {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--color-gold);
}

.tmx-benefit-box__text {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
}

/* ==========================================================================
   INFO SECTION (FAQ, Services, Hours, About, Find Us)
   ========================================================================== */

.tmx-info-section {
  padding: 80px 0;
  background: var(--color-light);
}

.tmx-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

/* Hours card - spans full width center or a special position */
.tmx-detail-box {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tmx-detail-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.tmx-detail-box__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: #1b2431;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.tmx-detail-box:hover .tmx-detail-box__icon {
  background: var(--color-accent);
}

.tmx-detail-box__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
  transition: fill 0.4s ease;
}

.tmx-detail-box:hover .tmx-detail-box__icon svg {
  fill: var(--color-primary);
}

.tmx-detail-box__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.tmx-detail-box__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tmx-detail-box .tmx-action {
  font-size: 0.8rem;
  padding: 10px 20px;
}

/* Hours card - featured */
.tmx-detail-box--hours {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tmx-detail-box--hours .tmx-detail-box__icon {
  background: rgba(255, 204, 0, 0.15);
}

.tmx-detail-box--hours .tmx-detail-box__icon svg {
  fill: var(--color-gold);
}

.tmx-detail-box--hours:hover .tmx-detail-box__icon {
  background: var(--color-gold);
}

.tmx-detail-box--hours:hover .tmx-detail-box__icon svg {
  fill: var(--color-primary);
}

.tmx-detail-box--hours .tmx-detail-box__title {
  color: var(--color-gold);
}

.tmx-hours-table {
  width: 100%;
  margin-top: 8px;
}

.tmx-hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tmx-hours-table td {
  padding: 10px 4px;
  font-size: 0.9rem;
}

.tmx-hours-table td:first-child {
  font-weight: 600;
  text-align: left;
  opacity: 0.8;
}

.tmx-hours-table td:last-child {
  text-align: right;
  color: var(--color-gold);
}

.tmx-hours-table .closed td:last-child {
  color: var(--color-accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.tmx-site-footer {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Upper Footer */
.tmx-footer-upper {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tmx-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
  gap: 40px;
}

.tmx-footer-col__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-gold);
  position: relative;
  padding-bottom: 10px;
}

.tmx-footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

/* Footer Logo */
.tmx-footer-logo .tmx-logo__title {
  font-size: 1.8rem;
}

.tmx-footer-logo p {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
}

.tmx-footer-logo__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tmx-footer-logo__badges img {
  width: 120px;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
}

/* Footer Links */
.tmx-footer-links li {
  margin-bottom: 10px;
}

.tmx-footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tmx-footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.tmx-footer-links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.tmx-footer-links .current-menu-item>a,
.tmx-footer-links .current_page_item>a,
.tmx-footer-links .current-menu-ancestor>a,
.tmx-footer-links .current-page-ancestor>a {
  opacity: 1;
  color: var(--color-accent);
}

.tmx-footer-links a:hover::before {
  width: 12px;
}

/* Footer Contact */
.tmx-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.tmx-footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.tmx-footer-contact a:hover {
  color: var(--color-accent);
}

/* Footer Newsletter */
.tmx-footer-newsletter__text {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 16px;
}

.tmx-footer-newsletter__field {
  display: flex;
  gap: 0;
}

.tmx-footer-newsletter__field input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--color-white);
  font-size: 0.85rem;
  transition: border-color var(--transition);
}

.tmx-footer-newsletter__field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.tmx-footer-newsletter__field input:focus {
  border-color: var(--color-accent);
}

.tmx-footer-newsletter__field .tmx-action {
  border-radius: 0 var(--radius) var(--radius) 0;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 0.8rem;
}

/* Lower Footer */
.tmx-footer-lower {
  padding: 20px 0;
}

.tmx-footer-lower .tmx-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.6;
  gap: 20px;
}

.tmx-footer-lower__nav {
  min-width: 0;
}

.tmx-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.tmx-footer-legal-links li {
  list-style: none;
}

.tmx-footer-legal-links a {
  display: inline-flex;
  align-items: center;
  transition: color var(--transition), opacity var(--transition);
}

.tmx-footer-legal-links a:hover,
.tmx-footer-legal-links .current-menu-item>a,
.tmx-footer-legal-links .current_page_item>a,
.tmx-footer-legal-links .current-menu-ancestor>a,
.tmx-footer-legal-links .current-page-ancestor>a {
  color: var(--color-accent);
  opacity: 1;
}

/* Back to top */
.tmx-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.tmx-back-to-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
}

.tmx-back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

/* ==========================================================================
   MOBILE NAV OVERLAY
   ========================================================================== */

.tmx-drawer-nav {
  position: fixed;
  inset: 0;
  background: rgba(var(--color-primary-rgb), 0.97);
  /* Below .tmx-site-header (1002) so header + burger stay interactive */
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 16px) 20px calc(32px + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.tmx-drawer-nav.open {
  opacity: 1;
  visibility: visible;
}

.tmx-drawer-nav__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  gap: 0;
}

.tmx-drawer-nav__list>li {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tmx-drawer-nav__list>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Row: top-level link + optional submenu toggle */
.tmx-drawer-nav__row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.tmx-drawer-nav__row>a {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  padding: 16px 12px 16px 4px;
  border-radius: var(--radius);
  transition: color var(--transition), transform 0.45s ease, opacity 0.45s ease;
  transform: translateY(16px);
  opacity: 0;
  display: flex;
  align-items: center;
  min-height: 52px;
}

.tmx-drawer-nav.open .tmx-drawer-nav__row>a {
  transform: translateY(0);
  opacity: 1;
}

.tmx-mobile-submenu-toggle {
  flex-shrink: 0;
  width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition), transform 0.45s ease, opacity 0.45s ease;
  transform: translateY(16px);
  opacity: 0;
}

.tmx-drawer-nav.open .tmx-mobile-submenu-toggle {
  transform: translateY(0);
  opacity: 1;
}

.tmx-mobile-submenu-toggle:hover,
.tmx-mobile-submenu-toggle:focus-visible {
  background: rgba(255, 204, 0, 0.12);
  outline: none;
}

.tmx-mobile-submenu-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform var(--transition);
}

.tmx-drawer-nav li.tmx-is-submenu-open>.tmx-drawer-nav__row .tmx-mobile-submenu-toggle svg {
  transform: rotate(180deg);
}

/* Second level (mobile) */
.tmx-drawer-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.tmx-drawer-nav li.tmx-is-submenu-open>.sub-menu {
  max-height: 800px;
}

.tmx-drawer-nav .sub-menu li {
  list-style: none;
  border-left: 2px solid var(--color-accent);
  margin-bottom: 4px;
  padding-left: 12px;
}

.tmx-drawer-nav .sub-menu a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.82);
  padding: 5px 12px;
  display: block;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition), transform 0.45s ease, opacity 0.45s ease;
  transform: translateY(10px);
  opacity: 0;
}

.tmx-drawer-nav.open .sub-menu a {
  transform: translateY(0);
  opacity: 1;
}

.tmx-drawer-nav .sub-menu a:hover,
.tmx-drawer-nav .sub-menu a:focus-visible,
.tmx-drawer-nav .sub-menu .current-menu-item>a,
.tmx-drawer-nav .sub-menu .current_page_item>a {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.06);
}

/* Stagger: top-level rows only */
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(1) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(1) .tmx-mobile-submenu-toggle {
  transition-delay: 0.08s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(2) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(2) .tmx-mobile-submenu-toggle {
  transition-delay: 0.12s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(3) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(3) .tmx-mobile-submenu-toggle {
  transition-delay: 0.16s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(4) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(4) .tmx-mobile-submenu-toggle {
  transition-delay: 0.2s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(5) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(5) .tmx-mobile-submenu-toggle {
  transition-delay: 0.24s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(6) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(6) .tmx-mobile-submenu-toggle {
  transition-delay: 0.28s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(7) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(7) .tmx-mobile-submenu-toggle {
  transition-delay: 0.32s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(8) .tmx-drawer-nav__row>a,
.tmx-drawer-nav.open .tmx-drawer-nav__list>li:nth-child(8) .tmx-mobile-submenu-toggle {
  transition-delay: 0.36s;
}

.tmx-drawer-nav .tmx-drawer-nav__row>a:hover,
.tmx-drawer-nav .tmx-drawer-nav__row>a:focus-visible,
.tmx-drawer-nav .current-menu-item>.tmx-drawer-nav__row>a,
.tmx-drawer-nav .current_page_item>.tmx-drawer-nav__row>a,
.tmx-drawer-nav .current-menu-ancestor>.tmx-drawer-nav__row>a,
.tmx-drawer-nav .current-page-ancestor>.tmx-drawer-nav__row>a {
  color: var(--color-accent);
}

/* Items without children: full-width link */
.tmx-drawer-nav__list>li:not(.menu-item-has-children)>a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  padding: 16px 4px;
  display: block;
  transition: color var(--transition), transform 0.45s ease, opacity 0.45s ease;
  transform: translateY(16px);
  opacity: 0;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children)>a {
  transform: translateY(0);
  opacity: 1;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(1)>a {
  transition-delay: 0.08s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(2)>a {
  transition-delay: 0.12s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(3)>a {
  transition-delay: 0.16s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(4)>a {
  transition-delay: 0.2s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(5)>a {
  transition-delay: 0.24s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(6)>a {
  transition-delay: 0.28s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(7)>a {
  transition-delay: 0.32s;
}

.tmx-drawer-nav.open .tmx-drawer-nav__list>li:not(.menu-item-has-children):nth-child(8)>a {
  transition-delay: 0.36s;
}

.tmx-drawer-nav__list>li:not(.menu-item-has-children)>a:hover,
.tmx-drawer-nav__list>li:not(.menu-item-has-children)>a:focus-visible,
.tmx-drawer-nav__list>li:not(.menu-item-has-children).current-menu-item>a,
.tmx-drawer-nav__list>li:not(.menu-item-has-children).current_page_item>a,
.tmx-drawer-nav__list>li:not(.menu-item-has-children).current-menu-ancestor>a,
.tmx-drawer-nav__list>li:not(.menu-item-has-children).current-page-ancestor>a {
  color: var(--color-accent);
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */

.tmx-page-banner {
  position: relative;
  height: 340px;
  background: var(--color-primary);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tmx-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
    linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  z-index: 1;
}

.tmx-page-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.tmx-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: url('../images/slider-three.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.tmx-page-banner__content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.tmx-page-banner__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  line-height: 1.1;
}

/* Shipping page specific hero */
.tmx-page-banner--shipping {
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  /* Center the text vertically */
}

.tmx-page-banner--shipping::before,
.tmx-page-banner--shipping::after,
.tmx-page-banner--shipping .tmx-page-banner__overlay {
  display: none;
  /* Hide default generic backgrounds */
}

.tmx-page-banner--shipping .tmx-page-banner__content {
  padding-bottom: 0;
  text-align: left;
}

.tmx-page-banner__breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.tmx-page-banner__breadcrumb a,
.tmx-page-banner__breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.tmx-page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.tmx-page-banner__breadcrumb a:hover {
  color: var(--color-gold);
}

.tmx-page-banner__separator {
  color: var(--color-accent);
}

.tmx-page-banner__breadcrumb .current-item,
.tmx-page-banner__breadcrumb .breadcrumb_last,
.tmx-page-banner__breadcrumb span:last-child {
  color: var(--color-gold);
}

/* ==========================================================================
   INNER PAGE CONTENT (WordPress Friendly)
   ========================================================================== */

.tmx-page-content {
  padding: 60px 0;
}

.tmx-wp-editor-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.tmx-wp-editor-content::after {
  content: "";
  display: table;
  clear: both;
}

.tmx-wp-editor-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 2em 0 1em;
  clear: both;
}

.tmx-wp-editor-content h2:first-child {
  margin-top: 0;
}

.tmx-wp-editor-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 1.5em 0 0.8em;
}

.tmx-wp-editor-content p {
  margin-bottom: 1.2em;
}

.tmx-wp-editor-content ul {
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.tmx-wp-editor-content ul li {
  margin-bottom: 0.5em;
  position: relative;
  list-style: disc;
}

.tmx-wp-editor-content img {
  border-radius: var(--radius);
  height: auto;
}

.tmx-wp-editor-content .alignleft {
  float: left;
  margin: 0.5em 2.5em 1.5em 0;
  max-width: 45%;
}

.tmx-wp-editor-content .alignright {
  float: right;
  margin: 0.5em 0 1.5em 2.5em;
  max-width: 45%;
}

.tmx-wp-editor-content .aligncenter {
  display: block;
  margin: 1.5em auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .tmx-wp-editor-content {
    font-size: 0.95rem;
  }

  .tmx-wp-editor-content h2 {
    font-size: 1.6rem;
  }

  .tmx-wp-editor-content .alignleft,
  .tmx-wp-editor-content .alignright {
    float: none;
    margin: 1.5em 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================================================
   NEWS
   ========================================================================== */

.tmx-news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tmx-post-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tmx-post-card__image {
  display: block;
  min-height: 100%;
}

.tmx-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmx-post-card__content {
  padding: 32px;
}

.tmx-post-card__date,
.tmx-news-article__meta {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.tmx-post-card__title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.tmx-post-card__title a:hover {
  color: var(--color-accent);
}

.tmx-post-card__excerpt {
  color: var(--color-text-light);
  line-height: 1.8;
}

.tmx-post-card__excerpt p:last-child {
  margin-bottom: 0;
}

.tmx-news-article {
  max-width: 980px;
  margin: 0 auto;
}

.tmx-news-article__image {
  margin-bottom: 32px;
}

.tmx-news-article__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tmx-empty-state {
  text-align: center;
  padding: 50px 0;
}



/* ==========================================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .tmx-burger {
    display: flex;
  }

  .tmx-nav-menu {
    display: none;
  }

  .tmx-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tmx-about-right {
    position: static;
  }

  .tmx-about-history__columns {
    grid-template-columns: 1fr;
  }

  .tmx-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tmx-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tmx-info-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
  }

  .tmx-detail-box--hours {
    grid-column: 1 / -1;
    grid-row: auto;
    order: -1;
  }

  .tmx-post-card {
    grid-template-columns: 300px 1fr;
  }

  .tmx-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .tmx-slide-text-main {
    font-size: 3.2rem;
  }

  .tmx-slide-text-sub {
    font-size: 2.2rem;
  }

  .tmx-slide-text-highlight {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   RESPONSIVE — TABLET PORTRAIT (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  /* Top bar — icons only on mobile */
  .tmx-utility-bar__label {
    display: none;
  }

  .tmx-utility-bar__item svg {
    width: 20px;
    height: 20px;
  }

  .tmx-utility-bar__left,
  .tmx-utility-bar__right {
    gap: 16px;
  }

  .tmx-utility-bar {
    height: 36px;
  }

  .tmx-drawer-nav__row>a,
  .tmx-drawer-nav__list>li:not(.menu-item-has-children)>a {
    font-size: 1.08rem;
    letter-spacing: 1.2px;
  }

  .tmx-drawer-nav .sub-menu a {
    font-size: 0.9rem;
  }

  .tmx-section-title {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .tmx-hero-slider {
    height: 85vh;
    min-height: 500px;
  }

  .tmx-lead-panel__content {
    padding: 0 6%;
  }

  .tmx-slide-text-main {
    font-size: 2.6rem;
  }

  .tmx-slide-text-sub {
    font-size: 1.8rem;
  }

  .tmx-slide-text-highlight {
    font-size: 1.2rem;
  }

  .tmx-lead-panel--center.tmx-lead-panel--bottom .tmx-lead-panel__content {
    padding-bottom: clamp(88px, 16vh, 140px);
  }

  .tmx-slide-text-desc {
    font-size: 1rem;
  }

  .tmx-hero-slider .swiper-button-prev,
  .tmx-hero-slider .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .tmx-hero-slider .swiper-button-prev::after,
  .tmx-hero-slider .swiper-button-next::after {
    font-size: 14px;
  }

  .tmx-about-section,
  .tmx-values-section,
  .tmx-advantages-section,
  .tmx-info-section {
    padding: 60px 0;
  }

  .tmx-lookup-form__row {
    grid-template-columns: 1fr;
  }

  .tmx-info-grid {
    grid-template-columns: 1fr;
  }

  .tmx-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tmx-footer-lower .tmx-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .tmx-footer-legal-links {
    justify-content: center;
  }

  .tmx-post-card {
    grid-template-columns: 1fr;
  }

  .tmx-post-card__content {
    padding: 24px;
  }

  .tmx-post-card__title {
    font-size: 1.5rem;
  }

  /* About Us page */
  .tmx-page-banner {
    height: 280px;
  }

  .tmx-page-banner__title {
    font-size: 2.4rem;
  }

  .tmx-page-banner__content {
    padding-bottom: 36px;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .tmx-container {
    padding: 0 16px;
  }

  .tmx-hero-slider {
    height: 75vh;
    min-height: 450px;
  }

  .tmx-slide-text-main {
    font-size: 2rem;
  }

  .tmx-slide-text-sub {
    font-size: 1.4rem;
  }

  .tmx-slide-text-highlight {
    font-size: 1rem;
    padding: 4px 12px;
  }

  .tmx-lead-promo__band {
    padding: 8px 16px;
  }

  .tmx-lead-panel--center.tmx-lead-panel--bottom .tmx-lead-panel__content {
    padding-bottom: clamp(72px, 18vh, 120px);
  }

  .tmx-values-grid,
  .tmx-advantages-grid {
    grid-template-columns: 1fr;
  }

  .tmx-pillar-box,
  .tmx-benefit-box {
    padding: 28px 20px;
  }

  .tmx-lookup-form__actions {
    flex-direction: column;
  }

  .tmx-footer-newsletter__field {
    flex-direction: column;
  }

  .tmx-footer-newsletter__field input {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .tmx-footer-newsletter__field .tmx-action {
    border-radius: 0 0 var(--radius) var(--radius);
    width: 100%;
  }

  .tmx-site-header.sticky .tmx-main-nav .tmx-container {
    height: 60px;
  }

  .tmx-site-header.sticky .tmx-logo__title {
    font-size: 1.3rem;
  }

  .tmx-logo__title {
    font-size: 1.8rem;
  }

  .tmx-logo__tagline {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .tmx-drawer-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tmx-drawer-nav__row>a,
  .tmx-drawer-nav__list>li:not(.menu-item-has-children)>a {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .tmx-mobile-submenu-toggle {
    width: 48px;
    min-height: 48px;
  }

  .tmx-drawer-nav__row>a {
    min-height: 48px;
  }

  .tmx-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .tmx-hero-slider .swiper-pagination {
    bottom: 16px !important;
  }

  /* About Us page */
  .tmx-page-banner {
    height: 240px;
  }

  .tmx-page-banner__title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .tmx-page-banner__content {
    padding-bottom: 28px;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.tmx-faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.tmx-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tmx-faq-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s ease;
}

.tmx-faq-header:hover {
  opacity: 0.8;
}

.tmx-faq-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.tmx-faq-icon::before,
.tmx-faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}

/* Horizontal line of the plus */
.tmx-faq-icon::before {
  width: 12px;
  height: 2px;
}

/* Vertical line of the plus */
.tmx-faq-icon::after {
  width: 2px;
  height: 12px;
}

.tmx-faq-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
}

.tmx-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.tmx-faq-content p,
.tmx-faq-content ul {
  padding-bottom: 24px;
  margin-bottom: 0;
  color: var(--color-text);
  margin-left: 44px;
  /* aligned with text, accounting for 24px icon + 20px gap */
}

/* Active State */
.tmx-faq-item.active .tmx-faq-icon::after {
  transform: rotate(90deg);
}

.tmx-faq-item.active .tmx-faq-title {
  color: var(--color-primary);
}


/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */
.tmx-contact-page {
  padding-top: 60px;
  padding-bottom: 100px;
}

/* Top Section */
.tmx-contact-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.tmx-contact-top__text {
  flex: 1;
  min-width: 320px;
	padding: 40px 0 0 0;
}

.tmx-contact-editor-content {
  color: var(--color-text);
}

.tmx-contact-editor-content > :last-child {
  margin-bottom: 0;
}

.tmx-contact-editor-content h2,
.tmx-contact-top__text h2 {
  font-size: 2.2rem;
  color: var(--color-text);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.tmx-contact-editor-content h2:first-child {
  margin-top: 0;
}

.tmx-contact-editor-content h3 {
  font-size: 1.35rem;
  color: var(--color-text);
  margin: 1.4em 0 0.7em;
}

.tmx-contact-editor-content p,
.tmx-contact-top__text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.tmx-contact-editor-content ul {
  margin: 0 0 28px;
}

.tmx-contact-editor-content ul:not(.tmx-contact-questions):not(.tmx-contact-checks) {
  padding-left: 20px;
}

.tmx-contact-editor-content ul:not(.tmx-contact-questions):not(.tmx-contact-checks) li {
  list-style: disc;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.tmx-contact-questions {
  margin-bottom: 40px;
  padding-left: 0;
}

.tmx-contact-editor-content .tmx-contact-questions li,
.tmx-contact-questions li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-text);
  list-style: none;
}

.tmx-contact-checks {
  list-style: none;
  padding-left: 0;
}

.tmx-contact-editor-content .tmx-contact-checks li,
.tmx-contact-checks li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  list-style: none;
}

.tmx-contact-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Right side: Form + Info */
.tmx-contact-top__form-wrapper {
  flex: 1;
  min-width: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tmx-contact-manager-bg {
  width: 100%;
  height: 500px;
  /* Base height for the image */
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: -150px;
  /* Pull the form up over the image */
  position: relative;
  z-index: 1;
}

.tmx-contact-form-box {
  background: #313131;
	background: url('../images/contact-form-box.webp') no-repeat center center  / cover;
  /* Fallback texture idea */
  border: 1px solid #4a4a4a;
  position: relative;
  z-index: 2;
  width: 90%;
  /* Make width slightly smaller than image box */
  max-width: 550px;
  padding: 20px 20px;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  color: var(--color-white);
}

.tmx-contact-form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark overlay to make text pop against texture */
  border-radius: 4px;
  z-index: -1;
}

.tmx-contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.tmx-contact-form-shortcode .wpcf7 {
  width: 100%;
}

.tmx-contact-form-shortcode .wpcf7 form {
  display: block;
}

.tmx-contact-form-shortcode .wpcf7 form p {
  margin: 0;
}

.tmx-contact-form-placeholder {
  padding: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.tmx-contact-form-placeholder p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Form 7 overrides */
.wpcf7-form .tmx-form-row {
  margin-bottom: 15px;
}

.wpcf7-form .tmx-form-row--2col {
  display: block;
}

.wpcf7-form .tmx-form-row--2col > p {
  display: flex;
  gap: 15px;
}

.wpcf7-form .tmx-form-row--2col > p > br {
  display: none;
}

.wpcf7-form .tmx-form-row--2col > p > .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: #2e2e2e;
}

.wpcf7-textarea {
  resize: vertical;
  height: 100px;
}

.wpcf7-form .tmx-form-row.tmx-form-submit > p {
  display: block;
}

.wpcf7-form .tmx-form-row.tmx-form-submit .wpcf7-submit {
  width: 100%;
}

.wpcf7-submit {
  background: linear-gradient(to bottom, #ffd83d 0%, #ffcc00 100%);
  color: #2e2e2e;
  font-weight: 600;
  text-transform: none;
  font-size: 1.1rem;
  padding: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: filter 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
}

.wpcf7-submit:hover {
  filter: brightness(0.87);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.28);
}

.tmx-contact-form-box .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

.tmx-contact-form-box .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ffd7d7;
  font-size: 0.8rem;
}

.tmx-contact-form-box .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.tmx-form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  line-height: 1.4;
  text-align: center;
}

.tmx-form-disclaimer p {
  margin: 0;
}

/* Bottom Section */
.tmx-contact-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.tmx-contact-bottom__info {
  flex: 1;
  min-width: 320px;
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.tmx-contact-bottom__info .tmx-contact-heading.tmx-mt-40 {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tmx-contact-heading {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tmx-mt-40 {
  margin-top: 40px;
}

.tmx-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.tmx-contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
  flex-shrink: 0;
  margin-top: 2px;
}

.tmx-contact-item a {
  color: inherit;
}

.tmx-contact-item a:hover {
  color: var(--color-accent);
}

.tmx-hours-table {
  width: 100%;
  max-width: 300px;
  border-collapse: collapse;
}

.tmx-hours-table td {
  padding: 6px 0;
  font-size: 1.05rem;
}

.tmx-hours-table td:first-child {
  font-weight: 500;
  width: 60px;
}

/* Hours table inside the dark contact card */
.tmx-contact-bottom__info .tmx-hours-table {
  max-width: 300px;
}

.tmx-contact-bottom__info .tmx-hours-table td {
  padding: 5px 4px;
}

.tmx-contact-bottom__map {
  flex: 1.5;
  min-width: 320px;
}

/* Side by side: the map starts at the card's first content line
   (36px padding + 1px border + heading + its 20px margin). */
@media (min-width: 769px) {
  .tmx-contact-bottom__map {
    align-self: flex-start;
    margin-top: 80px;
  }
}

/* On wide screens the info card shrinks to its content instead of stretching,
   while the map keeps the width it had at the original 1fr / 1.5fr split. */
@media (min-width: 1024px) {
  .tmx-contact-bottom {
    flex-wrap: nowrap;
  }

  .tmx-contact-bottom__info {
    flex: 0 1 auto;
  }

  .tmx-contact-bottom__map {
    flex: 0 1 calc(60% - 24px);
  }
}

.tmx-contact-bottom__map img {
  width: 100%;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tmx-contact-top {
    flex-direction: column;
  }

  .tmx-contact-editor-content h2,
  .tmx-contact-top__text h2 {
    font-size: 1.9rem;
  }

  .tmx-contact-top__form-wrapper {
    width: 100%;
  }

  .wpcf7-form .tmx-form-row--2col {
    display: block;
  }

  .wpcf7-form .tmx-form-row--2col > p {
    flex-direction: column;
  }

  .tmx-contact-bottom {
    flex-direction: column-reverse;
    /* Map on top of info on mobile */
  }

  .tmx-contact-bottom__info {
    /* Card hugs its content and gets centred instead of stretching */
    max-width: 100%;
    padding: 28px 22px;
  }

  .tmx-contact-form-box {
    width: 100%;
    padding: 28px 22px;
  }
}

@media (max-width: 600px) {
  /* Phones: the card fills the screen instead of leaving side gutters */
  .tmx-contact-bottom__info {
    width: 100%;
  }
}

/* ==========================================================================
   INVENTORY CATALOG PAGE
   ========================================================================== */
.tmx-inventory-page {
  padding-top: 60px;
  padding-bottom: 100px;
}

.tmx-inventory-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* --- Left Sidebar Filter --- */
.tmx-sidebar-filter {
  flex: 0 0 320px;
  /* Fixed width sidebar */
  background-color: #eceded;
  border-radius: 8px;
  padding: 30px;
}

.tmx-filter-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.tmx-text-red {
  color: var(--color-accent);
}

.tmx-filter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tmx-filter-row {
  display: flex;
  gap: 10px;
}

.tmx-filter-group {
  flex: 1;
  width: 100%;
}

.tmx-filter-group select,
.tmx-filter-group input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--color-white);
  border: 1px solid #dfe0e0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  appearance: none;
  /* Hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tmx-filter-group select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 10px auto;
  cursor: pointer;
}

.tmx-filter-group select:focus,
.tmx-filter-group input:focus {
  border-color: var(--color-accent);
  outline: none;
}

.tmx-input-with-icon {
  position: relative;
  display: flex;
}

.tmx-input-with-icon input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tmx-search-icon-btn {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color var(--transition);
}

.tmx-search-icon-btn:hover {
  background-color: var(--color-accent-hover);
}

.tmx-search-icon-btn svg {
  fill: currentColor;
}

.tmx-filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.tmx-filter-subtitle {
  font-size: 1rem;
  margin: 24px 0 16px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.tmx-inventory-categories__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tmx-inventory-categories__list a {
  display: block;
  padding: 12px 14px;
  background: var(--color-white);
  border: 1px solid #dfe0e0;
  border-radius: 4px;
  transition: all var(--transition);
}

.tmx-inventory-categories__list a:hover,
.tmx-inventory-categories__list a.is-active {
  color: var(--color-primary);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.tmx-filter-btn--reset {
  flex: 1;
  background-color: transparent;
  color: #2e2e2e;
  border: 2px solid #2e2e2e;
  padding: 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  transition: all var(--transition);
}

.tmx-filter-btn--reset:hover {
  background-color: #2e2e2e;
	color: var(--color-white);
  /* very light red */
}

.tmx-filter-btn--submit {
  flex: 1.5;
  background-color: #2e2e2e;
  color: var(--color-white);
  border: 2px solid #2e2e2e;
  padding: 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  transition: background-color var(--transition);
}

.tmx-filter-btn--submit:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-primary);
  border-color: var(--color-accent-hover);
}


/* --- Right Content: Grid --- */
.tmx-inventory-content {
  flex: 1;
  min-width: 0;
  /* Prevents flex blowout */
}

.tmx-inventory-intro {
  margin-bottom: 24px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.tmx-inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1FR);
  /* 2 items per row */
  gap: 30px;
}

.tmx-unit-card {
  background-color: var(--color-white);
  border: 1px solid #dfe0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tmx-unit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tmx-unit-card__image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.tmx-unit-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.tmx-unit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tmx-unit-card:hover .tmx-unit-card__image img {
  transform: scale(1.05);
}

.tmx-unit-card__price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #0b121c;
  /* Dark primary color slightly transparent */
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.tmx-unit-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tmx-unit-card__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-primary);
  line-height: 1.3;
}

.tmx-unit-card__info {
  margin-bottom: 25px;
  flex: 1;
  /* pushes button to bottom */
}

.tmx-unit-card__info li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #dfe0e0;
  display: flex;
  justify-content: flex-start;
	gap: 10px;
}

.tmx-unit-card__info li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tmx-unit-card__info li strong {
  color: var(--color-primary);
  font-weight: 600;
}

.tmx-unit-card .tmx-action {
  width: 100%;
  text-align: center;
}

/* Pagination */
.tmx-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.tmx-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.tmx-pagination .page-numbers li {
  list-style: none;
}

.tmx-pagination a.page-numbers,
.tmx-pagination span.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dfe0e0;
  border-radius: 4px;
  color: var(--color-primary);
  font-weight: 600;
  transition: all var(--transition);
}

.tmx-pagination a.page-numbers:hover,
.tmx-pagination span.page-numbers.current {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* Responsive */
@media (max-width: 992px) {
  .tmx-inventory-layout {
    flex-direction: column;
  }

  .tmx-sidebar-filter {
    width: 100%;
    flex: auto;
  }
}

@media (max-width: 600px) {
  .tmx-inventory-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

/* ==========================================================================
   PRODUCT DETAILS PAGE
   ========================================================================== */
.tmx-product-page {
  padding-top: 60px;
  padding-bottom: 100px;
}

.tmx-product-top-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

/* --- Left: Image Gallery --- */
.tmx-unit-gallery {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  min-width: 0;
  /* Fix flex child infinite growth */
}

.tmx-unit-gallery__main {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
  border: 1px solid #dfe0e0;
  border-bottom: none;
}

.tmx-unit-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tmx-gallery-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  font: inherit;
  color: inherit;
}

.tmx-unit-gallery__main-img {
  cursor: zoom-in;
}

.tmx-gallery-expand:hover {
  background: rgba(0, 0, 0, 0.88);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.25);
  transform: scale(1.04);
}

.tmx-gallery-expand:focus-visible {
  outline: 3px solid var(--color-accent, #ffcc00);
  outline-offset: 2px;
}

.tmx-gallery-expand svg {
  fill: #fff;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Full-screen gallery lightbox (single inventory) */
.tmx-inventory-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.tmx-inventory-lightbox.tmx-is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.tmx-inventory-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.tmx-inventory-lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmx-inventory-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.tmx-inventory-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tmx-inventory-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.tmx-inventory-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tmx-inventory-lightbox__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
}

.tmx-inventory-lightbox__nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.tmx-inventory-lightbox__nav--prev {
  left: 16px;
}

.tmx-inventory-lightbox__nav--next {
  right: 16px;
}

@media (max-width: 600px) {
  .tmx-inventory-lightbox {
    padding: 40px 12px;
  }

  .tmx-inventory-lightbox__nav--prev {
    left: 8px;
  }

  .tmx-inventory-lightbox__nav--next {
    right: 8px;
  }
}

.tmx-main-prev,
.tmx-main-next {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tmx-unit-gallery__thumbs {
  position: relative;
  padding: 0 40px;
  /* Space for swiper navigation arrows */
  width: 100%;
  border: 1px solid #dfe0e0;
  background: #fff;
}

.tmx-thumb-prev,
.tmx-thumb-next {
  color: var(--color-accent) !important;
  width: 30px !important;
  height: 30px !important;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: -15px !important;
}

.tmx-thumb-prev::after,
.tmx-thumb-next::after {
  font-size: 12px !important;
  font-weight: bold;
}

.tmx-thumb-prev {
  left: 0 !important;
}

.tmx-thumb-next {
  right: 0 !important;
}

.tmx-unit-gallery__thumbs .tmx-thumb {
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.tmx-unit-gallery__thumbs .tmx-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.tmx-unit-gallery__thumbs .swiper-slide-thumb-active img,
.tmx-unit-gallery__thumbs .tmx-thumb:hover img {
  opacity: 1;
}

.tmx-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Eye icon for unselected thumbs */
.tmx-thumb-overlay::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0;
  transition: opacity var(--transition);
}

.tmx-unit-gallery__thumbs .tmx-thumb:hover .tmx-thumb-overlay::after {
  opacity: 1;
}

.tmx-unit-gallery__thumbs .swiper-slide-thumb-active .tmx-thumb-overlay {
  opacity: 0;
}


/* --- Right: Product Specs --- */
.tmx-product-specs {
  flex: 1;
  background-color: var(--color-white);
  padding: 0;
}

.tmx-spec-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.tmx-spec-list li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #dfe0e0;
  font-size: 1rem;
}

.tmx-spec-list li:first-child {
  padding-top: 0;
}

.tmx-spec-list li:last-child {
  border-bottom: none;
}

.tmx-spec-label {
  flex: 0 0 150px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.tmx-spec-value {
  flex: 1;
  color: var(--color-text);
}

.tmx-product-price-box {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
}

.tmx-price-label {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 5px;
	font-weight: bold;
	font-family: var(--font-heading);
}

.tmx-price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b121c;
  margin-bottom: 25px;
}

.tmx-action--full {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}
.tmx-product-price-box .tmx-action--full {
  max-width: 300px;
}

.tmx-product-price-box__request {
}

.tmx-inventory-request-success {
  margin-top: 16px;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1a5f1a;
  background: #eef7ee;
  border: 1px solid #c5e0c5;
  border-radius: 10px;
}

.tmx-inventory-request-modal-open {
  overflow: hidden;
}

.tmx-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tmx-quote-modal.tmx-is-open {
  opacity: 1;
  visibility: visible;
}

.tmx-quote-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.tmx-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.tmx-quote-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(11, 18, 28, 0.45);
  transition: background var(--transition), color var(--transition);
}

.tmx-quote-modal__close span {
  font-size: 2rem;
  line-height: 1;
}

.tmx-quote-modal__close:hover {
  background: rgba(11, 18, 28, 0.08);
  color: var(--color-primary);
}

.tmx-quote-modal__content {
  padding: 30px;
}

.tmx-quote-modal__title {
  margin-right: 48px;
  margin-bottom: 24px;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.tmx-quote-modal__placeholder {
  padding: 24px;
  border: 1px dashed var(--color-gray);
  border-radius: 12px;
  background: var(--color-light);
}

.tmx-quote-modal__placeholder p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

.tmx-quote-modal .wpcf7 {
  width: 100%;
}

.tmx-quote-modal .wpcf7 form {
  display: block;
}

.tmx-quote-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.tmx-quote-form__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tmx-quote-form__col--message {
  gap: 18px;
}

.tmx-quote-modal .wpcf7-form label {
  display: block;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.tmx-quote-modal .wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.tmx-quote-modal .wpcf7-form-control-wrap {
  display: block;
}

.tmx-quote-modal .wpcf7-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: none;
}

.tmx-quote-modal .wpcf7-form-control::placeholder {
  color: #8f8f8f;
}

.tmx-quote-modal .wpcf7-form-control:focus {
  border-color: var(--color-accent);
}

.tmx-quote-modal textarea.wpcf7-form-control {
  min-height: 280px;
  resize: vertical;
}

.tmx-quote-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.tmx-quote-form__actions .wpcf7-form-control-wrap {
  display: none;
}

.tmx-quote-form__bottom {
  margin-top: 28px;
}
.tmx-quote-form__bottom a{
  text-decoration: underline;
}
.tmx-quote-form__bottom a:hover{
  text-decoration: none;
}

.tmx-quote-form__disclaimer {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.tmx-quote-modal .wpcf7-submit {
  width: min(280px, 100%);
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 10px;
  background: #14821A;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
	cursor: pointer;
	transition: all 0.3s 0.02s ease;
}

.tmx-quote-modal .wpcf7-submit:hover {
  background: #2e2e2e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.tmx-quote-modal .wpcf7-spinner {
  margin: 12px 0 0;
}

.tmx-quote-modal .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #b42318;
  font-size: 0.82rem;
}

.tmx-quote-modal .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}


/* --- Bottom: Description Tabs --- */
.tmx-product-bottom-layout {
  background-color: #fcfcfc;
  border: 1px solid #dfe0e0;
  border-radius: 8px;
  padding: 40px;
}

.tmx-description-block h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.tmx-description-block h3:first-child {
  margin-top: 0;
}

.tmx-description-block p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.tmx-features-list,
.tmx-technical-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.tmx-features-list li,
.tmx-technical-list li {
  position: relative;
  padding-left: 20px;
}

.tmx-features-list li::before,
.tmx-technical-list li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive Product Page */
@media (max-width: 992px) {
  .tmx-product-top-layout {
    flex-direction: column;
  }

  .tmx-unit-gallery,
  .tmx-product-specs {
    width: 100%;
    flex: auto;
  }
}

@media (max-width: 600px) {

  .tmx-spec-list li {
    flex-direction: column;
    gap: 5px;
  }

  .tmx-spec-label {
    flex: auto;
  }

  .tmx-features-list,
  .tmx-technical-list {
    grid-template-columns: 1fr;
  }

  .tmx-product-bottom-layout {
    padding: 20px;
  }

  .tmx-quote-modal {
    padding: 16px;
  }

  .tmx-quote-modal__content {
    padding: 24px 18px;
  }

  .tmx-quote-modal__title {
    margin-right: 36px;
    font-size: 1.5rem;
  }

  .tmx-quote-form__grid {
    grid-template-columns: 1fr;
  }

  .tmx-quote-form__actions {
    justify-content: stretch;
  }

  .tmx-quote-modal .wpcf7-submit {
    width: 100%;
  }

  .tmx-quote-modal textarea.wpcf7-form-control {
    min-height: 220px;
  }
}


.tmx-contact-form-box .wpcf7-not-valid-tip {
    color: #ffd83d !important;
}


.grecaptcha-badge{
	right: -100% !important;
	}

