/**
 * Static shell for teutonsystems.local
 * Colours / typography aligned with neve-child (Khand, #0366d6, #404248).
 */

:root {
  --ts-primary: #0366d6;
  --ts-text: #404248;
  --ts-gray-white: #c9c9c9;
  --ts-white: #fff;
  /* Default header bar (burgundy — matches live Teuton desktop header) */
  --ts-header-bg: #2c001e;
  --ts-header-submenu-bg: #3a0d24;
  --ts-header-accent: #f6121c;
  /* Footer CTA band (outer) + inner bar — match contact strip design */
  --ts-footer-cta-bg: #6b5a64;
  --ts-footer-cta-bar-bg: #2d2d2d;
  --ts-footer-cta-subtext: #c4c4c4;
  /* Match header burgundy (reference footer) */
  --ts-footer-main-bg: #2c001e;
  --ts-overlay: rgba(0, 0, 0, 0.55);
  --ts-slide-width: min(350px, 92vw);
  --ts-font: "Khand", sans-serif;
  --ts-font-roboto: "Roboto", sans-serif;
}
.teuton-page-main a{
  color:#406D9B;
}

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

html {
  scroll-padding-top: 1rem;
}
main.neve-main > .shop-container {
  padding: 30px 15px;
}

/* Cart / checkout / account: row + inner page shell + direct Woo shortcode wrapper */
body.woocommerce-cart .neve-main > .shop-container > .row,
body.woocommerce-checkout .neve-main > .shop-container > .row,
body.woocommerce-account .neve-main > .shop-container > .row {
  display: block;
  float: none;
  width: 100%;
  margin:0;
}

body.woocommerce-cart .neve-main > .shop-container .single-page-container,
body.woocommerce-checkout .neve-main > .shop-container .single-page-container,
body.woocommerce-account .neve-main > .shop-container .single-page-container {
  max-width: 100%;
  width: 100%;
}

body.woocommerce-cart .neve-main > .shop-container > .row > .woocommerce,
body.woocommerce-checkout .neve-main > .shop-container > .row > .woocommerce,
body.woocommerce-account .neve-main > .shop-container > .row > .woocommerce {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.shop-container .nv-shop.col{
  margin-top: 30px;
}
/* Blog / generic Neve rows — do not apply to WooCommerce .shop-container or product grid breaks */
main.neve-main > .container:not(.shop-container) > .row {
  flex-wrap: wrap;
}
.woocommerce-result-count{
	margin-top: 40px !important;
  font-size: 18px;
}
/* Woo shop & product archives: Neve expects a flex row (sidebar + .nv-shop). */
main.neve-main > .shop-container > .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}


#content{
  background-color: #fff;
}
body.ts-shell {
  margin: 0;
  font-family: var(--ts-font);
  font-size: 18px;
  line-height: 1.3;
  color: var(--ts-text);
  background: #fff;
  padding-top: 0;
}

.ts-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--ts-primary);
  color: var(--ts-white);
  text-decoration: none;
  border-radius: 3px;
}

.ts-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.ts-hide-mobile {
  display: none;
}

.single-product .neve-main .nv-shop.col {
  max-width: 100%;
}



