@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

body {
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  z-index: 99;
}

header {
  border: 1px solid #E21389;
  background-color: #E21389;
  padding: 2rem;
  z-index: 999;
}
header h1 {
  text-align: center;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.artikel-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.artikel {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out;
}
.artikel:hover {
  transform: scale(1.02);
}
.artikel h2 {
  font-size: calc(1.25rem + 0.25vw);
  margin-bottom: 0.5rem;
}
.artikel p {
  font-size: 1rem;
  margin-bottom: 0.6666666667rem;
}
.artikel .preis {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.artikel .status {
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.artikel .status.normal {
  background-color: #ddd;
  color: #444;
}
.artikel .status.angebot {
  background-color: #27ae60;
  color: white;
}
.artikel .status.ausverkauft {
  background-color: #c0392b;
  color: white;
}
.artikel button {
  background-color: #E21389;
  color: white;
  border: none;
  padding: 0.6666666667rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.artikel button:hover {
  background-color: #b30f6c;
}

.artikel-liste {
  flex: 1 1 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem;
}
.artikel-liste h2 {
  grid-column: 1/-1;
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #333;
}
.artikel-liste .artikel {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  position: relative;
}
.artikel-liste .artikel-inhalt {
  margin-bottom: 0.5rem;
}
.artikel-liste h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #333;
}
.artikel-liste p {
  margin: 0.5rem 0;
}
.artikel-liste button {
  background-color: #E21389;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.artikel-liste button:hover {
  background-color: #b30f6c;
}

.status-punkt {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
.status-punkt.normal {
  background-color: rgb(16, 211, 16);
}
.status-punkt.angebot {
  background-color: royalblue;
}
.status-punkt.ausverkauft {
  background-color: red;
}

.btn.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
  color: #333;
  font-weight: bold;
}

.warenkorb {
  flex: 1 1 20%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  max-height: 90vh;
  overflow-y: auto;
}
.warenkorb h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #333;
}
.warenkorb ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.warenkorb .gesamtpreis {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: right;
}

.warenkorb button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  margin-right: 0.3rem;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.warenkorb button:hover {
  background-color: #d62c1a;
}
.warenkorb button.danger {
  background-color: #dc3545;
}
.warenkorb button.danger:hover {
  background-color: #bd2130;
}

.warenkorb .btn {
  display: block;
  width: 100%;
  background-color: #d62828;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.2s;
}
.warenkorb .btn:hover {
  background-color: #ab2020;
}

.checkout-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.bestellinfo {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 0 0 550px;
}

.zahlungsart {
  flex: 1;
  min-width: 500px;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #333;
}

p {
  margin: 0.5rem 0;
}

.bestellliste {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.bestellliste li {
  padding: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.gesamtpreis {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: right;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #d62828;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn:hover {
  background-color: #ab2020;
}

.zahlungsart {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.zahlungsart .zahlung-option {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.zahlungsart .zahlung-option:hover {
  background-color: #f8f9fa;
}
.zahlungsart .zahlung-option input[type=radio] {
  margin-right: 0.5rem;
  accent-color: #d62828;
}
.zahlungsart .zahlung-option label {
  font-weight: normal;
  font-size: 1rem;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  .warenkorb {
    flex: 1 1 300%;
  }
  .zahlungsart {
    flex: 1 1 450%;
  }
}
@media screen and (max-width: 900px) {
  .zahlungsart {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  main {
    flex-direction: column;
  }
  .artikel-liste,
  .warenkorb {
    width: 100%;
  }
  .warenkorb {
    order: 2;
    margin-top: 1rem;
  }
  .artikel-liste {
    flex: 1 1 65%;
    grid-template-columns: repeat(2, 1fr);
    order: 1;
  }
}
.zahlungsart-option {
  position: relative;
  cursor: pointer;
  padding: 1rem 0.5rem 0.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: #f5f5f5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin: 1rem auto 1rem auto;
}
.zahlungsart-option h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.zahlungsart-option p {
  opacity: 0.8;
  font-size: 1rem;
}
.zahlungsart-option.bar {
  background: linear-gradient(135deg, #0f0 10%, #0c0 90%);
  color: #000;
}
.zahlungsart-option.bar::before {
  content: "💵";
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.zahlungsart-option.bar.active {
  border-color: rgb(255, 0, 191);
  box-shadow: 0 0 15px #0f0;
  filter: grayscale(1);
}
.zahlungsart-option.karte {
  background: linear-gradient(135deg, #001f3f, #004080);
  color: #fff;
}
.zahlungsart-option.karte::before {
  content: "💳";
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.zahlungsart-option.karte.active {
  border-color: rgb(255, 0, 191);
  box-shadow: 0 0 15px #00ffff;
  filter: grayscale(1);
}
.zahlungsart-option:hover {
  transform: translateY(-4px);
}

.bestellabschluss-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bestellabschluss-btn {
  background-color: #ff00dd;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.bestellabschluss-btn:hover {
  background-color: #33ffff;
  box-shadow: 0 6px 18px rgba(0, 255, 255, 0.5);
  transform: translateY(-3px);
}
.bestellabschluss-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 255, 255, 0.4);
}
.bestellabschluss-btn:disabled {
  background-color: #555;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.checkout-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .checkout-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .checkout-flex .bestellinfo,
  .checkout-flex .zahlungsart {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .checkout-container {
    flex-direction: column;
  }
  .checkout-container .bestellinfo,
  .checkout-container .zahlungsart {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */