@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}

:root {
  --colorAnnouncement: #e30613;
  --colorAnnouncementText: #ffffff;
  --colorBody: #ffffff;
  --colorBorder: #e30613;
  --colorBtnPrimary: #e30613;
  --colorBtnPrimaryLight: #f9232f;
  --colorBtnPrimaryDim: #ca0511;
  --colorBtnPrimaryText: #ffffff;
  --colorCartDot: #e30613;
  --colorDrawers: #ffffff;
  --colorDrawerBorder: #e30613;
  --colorDrawerText: #191919;
  --colorFooter: #ff0000;
  --colorFooterText: #ffffff;
  --colorHeroText: #ffffff;
  --colorImageOverlay: #1d1d1d;
  --colorImageOverlayOpacity: 0.07;
  --colorImageOverlayTextShadow: 0.17;
  --colorNav: #ffffff;
  --colorNavText: #000000;
  --colorPrice: #1c1d1d;
  --colorSaleTag: #4bc200;
  --colorSaleTagText: #ffffff;
  --colorTextBody: #1d1d1d;
  --colorTextSavings: #4bc200;
  --typeBasePrimary: 'DM Sans', sans-serif;
  --typeBaseSize: 15px;
  --typeBaseSpacing: 0.025em;
  --typeBaseWeight: 400;
  --typeBaseLineHeight: 1.2;
  --typeHeaderPrimary: 'DM Sans', sans-serif;
  --typeHeaderSize: 24px;
  --typeHeaderWeight: 900;
  --typeHeaderSpacing: 0.05em;
  --typeHeaderLineHeight: 1.1;
  --buttonRadius: 50px;
  --grid-gutter: 17px;
  --drawer-gutter: 20px;
}

@media only screen and (min-width: 769px) {
  :root {
    --grid-gutter: 22px;
    --drawer-gutter: 30px;
  }
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--colorBody);
  color: var(--colorTextBody);
  font-family: 'DM Sans', sans-serif;
  font-size: calc(var(--typeBaseSize) * 0.92);
  letter-spacing: var(--typeBaseSpacing);
  line-height: var(--typeBaseLineHeight);
  font-weight: var(--typeBaseWeight);
}

@media only screen and (min-width: 769px) {
  body {
    font-size: var(--typeBaseSize);
  }
}

a {
  color: var(--colorTextBody);
  text-decoration: none;
}

a:hover {
  color: #e30613;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page-width {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 17px;
}

@media only screen and (min-width: 769px) {
  .page-width {
    padding: 0 40px;
  }
}

.btn {
  background: var(--colorBtnPrimary);
  border: 1px solid transparent;
  border-radius: var(--buttonRadius);
  color: var(--colorBtnPrimaryText);
  cursor: pointer;
  display: inline-block;
  font-size: max(calc(var(--typeBaseSize) - 4px), 13px);
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.42;
  padding: 11px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: var(--colorBtnPrimaryLight);
  color: var(--colorBtnPrimaryText);
}