/* ----- Default header: normal flow, no entrance animation ----- */
.ts-header--default {
  position: relative;
  z-index: 50;
  background: var(--ts-header-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

/* Row 1: mini cart only, right-aligned */
.ts-header__top {
  flex-shrink: 0;
  width: 100%;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.ts-header__top-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 6px 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 40px;
  box-sizing: border-box;
}

.ts-header__top .ts-cart {
  padding: 4px 8px;
}

/* ----- Sticky header: fixed, sits above viewport until scroll; then slides down ----- */
.ts-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--ts-header-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  display: block;
}

.ts-header--sticky.ts-header--sticky-visible {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.ts-header__inner--sticky {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 53px;
}

/* Sticky bar: center logo vertically (avoid inline-img baseline gap + asymmetric margins) */
.ts-sticky-header__brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin: 0;
  min-width: 0;
}

.ts-header--sticky .ts-logo-sticky {
  display: flex;
  align-items: center;
  line-height: 0;
}

.menu-trigger-label{
  font-family: "Roboto", Khand, Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 8px;
  margin-left: 10px;
}
/* Sticky: one row — cart + hamburger grouped on the right */
.ts-header__util--sticky {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.ts-header--sticky .ts-logo-sticky img {
  display: block;
  max-width: 125px; /* ~+15% vs 132px */
  height: auto;
}


@media (prefers-reduced-motion: reduce) {
  .ts-header--sticky {
    transition: none;
  }
}

.ts-header__inner {
  flex: 0 0 auto;
  max-width: 1140px;
  margin: -35px auto 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  box-sizing: border-box;
}

.ts-header__brand {
  flex: 0 0 auto;
  min-width: 0;
  margin-bottom: 18px;
}

.ts-header__util {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 10px;
}

/* ----- Center desktop navigation ----- */
.ts-header__nav {
  flex: 1 1 auto;
  display: none;
  justify-content: flex-end;
  min-width: 0;
}

@media (min-width: 992px) {
  .ts-header__nav {
    display: flex;
  }
}

.ts-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.35rem;
}

.ts-nav-item {
  position: relative;
  margin: 0;
  padding:10px 20px;
}

.ts-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 13px 20px;
  font-family: var(--ts-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ts-white);
  text-decoration: none;
  text-transform: none;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 1.2;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.ts-nav-link:hover,
.ts-nav-link:focus-visible {
  color: var(--ts-white);
  opacity: 0.88;
  outline: none;
}

.ts-nav-link--active {
  position: relative;
  color: var(--ts-white);
  opacity: 1;
}

.ts-nav-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--ts-header-accent);
  border-radius: 1px;
}

.ts-nav-link--parent {
  padding-right: 0.15rem;
}

/* Dropdown parents are `<a href="#">`; JS prevents navigation — match button-like affordance. */
a.ts-nav-link--parent {
  cursor: pointer;
}


.ts-nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  min-width: 280px;
  max-width: min(340px, 92vw);
  margin: 0;
  /* Padding-top replaces the old `top` gap so the pointer stays over the `<li>` / submenu while moving down (no dead zone). */
  padding: 0.75rem 0 0.4rem;
  list-style: none;
  background: var(--ts-header-submenu-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ts-nav-submenu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-family: var(--ts-font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.ts-nav-submenu a:hover,
.ts-nav-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ts-white);
  outline: none;
}

@media (min-width: 992px) {
  .ts-nav-item--has-children:hover .ts-nav-submenu,
  .ts-nav-item--has-children:focus-within .ts-nav-submenu,
  .ts-nav-item--has-children.ts-nav-item--open .ts-nav-submenu {
    display: block;
  }
}

.ts-logo {
  display: inline-block;
  padding: 6px 0;
}

.ts-logo img {
  display: block;
  max-width: 170px; /* ~+15% vs 148px */
  width: auto;
  height: auto;
}

@media (min-width: 576px) {
  .ts-logo img {
    max-width: 245px; /* ~+15% vs 175px */
  }
}

.ts-cart {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 8px 10px;
  color: var(--ts-white);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--ts-font);
  font-size: 0.9rem;
  border-radius: 3px;
  background: transparent;
  border: none;
  line-height: inherit;
  cursor: pointer;
}

.ts-cart__subtotal {
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ts-cart:hover,
.ts-cart:focus-visible {
  color: var(--ts-white);
  opacity: 0.9;
  outline: none;
}

.ts-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ts-cart__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.ts-cart__icon-svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.95;
}

.ts-cart__icon-svg--outline {
  opacity: 1;
}

.ts-cart__qty {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: var(--ts-header-accent);
  color: var(--ts-white);
  border-radius: 9px;
}

.ts-menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 10px;
  font-family: inherit;
  font-size: 1.2rem;
  color: var(--ts-white);
  background: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.ts-menu-trigger:hover,
.ts-menu-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  outline: none;
}

.ts-menu-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ts-menu-trigger__icon-svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.95;
}

/* ----- Main ----- */
.ts-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 16px 3rem;
}

.ts-main__placeholder {
  background: var(--ts-white);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* ----- Footer CTA (centered dark bar on muted purple-brown) ----- */
.ts-footer__cta {
  background: var(--ts-footer-cta-bg);
  color: var(--ts-white);
  padding: 2.25rem 1rem;
}

.ts-footer__cta-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.ts-footer__cta-bar {
  display: flex;
  margin-inline: auto;
  position: relative;
  background: #202020B3;
  padding:10px 15px;
  border-radius: 7px;
}

.ts-footer__cta-copy {
  width: 48%;

}

.ts-footer__cta-title {
  margin: 0 0 0.2rem;
  font-family: var(--ts-font);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ts-white);
  text-transform: none;
}

.ts-footer__cta-lead {
  margin: 0;
  font-family: var(--ts-font);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  color: #ccc;
}

.ts-footer__cta-sep {
  width:6%;
  display: flex;
  gap: 10px;
}

.ts-footer__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--ts-white);
  line-height: 1;
}

.ts-footer__cta-rule {
  display: block;
  width: 2px;
  align-self: stretch;
  min-height: 2rem;
  background: var(--ts-header-accent);
  border-radius: 1px;
}

.ts-footer__cta-action {
  width: 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: #FFFFFF;
}

a.ts-footer__cta-mail {
  font-family: var(--ts-font);
  font-size: 21px;
  font-weight: 600;
  text-decoration: underline;
  color: #FFFFFF !important;
}

.ts-footer__cta-mail:hover,
.ts-footer__cta-mail:focus-visible {
  color: var(--ts-white);
  text-decoration-thickness: 2px;
  outline: none;
}



/* ----- Footer columns ----- */
.ts-footer__columns {
  background: var(--ts-footer-main-bg);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.75rem 16px 2.25rem;
}

.ts-footer__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}


.ts-footer__col-title {
  margin: 0 0 1rem;
  font-family: var(--ts-font);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #eee;
}

.ts-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-footer__nav li {
  margin-bottom: 0.5rem;
}

.ts-footer__nav a {
  font-family: var(--ts-font);
  font-size: 18px;
  color: var(--ts-gray-white);
  text-decoration: none;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.ts-footer__nav a:hover,
.ts-footer__nav a:focus-visible {
  color: #c9c9c9;
  border-bottom-color: #f6121c;
  outline: none;
}

.ts-footer__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
}

.ts-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.ts-footer__social i {
  font-size: 1.05rem;
  opacity: 0.95;
}

.ts-footer__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-footer__news-item {
  margin: 0 0 1rem;
}

.ts-footer__news-item:last-of-type {
  margin-bottom: 0.5rem;
}

