/*
Theme Name: Einhorn Werke
Theme URI: https://greger.me
Author: Maximilian Greger
Author URI: https://greger.me
Version: 0.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jff
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
:root {
  --text-white: #ffffff;
  --text-black: #000000;
  --text-gray: #808080;
  --background-white: #ffffff;
  --background-black: #000000;
  --background-gray: #F5F5F5;
}

* {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.4;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: underline;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
  margin-top: 3rem;
}
h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child) {
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.4rem;
}

p:not(:first-child) {
  margin-top: 1rem;
}
p:not(:last-child) {
  margin-bottom: 1rem;
}

.center {
  text-align: center;
}

.site__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.site__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  background-blend-mode: darken;
}
.site__header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-white);
  width: calc(100% - 4rem);
  margin: auto;
  padding: 2rem 0;
  gap: 1rem;
}
.site__header #primary-menu {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  list-style: none;
}
.site__header #primary-menu a {
  text-decoration: none;
}
.site__header #primary-menu > li {
  padding: 1rem 0;
  position: relative;
}
.site__header #primary-menu > li.current_page_item > a, .site__header #primary-menu > li.current-menu-parent > a {
  text-decoration: underline;
}
.site__header #primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--background-white);
  color: var(--text-black);
  list-style: none;
  padding: 1rem;
  min-width: 150px;
  max-width: 200px;
}
.site__header #primary-menu .sub-menu > li:not(:last-child) {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}
.site__header #primary-menu > li:hover .sub-menu {
  display: block;
}
.site__header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site__header__burger {
  display: none;
}

.burger {
  width: 40px;
  height: 50px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.burger__line1, .burger__line2, .burger__line3 {
  position: absolute;
  height: 2px;
  left: 0;
  width: 100%;
  background-color: var(--background-white);
  transition: all 0.3s ease;
}
.burger__line1 {
  top: 25%;
}
.burger__line2 {
  top: 50%;
  transform: translateY(-50%);
}
.burger__line3 {
  top: 75%;
}
.burger.active .burger__line1 {
  transform: rotate(45deg);
  top: 50%;
}
.burger.active .burger__line2 {
  opacity: 0;
}
.burger.active .burger__line3 {
  transform: rotate(-45deg);
  top: 50%;
}

.site__mobile__menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 90;
  background-color: var(--background-black);
  width: 100%;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease-out;
}
.site__mobile__menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site__mobile__menu #mobile-menu {
  list-style: none;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
}
.site__mobile__menu #mobile-menu ul {
  list-style: none;
}
.site__mobile__menu #mobile-menu a {
  text-decoration: none;
}
.site__mobile__menu #mobile-menu > li {
  margin-bottom: 1rem;
}
.site__mobile__menu #mobile-menu > li .sub-menu {
  font-size: 1rem;
  padding: 1rem 0;
}
.site__mobile__menu #mobile-menu > li .sub-menu > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.site__mobile__menu #mobile-menu > li:last-child {
  margin-bottom: 0;
}

.btn {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn a,
input[type=submit],
button,
.wp-element-button {
  display: block;
  padding: 0.75rem 1.75rem;
  border: 1px solid currentColor;
  text-decoration: none;
  width: auto;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.btn a:hover,
input[type=submit]:hover,
button:hover,
.wp-element-button:hover {
  background-color: color-mix(in srgb, currentColor 20%, transparent);
}
.btn a.invert,
input[type=submit].invert,
button.invert,
.wp-element-button.invert {
  background-color: var(--background-black);
  border-color: var(--background-black);
  color: #fff;
}
.btn a.invert:hover,
input[type=submit].invert:hover,
button.invert:hover,
.wp-element-button.invert:hover {
  background-color: color-mix(in srgb, #000 60%, transparent);
}

.btn-cart a {
  padding: 0.25rem;
  aspect-ratio: 1/1;
  height: 46.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn-cart a svg {
  display: block;
  height: 1.5rem;
  width: auto;
}
.btn-cart a .cart-count {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 0.7rem;
}

.btn-cart.animate {
  animation: cart-animation 1s ease-in-out;
}

@keyframes cart-animation {
  0% {
    transform: scale(1);
    background-color: transparent;
  }
  10% {
    transform: scale(1.1) rotate(5deg);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  30% {
    transform: scale(1.2) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.4);
  }
  40% {
    transform: scale(1.2) rotate(-5deg);
    background-color: rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.2) rotate(0);
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    transform: scale(1);
    background-color: transparent;
  }
}
.block__hero {
  position: relative;
  color: var(--text-white);
}
.block__hero img.block__hero__image {
  height: 35rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.block__hero__content {
  position: absolute;
  top: 50%;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}
.block__hero__content h1,
.block__hero__content h2,
.block__hero__content h3 {
  font-size: 3rem;
  line-height: 1;
}
.block__hero__form {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.block__hero__form input,
.block__hero__form select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--text-white);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--text-black);
  width: 300px;
  max-width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.block__hero__form input:hover, .block__hero__form input:focus,
.block__hero__form select:hover,
.block__hero__form select:focus {
  background-color: white;
}
.block__hero__form button {
  padding: 0.75rem 1rem;
  border: 1px solid var(--text-white);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--text-black);
}
.block__hero__form button:hover, .block__hero__form button:focus {
  background-color: white;
}
.block__hero .btn {
  justify-content: center;
}

.site__footer {
  background-color: var(--background-black);
  color: var(--text-white);
  font-size: 0.9rem;
}
.site__footer h4 {
  text-transform: uppercase;
}
.site__footer__top {
  padding: 3rem 0;
}
.site__footer__top__wrapper {
  display: flex;
  gap: 2rem 4rem;
  justify-content: space-between;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
.site__footer__item {
  flex: 1 1 10rem;
}
.site__footer__item:last-child {
  flex-basis: 20rem;
  text-align: center;
}
.site__footer__bottom {
  padding: 3rem 0;
}
.site__footer__bottom__wrapper > p {
  display: flex;
  gap: 1rem;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

:not(.has-background) + .site__footer,
.has-background + .site__footer:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__gallery__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  grid-auto-flow: dense;
}
.block__gallery__wrapper img {
  display: block;
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__gallery__item.wide {
  grid-column: span 2;
}
.block__gallery h1,
.block__gallery h2,
.block__gallery h3,
.block__gallery h4 {
  margin-bottom: 3rem;
}

:not(.has-background) + .block__gallery,
.has-background + .block__gallery:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.pswp__custom-caption {
  background: var(--background-black);
  color: var(--text-white);
  width: calc(100% - 32px);
  max-width: 400px;
  padding: 1rem;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
}

.hidden-caption-content {
  display: none;
}

.block__blog__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  gap: 5rem 3rem;
  grid-auto-flow: dense;
}
.block__blog article h2 {
  margin-top: 1em;
  font-size: 1.25rem;
}
.block__blog article img {
  transition: opacity 0.3s ease;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__blog article img:hover {
  opacity: 0.8;
}

:not(.has-background) + .block__blog,
.has-background + .block__blog:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.nav-links > span,
.nav-links a {
  display: block;
  padding: 0.25rem 0.5rem;
  border: 1px solid currentColor;
  text-decoration: none;
  width: auto;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.nav-links > span:hover,
.nav-links a:hover {
  background-color: color-mix(in srgb, currentColor 20%, transparent);
}

.block__lexikon__term {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.block__lexikon__btns {
  background-color: var(--background-black);
  padding: 2.5rem 0;
  text-align: center;
  color: #fff;
}
.block__lexikon__btns__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__lexikon__btns .filter-btn-letter {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  color: currentColor;
  font-size: 1.25rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 30px;
  height: 50px;
  padding: 0;
}
.block__lexikon__btns .filter-btn-letter:hover, .block__lexikon__btns .filter-btn-letter.active {
  width: 50px;
  border-radius: 99px;
  border-color: currentColor;
  background-color: color-mix(in srgb, currentColor 20%, transparent);
}
.block__lexikon__btns .filter-btn-all {
  color: #fff;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  padding: 0.75rem 1.75rem;
  border: 1px solid #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.block__lexikon__btns .filter-btn-all:hover, .block__lexikon__btns .filter-btn-all.active {
  background-color: color-mix(in srgb, currentColor 20%, transparent);
}

:not(.has-background) + .block__lexikon__btns,
.has-background + .block__lexikon__btns:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__lexikon__terms__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 3rem;
}

:not(.has-background) + .block__lexikon__terms,
.has-background + .block__lexikon__terms:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.site__main > :not(.alignfull) {
  width: calc(100% - 4rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.site__main > img,
.site__main > figure,
.site__main > video {
  display: block;
  margin: 3rem auto;
  max-width: 1200px !important;
}
.site__main > img img,
.site__main > img video,
.site__main > figure img,
.site__main > figure video,
.site__main > video img,
.site__main > video video {
  width: 100%;
  height: auto;
}
.site__main .wp-block-columns {
  margin: 3rem auto;
}
.site__main .wp-block-columns.has-background {
  padding: 2rem;
  border-radius: 10px;
}
.site__main .wp-block-list li,
.site__main .wp-block-table-of-contents li {
  margin-left: 1rem;
}
.site__main .wp-block-list li:not(:last-child),
.site__main .wp-block-table-of-contents li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.site__main table td,
.site__main table th {
  text-align: left;
  border-left: none;
  border-right: none;
}
.site__main table tr:first-child th,
.site__main table tr:first-child td {
  border-top: none;
}
.site__main table tr:last-child th,
.site__main table tr:last-child td {
  border-bottom: none;
}

.alignfull + p {
  margin-top: 5rem;
}

.block__breadcrumbs,
.woocommerce-breadcrumb {
  background-color: var(--background-black);
  color: var(--text-white);
  padding: 1rem 0;
}
.block__breadcrumbs a,
.woocommerce-breadcrumb a {
  text-decoration: none;
  color: var(--text-white);
}
.block__breadcrumbs__wrapper,
.woocommerce-breadcrumb__wrapper {
  width: calc(100% - 4rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

:not(.has-background) + .block__breadcrumbs,
.has-background + .block__breadcrumbs:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__meta__wrapper {
  width: calc(100% - 4rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8rem;
}
.block__meta p {
  margin: 0;
}
.block__meta__author {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.block__meta__author img {
  width: 70px;
  height: 70px;
  border-radius: 99px;
  -o-object-fit: cover;
     object-fit: cover;
}

:not(.has-background) + .block__meta,
.has-background + .block__meta:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  border-top: 1px solid currentColor;
  padding-top: 1rem;
}

.block__relatedarticles {
  background-color: var(--background-black);
  padding: 5rem 0;
  color: var(--text-white);
  text-align: center;
}
.block__relatedarticles__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.block__relatedarticles__container {
  display: flex;
  margin-top: 3rem;
  gap: 2rem 3rem;
  flex-wrap: wrap;
}
.block__relatedarticles__item {
  flex: 1 1 15rem;
}
.block__relatedarticles .btn {
  justify-content: center;
  margin-top: 3rem;
}

:not(.has-background) + .block__relatedarticles,
.has-background + .block__relatedarticles:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__relatedtext__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

:not(.has-background) + .block__relatedtext,
.has-background + .block__relatedtext:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5rem;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
.block__contact__text {
  flex: 1 1 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.block__contact__text__inner {
  max-width: 800px;
  width: calc(100% - 4rem);
  padding: 4rem 0;
}
.block__contact__text__icons {
  display: flex;
  text-align: center;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.block__contact__text__icons img {
  height: 1.25rem;
  width: auto;
  display: inline-block;
  margin-bottom: 4px;
}
.block__contact__map {
  flex: 1 1 30rem;
  background-color: var(--background-gray);
}
.block__contact__map iframe {
  min-height: 500px;
  height: 100%;
}

:not(.has-background) + .block__contact,
.has-background + .block__contact:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__columns__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__columns h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.block__columns__flex {
  display: flex;
  gap: 1rem 3rem;
  flex-wrap: wrap;
}
.block__columns__column {
  flex: 1 1 20rem;
}

:not(.has-background) + .block__columns,
.has-background + .block__columns:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__background {
  position: relative;
  overflow: hidden;
  color: var(--text-white);
}
.block__background__image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -1;
  display: block;
  filter: brightness(0.7);
}
.block__background__wrapper {
  position: relative;
  z-index: 1;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  padding: 5rem 0;
}
.block__background__wrapper__inner {
  max-width: 576px;
  margin-left: auto;
}

:not(.has-background) + .block__background,
.has-background + .block__background:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__tiles__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 5rem 3rem;
  grid-auto-flow: dense;
}
.block__tiles article h2 {
  margin-top: 1em;
  font-size: 1.25rem;
}
.block__tiles article img {
  transition: opacity 0.3s ease;
}
.block__tiles article img:hover {
  opacity: 0.8;
}

:not(.has-background) + .block__tiles,
.has-background + .block__tiles:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__tradesman {
  text-align: center;
}
.block__tradesman__logo img {
  display: block;
  border-radius: 5px;
  margin: auto;
  width: 20rem;
  height: auto;
}
.block__tradesman__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__tradesman__info {
  margin: 5rem auto;
  text-align: center;
}
.block__tradesman__about {
  margin: 5rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 5rem 3rem;
}

:not(.has-background) + .block__tradesman,
.has-background + .block__tradesman:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__tradesman__archive__wrapper {
  margin: auto;
  display: flex;
  position: relative;
}
.block__tradesman__archive__list {
  flex: 1 1 20rem;
  padding: 3rem;
}
.block__tradesman__archive__item {
  max-width: 400px;
  margin-left: auto;
}
.block__tradesman__archive__item:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--text-gray);
}
.block__tradesman__archive .search-result {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  border-bottom: 1px solid var(--text-gray);
}
.block__tradesman__archive__map {
  flex: 1 1 50rem;
  position: relative;
  background-color: var(--background-black);
  align-self: stretch;
  max-height: 100vh;
  position: sticky;
  top: 0;
}
.block__tradesman__archive #tradesman-map {
  width: 100%;
  height: 100%;
  position: absolute;
}
.block__tradesman__archive .meta a {
  text-decoration: none;
}
.block__tradesman__archive .meta a:hover {
  text-decoration: underline;
}
.block__tradesman__archive .map-popup {
  font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.block__tradesman__archive .map-popup a {
  color: inherit;
}
.block__tradesman__archive .map-popup .btn a {
  padding: 0.25rem 0.5rem;
}

:not(.has-background) + .block__tradesman__archive,
.has-background + .block__tradesman__archive:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__product-category__wrapper {
  margin: auto;
  display: flex;
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  flex-wrap: wrap;
}
.block__product-category__image {
  flex: 1 1 40rem;
  display: flex;
  flex-direction: column;
}
.block__product-category__image > img {
  flex: 1 1 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__product-category__image img {
  display: block;
  width: 100%;
}
.block__product-category__text {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block__product-category__gallery {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.block__product-category__gallery__item {
  display: block;
  width: auto;
  height: auto;
  flex: 1 1 5rem;
}
.block__product-category__gallery__item img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

:not(.has-background) + .block__product-category,
.has-background + .block__product-category:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__colors__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.block__colors h2 {
  margin-bottom: 3rem;
}
.block__colors__items {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(70px, 100%), 1fr));
}
.block__colors__item img {
  aspect-ratio: 1/1;
  border-radius: 999px;
}

:not(.has-background) + .block__colors,
.has-background + .block__colors:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__downloads__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__downloads h2 {
  margin-bottom: 3rem;
}
.block__downloads__list {
  display: grid;
  list-style: none;
  gap: 0 5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
}
.block__downloads__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--text-gray);
}
.block__downloads__item p {
  margin: 0;
}

:not(.has-background) + .block__downloads,
.has-background + .block__downloads:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__workshops {
  background-color: var(--background-gray);
  padding: 5rem 0;
}
.block__workshops__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
}
.block__workshops__item {
  background-color: var(--background-white);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.block__workshops__item .term-description-list li {
  margin: 0 0 0.5rem 0;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.block__workshops__item .term-description-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.block__workshops__content {
  padding: 0 3rem;
  margin-top: 3rem;
  flex-grow: 1;
}
.block__workshops__facts {
  background-color: var(--background-black);
  color: var(--text-white);
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.block__workshops p.btn {
  padding: 0 2rem;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 2rem;
}
.block__workshops__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.block__workshops__table th,
.block__workshops__table td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}
.block__workshops__table th ul,
.block__workshops__table th li,
.block__workshops__table td ul,
.block__workshops__table td li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.block__workshops__table td {
  text-align: right;
}

:not(.has-background) + .block__workshops,
.has-background + .block__workshops:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__form__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__form #participants-container {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
.block__form .participant-row {
  border: 1px solid var(--text-black);
}
.block__form .participant-row input {
  border: none !important;
}
.block__form .remove-participant {
  display: inline-block;
  font-size: 0.6rem;
  padding: 0.3rem;
  border: 1px solid var(--text-black);
  color: var(--text-black);
  background-color: transparent;
}
.block__form .participant-number {
  display: inline-block;
  padding: 1rem;
}
.block__form .participants-controls {
  margin: 1rem 0;
}
.block__form .btn input {
  width: auto !important;
}

:not(.has-background) + .block__form,
.has-background + .block__form:not(.has-background) {
  margin: 5rem auto 0 auto;
}

form:not(.edit-account):not(.login):not(.lost_reset_password) .form-row {
  display: block;
}
form:not(.edit-account):not(.login):not(.lost_reset_password) .form-row.no-border {
  border-color: transparent;
}
form:not(.edit-account):not(.login):not(.lost_reset_password) .form-row label {
  display: block;
  margin-bottom: 0.5rem;
}
form:not(.edit-account):not(.login):not(.lost_reset_password) .form-row input,
form:not(.edit-account):not(.login):not(.lost_reset_password) .form-row select,
form:not(.edit-account):not(.login):not(.lost_reset_password) .form-row textarea {
  display: block;
  width: 100%;
  font-weight: 700;
  padding: 1rem;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid var(--text-black);
}
form:not(.edit-account):not(.login):not(.lost_reset_password) .form__wrapper {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
}
form:not(.edit-account):not(.login):not(.lost_reset_password) .flex-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
form:not(.edit-account):not(.login):not(.lost_reset_password) .flex-row > div {
  flex: 1 1 auto;
}
form:not(.edit-account):not(.login):not(.lost_reset_password) label.checkbox-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 1rem;
}
form:not(.edit-account):not(.login):not(.lost_reset_password) label.checkbox-container input[type=checkbox] {
  width: auto;
  height: auto;
}

.block__product__wrapper {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__product__header {
  display: flex;
  gap: 5rem;
}
.block__product__image {
  flex: 1 1 20rem;
}
.block__product__content {
  flex: 1 1 20rem;
}
.block__product__image {
  padding: 2rem;
  border: 1px solid var(--text-gray);
}

:not(.has-background) + .block__product,
.has-background + .block__product:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__search__wrapper {
  width: calc(100% - 4rem);
  max-width: 800px;
  margin: auto;
}
.block__search__form {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--text-black);
}
.block__search__form input[type=search] {
  padding: 1rem;
  display: block;
  flex: 1 1 auto;
}
.block__search__form .search-button {
  display: block;
  background-color: transparent;
  border: none;
  padding: 0 1rem;
}

:not(.has-background) + .block__search,
.has-background + .block__search:not(.has-background) {
  margin: 5rem auto 5rem auto;
}

:not(.has-background) + .wp-block-woocommerce-cart,
.has-background + .wp-block-woocommerce-cart:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.woocommerce .woocommerce-product-details__short-description,
.woocommerce-page .woocommerce-product-details__short-description {
  margin: 1rem 0;
}
.woocommerce .woocommerce-ResetPassword,
.woocommerce-page .woocommerce-ResetPassword {
  margin: 5rem auto;
}
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce-page .woocommerce-MyAccount-navigation {
  margin-top: 5rem;
  border: 1px solid var(--text-black);
  padding: 1rem;
}
.woocommerce .woocommerce-MyAccount-navigation li,
.woocommerce-page .woocommerce-MyAccount-navigation li {
  list-style: none;
}
.woocommerce .woocommerce-MyAccount-navigation li:last-child a,
.woocommerce-page .woocommerce-MyAccount-navigation li:last-child a {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.woocommerce .woocommerce-MyAccount-navigation a,
.woocommerce-page .woocommerce-MyAccount-navigation a {
  text-decoration: none;
  display: block;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--text-black);
}
.woocommerce .woocommerce-MyAccount-content,
.woocommerce-page .woocommerce-MyAccount-content {
  margin-top: 5rem;
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: inherit;
  font-weight: 700;
  font-size: inherit;
}
.woocommerce .quantity,
.woocommerce-page .quantity {
  display: block;
  padding: 0.55rem !important;
  border: 1px solid currentColor;
  text-decoration: none;
  width: auto;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.woocommerce .quantity input,
.woocommerce-page .quantity input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.woocommerce .woocommerce-ordering .orderby,
.woocommerce-page .woocommerce-ordering .orderby {
  padding: 0.5rem;
  font-size: 0.8rem;
  border: 1px solid var(--text-gray);
  background-color: transparent;
}
.woocommerce .variations,
.woocommerce-page .variations {
  text-align: left;
  vertical-align: center;
  margin: 1rem 0;
}
.woocommerce .variations select,
.woocommerce-page .variations select {
  padding: 0.5rem;
  font-size: 0.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--text-gray);
}
.woocommerce .variations tr:not(:last-child) td,
.woocommerce .variations tr:not(:last-child) th,
.woocommerce-page .variations tr:not(:last-child) td,
.woocommerce-page .variations tr:not(:last-child) th {
  padding-bottom: 0.5rem;
}
.woocommerce span.onsale,
.woocommerce-page span.onsale {
  display: block;
  padding: 0.25rem;
  background-color: var(--background-black);
  color: var(--text-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 0;
  line-height: 1;
  height: auto;
  min-width: auto;
  min-height: auto;
}
.woocommerce .wc-gzd-additional-info,
.woocommerce-page .wc-gzd-additional-info {
  margin: 0 !important;
}
.woocommerce .product .summary .price,
.woocommerce-page .product .summary .price {
  margin-bottom: 0;
}
.woocommerce .legal-price-info,
.woocommerce-page .legal-price-info {
  margin-bottom: 1rem;
}
.woocommerce .products.columns-4,
.woocommerce-page .products.columns-4 {
  margin: 5rem 0;
}
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message {
  border: 2px solid #8fae1b;
  background-color: transparent;
  margin-bottom: 5rem;
}
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-message .button {
  margin-top: 1rem;
}
.woocommerce .product_meta,
.woocommerce-page .product_meta {
  display: flex;
  flex-direction: column;
}
.woocommerce .woocommerce-products-header,
.woocommerce-page .woocommerce-products-header {
  margin-bottom: 3rem;
}
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  margin-bottom: 3rem;
}
.woocommerce .term-description ul,
.woocommerce-page .term-description ul {
  list-style: none;
  -moz-column-width: 250px;
       column-width: 250px;
}
.woocommerce .term-description ul li,
.woocommerce-page .term-description ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.woocommerce .term-description ul li::before,
.woocommerce-page .term-description ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.woocommerce.post-type-archive-product #primary.content-area, .woocommerce.tax-product_cat #primary.content-area,
.woocommerce-page.post-type-archive-product #primary.content-area,
.woocommerce-page.tax-product_cat #primary.content-area {
  max-width: 100%;
}
.woocommerce .products ul,
.woocommerce ul.products,
.woocommerce-page .products ul,
.woocommerce-page ul.products {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
}
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
  width: 100%;
  float: none;
  margin: 0;
}
.woocommerce ul.products::before,
.woocommerce-page ul.products::before {
  display: none;
}
.woocommerce h1.woocommerce-products-header__title.page-title,
.woocommerce-page h1.woocommerce-products-header__title.page-title {
  display: none;
}
.woocommerce .wp-block-woocommerce-checkout,
.woocommerce .woocommerce-order,
.woocommerce-page .wp-block-woocommerce-checkout,
.woocommerce-page .woocommerce-order {
  padding-top: 5rem;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: inherit;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  color: var(--text-black) !important;
  display: inline-block !important;
  padding: 0.75rem 1.75rem !important;
  border: 1px solid currentColor !important;
  text-decoration: none !important;
  width: auto !important;
  transition: background-color 0.3s ease !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  background-color: color-mix(in srgb, currentColor 20%, transparent) !important;
}

.block__shopcategories {
  margin: 2rem;
  justify-content: center;
}

.block__category-description__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__category-description .description-content ul {
  list-style: none;
  -moz-column-width: 300px;
       column-width: 300px;
}
.block__category-description .description-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.block__category-description .description-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

:not(.has-background) + .block__category-description,
.has-background + .block__category-description:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__additional {
  background-color: var(--background-gray);
  padding: 5rem 0;
}
.block__additional__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__additional__wrapper + .block__additional__wrapper {
  margin-top: 5rem;
}
.block__additional__content {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
}
.block__additional .block__downloads__item:last-child {
  border-bottom: none;
}

:not(.has-background) + .block__additional,
.has-background + .block__additional:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__product-slider {
  overflow: hidden;
}
.block__product-slider__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__product-slider__wrapper > h2 {
  margin-bottom: 2rem;
}
.block__product-slider a {
  text-decoration: none;
}
.block__product-slider .product h2 {
  padding: 0.5em 0;
  margin: 0;
  font-size: 1em;
}
.block__product-slider .product .price {
  display: block;
  color: inherit;
  font-weight: 700;
  font-size: inherit;
  margin-bottom: 0.5rem;
}
.block__product-slider .product .add_to_cart_button {
  margin-top: 1rem;
  display: inline-block !important;
}
.block__product-slider .swiper-slide {
  max-width: 300px;
}
.block__product-slider .product-slider {
  overflow: visible;
}

:not(.has-background) + .block__product-slider,
.has-background + .block__product-slider:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__product-grid__wrapper {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: auto;
}
.block__product-grid__product {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}
.block__product-grid__product .product-image {
  flex: 1 1 20rem;
  position: relative;
}
.block__product-grid__product .product-image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.block__product-grid__product__onsale {
  position: absolute;
  background-color: var(--background-white);
  padding: 1rem 2rem;
  top: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.7rem;
}
.block__product-grid__product__onsale__price {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  display: inline-block;
}
.block__product-grid__product h3 {
  margin-bottom: 0;
}
.block__product-grid__product .product-details {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.block__product-grid__product .product-details ul li {
  margin: 0.25rem 0 0 1rem;
}
.block__product-grid__product .product-price {
  margin-top: 1rem;
  padding-top: 1rem;
  display: block;
  border-top: 1px solid var(--text-black);
  max-width: 190px;
  font-weight: 400;
  font-size: 0.6rem;
}
.block__product-grid__product .product-price .price {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.block__product-grid__product .product-description {
  flex-grow: 1;
}

:not(.has-background) + .block__product-grid,
.has-background + .block__product-grid:not(.has-background) {
  margin: 5rem auto 0 auto;
}

@media screen and (max-width: 800px) {
  .block__tradesman__archive__wrapper {
    flex-direction: column;
  }
  .block__tradesman__archive__item {
    max-width: inherit;
  }
  .block__tradesman__archive__map {
    max-height: 25vh;
    bottom: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 100%;
    transition: max-height 0.3s ease-out;
  }
  .block__tradesman__archive__map:hover {
    max-height: 50vh;
  }
}
.tml.tml-login,
.tml.tml-lostpassword {
  margin: 5rem auto 5rem auto;
}
.tml.tml-login input[type=text],
.tml.tml-login input[type=email],
.tml.tml-login input[type=password],
.tml.tml-login input[type=tel],
.tml.tml-login input[type=number],
.tml.tml-login input[type=search],
.tml.tml-login input[type=url],
.tml.tml-login input[type=date],
.tml.tml-login input[type=datetime-local],
.tml.tml-login input[type=month],
.tml.tml-login input[type=time],
.tml.tml-login input[type=week],
.tml.tml-login input[type=color],
.tml.tml-login select,
.tml.tml-login textarea,
.tml.tml-lostpassword input[type=text],
.tml.tml-lostpassword input[type=email],
.tml.tml-lostpassword input[type=password],
.tml.tml-lostpassword input[type=tel],
.tml.tml-lostpassword input[type=number],
.tml.tml-lostpassword input[type=search],
.tml.tml-lostpassword input[type=url],
.tml.tml-lostpassword input[type=date],
.tml.tml-lostpassword input[type=datetime-local],
.tml.tml-lostpassword input[type=month],
.tml.tml-lostpassword input[type=time],
.tml.tml-lostpassword input[type=week],
.tml.tml-lostpassword input[type=color],
.tml.tml-lostpassword select,
.tml.tml-lostpassword textarea {
  display: block;
  width: 100%;
  font-weight: 700;
  padding: 1rem;
  background-color: transparent;
  border: 1px solid var(--text-black);
  border-radius: 0;
}
.tml.tml-login .tml-links,
.tml.tml-lostpassword .tml-links {
  display: block;
  list-style: none;
}

@media screen and (min-width: 1201px) {
  .site__mobile__menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .site__header__menu {
    display: none;
  }
  .site__header__burger {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .site__header__cta > .btn {
    display: none;
  }
  .block__gallery__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .block__gallery__wrapper img {
    height: auto;
  }
  .block__gallery__item.wide {
    grid-column: 1;
  }
  .block__hero__content h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=style.css.map */