/*
 * tlog Hummingbird
 * PSZ custom styling
 */


/* =========================================================
   Open Sans
   ========================================================= */

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v44-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/open-sans-v44-latin-300italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin-500italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin-600italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v44-latin-800.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/open-sans-v44-latin-800italic.woff2') format('woff2');
}


/* =========================================================
   Variables
   ========================================================= */

:root {
  --tlog-blue: #03597b;
  --tlog-blue-dark: #024764;
  --tlog-nav: #505050;

  --tlog-text: #222222;
  --tlog-text-muted: #666666;

  --tlog-border: #dedede;

  --tlog-bg: #ffffff;
  --tlog-bg-light: #f6f6f6;

  --tlog-container: 1540px;

  --bs-body-font-family: 'Open Sans', sans-serif;

  --bs-primary: #03597b;
  --bs-primary-rgb: 3, 89, 123;

  --bs-link-color: #03597b;
  --bs-link-color-rgb: 3, 89, 123;

  --bs-link-hover-color: #024764;
  --bs-link-hover-color-rgb: 2, 71, 100;

  --bs-primary-text-emphasis: #03597b;
  --bs-focus-ring-color: rgba(3, 89, 123, .25);
}


/* =========================================================
   Base
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: 'Open Sans', sans-serif;
}

body {
  color: var(--tlog-text);
  background: var(--tlog-bg);
}

.container,
.container-md,
.container-fluid .container {
  max-width: var(--tlog-container);
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--tlog-blue);
}


/* =========================================================
   Buttons
   ========================================================= */

.btn {
  border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--tlog-blue);
  --bs-btn-border-color: var(--tlog-blue);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--tlog-blue-dark);
  --bs-btn-hover-border-color: var(--tlog-blue-dark);

  --bs-btn-focus-shadow-rgb: 3, 89, 123;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--tlog-blue-dark);
  --bs-btn-active-border-color: var(--tlog-blue-dark);

  color: #fff;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff;
  background: var(--tlog-blue-dark);
  border-color: var(--tlog-blue-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--tlog-blue);
  --bs-btn-border-color: var(--tlog-blue);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--tlog-blue);
  --bs-btn-hover-border-color: var(--tlog-blue);

  --bs-btn-focus-shadow-rgb: 3, 89, 123;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--tlog-blue-dark);
  --bs-btn-active-border-color: var(--tlog-blue-dark);

  color: var(--tlog-blue);
  background: transparent;
  border-color: var(--tlog-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
}

.btn-outline-primary:active {
  color: #fff;
  background: var(--tlog-blue-dark);
  border-color: var(--tlog-blue-dark);
}


/* =========================================================
   Forms
   ========================================================= */

.form-control,
.form-select,
.input-group-text {
  border-radius: 0;
}


/* =========================================================
   Product cards
   ========================================================= */

.card,
.product-miniature {
  border-radius: 0;
}

.product-miniature a,
.card a {
  color: var(--tlog-text);
}

.product-miniature a:hover,
.product-miniature a:focus,
.card a:hover,
.card a:focus {
  color: var(--tlog-blue);
}

.product-miniature__title {
  color: var(--tlog-text);
  font-weight: 400;
}

.product-miniature__title:hover,
.product-miniature__title:focus {
  color: var(--tlog-blue);
}

.product-miniature__price {
  color: var(--tlog-text);
  font-weight: 700;
}

.product-miniature a.product-miniature__details {
  color: var(--tlog-blue);
  background: #fff;
  border-color: var(--tlog-blue);
  border-radius: 0;
}

.product-miniature a.product-miniature__details:hover,
.product-miniature a.product-miniature__details:focus {
  color: #fff;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
}

.product-miniature a.product-miniature__details:active {
  color: #fff;
  background: var(--tlog-blue-dark);
  border-color: var(--tlog-blue-dark);
}

.product-miniature__add {
  color: #fff;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
  border-radius: 0;
}

.product-miniature__add:hover,
.product-miniature__add:focus {
  color: #fff;
  background: var(--tlog-blue-dark);
  border-color: var(--tlog-blue-dark);
}

.product-miniature .quantity-button__group .btn,
.product-miniature .quantity-button__group .form-control {
  border-radius: 0;
}

.product-miniature .quantity-button__group .btn {
  color: var(--tlog-text);
  background: #fff;
  border-color: var(--tlog-border);
}

.product-miniature .quantity-button__group .btn:hover,
.product-miniature .quantity-button__group .btn:focus {
  color: var(--tlog-blue);
  background: var(--tlog-bg-light);
  border-color: var(--tlog-blue);
}