.ts-footer__news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ts-footer__news-title {
  display: block;
  font-family: var(--ts-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #c9c9c9;
  margin-bottom: 0.25rem;
}

.ts-footer__news-date {
  display: block;
  font-family: var(--ts-font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.ts-footer__news-link:hover .ts-footer__news-title,
.ts-footer__news-link:focus-visible .ts-footer__news-title {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ts-footer__news-more-wrap {
  margin: 1rem 0 0;
}

.ts-footer__news-more {
  font-family: var(--ts-font);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ts-footer__news-more:hover,
.ts-footer__news-more:focus-visible {
  color: var(--ts-white);
  outline: none;
}

.ts-footer__news-empty {
  margin: 0;
  font-family: var(--ts-font);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.ts-footer__rule {
  height: 1px;
  margin: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
}

.ts-footer__bottom {
  background: var(--ts-footer-main-bg);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.75rem 16px 2.5rem;
}

.ts-footer__bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 30px 0;
}

.ts-footer__logo-link {
  display: inline-block;
  line-height: 0;
}

.ts-footer__logo-img {
  max-width: min(250px, 55vw);
  height: auto;
  display: block;
}

.ts-footer__meta {
  font-family: var(--ts-font);
  font-size: 16px;
  line-height: 1.55;
}

.ts-footer__meta-line {
  margin: 0;
}

.ts-footer__copy {
  font-family: var(--ts-font);
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}



/* ----- Scroll to top (fixed, bottom-right) ----- */
.ts-scroll-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1500;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  background: #1a0514;
  color: var(--ts-white);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s ease, transform 0.2s ease;
}

.ts-scroll-top.ts-scroll-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ts-scroll-top:hover,
.ts-scroll-top:focus-visible {
  background: var(--ts-header-bg);
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.ts-scroll-top i {
  font-size: 1.125rem;
  line-height: 1;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .ts-scroll-top {
    transition: none;
  }
}

/* ----- Overlay + slide nav ----- */
.ts-overlay {
  position: fixed;
  inset: 0;
  z-index: 1998;
  background: var(--ts-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ts-shell.ts-shell--nav-open .ts-overlay {
  opacity: 1;
  visibility: visible;
}

.ts-slide-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: var(--ts-slide-width);
  max-width: 100%;
  height: 100%;
  background: var(--ts-header-bg);
  color: var(--ts-white);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
  font-family: var(--ts-font);
}

.ts-shell.ts-shell--nav-open .ts-slide-nav {
  transform: translateX(0);
}

/*
 * Slide panel typography: Neve sets font-family on all `button` (body stack). Some builders
 * also override `a`. Force theme stack for menu copy; keep Font Awesome on icon <i> only.
 */
aside.ts-slide-nav,
aside.ts-slide-nav .ts-slide-nav__item,
aside.ts-slide-nav .ts-slide-nav__section,
aside.ts-slide-nav .ts-slide-nav__tagline,
aside.ts-slide-nav .ts-slide-nav__label,
aside.ts-slide-nav button.ts-slide-nav__close {
  font-family: "Khand", system-ui, -apple-system, sans-serif;
}

aside.ts-slide-nav i.fa-light,
aside.ts-slide-nav .fa-light {
  font-family: "Font Awesome 6 Pro" !important;
  font-weight: 300;
}
#ts-slide-nav-email{
  background: transparent;
  color: var(--ts-gray-white);
  margin-bottom: 10px;
 --formfieldbordercolor: white;
}
#ts-slide-nav-email::focus{
	border-color: var(--ts-gray-white);
}
#ts-slide-nav-email::placeholder{
  color: var(--ts-gray-white);
}
aside.ts-slide-nav i.fa-brands,
aside.ts-slide-nav .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400;
}

.ts-slide-nav__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.35rem 0.65rem;
  color: var(--ts-white);
  font-family: var(--ts-font);
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.2);
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  border-radius: 4px;
  cursor: pointer;
}

.ts-slide-nav__close-icon {
  display: block;
  flex-shrink: 0;
}