.btn--inverse {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn--inverse:hover {
  background-color: transparent;
}

.h1,
.h2,
h1,
h2 {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-weight: var(--typeHeaderWeight);
  letter-spacing: var(--typeHeaderSpacing);
  line-height: var(--typeHeaderLineHeight);
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media only screen and (min-width: 769px) {

  .h1,
  h1 {
    font-size: var(--typeHeaderSize);
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ===== GRID ===== */
.grid {
  list-style: none;
  margin: 0 0 0 -22px;
  padding: 0;
}

.grid:after {
  clear: both;
  content: "";
  display: table;
}

.grid__item {
  float: left;
  padding-left: 22px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .grid {
    margin-left: -17px;
  }

  .grid__item {
    padding-left: 17px;
  }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background-color: var(--colorAnnouncement);
  color: var(--colorAnnouncementText);
  font-size: calc(var(--typeBaseSize) * 0.75);
  padding: 10px 0;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .announcement-bar {
    font-size: calc(var(--typeBaseSize) * 0.85);
  }
}

.announcement-text {
  display: block;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.announcement-link-text {
  display: block;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--colorNav);
  padding: 7px 0;
  position: relative;
}

.header-layout {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-item--logo-split {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-header__logo {
  text-align: center;
  margin: 10px 0;
}

.site-header__logo-link {
  display: inline-block;
}

.site-header__logo img {
  max-width: 130px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .site-header__logo img {
    max-width: 110px;
  }
}

/* ===== SWIPER SLIDESHOW ===== */
.slideshow-wrapper {
  position: relative;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
  background: #0f0f0f;
}

@media only screen and (max-width: 768px) {
  .hero-swiper {
    height: 400px;
  }
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__image-wrapper::before {
  background-color: var(--colorImageOverlay);
  bottom: 0;
  content: "";
  left: 0;
  opacity: var(--colorImageOverlayOpacity);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero__slide-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.hero__text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--colorHeroText);
  z-index: 4;
  pointer-events: none;
}

.hero__text-wrap .page-width {
  display: table;
  height: 100%;
  width: 100%;
}

.hero__text-content {
  display: table-cell;
  padding: 15px 0;
  position: relative;
  vertical-align: middle;
}

.hero__text-content.horizontal-left {
  text-align: left;
}

.hero__text-content.horizontal-center {
  text-align: center;
}

.hero__text-content.horizontal-right {
  text-align: right;
}

.hero__text-content.vertical-bottom {
  vertical-align: bottom;
}

.hero__text-content.vertical-center {
  vertical-align: middle;
}

.hero__text-shadow {
  display: inline-block;
  position: relative;
}

.hero__top-subtitle {
  font-size: 1.1em;
  letter-spacing: 0.3em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 35px;
  margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
  .hero__title {
    font-size: 70px;
  }
}

.hero__link {
  margin-top: 15px;
  pointer-events: auto;
}

/* Swiper Navigation & Pagination anpassen */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  background-color: var(--colorBody);
  color: var(--colorTextBody);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 33px;
    height: 33px;
  }

  .hero-swiper .swiper-button-prev:after,
  .hero-swiper .swiper-button-next:after {
    font-size: 14px;
  }
}

.hero-swiper .swiper-pagination-bullet {
  background-color: currentColor;
  opacity: 0.4;
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: currentColor;
}

/* ===== FEATURE ROW ===== */
.feature-row-wrapper {
  overflow: hidden;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.feature-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 768px) {
  .feature-row {
    flex-direction: column;
  }
}

.feature-row__item--overlap-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 -30px;
  padding: 0 0 15px;
}

.feature-row__first-image,
.feature-row__second-image {
  width: 50%;
}

.feature-row__first-image {
  transform: translate(30px, 30px);
  z-index: 1;
}

.feature-row__text {
  padding: 30px 20px 0;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .feature-row__text {
    padding-left: 60px;
    flex: 0 1 43%;
  }
}

.image-wrap {
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

/* ===== HOTSPOTS ===== */
.hotspots-section .index-section {
  margin-bottom: 40px;
}

.hotspots-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.hotspots {
  position: relative;
  width: 70%;
}

@media only screen and (max-width: 768px) {
  .hotspots {
    width: 100%;
  }
}

.hotspots__image .grid__image-ratio {
  position: relative;
  padding-bottom: 100%;
}

.hotspots__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspots__buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotspot__button {
  border-radius: 50%;
  line-height: 0;
  padding: 10px;
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #133c7e;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.hotspot__button svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.hotspots__content {
  width: 30%;
  padding: 24px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .hotspots__content {
    width: 100%;
    padding: 1rem 20px 0;
  }
    .feature-row-2 {
      grid-template-columns: 1fr;
    }
    body {
      word-break: break-word;
    }
}

.hotspot-content__block {
  display: none;
  width: 100%;
}

.hotspot-content__block.is-active {
  display: block;
}

/* ===== GRID PRODUCT ===== */
.grid-product {
  padding: 15px;
}

.grid-product__content {
  position: relative;
}

.grid-product__image-mask {
  position: relative;
  overflow: hidden;
}

.grid-product__image {
  width: 100%;
  display: block;
}

.grid-product__meta {
  padding: 10px 0 6px;
  text-align: center;
}

.grid-product__title {
  font-size: calc(var(--typeBaseSize) + 2px);
  font-weight: 900;
  text-transform: uppercase;
}

.grid-product__price {
  font-size: 17px;
  color: #333;
  margin-top: 5px;
}

.grid-product__colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3px;
}

.color-swatch {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 4px 4px;
  box-shadow: 0 0 0 1px var(--colorBorder);
  background-size: cover;
  background-position: center;
}

.color-swatch--small {
  width: 19px;
  height: 19px;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #e30613;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.site-footer a {
  color: #fff;
}
.site-footer ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 10px 30px;
}
.site-footer ul.payment-icons {
  gap: 0;
}

.footer__small-text {
  font-size: 12px;
  padding: 7.5px 0;
}

/* ===== UTILITIES ===== */
.index-section {
  margin: 40px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.small--hide {
  display: none;
}

@media only screen and (min-width: 769px) {
  .small--hide {
    display: block;
  }

  .medium-up--hide {
    display: none;
  }
}

.knipex-form-wrapper {
  --color-primary: #e30613;
  --color-primary-dark: #ca0511;
  --color-primary-light: #f9232f;
  --color-text: #1d1d1d;
  --color-border: #e30613;
  --color-gray-border: #e5e5e5;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.knipex-contact-form {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.knipex-form-header {
  background: var(--color-primary);
  padding: 30px 30px 25px;
  text-align: center;
}

.knipex-form-header h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.knipex-form-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  letter-spacing: 0.025em;
}

.knipex-form-body {
  padding: 30px;
}

.knipex-form-group {
  margin-bottom: 22px;
}

.knipex-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.knipex-form-group input,
.knipex-form-group select,
.knipex-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--color-gray-border);
  background: #fff;
  transition: all 0.2s ease;
}

.knipex-form-group input:focus,
.knipex-form-group select:focus,
.knipex-form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.knipex-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox Style */
.knipex-checkbox {
  margin-bottom: 25px;
}

.knipex-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}

.knipex-checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.knipex-checkbox-label span {
  line-height: 1.4;
  color: #555;
}

.knipex-checkbox-label a {
  color: var(--color-primary);
  text-decoration: none;
}

.knipex-checkbox-label a:hover {
  text-decoration: underline;
}

/* Submit Button */
.knipex-submit-btn {
  width: 100%;
  background: var(--color-primary);
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}

.knipex-submit-btn:hover {
  background: var(--color-primary-dark);
}

/* Popup Overlay */
.knipex-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.knipex-popup-overlay.is-active {
  visibility: visible;
  opacity: 1;
}

.knipex-popup-container {
  background: #ffffff;
  max-width: 400px;
  width: 90%;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.knipex-popup-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.knipex-popup-container h3 {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.knipex-popup-container p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.knipex-popup-close {
  background: var(--color-primary);
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 25px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.knipex-popup-close:hover {
  background: var(--color-primary-dark);
}