.product-miniature .quantity-button__group .form-control {
  color: var(--tlog-text);
  background: #fff;
  border-color: var(--tlog-border);
  text-align: center;
}

.product-miniature .product-flags .badge {
  border-radius: 0;
}

.product-miniature .product-flags .badge.new {
  color: #fff;
  background: var(--tlog-blue);
}

.module-products .section-title {
  color: var(--tlog-text);
}

.module-products__buttons .btn-outline-primary {
  color: var(--tlog-blue);
  background: #fff;
  border-color: var(--tlog-blue);
}

.module-products__buttons .btn-outline-primary:hover,
.module-products__buttons .btn-outline-primary:focus {
  color: #fff;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
}


/* =========================================================
   Contact links
   ========================================================= */

.tlog-contactlinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: .9rem 1.35rem;

  padding: .75rem 1rem;
}

.tlog-contactlinks__item {
  display: inline-flex;
  align-items: center;

  gap: .45rem;

  color: #fff;

  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25;

  text-decoration: none;
}

.tlog-contactlinks__item:hover,
.tlog-contactlinks__item:focus {
  color: #fff;
  text-decoration: underline;
}

.tlog-contactlinks__item i {
  width: 1.1rem;

  color: #fff;

  font-size: 1rem;
  line-height: 1;

  text-align: center;
}


/* =========================================================
   Topbar
   ========================================================= */

.tlog-topbar {
  background: var(--tlog-blue);
  color: #fff;
}

.tlog-topbar,
.tlog-topbar a {
  color: #fff;
}

.tlog-topbar a:hover,
.tlog-topbar a:focus {
  color: #fff;
  text-decoration: underline;
}

.tlog-topbar__inner {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;
}

.tlog-topbar__left,
.tlog-topbar__right {
  display: flex;
  align-items: center;
}


/* =========================================================
   Header
   ========================================================= */

.tlog-header {
  position: relative;

  z-index: 1100;

  background: #fff;
}

.tlog-header__inner {
  min-height: 110px;

  display: flex;
  align-items: center;

  gap: 2.5rem;
}

.tlog-header__logo {
  flex: 0 0 auto;
}

.tlog-header__logo img {
  display: block;

  width: auto;
  max-height: 76px;
}


/* =========================================================
   Search
   ========================================================= */

.tlog-header__top-hook {
  flex: 1 1 auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  min-width: 0;
}

.tlog-header__top-hook #_desktop_ps_searchbar {
  width: min(100%, 620px);
  max-width: 620px;

  margin-left: auto;

  flex: 1 1 auto;
}

.tlog-header__top-hook .ps-searchbar {
  width: 100%;
}

.tlog-header__top-hook .ps-searchbar__form {
  position: relative;
  width: 100%;
}

.tlog-header__top-hook .ps-searchbar__input {
  width: 100%;
  min-height: 44px;

  padding-left: 2.75rem;

  border: 1px solid var(--tlog-border);
  border-radius: 0;
}

.tlog-header__top-hook .ps-searchbar__input:focus {
  border-color: var(--tlog-blue);

  box-shadow: 0 0 0 .2rem rgba(3, 89, 123, .15);
}

.tlog-header__top-hook .ps-searchbar__magnifier {
  position: absolute;

  left: .85rem;
  top: 50%;

  transform: translateY(-50%);

  z-index: 2;
}


/* =========================================================
   Header actions
   ========================================================= */

.tlog-header__actions {
  position: relative;

  z-index: 1200;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 1.25rem;

  margin-left: .5rem;
}

.tlog-header__actions #_desktop_ps_customersignin,
.tlog-header__actions #_desktop_ps_shoppingcart {
  display: flex;
  align-items: center;
}

.tlog-header__actions .header-block {
  display: flex;
  align-items: center;
}

.tlog-header__actions .header-block__action-btn {
  display: flex;
  align-items: center;

  gap: .45rem;

  padding: .35rem .25rem;

  color: var(--tlog-text);

  text-decoration: none;
}

.tlog-header__actions .header-block__action-btn:hover,
.tlog-header__actions .header-block__action-btn:focus {
  color: var(--tlog-blue);
}

.tlog-header__actions .header-block__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.tlog-header__actions .header-block__badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 1.25rem;
  height: 1.25rem;

  padding: 0 .3rem;

  color: #fff;

  background: var(--tlog-blue);

  font-size: .7rem;
  line-height: 1;

  border-radius: 50%;
}

.tlog-header__actions .dropdown-menu {
  z-index: 1300;
}


/* =========================================================
   Main navigation
   ========================================================= */

.tlog-mainnav {
  position: relative;

  z-index: 1000;

  min-height: 48px;

  background: var(--tlog-nav);
  color: #fff;
}

.tlog-mainnav .ps-mainmenu,
.tlog-mainnav .ps-mainmenu__desktop {
  width: 100%;
}

.tlog-mainnav .ps-mainmenu__tree {
  display: flex;
  align-items: stretch;

  margin: 0;
  padding: 0;

  list-style: none;
}

.tlog-mainnav .ps-mainmenu__tree-item {
  position: relative;

  margin: 0;
  padding: 0;

  border-right: 1px solid rgba(255, 255, 255, .12);
}

.tlog-mainnav .ps-mainmenu__tree-item-wrapper {
  display: flex;
  align-items: stretch;

  min-height: 48px;
}

.tlog-mainnav .ps-mainmenu__tree-link {
  display: flex;
  align-items: center;

  min-height: 48px;

  padding: 0 .35rem 0 1rem;

  color: #fff;
  background: transparent;

  text-decoration: none;
  white-space: nowrap;
}

.tlog-mainnav .ps-mainmenu__tree-dropdown-toggle {
  width: 2rem;
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #fff;

  background: transparent;

  border: 0;
}

.tlog-mainnav .ps-mainmenu__tree-item:hover > .ps-mainmenu__tree-item-wrapper,
.tlog-mainnav .ps-mainmenu__tree-item:focus-within > .ps-mainmenu__tree-item-wrapper {
  background: #444;
}

.tlog-mainnav .ps-mainmenu__tree-item:hover .ps-mainmenu__tree-link,
.tlog-mainnav .ps-mainmenu__tree-item:focus-within .ps-mainmenu__tree-link,
.tlog-mainnav .ps-mainmenu__tree-item:hover .ps-mainmenu__tree-dropdown-toggle,
.tlog-mainnav .ps-mainmenu__tree-item:focus-within .ps-mainmenu__tree-dropdown-toggle {
  color: #fff;
}


/* =========================================================
   Desktop fold-out
   ========================================================= */

.tlog-mainnav .ps-mainmenu__tree-item > .submenu {
  position: absolute !important;

  top: 100% !important;
  left: 0 !important;

  width: max-content !important;

  min-width: 300px;
  max-width: 420px;

  height: auto !important;

  margin: 0 !important;
  padding: .4rem 0 !important;

  background: #fff;

  border: 1px solid var(--tlog-border);
  border-top: 0;

  box-shadow: 0 .4rem 1rem rgba(0, 0, 0, .12);

  z-index: 1100;
}

.tlog-mainnav .ps-mainmenu__tree-item:last-child > .submenu {
  left: auto !important;
  right: 0 !important;
}

.tlog-mainnav .submenu > .container {
  width: auto !important;

  min-width: 0 !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;
}

.tlog-mainnav .submenu__row {
  display: block !important;

  margin: 0 !important;
  padding: 0 !important;
}

.tlog-mainnav .submenu__right,
.tlog-mainnav .submenu__right-items {
  display: none !important;
}

.tlog-mainnav .submenu__left {
  display: block !important;

  width: 100% !important;

  min-width: 300px;
  max-width: 420px;

  margin: 0 !important;
  padding: 0 !important;
}

.tlog-mainnav .submenu__left-item {
  display: block;

  width: 100%;

  padding: .7rem 1rem;

  color: #2f2f2f;

  background: #fff;

  text-decoration: none;
}

.tlog-mainnav .submenu__left-item:hover,
.tlog-mainnav .submenu__left-item:focus {
  color: var(--tlog-blue);

  background: var(--tlog-bg-light);
}


/* =========================================================
   Hero slider
   ========================================================= */

.ps-imageslider .carousel-indicators,
.ps-imageslider .carousel-control-prev,
.ps-imageslider .carousel-control-next {
  display: none !important;
}

.ps-imageslider .carousel-item {
  transition: none;
}

.ps-imageslider__figure {
  position: relative;
  margin: 0;
}

.ps-imageslider__figcaption {
  left: 50%;
  right: auto;
  bottom: clamp(.75rem, 2.2vw, 2rem);

  width: min(50rem, calc(100% - 2rem));

  padding: clamp(.75rem, 1.8vw, 1.5rem);

  transform: translateX(-50%);

  color: #fff;
  background: rgba(30, 34, 36, .88);

  text-align: center;
}

.ps-imageslider__figcaption h2 {
  margin: 0 0 clamp(.35rem, .8vw, .75rem);

  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.ps-imageslider__figcaption div {
  font-size: clamp(.9rem, 1.3vw, 1.15rem);
  line-height: 1.4;
}

.ps-imageslider__figcaption p {
  margin: 0 0 clamp(.35rem, .8vw, .75rem);
}

.ps-imageslider__figcaption p:last-child {
  margin-top: clamp(.5rem, 1vw, 1rem);
  margin-bottom: 0;
}

.ps-imageslider__figcaption .btn {
  display: inline-block;

  padding: clamp(.4rem, .8vw, .65rem)
           clamp(.75rem, 1.3vw, 1.15rem);

  font-size: clamp(.85rem, 1.1vw, 1rem);
}

@media (max-width: 575.98px) {

  .ps-imageslider__figcaption {
    bottom: .75rem;

    width: calc(100% - 1.5rem);

    padding: .65rem .75rem;
  }

  .ps-imageslider__figcaption h2 {
    margin-bottom: .3rem;

    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .ps-imageslider__figcaption div {
    font-size: clamp(.82rem, 4vw, 1rem);
    line-height: 1.3;
  }

  .ps-imageslider__figcaption p {
    margin-bottom: .3rem;
  }

  .ps-imageslider__figcaption p:last-child {
    margin-top: .45rem;
  }

  .ps-imageslider__figcaption .btn {
    padding: .4rem .7rem;

    font-size: .875rem;
  }
}

/* =========================================================
   Service
   ========================================================= */

.ps-customtext {
  padding: 2.25rem 0 2.5rem;

  background: #fff;
}

.ps-customtext .products-section-title {
  display: none;
}

.ps-customtext ul.row {
  margin: 0;
  padding: 0;

  list-style: none;

  row-gap: 2rem;
}

.ps-customtext ul.row > li {
  list-style: none;
}

.ps-customtext .box-htmlcontent {
  display: flex;
  align-items: flex-start;

  gap: 1.25rem;
}

.ps-customtext .box-icon {
  flex: 0 0 48px;

  display: flex;
  justify-content: center;

  padding-top: .15rem;
}

.ps-customtext .box-icon .icon {
  width: 48px;

  margin: 0;

  color: var(--tlog-blue);

  font-size: 2.5rem;
  line-height: 1;

  text-align: center;
}

.ps-customtext .box-content {
  flex: 1 1 auto;

  min-width: 0;
}

.ps-customtext .box-content h3 {
  margin: 0 0 .45rem;

  color: var(--tlog-text);

  font-size: 1.1rem;
  font-weight: 500;
}

.ps-customtext .box-content h5 {
  margin: 0;

  color: #3f3f3f;

  font-size: .95rem;
  font-weight: 400;
  line-height: 1.35;
}

.ps-customtext .service-link {
  color: inherit;

  text-decoration: none;
}

.ps-customtext .service-link:hover,
.ps-customtext .service-link:focus {
  color: var(--tlog-blue);

  text-decoration: underline;
}


/* =========================================================
   Responsive < 1400
   ========================================================= */

@media (max-width: 1399.98px) {

  .tlog-header__inner {
    gap: 1.5rem;
  }

  .tlog-mainnav .ps-mainmenu__tree-link {
    padding-left: .75rem;
    padding-right: .2rem;
  }
}


/* =========================================================
   Burger navigation < 1200
   ========================================================= */

@media (max-width: 1199.98px) {

  .tlog-mainnav {
    position: relative;

    z-index: 1000;

    min-height: 48px;
  }

  .tlog-mainnav .container-md {
    min-height: 48px;

    display: flex;
    align-items: center;
  }

  .tlog-mainnav .ps-mainmenu--desktop {
    position: static;

    width: 100%;
  }

  .tlog-mainnav .ps-mainmenu__mobile-toggle {
    display: flex;
    align-items: center;

    min-height: 48px;
  }

  .tlog-mainnav .menu-toggle {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #fff !important;

    background: transparent;

    border: 0;
  }

  .tlog-mainnav .menu-toggle .material-icons {
    color: #fff !important;

    font-size: 1.8rem;
  }


  /* Mobile menu below navigation */

  #mobileMenu {
    position: absolute !important;

    top: 100% !important;
    left: 0 !important;
    bottom: auto !important;

    width: min(420px, 100%) !important;
    height: auto !important;

    max-height: calc(100vh - 210px);

    margin: 0 !important;

    background: #fff;

    border: 1px solid var(--tlog-border);
    border-top: 0;

    box-shadow: 0 .4rem 1rem rgba(0, 0, 0, .14);

    overflow-x: hidden;
    overflow-y: auto;

    transform: none !important;

    z-index: 1200;
  }

  #mobileMenu:not(.show):not(.showing) {
    display: none !important;
  }

  #mobileMenu.show,
  #mobileMenu.showing {
    display: block !important;

    transform: none !important;
  }

  .offcanvas-backdrop {
    display: none !important;
  }


  /* Menu header */

  #mobileMenu .offcanvas-header {
    min-height: 60px;

    display: flex;
    align-items: center;

    padding: .85rem 1rem;

    background: #fafafa;

    border-bottom: 1px solid var(--tlog-border);
  }

  #mobileMenu .ps-mainmenu__back-button {
    flex: 1 1 auto;
  }

  #mobileMenu .btn-close {
    margin-left: auto;
  }

  #mobileMenu .js-back-button {
    color: var(--tlog-blue);

    text-decoration: none;
  }


  /* Menu levels */

  #mobileMenu .ps-mainmenu__mobile {
    padding: 0;
  }

  #mobileMenu .menu {
    margin: 0;
    padding: 0;
  }

  #mobileMenu .menu__list {
    margin: 0;
    padding: 0;

    list-style: none;
  }

  #mobileMenu .menu[data-depth="2"] > .menu__list > .menu__title {
    display: block;

    width: 100%;

    margin: 0;
    padding: 1.25rem 1rem .75rem;

    color: var(--tlog-text);
    background: #fff;

    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;

    border-bottom: 1px solid var(--tlog-border);
  }

  /* Menu items */

  #mobileMenu .menu__list > li {
    position: relative;

    display: flex;
    align-items: stretch;

    width: 100%;

    margin: 0;

    border-bottom: 1px solid var(--tlog-border);
  }

  #mobileMenu .menu__link {
    flex: 1 1 auto;

    display: flex;
    align-items: center;

    min-height: 52px;

    padding: .85rem 1rem;

    color: var(--tlog-text);

    background: #fff;

    font-size: 1rem;
    line-height: 1.35;

    text-decoration: none;
  }

  #mobileMenu .menu__link:hover,
  #mobileMenu .menu__link:focus {
    color: var(--tlog-blue);

    background: var(--tlog-bg-light);
  }


  /* Level toggle */

  #mobileMenu .menu__toggle-child {
    flex: 0 0 50px;

    width: 50px;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--tlog-blue);

    background: #fff;

    border: 0;
    border-left: 1px solid var(--tlog-border);
  }

  #mobileMenu .menu__toggle-child:hover,
  #mobileMenu .menu__toggle-child:focus {
    color: #fff;

    background: var(--tlog-blue);
  }


  /* Contact info at bottom */

  #mobileMenu .ps-mainmenu__additionnals {
    display: block !important;

    margin: 0;
    padding: 0;

    background: var(--tlog-nav);

    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  #mobileMenu .ps-mainmenu__selects {
    display: none !important;
  }

  #mobileMenu #_mobile_ps_contactinfo {
    display: block;

    width: 100%;
  }

  #mobileMenu .tlog-contactlinks {
    padding: 1rem 1rem 1.1rem;

    gap: .75rem 1.25rem;
  }

  #mobileMenu .tlog-contactlinks__item {
    min-height: 28px;

    color: #fff;
  }

  #mobileMenu .tlog-contactlinks__item:hover,
  #mobileMenu .tlog-contactlinks__item:focus {
    color: #fff;
  }


  /* Service */

  .ps-customtext {
    padding: 2rem 0;
  }
}