.ts-slide-nav__close-fa {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.ts-slide-nav__close-label {
  line-height: 1;
}

.ts-slide-nav__close:hover,
.ts-slide-nav__close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.ts-slide-nav__hero {
  position: relative;
  padding: 3.25rem 1.5rem 1rem;
  text-align: center;
}

.ts-slide-nav__logo {
  display: block;
  max-width: min(170px, 78vw);
  width: auto;
  height: auto;
  margin: 0 auto;
}

.ts-slide-nav__tagline {
  margin: 0.75rem 0 0;
  font-family: var(--ts-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.ts-slide-nav__rule {
  height: 1px;
  margin: 0 1.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.ts-slide-nav__rule--spaced {
  margin-top: 1rem;
  margin-bottom: 0.65rem;
}

.ts-slide-nav__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.25rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}

.ts-slide-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
}

.ts-slide-nav__section {
  margin: 1.15rem 1.25rem 0.5rem;
  padding: 0;
  font-family: var(--ts-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.ts-slide-nav__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.25rem;
  color: var(--ts-gray-white);
  text-decoration: none;
  font-family: var(--ts-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.15s ease;
}

.ts-slide-nav__item:hover,
.ts-slide-nav__item:focus-visible {
  color: var(--ts-gray-white) !important;
  outline: none;
}

.ts-slide-nav__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.ts-slide-nav__icon svg {
  width: 22px;
  height: 22px;
}

/* Font Awesome (Pro Light / Brands) in slide menu */
.ts-slide-nav__icon .fa-fw {
  width: 1.25em;
}

.ts-slide-nav__icon i {
  font-size: 1.125rem;
  line-height: 1;
  color: inherit;
}

.ts-slide-nav__label {
  flex: 1 1 auto;
  text-align: left;
}

.mc4wp-form,
.ts-slide-nav__newsletter {
  margin: 0 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ts-slide-nav__newsletter-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ts-text);
  background: var(--ts-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.ts-slide-nav__newsletter-input::placeholder {
  color: #6b6b6b;
}

.mc4wp-form .ts-slide-nav__newsletter-btn[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 17px;
  font-weight: 500;
  color: var(--ts-white);
  background: #200518;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ts-slide-nav__newsletter-btn:hover,
.ts-slide-nav__newsletter-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--ts-white);
  outline: none;
}

.ts-slide-nav__copy {
  margin: 0.5rem 1.25rem 1.25rem;
  padding-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.ts-slide-nav__foot {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ts-header-bg);
}

.ts-slide-nav__close-bottom {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.6rem 1rem;
  font-family: var(--ts-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ts-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ts-slide-nav__close-bottom-icon {
  display: block;
  flex-shrink: 0;
}

.ts-slide-nav__close-bottom:hover,
.ts-slide-nav__close-bottom:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

body.ts-shell--nav-open,
body.ts-shell--cart-open {
  overflow: hidden;
}

/* ----- WooCommerce mini cart: overlay + slide drawer ----- */
.ts-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2498;
  background: var(--ts-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ts-shell.ts-shell--cart-open .ts-cart-overlay {
  opacity: 1;
  visibility: visible;
}

.ts-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2499;
  width: min(400px, 100%);
  max-width: 100%;
  height: 100%;
  background: var(--ts-white);
  color: var(--ts-text);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
}

.ts-shell.ts-shell--cart-open .ts-cart-drawer {
  transform: translateX(0);
}

.ts-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 1.25rem;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.ts-cart-drawer__title {
  font-size: 1.15rem;
  font-weight: 600;
}

.ts-cart-drawer__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ts-text);
  background: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.ts-cart-drawer__close-icon {
  display: block;
}

.ts-cart-drawer__close:hover {
  background: #f0f0f0;
  color: var(--ts-primary);
}

.ts-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
}

.ts-cart-drawer__loading,
.ts-cart-drawer__error {
  margin: 1rem 1.25rem;
  color: #666;
}

.ts-cart-drawer__error {
  color: #b32d2e;
}

.ts-cart-drawer__empty {
  margin: 1.5rem 1.25rem;
  color: #666;
}

.ts-cart-line {
  display: flex;
  gap: 12px;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.ts-cart-line__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  background: #f5f5f5;
  flex-shrink: 0;
}

span.ts-cart-line__img {
  display: inline-block;
}

.ts-cart-line__meta {
  flex: 1;
  min-width: 0;
}

.ts-cart-line__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.ts-cart-line__name {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.ts-cart-line__name a {
  color: inherit;
  text-decoration: none;
}

.ts-cart-line__name a:hover {
  color: var(--ts-primary);
}

.ts-cart-line__trash {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #666;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.ts-cart-line__trash:hover,
.ts-cart-line__trash:focus-visible {
  color: #b32d2e;
  border-color: #e0b4b4;
  background: #fff5f5;
  outline: none;
}

.ts-cart-line__trash-icon {
  display: block;
}

.ts-cart-line__price {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.ts-cart-line__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.ts-cart-qty-minus,
.ts-cart-qty-plus {
  width: 36px;
  height: 34px;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ts-text);
  background: #f7f7f7;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ts-cart-qty-minus:hover,
.ts-cart-qty-plus:hover,
.ts-cart-qty-minus:focus-visible,
.ts-cart-qty-plus:focus-visible {
  background: #ececec;
  outline: none;
}

.ts-cart-qty-minus:disabled,
.ts-cart-qty-plus:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ts-cart-qty-val {
  min-width: 2rem;
  padding: 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.ts-cart-line--pending {
  opacity: 0.55;
  pointer-events: none;
}

.ts-cart-drawer__footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
}

.ts-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.ts-cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.ts-cart-drawer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.ts-cart-drawer__btn--primary {
  background: var(--ts-primary);
  color: var(--ts-white);
  border: 1px solid var(--ts-primary);
}

.ts-cart-drawer__btn--primary:hover {
  filter: brightness(1.08);
}

.ts-cart-drawer__btn--secondary {
  background: var(--ts-white);
  color: var(--ts-text);
  border: 1px solid #ccc;
}

.ts-cart-drawer__btn--secondary:hover {
  border-color: var(--ts-primary);
  color: var(--ts-primary);
}

.page-title-wrapper {
  min-height: 120px;
  background: #eeeeee;
  color: #000000;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.neve-breadcrumbs-wrapper{
  display: none !important;
}
.page-title-wrapper .nv-page-title-wrap{
  margin: 0;
}
.page-title-wrapper h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

/* Shortcode-only wrapper (no intro copy) — same slider styles apply. */
.ts-support-team-block {
  margin-bottom: 1.5rem;
}

/* ----- Contact page: intro + support team slider ----- */
.ts-contact-intro-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.ts-contact-intro-block__text p {
  margin: 0 0 1em;
  line-height: 1.55;
}

.ts-contact-intro-block__text p:last-child {
  margin-bottom: 0;
}

.ts-contact-intro-block__lead a {
  font-weight: 500;
}

.ts-contact-team__title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  margin: 1.75rem 0 1.25rem;
  letter-spacing: 0.02em;
}

.ts-team-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0 0.35rem;
  max-width: 720px;
  margin: 0 auto;
}

.ts-team-slider__btn {
  grid-row: 1;
  align-self: center;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.ts-team-slider__btn:hover,
.ts-team-slider__btn:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.ts-team-slider__btn[disabled],
.ts-team-slider__btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.ts-team-slider__btn--prev {
  grid-column: 1;
}

.ts-team-slider__btn--next {
  grid-column: 3;
}

.ts-team-slider__viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.ts-team-slider__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ts-team-slider--infinite .ts-team-slider__track {
  gap: 0.75rem;
  align-items: flex-start;
}

.ts-team-slider--infinite[data-ts-team-per-view-active="1"] .ts-team-slider__track {
  gap: 0.5rem;
}

.ts-team-slider--infinite[data-ts-team-per-view-active="2"] .ts-team-slider__track {
  gap: 0.6rem;
}

.ts-team-slider--infinite .ts-team-member {
  box-sizing: border-box;
}

.ts-team-member {
  text-align: center;
  min-width: 0;
}

.ts-team-member__photo-wrap {
  max-width: 100%;
  margin: 0 auto 0.65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.ts-team-member__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.ts-team-member__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, #3d3d3d, #121212);
}

.ts-team-member__initials {
  font-size: 2.25rem;
  font-weight: 600;
  color: #e8e8e8;
  line-height: 1;
  text-transform: uppercase;
}

.ts-team-member__card {
  background: #ececec;
  padding: 15px 30px;
  margin: 0 auto;
  border-radius: 2px;
  box-sizing: border-box;
  max-width: 100%;
}

/* Two-up tablet: tighter padding + type so cards stay within JS-measured column width. */
.ts-team-slider--infinite[data-ts-team-per-view-active="2"] .ts-team-member__card {
  padding: 12px 14px;
}

.ts-team-slider--infinite[data-ts-team-per-view-active="2"] .ts-team-member__name {
  font-size: 1.125rem;
  overflow-wrap: anywhere;
}

.ts-team-slider--infinite[data-ts-team-per-view-active="2"] .ts-team-member__role {
  font-size: 0.9375rem;
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.ts-team-member__name {
  margin: 0 0 0.2em;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
}

.ts-team-member__role {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

.ts-team-slider__dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  min-height: 1.25rem;
}

.ts-team-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c8c8c8;
  cursor: pointer;
}

.ts-team-slider__dot:hover,
.ts-team-slider__dot:focus-visible {
  background: #9a9a9a;
  outline: none;
}

.ts-team-slider__dot.is-active {
  background: #222;
}

.ts-team-slider.is-single-slide .ts-team-slider__btn,
.ts-team-slider.is-single-slide .ts-team-slider__dots {
  display: none;
}

.ts-contact-page__form-anchor {
  outline: none;
}

/* 481–579px: one visible card; image / column max 220px (matches JS cap on article width). */
@media (min-width: 481px) and (max-width: 579px) {
  .ts-team-slider--infinite[data-ts-team-per-view-active="1"] .ts-team-member {
    max-width: 220px;
  }

  .ts-team-slider--infinite[data-ts-team-per-view-active="1"] .ts-team-member__photo-wrap {
    width: min(220px, 100%);
    max-width: 220px;
  }

  .ts-team-slider--infinite[data-ts-team-per-view-active="1"] .ts-team-member__img {
    max-width: 220px;
  }

  .ts-team-slider--infinite[data-ts-team-per-view-active="1"] .ts-team-member__card {
    max-width: 220px;
    padding: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ts-team-slider__track {
    transition: none;
  }
}

.teuton-page-container{
  margin:40px 0;
  display: flex;
}

.teuton-page-main{
  width:70%;
  padding-right: 50px;
}
.teuton-page-sidebar{
  width:30%;
  background: #EEEEEE;
  padding: 20px;
}
.widget_recent_entries a {
  color: #406D9B !important;
}

/* —— Auto table of contents (Table of Content Sidebar template) —— */

.teuton-page-main.toc{
  padding-right:50px;
}

body.teuton-page-layout--toc-sidebar .teuton-page-sidebar {
  position: sticky;
  top: 65px;
  align-self: flex-start;
}

body.teuton-page-layout--toc-sidebar .ts-toc--auto {
  background: #2c001e;
  color: #f3f0fa;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 20px 30px 20px;
  margin-bottom: 20px;
}

body.teuton-page-layout--toc-sidebar .ts-toc__title {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.teuton-page-layout--toc-sidebar .ts-toc__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.45;
}

body.teuton-page-layout--toc-sidebar .ts-toc__list li {
  margin: 0 0 0.35em;
}

body.teuton-page-layout--toc-sidebar .ts-toc__list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

body.teuton-page-layout--toc-sidebar .ts-toc__list a:hover,
body.teuton-page-layout--toc-sidebar .ts-toc__list a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

body.teuton-page-layout--toc-sidebar .teuton-page-main .nv-content-wrap.entry-content h2,
body.teuton-page-layout--toc-sidebar .teuton-page-main .nv-content-wrap.entry-content h3 {
  scroll-margin-top: 5.5rem;
}


@media (min-width: 960px) {

  body.woocommerce-cart .neve-main .container .col,
  body.woocommerce-checkout .neve-main .container .col,
  body.woocommerce-account .neve-main .container .col {
    max-width: 100% !important;
  }
  .ts-shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
    row-gap: 0.65rem;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  /* Breadcrumb + result count become grid rows/cells; filters stay one cell (toggle + sort stay aligned). */
  .ts-shop-toolbar > .nv-bc-count-wrap {
    display: contents;
    margin-bottom: 0 !important;
  }

  .ts-shop-toolbar > .nv-woo-filters {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    grid-column: 2;
    grid-row: 2;
    margin: 0 !important;
  }

  .ts-shop-toolbar .woocommerce-breadcrumb {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .ts-shop-toolbar .woocommerce-result-count {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: start;
    margin: 0;
  }
  .ts-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ts-footer__bottom-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    text-align: unset;
    gap: 2rem;
  }

  .ts-footer__brand {
    flex: 0 0 auto;
    min-width: 0;
  }

  .ts-footer__meta {
    flex: 1 1 auto;
    text-align: center;
  }

  .ts-footer__copy {
    flex: 0 0 auto;
    text-align: right;
    margin-left: auto;
  }
}



@media (min-width: 768px) {
  .ts-hide-mobile {
    display: inline;
  }
}



@media screen and (max-width: 768px) {

  .ts-header__brand {
    flex: 0 0 auto;
    min-width: 0;
    margin: -15px 20px 0;
  }
  .ts-sticky-header__brand {
    margin: 0 10px;
  }
  .ts-header--sticky .ts-logo-sticky img {
    max-width: 125px; /* ~+15% vs 155px */
  }
  .teuton-page-container{
    margin: 20px 0;
    display: block;
  }

  .teuton-page-main{
    width:100%;
    padding-right: 0;
  }
  .teuton-page-sidebar.toc{
    display: none;
  }

  .teuton-page-sidebar{
    width:100%;
    background: transparent;
    padding: 0;
  }
  .teuton-page-main.toc{
    padding-right:0;
  }
  .ts-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-footer__cta-copy {
      width: 100%; 
	  text-align: center;
  }
  .ts-footer__cta-sep {
    width: 14%;
    display: flex;
    gap: 10px;
  }

} 
@media (max-width: 600px) {
  .ts-footer__cta-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ts-footer__cta-sep {
    order: 2;
  }

  .ts-footer__cta-action {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 380px) {
  .ts-cart-drawer__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}


@media (max-width: 991px) {
  main.neve-main > .shop-container > .row {
    flex-wrap: wrap;
  }
}