* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

.container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

@font-face {
  font-family: "Schrift";
  src: url("media/3421-font.otf");
}

p {
  font-size: 14px;
  line-height: 1.5;
}

.seite {
  font-family: Schrift, sans-serif;
}

.header-bar {
  background-color: #003834;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 1000px;
  max-width: 100%;
  height: 70px;
  padding: 0 30px;

  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.header-logo {
  display: flex;
  justify-content: center;
}

.header-logo img {
  max-height: 42px;
  width: auto;
  display: block;
}

.header-rechts {
  display: flex;
  justify-content: flex-end;
  color: white;
  cursor: pointer;
  padding-right: 20px;
}


.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;

  z-index: 1000;

  transition: transform 0.15s ease;
}

.cart-button-icon {
  width: 28px;
  height: 28px;
  display: block;
  
}

.cart-button:hover {
  transform: scale(1.1);
}


.cart-badge {
  position: absolute;
  top: 3px;
  right: 1px;

  min-width: 13px;
  height: 13px;
  padding: 0 6px;

  border-radius: 999px;
  background-color: #ff6700;
  color: white;

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

  font-size: 11px;
  font-weight: bold;
  line-height: 1;

  box-shadow: -5px 10px 20px rgba(0, 0, 0, 5);
}



.info-banner-inhalt {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #fef0e8;
  padding: 8px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.01);

  z-index: 998;
}

.header-rechts {
  color: white;
}

.main {
  margin-top: 60px;
}

.info-banner-text {
  text-align: center;
}

.info-banner-text h5 {
  color: #003834;
  margin: 0;
  font-size: 14px;
}

.info-banner-text p {
  color: #5a7d7a;
  font-size: 10px;
  margin: 0;
}

.icon-blitz {
  width: 16px;
  height: auto;
}

.ueberschrift {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  gap: 200px;
  align-items: center;
}

.sortiment-titel {
  color: #003834;
}

.kategorie-button {
  background-color: white;
  display: flex;
  justify-content: center;
  border: 1.5px solid #00383438;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 2px;
  transition: all 0.15s ease;
}

.kategorie-button p {
  font-size: 14px;
  font-family: Schrift, sans-serif;
}

.kategorie-button img {
  width: 16px;
  margin-right: 5px;
}

.kategorie-leiste {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kategorie-button.clicked {
  background-color: #003834;
  color: white;
}

.kategorie-button:hover {
  background-color: #ff6700;
  color: white;
}

.produkt-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 150px);
  gap: 20px;
  margin: 30px;
}

.produkt-karte {
  display: flex;
  flex-direction: column;
  border: 1px solid #00383454;
  width: 150px;
  height: 250px;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.produkt-karte:hover {
  box-shadow: 0px 3px 20px #00000037;
  color: #ff6700;
}

.produkt-karte h4 {
  font-size: 15px;
  overflow: hidden;
}

.produkt-karte h5 {
  color: #5a7d7a;
}

.produkt-karte h3 {
  color: #003834;
  padding: 5px;
  font-size: 15px;
}

.produkt-karte img {
  padding: 5px;
  height: 100px;
  
}

.produkt-karte.clicked {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cart-panel {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: none;
  justify-content: flex-end;
  z-index: 2000;
}

.cart-panel.open {
  display: flex;
}

.cart-drawer {
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.12);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
  border-bottom: 1px solid #ececec;
}

.cart-header h2 {
  font-size: 22px;
  color: #003834;
}

.cart-close {
  font-size: 34px;
  color: #8f8f8f;
  cursor: pointer;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #fff;
}

.cart-empty {
  color: #777;
  font-size: 15px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 14px;
  background: white;
}

.cart-item-left h4 {
  font-size: 16px;
  color: #003834;
  margin-bottom: 4px;
}

.cart-item-left p {
  font-size: 14px;
  color: #8a8a8a;
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.qty-btn {
  width: 28px;
  height: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: white;
  font-size: 18px;
  color: #7d7d7d;

  transition: all 0.15s ease;
}

.qty-btn:hover {
  background: #f0f0f0;
}
.qty-count {
  min-width: 16px;
  text-align: center;
  font-size: 18px;
  color: #003834;
}

.cart-item-price {
  font-size: 16px;
  font-weight: bold;
  color: #003834;
  min-width: 58px;
  text-align: right;
}

.remove-btn {
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: #e58a96;
}

.cart-footer {
  border-top: 1px solid #ececec;
  padding: 18px 20px 20px;
  background: white;
}

.cart-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: bold;
  color: #003834;
}

.cart-order-btn {
  width: 100%;
  border: none;
  background: #003834;
  color: white;
  font-family: Schrift, sans-serif;
  font-size: 18px;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.cart-order-btn:hover {
  opacity: 0.92;
}

.standort-zeile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.standort-select {
  padding: 10px 14px;
  border: 1px solid #00383438;
  border-radius: 10px;
  font-family: Schrift, sans-serif;
  font-size: 14px;
}

.deaktiviert {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.stock-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
}

.stock-label.ausverkauft {
  color: #d64545;
}

.stock-label.auflager {
  color: #5a7d7a;
}

.disabled-btn {
  opacity: 0.4;
  cursor: not-allowed;
}

.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.produkt-ohne-bild {
  width: 100px;
  height: 100px;
}