/* =========================================================
   Mobile header < 768
   ========================================================= */

@media (max-width: 767.98px) {

  .tlog-topbar {
    display: none;
  }

  .tlog-header__inner {
    min-height: auto;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: .75rem 1rem;

    padding: .75rem 0;
  }


  /* Logo */

  .tlog-header__logo {
    flex: 0 0 auto;

    order: 1;
  }

  .tlog-header__logo img {
    max-height: 58px;
  }


  /* Mobile account */

  #_mobile_ps_customersignin {
    order: 2;

    margin-left: auto;
  }

  #_mobile_ps_shoppingcart {
    order: 3;
  }

  #_mobile_ps_customersignin .header-block__action-btn,
  #_mobile_ps_shoppingcart .header-block__action-btn {
    min-width: 44px;
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: .25rem;
  }

  #_mobile_ps_customersignin .header-block__icon,
  #_mobile_ps_shoppingcart .header-block__icon {
    font-size: 2rem;
    line-height: 1;
  }

  #_mobile_ps_shoppingcart .header-block__badge {
    min-width: 1.35rem;
    height: 1.35rem;

    font-size: .72rem;
  }


  /* Search on second line */

  .tlog-header__top-hook {
    flex: 0 0 100%;

    width: 100%;

    order: 4;
  }

  .tlog-header__top-hook .ps-searchbar--mobile {
    display: block !important;

    width: 100%;

    padding: 0;
  }


  /* Old mobile trigger hidden */

  .tlog-header__top-hook .ps-searchbar--mobile > .header-block,
  .tlog-header__top-hook a[data-bs-target="#searchCanvas"] {
    display: none !important;
  }


  /* Convert search offcanvas into normal row */

  .tlog-header__top-hook .ps-searchbar__offcanvas {
    position: static !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;

    visibility: visible !important;

    transform: none !important;

    background: transparent;

    border: 0;
  }

  .tlog-header__top-hook .ps-searchbar__offcanvas .offcanvas-header {
    display: block;

    width: 100%;

    padding: 0;

    background: transparent;

    border: 0;
  }

  .tlog-header__top-hook #_mobile_ps_searchbar {
    display: block;

    width: 100%;
  }

  .tlog-header__top-hook #_mobile_ps_searchbar .ps-searchbar,
  .tlog-header__top-hook #_mobile_ps_searchbar .ps-searchbar__form {
    width: 100%;
  }

  .tlog-header__top-hook #_mobile_ps_searchbar .ps-searchbar__form {
    position: relative;
  }

  .tlog-header__top-hook #_mobile_ps_searchbar .ps-searchbar__input {
    width: 100%;
    min-height: 44px;

    padding-left: 2.75rem;

    border: 1px solid var(--tlog-border);
  }

  .tlog-header__top-hook #_mobile_ps_searchbar .ps-searchbar__magnifier {
    position: absolute;

    left: .85rem;
    top: 50%;

    transform: translateY(-50%);
  }

  .tlog-header__top-hook
  .ps-searchbar__offcanvas
  .offcanvas-header
  > .btn {
    display: none !important;
  }


  /* Desktop actions hidden */

  .tlog-header__actions {
    display: none;
  }


  /* Menu width */

  #mobileMenu {
    width: min(420px, 100%) !important;

    max-height: calc(100vh - 150px);
  }
}


/* =========================================================
   Small mobile
   ========================================================= */

@media (max-width: 575.98px) {

  .ps-customtext {
    padding: 1.5rem 0;
  }

  .ps-customtext ul.row {
    row-gap: 1.5rem;
  }

  .ps-customtext .box-htmlcontent {
    gap: 1rem;
  }

  .ps-customtext .box-icon {
    flex-basis: 40px;
  }

  .ps-customtext .box-icon .icon {
    width: 40px;

    font-size: 2rem;
  }

  #mobileMenu .tlog-contactlinks {
    padding: 1rem 1.1rem 1.2rem;

    gap: .65rem 1.1rem;
  }
}
/* =========================================================
   BONINFOBAN
   ========================================================= */

.boninfoban {
  width: 100%;
}

.boninfoban__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.boninfoban__item,
.boninfoban__link {
  position: relative;
  display: block;
  width: 100%;
}

.boninfoban__item {
  overflow: hidden;
}

.boninfoban__link {
  color: var(--tlog-text);
  text-decoration: none;
}

.boninfoban__link:hover,
.boninfoban__link:focus {
  color: var(--tlog-blue);
  text-decoration: none;
}

.boninfoban__image {
  display: block;
  width: 100%;
  height: auto;
}

.boninfoban__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: #fff;
  text-align: center;
}

.boninfoban__content h2,
.boninfoban__content h3,
.boninfoban__content h4,
.boninfoban__content p {
  margin: 0;
  color: #fff;
}

.boninfoban__content h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.25;
}

.boninfoban__content h4 {
  font-size: clamp(.95rem, 1.25vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
}

.boninfoban__content p {
  line-height: 1;
}

.boninfoban__content .btn,
.boninfoban__content a.btn {
  display: inline-block;
  margin-top: .65rem;
  padding: .65rem 1.25rem;
  color: #fff;
  background: var(--tlog-blue);
  border: 1px solid var(--tlog-blue);
  border-radius: 0;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.boninfoban__content .btn-primary {
  display: inline-block;
  padding: .7rem 1.6rem !important;
  color: #fff;
  background: var(--tlog-blue);
  border: 1px solid var(--tlog-blue);
  font-size: .9rem;
  line-height: 1.2;
  text-decoration: none;
}

.boninfoban__content .btn:hover,
.boninfoban__content .btn:focus,
.boninfoban__content a.btn:hover,
.boninfoban__content a.btn:focus,
.boninfoban__content .btn-primary:hover,
.boninfoban__content .btn-primary:focus {
  color: #fff;
  background: var(--tlog-blue-dark);
  border-color: var(--tlog-blue-dark);
}


/* =========================================================
   BONINFOBAN – Startseite
   ========================================================= */

.boninfoban--home {
  margin-top: 2rem;
}

.boninfoban--home .boninfoban__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.boninfoban--home .boninfoban__item {
  aspect-ratio: 16 / 9;
}

.boninfoban--home .boninfoban__link {
  width: 100%;
  height: 100%;
}

.boninfoban--home .boninfoban__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.boninfoban--home .boninfoban__content {
  padding: clamp(.9rem, 1.8vw, 1.75rem);
}

.boninfoban--home .boninfoban__content h2,
.boninfoban--home .boninfoban__content h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}

.boninfoban--home .boninfoban__content p {
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.4;
}

.boninfoban--home .boninfoban__content .btn,
.boninfoban--home .boninfoban__content a.btn {
  margin-top: .5rem;
  padding: .55rem 1rem;
}


/* =========================================================
   BONINFOBAN – Sidebar
   ========================================================= */

.boninfoban--sidebar {
  display: block;
  margin-top: 1.5rem;
}

.boninfoban--sidebar .boninfoban__grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.boninfoban--sidebar .boninfoban__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.boninfoban--sidebar .boninfoban__content {
  padding: 1rem;
  font-size: .9rem;
  line-height: 1.4;
}


/* =========================================================
   BONINFOBAN – Mobile Bottom
   ========================================================= */

.boninfoban--mobile-bottom {
  display: none;
}

@media (max-width: 767.98px) {
  .boninfoban__content,
  .boninfoban--home .boninfoban__content {
    padding: 1.25rem;
  }
}

@media (max-width: 599.98px) {
  .boninfoban--home .boninfoban__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Footer content
   ========================================================= */

.tlog-footer-about,
.tlog-footer-contact {
  color: #fff;
}

.tlog-footer-heading {
  margin: 0 0 1.25rem;

  color: #fff;

  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tlog-footer-about p {
  margin: 0 0 1rem;

  color: #fff;

  font-size: .9rem;
  line-height: 1.5;
}

.tlog-footer-about a,
.tlog-footer-contact a {
  color: #fff;

  text-decoration: none;
}

.tlog-footer-about a:hover,
.tlog-footer-about a:focus,
.tlog-footer-contact a:hover,
.tlog-footer-contact a:focus {
  color: #fff;

  text-decoration: underline;
}

.tlog-footer-youtube-link {
  margin-top: 1.25rem;
}

.tlog-footer-youtube-logo {
  margin-top: 1rem;
}

.tlog-footer-youtube-logo img {
  display: block;

  width: min(100%, 250px);
  height: auto;
}

.tlog-footer-logo {
  display: inline-block;

  margin-bottom: 1.25rem;
}

.tlog-footer-logo img {
  display: block;

  width: auto;
  max-width: 110px;
  max-height: 80px;
}

.tlog-footer-contact-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.tlog-footer-contact-item {
  display: flex;
  align-items: flex-start;

  gap: .65rem;

  margin-bottom: .75rem;

  color: #fff;

  font-size: .9rem;
  line-height: 1.45;
}

.tlog-footer-contact-item i {
  flex: 0 0 1rem;

  margin-top: .2rem;

  color: #fff;

  text-align: center;
}


/* Mobile footer accordion */

.tlog-footer-title {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem 0;

  color: #fff;
  background: transparent;

  border: 0;

  font-weight: 600;
  text-align: left;
}

.tlog-footer-title i {
  transition: transform .2s ease;
}

.tlog-footer-title[aria-expanded="true"] i {
  transform: rotate(180deg);
}

@media (max-width: 767.98px) {

  .tlog-footer-about,
  .tlog-footer-contact {
    padding-top: 0;
    padding-bottom: 0;
  }

  .tlog-footer-about .collapse,
  .tlog-footer-contact .collapse {
    padding-bottom: 1rem;
  }

}
/* =========================================================
   Footer links
   ========================================================= */

#footer a {
  color: #fff;
  text-decoration: none;
}

#footer a:hover,
#footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: .2em;
}

#footer a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
/* =========================================================
   Produktdetail
   ========================================================= */

.page-product .columns-container {
  max-width: var(--tlog-container);
}

/* Hauptbereich: Bild links / Produktinfo rechts */
.page-product .product__container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.page-product .product__left,
.page-product .product__right {
  min-width: 0;
}

/* ---------------------------------------------------------
   Produktbild
   --------------------------------------------------------- */

.page-product .product__images {
  width: 100%;
}

.page-product .product__carousel {
  width: 100%;
}

.page-product .product__carousel .carousel-inner {
  width: 100%;
}

.page-product .product__carousel .carousel-item {
  text-align: center;
}

.page-product .product__carousel .carousel-item img {
  display: block;
  width: auto !important;
  max-width: 100%;
  max-height: 680px;
  margin: 0 auto;
  object-fit: contain;
}

/* Thumbnailleiste etwas zurücknehmen */
.page-product .product__thumbnails {
  margin-top: 1rem;
}

/* ---------------------------------------------------------
   Rechte Produktspalte
   --------------------------------------------------------- */

.page-product .product__right {
  padding-top: .25rem;
}

/* Titel */
.page-product .product__name {
  margin: 0 0 1.25rem;
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--tlog-text);
}

/* Artikelnummer */
.page-product .tlog-product-reference {
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--tlog-text);
}

.page-product .tlog-product-reference__label {
  font-weight: 400;
}

.page-product .tlog-product-reference__value {
  font-weight: 400;
}

/* Preis */
.page-product .product__prices,
.page-product .product-prices {
  margin: 0 0 1.75rem;
}

.page-product .product__price {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--tlog-blue);
}

.page-product .product__tax-infos {
  margin-top: .5rem;
  font-size: .85rem;
  line-height: 1.35;
  color: var(--tlog-text-muted);
}

/* Login statt Preis */
.page-product .product-prices .h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.page-product .product-prices a {
  color: var(--tlog-text);
  text-decoration: none;
}

.page-product .product-prices a:hover,
.page-product .product-prices a:focus-visible {
  color: var(--tlog-blue);
  text-decoration: underline;
}

/* Kurzbeschreibung */
.page-product .product__description-short {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--tlog-text);
}

.page-product .product__description-short p {
  margin-bottom: .9rem;
}

.page-product .product__description-short p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   Varianten
   --------------------------------------------------------- */

.page-product .product__variants {
  margin-bottom: 1.5rem;
}

.page-product .product-variant {
  margin: 0;
}

.page-product .product-variant__label {
  margin-bottom: .4rem;
}

.page-product .product-variant__legend {
  display: inline;
  margin: 0;
  font-weight: 600;
}

.page-product .product-variant__selected {
  font-weight: 400;
}

.page-product .product-variant .form-select {
  min-height: 44px;
  border-radius: 0;
}

/* ---------------------------------------------------------
   Menge + Warenkorb
   --------------------------------------------------------- */

.page-product .product__actions-qty-add {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.page-product .product-actions__quantity {
  flex: 0 0 auto;
}

.page-product .product__add-to-cart {
  flex: 1 1 auto;
}

.page-product .product__add-to-cart-button {
  width: 100%;
  min-height: 44px;
  border-radius: 0;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
}

.page-product .product__add-to-cart-button:hover,
.page-product .product__add-to-cart-button:focus-visible {
  background: var(--tlog-blue-dark);
  border-color: var(--tlog-blue-dark);
}

/* Mengenfeld ebenfalls geradlinig */
.page-product .quantity-button__group .btn,
.page-product .quantity-button__group .form-control {
  min-height: 44px;
  border-radius: 0;
}

/* ---------------------------------------------------------
   Teilen
   --------------------------------------------------------- */

.page-product .product__additional-info {
  margin-top: 1.75rem;
}

.page-product .ps-sharebuttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-product .ps-sharebuttons__list {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0;
  padding: 0;
}
/* =========================================================
   Produktpreis – MwSt. + Versand
   ========================================================= */

.page-product .product__tax-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25rem;
}

.page-product .aeuc_product_price_block {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
}

.page-product .aeuc_tax_label {
  display: none;
}

.page-product .aeuc_shipping_label {
  display: inline;
}

.page-product .aeuc_shipping_label a {
  color: var(--tlog-text-muted);
  text-decoration: underline;
}

.page-product .aeuc_shipping_label a:hover,
.page-product .aeuc_shipping_label a:focus {
  color: var(--tlog-blue);
}
a.btn.btn-secondary[href*="direct_print=1"] {
  color: var(--tlog-blue);
  background: #fff;
  border: 1px solid var(--tlog-blue);
  border-radius: 0;

  font-weight: 400;
  text-decoration: none;
}

a.btn.btn-secondary[href*="direct_print=1"]:hover,
a.btn.btn-secondary[href*="direct_print=1"]:focus-visible {
  color: #fff;
  background: var(--tlog-blue);
  border-color: var(--tlog-blue);
}
@media screen and (min-width: 1199px) and (max-width: 1260px) {
  .tlog-mainnav .ps-mainmenu__tree-link { padding-left: .2rem; }

}
.ps-categorytree.left-block {display: none;}
